From 5aad4a19f83a7e7de4ec9a7c819b9b5f7b4f1b3c Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Fri, 20 Feb 2015 10:09:59 +0100 Subject: Added version tag to siteinfo/json --- mod/siteinfo.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 1f3cd4479..b73dca5b1 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -50,6 +50,18 @@ function siteinfo_init(&$a) { $site_info = get_config('system','info'); $site_name = get_config('system','sitename'); + if(! get_config('system','hidden_version_siteinfo')) { + $version = sprintf( t('Version %s'), RED_VERSION ); + if(@is_dir('.git') && function_exists('shell_exec')) { + $commit = @shell_exec('git log -1 --format="%h"'); + $tag = @shell_exec('git describe --tags --abbrev=0'); + } + if(! isset($commit) || strlen($commit) > 16) + $commit = ''; + } + else { + $version = $commit = ''; + } //Statistics $channels_total_stat = intval(get_config('system','channels_total_stat')); @@ -59,7 +71,8 @@ function siteinfo_init(&$a) { $hide_in_statistics = intval(get_config('system','hide_in_statistics')); $data = Array( - 'version' => RED_VERSION, + 'version' => $version, + 'version_tag' => $tag, 'commit' => $commit, 'url' => z_root(), 'plugins' => $visible_plugins, -- cgit v1.2.3 From 2765500844d7c85a6921f26cc708af8d967c9125 Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Fri, 20 Feb 2015 10:29:33 +0100 Subject: Fixes to version tag in siteinfo/json --- mod/siteinfo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/siteinfo.php b/mod/siteinfo.php index b73dca5b1..e6798ce50 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -51,10 +51,10 @@ function siteinfo_init(&$a) { $site_info = get_config('system','info'); $site_name = get_config('system','sitename'); if(! get_config('system','hidden_version_siteinfo')) { - $version = sprintf( t('Version %s'), RED_VERSION ); + $version = RED_VERSION; if(@is_dir('.git') && function_exists('shell_exec')) { - $commit = @shell_exec('git log -1 --format="%h"'); - $tag = @shell_exec('git describe --tags --abbrev=0'); + $commit = trim( @shell_exec('git log -1 --format="%h"')); + $tag = trim( @shell_exec('git describe --tags --abbrev=0')); } if(! isset($commit) || strlen($commit) > 16) $commit = ''; -- cgit v1.2.3 From 2c7e8bea88abd4e835645996849e16ecd62dfa35 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 20 Feb 2015 14:07:56 +0100 Subject: show item title in channel/mid and display pages --- mod/channel.php | 5 ++++- mod/display.php | 3 +++ view/js/main.js | 11 ++++++++++- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/mod/channel.php b/mod/channel.php index 788bacf70..109c9a596 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -329,8 +329,11 @@ function channel_content(&$a, $update = 0, $load = false) { $o .= conversation($a,$items,'channel',$update,'traditional'); } - if((! $update) || ($_COOKIE['jsAvailable'] != 1)) + if((! $update) || ($_COOKIE['jsAvailable'] != 1)) { $o .= alt_pager($a,count($items)); + if ($mid && $items[0]['title']) + $a->page['title'] = $items[0]['title'] . " - " . $a->page['title']; + } if($mid) $o .= '
'; diff --git a/mod/display.php b/mod/display.php index c2e5c2426..d06f1e66f 100644 --- a/mod/display.php +++ b/mod/display.php @@ -228,6 +228,9 @@ function display_content(&$a, $update = 0, $load = false) { $o .= conversation($a, $items, 'display', $update, 'client'); } else { $o .= conversation($a, $items, 'display', $update, 'traditional'); + if ($items[0]['title']) + $a->page['title'] = $items[0]['title'] . " - " . $a->page['title']; + } if($updateable) { diff --git a/view/js/main.js b/view/js/main.js index 18004726e..a10e91449 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -563,10 +563,19 @@ function updateConvItems(mode,data) { } prev = ident; }); - + if(loadingPage) { loadingPage = false; } + + if (window.location.search.indexOf("mid=") != -1 || window.location.pathname.indexOf("display") != -1) { + var title = $(".wall-item-title").text(); + title.replace(/^\s+/, ''); + title.replace(/\s+$/, ''); + if (title) + document.title = title + " - " + document.title; + } + } $('.like-rotator').spin(false); -- cgit v1.2.3 From 48080d4103f19c6f2382be8f7ea66ca9b2f29d20 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 20 Feb 2015 14:11:28 +0100 Subject: correct indent --- mod/display.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/display.php b/mod/display.php index d06f1e66f..d4a1acc5d 100644 --- a/mod/display.php +++ b/mod/display.php @@ -228,8 +228,8 @@ function display_content(&$a, $update = 0, $load = false) { $o .= conversation($a, $items, 'display', $update, 'client'); } else { $o .= conversation($a, $items, 'display', $update, 'traditional'); - if ($items[0]['title']) - $a->page['title'] = $items[0]['title'] . " - " . $a->page['title']; + if ($items[0]['title']) + $a->page['title'] = $items[0]['title'] . " - " . $a->page['title']; } -- cgit v1.2.3 From 8eedc9d5766df8d57815bdd38e5fa5e3757e7555 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Feb 2015 13:18:44 -0800 Subject: updated install doc --- install/INSTALL.txt | 30 +++++++++++++++++++----------- util/shredder/readme | 11 +++++++++++ 2 files changed, 30 insertions(+), 11 deletions(-) create mode 100644 util/shredder/readme diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 9c85e0f4b..d042f34ec 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -42,10 +42,16 @@ site for the first time, please use the SSL ("https://") URL if SSL is available. This will avoid problems later. The installation routine will not allow you to use a non browser-valid certificate. -This restriction is incorporated because public posts from you may for example -contain references to images on your own hub. If your certificate is not known -by the internet browser of users they get a warning message complaining about -the invalid certificate. +This restriction is incorporated because public posts from you may contain +references to images on your own hub. Other members viewing their stream on +other hubs will get warnings if your certificate is not trusted by their web +browser. This will confuse many people because this is a decentralised network +and they will get the warning about your hub while viewing their own hub and may +think their own hub has an issue. These warnings are very technical and scary to +some folks, many of whom will not know how to proceed except to follow the browser +advice. This is disruptive to the community. That said, we recognise the issues +surrounding the current certificate infrastructure and agree there are many +problems, but that doesn't change the requirement. Free "browser-valid" certificates are available from providers such as StartSSL. @@ -57,9 +63,11 @@ use SSL, your webserver must not listen on port 443 at all. 1. Requirements - Apache with mod-rewrite enabled and "AllowOverride All" so you can use a - local .htaccess file + local .htaccess file. Some folks have successfully used nginx and lighttpd. + Example config scripts are available for these platforms in doc/install. + Apache and nginx have the most support. - - PHP 5.3+. The later the better. + - PHP 5.3+. 5.4 or 5.5 is highly recommended. The later the better. - PHP *command line* access with register_argc_argv set to true in the php.ini file - and with no hosting provider restrictions on the use of @@ -70,7 +78,7 @@ use SSL, your webserver must not listen on port 443 at all. - some form of email server or email gateway such that PHP mail() works - - Mysql 5.x or MariaDB + - Mysql 5.x or MariaDB or postgres database server. - ability to schedule jobs with cron. @@ -121,11 +129,11 @@ use SSL, your webserver must not listen on port 443 at all. util/add_addon_repo https://github.com/friendica/red-addons.git matrix - - For keeping the addon tree updated, you should be on your addon tree and - issue a git pull + - For keeping the addon tree updated, you should be on your top level website + directory and issue an update command for that repository. - cd mywebsite/extend/addon/matrix - git pull + cd mywebsite + util/update_addon_repo matrix 3. Create an empty database and note the access details (hostname, username, diff --git a/util/shredder/readme b/util/shredder/readme new file mode 100644 index 000000000..44ed6f45c --- /dev/null +++ b/util/shredder/readme @@ -0,0 +1,11 @@ +http://kmkeen.com/jshon/ + + + +Jshon was made to be part of the usual text processing pipeline. However, every single -u is printed out to its own line. Most shell tools expect fields to be tab separated, and newlines between sets of fields. The paste tool does this. However, paste breaks down on blank lines so use sed to pad out the empty lines. + +jshon ... | sed 's/^$/-/' | paste -s -d "\t\t\n" | .... + +The arguments need a little explaining. +-s is mysteriously needed for paste to correctly handle input. +-d is less obvious from the manpage, because it can take multiple characters which are looped through. The above example concatenates every three lines together. -- cgit v1.2.3 From 835b2594550a8f53ec5beee370129e2add162ab0 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Feb 2015 14:07:24 -0800 Subject: minor issues with arg passing --- util/add_addon_repo | 4 ++-- util/add_theme_repo | 2 +- util/update_addon_repo | 11 ++++++++--- util/update_theme_repo | 11 ++++++++--- 4 files changed, 19 insertions(+), 9 deletions(-) diff --git a/util/add_addon_repo b/util/add_addon_repo index caefe820c..7d2b74cff 100755 --- a/util/add_addon_repo +++ b/util/add_addon_repo @@ -1,6 +1,6 @@ #!/bin/sh -f -if [ $# -eq '3' ]; then +if [ $# -ne 2 ]; then echo usage: $0 repo_url nickname exit 1 fi @@ -8,7 +8,7 @@ fi mkdir -p extend/addon/$2 mkdir addon > /dev/null 2>&1 git clone $1 extend/addon/$2 -if [ $? -eq '0' ]; then +if [ $? -eq 0 ]; then exit $? fi diff --git a/util/add_theme_repo b/util/add_theme_repo index fe4384604..5ccbccd3f 100755 --- a/util/add_theme_repo +++ b/util/add_theme_repo @@ -1,7 +1,7 @@ #!/bin/sh -f -if [ $# -eq '3' ]; then +if [ $# -ne 2 ]; then echo usage: $0 repo_url nickname exit 1 fi diff --git a/util/update_addon_repo b/util/update_addon_repo index d5dedeb50..0d0cbc4a8 100755 --- a/util/update_addon_repo +++ b/util/update_addon_repo @@ -1,10 +1,15 @@ #!/bin/sh -f -if [ $# -eq '2' ]; then - echo usage: $0 nickname +if [ $# -ne 1 ]; then + echo usage: $0 repository + echo "Repositories:" + ls extend/addon exit 1 fi cd extend/addon/$1 -git pull + +if [ -d .git ] ; then + git pull +fi diff --git a/util/update_theme_repo b/util/update_theme_repo index 51d2f4175..f7b26ae34 100755 --- a/util/update_theme_repo +++ b/util/update_theme_repo @@ -1,10 +1,15 @@ #!/bin/sh -f -if [ $# -eq '2' ]; then - echo usage: $0 nickname + +if [ $# -ne 1 ]; then + echo usage: $0 repository + echo "Repositories:" + ls extend/theme exit 1 fi cd extend/theme/$1 -git pull +if [ -d .git ] ; then + git pull +fi -- cgit v1.2.3 From 6b4d5eedc4d583bcf03932dccef6413ed6445342 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Feb 2015 14:58:09 -0800 Subject: extend the troubleshooting doc --- doc/troubleshooting.bb | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/doc/troubleshooting.bb b/doc/troubleshooting.bb index 35ecd3546..f27db558f 100644 --- a/doc/troubleshooting.bb +++ b/doc/troubleshooting.bb @@ -1,8 +1,21 @@ [b]Troubleshooting[/b] -[li][zrl=[baseurl]/help/technical_faq]Technical FAQ[/zrl][/li] // error does not exist [li][zrl=[baseurl]/help/problems-following-an-update]Problems following an update[/zrl][/li] +When reporting issues, please try to provide as much detail as may be necessary for developers to reproduce the issue and provide the complete text of all error messages. + +The system logfile is an extremely useful resource for tracking down things that go wrong. This can be enabled in the admin/log configuration page. A loglevel setting of LOGGER_DEBUG is preferred for stable production sites. Most things that go wrong with communications or storage are listed here. A setting of LOGGER_DATA provides [b]much[/b] more detail, but may fill your disk. In either case we recommend the use of logrotate on your operating system to cycle logs and discard older entries. + +At the bottom of your .htconfig.php file are several lines (commented out) which enable PHP error logging. This reports issues with code syntax and executing the code and is the first place you should look for issues which result in a "white screen" or blank page. This is typically the result of code/syntax problems. +Database errors are reported to the system logfile, but we've found it useful to have a file in your top-level directory called dbfail.out which [b]only[/b] collects database related issues. If the file exists and is writable, database errors will be logged to it as well as to the system logfile. + +In the case of "500" errors, the issues may often be logged in your webserver logs, often /var/log/apache2/error.log or something similar. Consult your operating system documentation. + +We encourage you to try to the best of your abilities to use these logs combined with the source code in your possession to troubleshoot issues and find their cause. The community is often able to help, but only you have access to your site logfiles and it is considered a security risk to share them. + + +If a code issue has been uncovered, please report it on the project bugtracker (https://github.com/friendica/red/issues). Again provide as much detail as possible to avoid us going back and forth asking questions about your configuration or how to duplicate the problem, so that we can get right to the problem and figure out what to do about it. You are also welcome to offer your own solutions and submit patches. In fact we encourage this as we are all volunteers and have little spare time available. The more people that help, the easier the workload for everybody. It's OK if your solution isn't perfect. Every little bit helps and perhaps we can improve on it. + #include doc/macros/troubleshooting_footer.bb; #include doc/macros/main_footer.bb; -- cgit v1.2.3 From ffd47e6b9544c4ef717fdd545563831df84bf93b Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Fri, 20 Feb 2015 19:48:51 -0800 Subject: catch negative ages nix extra var --- include/zot.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/include/zot.php b/include/zot.php index 98b54a04c..0d8fe8714 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2244,10 +2244,11 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_ dbesc($hash) ); - $age = intval($arr['xprof_age']); - if($age > 150) - $age = 150; - + if($arr['xprof_age'] > 150) + $arr['xprof_age'] = 150; + if($arr['xprof_age'] < 0) + $arr['xprof_age'] = 0; + if($r) { $update = false; foreach($r[0] as $k => $v) { @@ -2276,7 +2277,7 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_ where xprof_hash = '%s'", dbesc($arr['xprof_desc']), dbesc($arr['xprof_dob']), - $age, + intval($arr['xprof_age']), dbesc($arr['xprof_gender']), dbesc($arr['xprof_marital']), dbesc($arr['xprof_sexual']), @@ -2299,7 +2300,7 @@ function import_directory_profile($hash,$profile,$addr,$ud_flags = UPDATE_FLAGS_ dbesc($arr['xprof_hash']), dbesc($arr['xprof_desc']), dbesc($arr['xprof_dob']), - $age, + intval($arr['xprof_age']), dbesc($arr['xprof_gender']), dbesc($arr['xprof_marital']), dbesc($arr['xprof_sexual']), -- cgit v1.2.3 From 6c77550c298c2189878f3b7f132331314edbde66 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Feb 2015 21:30:02 -0800 Subject: more stuff for external resource page --- doc/external-resource-links.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/external-resource-links.bb b/doc/external-resource-links.bb index 5d6123565..beb16e699 100644 --- a/doc/external-resource-links.bb +++ b/doc/external-resource-links.bb @@ -15,5 +15,6 @@ [*][url=https://addons.mozilla.org/en-US/firefox/addon/redshare/]Redshare for Firefox[/url] [*][url=https://github.com/cvogeley/red-for-android]Red for Android[/url] [*][url=https://github.com/zzottel/feed2red]feed2red.pl (posts Atom/RSS feeds to channel)[/url] +[*][url=https://github.com/friendica/wptored]WordPress gateway (combine with wppost addon for full features)[/url] #include doc/macros/main_footer.bb; -- cgit v1.2.3 From 86aefe0e012939fb08193fa59ba74deed062a1af Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 15:27:45 -0800 Subject: new session functions --- include/session.php | 29 +++++++++++++++++++++++++++++ version.inc | 2 +- view/tpl/admin_site.tpl | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/include/session.php b/include/session.php index ed4dfdd16..00e1d8fbe 100644 --- a/include/session.php +++ b/include/session.php @@ -6,7 +6,36 @@ $session_exists = 0; $session_expire = 180000; +$session_mirror = null; + +function red_session_start() { + global $session_mirror; + + session_start(); + $session_mirror = $_SESSION; + session_write_close(); +} + +function red_session_get($var) { + global $session_mirror; + if(is_null($session_mirror)) + red_session_start(); + return $session_mirror[$var]; +} +function red_session_put($var,$val) { + session_start(); + $_SESSION[$var'] = $val; + $session_mirror = $_SESSION; + session_write_close(); +} + +function red_session_destroy() { + session_start(); + unset($_SESSION); + unset($session_mirror); + session_write_close(); +} function new_cookie($time) { diff --git a/version.inc b/version.inc index db0f2f5e5..2e906c260 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-20.950 +2015-02-22.952 diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index a30892f71..1bcdba473 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -24,7 +24,7 @@ $.post(url, data, function(data) { if(timer) clearTimeout(timer); NavUpdate(); - $.fancybox.close(); + $.colorbox.close(); }) return false; -- cgit v1.2.3 From 0109c0fcf3a9eff33f6dd6a651b351f20c948eb4 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 17:37:57 -0800 Subject: fi8x the typo --- include/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/session.php b/include/session.php index 00e1d8fbe..8ae2194ec 100644 --- a/include/session.php +++ b/include/session.php @@ -25,7 +25,7 @@ function red_session_get($var) { function red_session_put($var,$val) { session_start(); - $_SESSION[$var'] = $val; + $_SESSION[$var] = $val; $session_mirror = $_SESSION; session_write_close(); } -- cgit v1.2.3 From 324e59b1b68cb3a799194e51218b503044fb3975 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 18:06:33 -0800 Subject: remove these functions for now. --- include/session.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/session.php b/include/session.php index 8ae2194ec..739eca213 100644 --- a/include/session.php +++ b/include/session.php @@ -6,6 +6,7 @@ $session_exists = 0; $session_expire = 180000; +/* $session_mirror = null; function red_session_start() { @@ -36,7 +37,7 @@ function red_session_destroy() { unset($session_mirror); session_write_close(); } - +*/ function new_cookie($time) { $old_sid = session_id(); -- cgit v1.2.3 From e1cf396feba2fe33ea992570b1d90edaaeb87ad5 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 20:58:11 -0800 Subject: remove the new session functions from the trunk. Don't yet know if they'll come back or not. --- include/session.php | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/include/session.php b/include/session.php index 739eca213..0e2adb77d 100644 --- a/include/session.php +++ b/include/session.php @@ -6,39 +6,6 @@ $session_exists = 0; $session_expire = 180000; -/* -$session_mirror = null; - -function red_session_start() { - global $session_mirror; - - session_start(); - $session_mirror = $_SESSION; - session_write_close(); -} - -function red_session_get($var) { - global $session_mirror; - if(is_null($session_mirror)) - red_session_start(); - return $session_mirror[$var]; -} - -function red_session_put($var,$val) { - session_start(); - $_SESSION[$var] = $val; - $session_mirror = $_SESSION; - session_write_close(); -} - -function red_session_destroy() { - session_start(); - unset($_SESSION); - unset($session_mirror); - session_write_close(); -} -*/ - function new_cookie($time) { $old_sid = session_id(); -- cgit v1.2.3 From d0e7fc76cd112dde0947540c84274358d8f84560 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 20:59:24 -0800 Subject: no longer needed --- include/fixd.php | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 include/fixd.php diff --git a/include/fixd.php b/include/fixd.php deleted file mode 100644 index bce5eb348..000000000 --- a/include/fixd.php +++ /dev/null @@ -1,33 +0,0 @@ - Date: Sun, 22 Feb 2015 22:58:09 -0800 Subject: notes about private realm registrations and multiple primary directories. --- include/ratenotif.php | 4 ++-- mod/regdir.php | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/include/ratenotif.php b/include/ratenotif.php index 4fa0077a6..8be3b15b7 100644 --- a/include/ratenotif.php +++ b/include/ratenotif.php @@ -76,8 +76,8 @@ function ratenotif_run($argv, $argc){ if($j && $j['success'] && is_array($j['directories'])) { foreach($j['directories'] as $h) { -// if($h == z_root()) -// continue; + if($h == z_root()) + continue; $hash = random_string(); $n = zot_build_packet($channel,'notify',null,null,$hash); diff --git a/mod/regdir.php b/mod/regdir.php index eecc99ca5..f24ee3951 100644 --- a/mod/regdir.php +++ b/mod/regdir.php @@ -1,6 +1,18 @@ false); @@ -32,7 +44,7 @@ function regdir_init(&$a) { json_return_and_die($result); } - $f = zot_finger('sys@' . $m['host']); + $f = zot_finger('[system]@' . $m['host']); if($f['success']) { $j = json_decode($f['body'],true); if($j['success'] && $j['guid']) { -- cgit v1.2.3 From 18f5e269ce88eb569c0ff6ae8da0990a8b255570 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Feb 2015 23:05:21 -0800 Subject: fix 404 pages for derivative themes by pretending we've found a module called '404'. This way all the correct theme initialisation stuff will happen. --- index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.php b/index.php index 4e39ee1ac..94d22e415 100755 --- a/index.php +++ b/index.php @@ -240,6 +240,9 @@ if(strlen($a->module)) { $a->page['content'] = replace_macros($tpl, array( '$message' => t('Page not found.' ) )); + // pretend this is a module so it will initialise the theme. + $a->module = '404'; + $a->module_loaded = true; } } -- cgit v1.2.3 From 8d0377466657a02c2e0bbeacd2af0a181ceda898 Mon Sep 17 00:00:00 2001 From: zottel Date: Mon, 23 Feb 2015 14:53:10 +0100 Subject: make redirections restriction in z_fetch_url() work --- include/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/network.php b/include/network.php index a7127c1a2..6874063ab 100644 --- a/include/network.php +++ b/include/network.php @@ -109,7 +109,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { $url_parsed = @parse_url($newurl); if (isset($url_parsed)) { @curl_close($ch); - return z_fetch_url($newurl,$binary,$redirects++,$opts); + return z_fetch_url($newurl,$binary,++$redirects,$opts); } } -- cgit v1.2.3 From fbbcc10025bdf01c17a80a1b790e1f72dcaa8b2c Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 23 Feb 2015 11:33:16 -0800 Subject: apply fix from 8d03774 to z_post_url also --- include/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/network.php b/include/network.php index 6874063ab..db32396e4 100644 --- a/include/network.php +++ b/include/network.php @@ -239,7 +239,7 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { if($http_code == 303) { return z_fetch_url($newurl,false,$redirects++,$opts); } else { - return z_post_url($newurl,$params,$redirects++,$opts); + return z_post_url($newurl,$params,++$redirects,$opts); } } } -- cgit v1.2.3 From d29de912b439b8252efff8b644f034cf7fc7d3e2 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 23 Feb 2015 16:27:12 -0800 Subject: public_recips cleanup --- include/zot.php | 48 ++++++++++++++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/include/zot.php b/include/zot.php index 0d8fe8714..b19b1474a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1270,12 +1270,13 @@ function zot_import($arr, $sender_url) { // A public message with no listed recipients can be delivered to anybody who -// has PERMS_NETWORK for that type of post, or PERMS_SITE and is one the same +// has PERMS_NETWORK for that type of post, PERMS_AUTHED (in-network senders are +// by definition authenticated) or PERMS_SITE and is one the same // site, or PERMS_SPECIFIC and the sender is a contact who is granted // permissions via their connection permissions in the address book. // Here we take a given message and construct a list of hashes of everybody -// on the site that we should deliver to. - +// on the site that we should try and deliver to. +// Some of these will be rejected, but this gives us a place to start. function public_recips($msg) { @@ -1294,15 +1295,9 @@ function public_recips($msg) { $check_mentions = true; } else { - // if this is a comment and it wasn't sent by the post owner, check to see who is allowing them to comment. - // We should have one specific recipient and this step shouldn't be needed unless somebody stuffed up their software. - // We may need this step to protect us from bad guys intentionally stuffing up their software. - // If it is sent by the post owner, we don't need to do this. We only need to see who is receiving the - // owner's stream (which was already set above) - as they control the comment permissions - if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { - $col = 'channel_w_comment'; - $field = PERMS_W_COMMENT; - } + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; + } } elseif($msg['message']['type'] === 'mail') { @@ -1313,21 +1308,38 @@ function public_recips($msg) { if(! $col) return NULL; - + $col = dbesc($col); + + // First find those channels who are accepting posts from anybody, or at least + // something greater than just their connections. + if($msg['notify']['sender']['url'] === z_root()) - $sql = " where (( " . $col . " & " . PERMS_NETWORK . " )>0 or ( " . $col . " & " . PERMS_SITE . " )>0 or ( " . $col . " & " . PERMS_PUBLIC . ")>0 or ( " . $col . " & " . PERMS_AUTHED . ")>0) "; + $sql = " where (( " . $col . " & " . intval(PERMS_NETWORK) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_SITE) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_PUBLIC) . ") > 0 + or ( " . $col . " & " . intval(PERMS_AUTHED) . ") > 0 ) "; else - $sql = " where (( " . $col . " & " . PERMS_NETWORK . " )>0 or ( " . $col . " & " . PERMS_PUBLIC . ")>0 or ( " . $col . " & " . PERMS_AUTHED . ")>0) "; + $sql = " where (( " . $col . " & " . intval(PERMS_NETWORK) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_PUBLIC) . ") > 0 + or ( " . $col . " & " . intval(PERMS_AUTHED) . ") > 0 ) "; - $r = q("select channel_hash as hash from channel $sql or channel_hash = '%s' ", + $r = q("select channel_hash as hash from channel $sql or channel_hash = '%s' + and ( channel_pageflags & " . intval(PAGE_REMOVED) . " ) = 0 ", dbesc($msg['notify']['sender']['hash']) ); if(! $r) $r = array(); - $x = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id where abook_xchan = '%s' and not ( channel_pageflags & " . PAGE_REMOVED . " )>0 and (( " . $col . " & " . PERMS_SPECIFIC . " )>0 and ( abook_my_perms & " . $field . " )>0) OR ( " . $col . " & " . PERMS_PENDING . " )>0 OR (( " . $col . " & " . PERMS_CONTACTS . " )>0 and not ( abook_flags & " . ABOOK_FLAG_PENDING . " )>0) ", + // Now we have to get a bit dirty. Find every channel that has the sender in their connections (abook) + // and is allowing this sender at least at a high level. + + $x = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id + where abook_xchan = '%s' and ( channel_pageflags & " . intval(PAGE_REMOVED) . " ) = 0 + and (( " . $col . " & " . intval(PERMS_SPECIFIC) . " ) > 0 and ( abook_my_perms & " . intval($field) . " ) > 0 ) + OR ( " . $col . " & " . intval(PERMS_PENDING) . " ) > 0 + OR (( " . $col . " & " . intval(PERMS_CONTACTS) . " ) > 0 and ( abook_flags & " . intval(ABOOK_FLAG_PENDING) . " ) = 0 ) ", dbesc($msg['notify']['sender']['hash']) ); @@ -1411,7 +1423,7 @@ function allowed_public_recips($msg) { $condensed_recips[] = $rr['hash']; $results = array(); - $r = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id where abook_xchan = '%s' and not ( channel_pageflags & %d )>0 ", + $r = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id where abook_xchan = '%s' and not ( channel_pageflags & %d ) > 0 ", dbesc($hash), intval(PAGE_REMOVED) ); -- cgit v1.2.3 From 2264ad5c6ef98a63594f100f06f79bfd8668436a Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 23 Feb 2015 19:10:34 -0800 Subject: provide ability to link new themes/addons --- util/add_addon_repo | 9 +++++---- util/add_theme_repo | 8 ++++---- util/update_addon_repo | 24 ++++++++++++++++++++++++ util/update_theme_repo | 27 +++++++++++++++++++++++++++ 4 files changed, 60 insertions(+), 8 deletions(-) diff --git a/util/add_addon_repo b/util/add_addon_repo index 7d2b74cff..130c0a0cd 100755 --- a/util/add_addon_repo +++ b/util/add_addon_repo @@ -18,19 +18,20 @@ cd addon for a in "${filelist[@]}" ; do base=`basename $a` if [ $base = '.git' ]; then - echo 'ignoring git' +# echo 'ignoring git' continue; fi if [ ! -d ../extend/addon/$2/$base ]; then - echo $a 'not a directory' +# echo $a 'not a directory' continue; fi - echo linking $base if [ -x $base ]; then - echo $base 'file exists' +# echo $base 'file exists' continue; fi + echo linking $base + ln -s ../extend/addon/$2/$base $base done diff --git a/util/add_theme_repo b/util/add_theme_repo index 5ccbccd3f..d2e4b21a5 100755 --- a/util/add_theme_repo +++ b/util/add_theme_repo @@ -18,19 +18,19 @@ cd view/theme for a in "${filelist[@]}" ; do base=`basename $a` if [ $base = '.git' ]; then - echo 'ignoring git' +# echo 'ignoring git' continue; fi if [ ! -d ../../extend/theme/$2/$base ]; then - echo $a 'not a directory' +# echo $a 'not a directory' continue; fi - echo linking $base if [ -x $base ]; then - echo $base 'file exists' +# echo $base 'file exists' continue; fi + echo linking $base ln -s ../../extend/theme/$2/$base $base done diff --git a/util/update_addon_repo b/util/update_addon_repo index 0d0cbc4a8..c6c2c4a47 100755 --- a/util/update_addon_repo +++ b/util/update_addon_repo @@ -13,3 +13,27 @@ if [ -d .git ] ; then git pull fi +cd ../../.. + +filelist=(`ls extend/addon/$1`) + +cd addon + +for a in "${filelist[@]}" ; do + base=`basename $a` + if [ $base = '.git' ]; then +# echo 'ignoring git' + continue; + fi + if [ ! -d ../extend/theme/$1/$base ]; then +# echo $a 'not a directory' + continue; + fi + if [ -x $base ]; then +# echo $base 'file exists' + continue; + fi + + echo linking $base + ln -s ../extend/theme/$1/$base $base +done diff --git a/util/update_theme_repo b/util/update_theme_repo index f7b26ae34..443b26591 100755 --- a/util/update_theme_repo +++ b/util/update_theme_repo @@ -13,3 +13,30 @@ cd extend/theme/$1 if [ -d .git ] ; then git pull fi + +cd ../../.. + +filelist=(`ls extend/theme/$1`) + +cd view/theme + +for a in "${filelist[@]}" ; do + base=`basename $a` + if [ $base = '.git' ]; then +# echo 'ignoring git' + continue; + fi + if [ ! -d ../../extend/theme/$1/$base ]; then +# echo $a 'not a directory' + continue; + fi + if [ -x $base ]; then +# echo $base 'file exists' + continue; + fi + + echo linking $base + ln -s ../../extend/theme/$1/$base $base +done + + -- cgit v1.2.3 From 11df605c2e065e123e58bd73525e7ca2113f40b8 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 24 Feb 2015 00:45:03 -0800 Subject: support rel=me on channel "homepage" url --- include/identity.php | 2 +- include/text.php | 4 ++-- version.inc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/identity.php b/include/identity.php index 415e85f2f..f63b576b2 100644 --- a/include/identity.php +++ b/include/identity.php @@ -893,7 +893,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { || (x($profile,'country_name') == 1)) $location = t('Location:'); - $profile['homepage'] = linkify($profile['homepage']); + $profile['homepage'] = linkify($profile['homepage'],true); $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); diff --git a/include/text.php b/include/text.php index c93bc4e70..2a524f7f1 100644 --- a/include/text.php +++ b/include/text.php @@ -873,8 +873,8 @@ function valid_email($x){ */ -function linkify($s) { - $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\@\~\#\'\%\$\!\+]*)/", ' $1', $s); +function linkify($s,$me = false) { + $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\@\~\#\'\%\$\!\+]*)/", (($me) ? ' $1' : ' $1'), $s); $s = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$s); return($s); } diff --git a/version.inc b/version.inc index 2e906c260..2a61decf3 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-22.952 +2015-02-24.953 -- cgit v1.2.3 From 08f054130f5a57e2928e129131e7609271ec7f40 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 24 Feb 2015 16:36:27 -0800 Subject: require access token to view, query, or join directories in private realms, if the realm is so configured. --- boot.php | 2 +- include/dir_fns.php | 18 ++++++++++++------ install/schema_mysql.sql | 4 +++- install/schema_postgres.sql | 2 ++ install/update.php | 10 +++++++++- mod/directory.php | 8 ++++++-- mod/dirsearch.php | 10 +++++++++- mod/regdir.php | 28 ++++++++++++++++++++++++++-- 8 files changed, 68 insertions(+), 14 deletions(-) diff --git a/boot.php b/boot.php index 4009f63dd..a93f074c4 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ define ( 'RED_PLATFORM', 'redmatrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1137 ); +define ( 'DB_UPDATE_VERSION', 1138 ); /** * Constant with a HTML line break. diff --git a/include/dir_fns.php b/include/dir_fns.php index 686c5140f..37a7c04e7 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -48,7 +48,7 @@ function check_upstream_directory() { if($directory) { $h = parse_url($directory); if($h) { - $x = zot_finger('sys@' . $h['host']); + $x = zot_finger('[system]@' . $h['host']); if($x['success']) { $j = json_decode($x['body'],true); if(array_key_exists('site',$j) && array_key_exists('directory_mode',$j['site'])) { @@ -166,20 +166,23 @@ function sync_directories($dirmode) { // FIXME - what to do if we're in a different realm? if((! $r) && (z_root() != DIRECTORY_FALLBACK_MASTER)) { - $r = array( + $r = array(); + $r[] = array( 'site_url' => DIRECTORY_FALLBACK_MASTER, 'site_flags' => DIRECTORY_MODE_PRIMARY, 'site_update' => NULL_DATE, 'site_directory' => DIRECTORY_FALLBACK_MASTER . '/dirsearch', - 'site_realm' => DIRECTORY_REALM + 'site_realm' => DIRECTORY_REALM, + 'site_valid' => 1 ); - $x = q("insert into site ( site_url, site_flags, site_update, site_directory, site_realm ) + $x = q("insert into site ( site_url, site_flags, site_update, site_directory, site_realm, site_valid ) values ( '%s', %d', '%s', '%s', '%s' ) ", dbesc($r[0]['site_url']), intval($r[0]['site_flags']), dbesc($r[0]['site_update']), dbesc($r[0]['site_directory']), - dbesc($r[0]['site_realm']) + dbesc($r[0]['site_realm']), + intval($r[0]['site_valid']) ); $r = q("select * from site where (site_flags & %d) > 0 and site_url != '%s'", @@ -201,8 +204,11 @@ function sync_directories($dirmode) { // It will take about a month for a new directory to obtain the full current repertoire of channels. // FIXME - go back and pick up earlier ratings if this is a new directory server. These do not get refreshed. + $token = get_config('system','realm_token'); + + $syncdate = (($rr['site_sync'] === NULL_DATE) ? datetime_convert('UTC','UTC','now - 2 days') : $rr['site_sync']); - $x = z_fetch_url($rr['site_directory'] . '?f=&sync=' . urlencode($syncdate)); + $x = z_fetch_url($rr['site_directory'] . '?f=&sync=' . urlencode($syncdate) . (($token) ? '&t=' . $token : '')); if(! $x['success']) continue; diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 247b33814..da78d9c61 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1256,6 +1256,7 @@ CREATE TABLE IF NOT EXISTS `site` ( `site_sellpage` char(255) NOT NULL DEFAULT '', `site_location` char(255) NOT NULL DEFAULT '', `site_realm` char(255) NOT NULL DEFAULT '', + `site_valid` smallint NOT NULL DEFAULT '0', PRIMARY KEY (`site_url`), KEY `site_flags` (`site_flags`), KEY `site_update` (`site_update`), @@ -1264,7 +1265,8 @@ CREATE TABLE IF NOT EXISTS `site` ( KEY `site_access` (`site_access`), KEY `site_sellpage` (`site_sellpage`), KEY `site_pull` (`site_pull`), - KEY `site_realm` (`site_realm`) + KEY `site_realm` (`site_realm`), + KEY `site_valid` (`site_valid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index d852f38e9..1370f3b8a 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -959,6 +959,7 @@ CREATE TABLE "site" ( "site_sellpage" text NOT NULL DEFAULT '', "site_location" text NOT NULL DEFAULT '', "site_realm" text NOT NULL DEFAULT '', + "site_valid" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("site_url") ); create index "site_flags" on site ("site_flags"); @@ -968,6 +969,7 @@ create index "site_register" on site ("site_register"); create index "site_access" on site ("site_access"); create index "site_sellpage" on site ("site_sellpage"); create index "site_realm" on site ("site_realm"); +create index "site_valid" on site ("site_valid"); CREATE TABLE "source" ( "src_id" serial NOT NULL, diff --git a/install/update.php b/install/update.php index 86731e165..ee13bee78 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ false); - $dirmode = intval(get_config('system','directory_mode')); if($dirmode == DIRECTORY_MODE_NORMAL) { @@ -21,6 +20,15 @@ function dirsearch_content(&$a) { json_return_and_die($ret); } + $access_token = $_REQUEST['t']; + + $token = get_config('system','realm_token'); + if($token && $access_token != $token) { + $result['message'] = t('This directory server requires an access token'); + return; + } + + if(argc() > 1 && argv(1) === 'sites') { $ret = list_public_sites(); json_return_and_die($ret); diff --git a/mod/regdir.php b/mod/regdir.php index f24ee3951..f12659dad 100644 --- a/mod/regdir.php +++ b/mod/regdir.php @@ -18,7 +18,8 @@ function regdir_init(&$a) { $result = array('success' => false); $url = $_REQUEST['url']; - + $access_token = $_REQUEST['t']; + $valid = 0; // we probably don't need the realm as we will find out in the probe. // What we may want to die is throw an error if you're trying to register in a different realm @@ -28,6 +29,18 @@ function regdir_init(&$a) { if(! $realm) $realm = DIRECTORY_REALM; + if($realm === DIRECTORY_REALM) { + $valid = 1; + } + else { + $token = get_config('system','realm_token'); + if($token && $access_token != $token) { + $result['message'] = 'This realm requires an access token'; + return; + } + $valid = 1; + } + $dirmode = intval(get_config('system','directory_mode')); if($dirmode == DIRECTORY_MODE_NORMAL) { @@ -56,14 +69,25 @@ function regdir_init(&$a) { } } + q("update site set site_valid = %d where site_url = '%s' limit 1", + intval($valid), + strtolower($url) + ); + json_return_and_die($result); } else { + + // We can put this in the sql without the condition after 31 march 2015 assuming + // most directory servers will have updated by then + // This just makes sure it happens if I forget + + $sql_extra = ((datetime_convert() > datetime_convert('UTC','UTC','2015-03-31')) ? ' and site_valid = 1 ' : '' ); if($dirmode == DIRECTORY_MODE_STANDALONE) { $r = array(array('site_url' => z_root())); } else { - $r = q("select site_url from site where site_flags in ( 1, 2 ) and site_realm = '%s'", + $r = q("select site_url from site where site_flags in ( 1, 2 ) and site_realm = '%s' $sql_extra ", dbesc(get_directory_realm()) ); } -- cgit v1.2.3 From 1434130264836916001fe191dd237e51af5c6e3e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 24 Feb 2015 20:21:21 -0800 Subject: don't send deleted items upstream - only downstream. --- include/notifier.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index fe6ac33c0..c77857087 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -315,9 +315,12 @@ function notifier_run($argv, $argc){ $r = fetch_post_tags($r); $target_item = $r[0]; + $deleted_item = false; - if($target_item['item_restrict'] & ITEM_DELETED) + if($target_item['item_restrict'] & ITEM_DELETED) { logger('notifier: target item ITEM_DELETED', LOGGER_DEBUG); + $deleted_item = true; + } $unforwardable = ITEM_UNPUBLISHED|ITEM_DELAYED_PUBLISH|ITEM_WEBPAGE|ITEM_BUILDBLOCK|ITEM_PDL; if($target_item['item_restrict'] & $unforwardable) { @@ -376,7 +379,7 @@ function notifier_run($argv, $argc){ // tag_deliver'd post which needs to be sent back to the original author - if(($cmd === 'uplink') && ($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post)) { + if(($cmd === 'uplink') && ($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && (! $deleted_item)) { logger('notifier: uplink'); $uplink = true; } @@ -397,7 +400,7 @@ function notifier_run($argv, $argc){ // if our parent is a tag_delivery recipient, uplink to the original author causing // a delivery fork. - if(($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && ($cmd !== 'uplink')) { + if(($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && ($cmd !== 'uplink') && (! $deleted_item)) { logger('notifier: uplinking this item'); proc_run('php','include/notifier.php','uplink',$item_id); } -- cgit v1.2.3 From 2a2cc309ce2f9a991978d7dda841663825a95370 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Feb 2015 01:39:45 -0800 Subject: solve some (hopefully most) missing delivery issues --- include/zot.php | 68 ++++++++++++++++++++++++++++++++++++++++++++++----------- mod/admin.php | 2 +- version.inc | 2 +- 3 files changed, 57 insertions(+), 15 deletions(-) diff --git a/include/zot.php b/include/zot.php index b19b1474a..6068c5e8c 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1295,9 +1295,33 @@ function public_recips($msg) { $check_mentions = true; } else { - $col = 'channel_w_comment'; - $field = PERMS_W_COMMENT; + // This doesn't look like it works so I have to explain what happened. These are my + // notes (below) from when I got this section of code working. + + // ... so public_recips and allowed_public_recips is working so much better + // than before, but was still not quite right. We seem to be getting all the right + // results for top-level posts now, but comments aren't getting through on channels + // for which we've allowed them to send us their stream, but not comment on our posts. + // The reason is we were seeing if they could comment - and we only need to do that if + // we own the post. If they own the post, we only need to check if they can send us their stream. + + // if this is a comment and it wasn't sent by the post owner, check to see who is allowing them to comment. + // We should have one specific recipient and this step shouldn't be needed unless somebody stuffed up + // their software. We may need this step to protect us from bad guys intentionally stuffing up their software. + // If it is sent by the post owner, we don't need to do this. We only need to see who is receiving the + // owner's stream (which was already set above) - as they control the comment permissions, not us. + + // Note that by doing this we introduce another bug because some public forums have channel_w_stream + // permissions set to themselves only. We also need in this function to add these public forums to the + // public recipient list based on if they are tagged or not and have tag permissions. This is complicated + // by the fact that this activity doesn't have the public forum tag. It's the parent activity that + // contains the tag. we'll solve that further below. + + if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; + } } } elseif($msg['message']['type'] === 'mail') { @@ -1359,22 +1383,40 @@ function public_recips($msg) { // look for any public mentions on this site // They will get filtered by tgroup_check() so we don't need to check permissions now - if($check_mentions && $msg['message']['tags']) { - if(is_array($msg['message']['tags']) && $msg['message']['tags']) { - foreach($msg['message']['tags'] as $tag) { - if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { - $address = basename($tag['url']); - if($address) { - $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", - dbesc($address) - ); - if($z) - $r = array_merge($r,$z); + if($check_mentions) { + // It's a top level post. Look at the tags. See if any of them are mentions and are on this hub. + if($msg['message']['tags']) { + if(is_array($msg['message']['tags']) && $msg['message']['tags']) { + foreach($msg['message']['tags'] as $tag) { + if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { + $address = basename($tag['url']); + if($address) { + $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", + dbesc($address) + ); + if($z) + $r = array_merge($r,$z); + } } } } } } + else { + // this is a comment. Find any parent with ITEM_UPLINK set. + if($msg['message']['message_top']) { + $z = q("select owner_xchan as hash from item where parent_mid = '%s' and ( item_flags & %d ) > 0 ", + dbesc($msg['message']['message_top']), + intval(ITEM_UPLINK) + ); + if($z) + $r = array_merge($r,$z); + } + } + + // FIXME + // There are probably a lot of duplicates in $r at this point. We really need to filter those out. + // It's a bit of work since it's a multi-dimensional array logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; diff --git a/mod/admin.php b/mod/admin.php index e1808fd55..ba52033ec 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -546,7 +546,7 @@ function admin_page_dbsync(&$a) { $o .= sprintf( t('Executing %s failed. Check system logs.'), $func); } elseif($retval === UPDATE_SUCCESS) { - $o .= sprintf( t('Update %s was successfully applied.', $func)); + $o .= sprintf( t('Update %s was successfully applied.'), $func); set_config('database',$func, 'success'); } else diff --git a/version.inc b/version.inc index 2a61decf3..710b61eed 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-24.953 +2015-02-25.954 -- cgit v1.2.3 From 1a071ea4f07d4e3a1dd4199f6523d61f8bbc69b8 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Feb 2015 03:14:49 -0800 Subject: call post_local hooks prior to storing a post that is going to be sourced. There are some fields in the actual stored item that may change when we start the second delivery chain so a few plugins may not deal with these items correctly. Since we only source public items these effects will be slight. --- include/items.php | 2 ++ include/zot.php | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/include/items.php b/include/items.php index 18ce149ed..b1e17b171 100755 --- a/include/items.php +++ b/include/items.php @@ -3136,6 +3136,8 @@ function start_delivery_chain($channel,$item,$item_id,$parent) { intval($item_id) ); + + if($r) proc_run('php','include/notifier.php','tgroup',$item_id); else diff --git a/include/zot.php b/include/zot.php index 6068c5e8c..59d158a0b 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1680,6 +1680,13 @@ function process_delivery($sender,$arr,$deliveries,$relay,$public = false,$reque else { $arr['aid'] = $channel['channel_account_id']; $arr['uid'] = $channel['channel_id']; + + // if it's a sourced post, call the post_local hooks as if it were + // posted locally so that crosspost connectors will be triggered. + + if(check_item_source($arr['uid'],$arr)) + call_hooks('post_local',$arr); + $item_result = item_store($arr); $item_id = 0; if($item_result['success']) { -- cgit v1.2.3 From b32841e2ddc53758957ca3afccb3e045fdf2e9fe Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Feb 2015 15:27:33 -0800 Subject: Found the cause of the delete looping, and I can prevent it going forward. The issue remains what to do about comments which are already in the DB and have ITEM_ORIGIN incorrectly set. We can't exactly reset them because the "original" context has been lost. (Sorry but couldn't resist an insider pun that none of you will be able to follow anyway). Read the comments. --- include/items.php | 11 ++++++++++- include/notifier.php | 9 +++++++-- include/zot.php | 49 +++++++++++++++++++++++++++++++++++++------------ 3 files changed, 54 insertions(+), 15 deletions(-) diff --git a/include/items.php b/include/items.php index b1e17b171..b7bdad838 100755 --- a/include/items.php +++ b/include/items.php @@ -3073,7 +3073,16 @@ function start_delivery_chain($channel,$item,$item_id,$parent) { if((! $private) && $new_public_policy) $private = 1; - $flag_bits = $item['item_flags'] | ITEM_WALL|ITEM_ORIGIN; + $flag_bits = $item['item_flags'] | ITEM_WALL; + + // The message didn't necessarily originate on this site, (we'll honour it if it did), + // but the parent post of this thread will be reset as a local post, as it is the top of + // this delivery chain and is coming from this site, regardless of where the original + // originated. + + if(! $parent) + $flag_bits = $flag_bits | ITEM_ORIGIN; + // unset the nocomment bit if it's there. diff --git a/include/notifier.php b/include/notifier.php index c77857087..f64732884 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -366,6 +366,11 @@ function notifier_run($argv, $argc){ $encoded_item = encode_item($target_item); + // Send comments to the owner to re-deliver to everybody in the conversation + // We only do this if the item in question originated on this site. This prevents looping. + // To clarify, a site accepting a new comment is responsible for sending it to the owner for relay. + // Relaying should never be initiated on a post that arrived from elsewhere. + $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN)) ? true : false); $uplink = false; @@ -379,7 +384,7 @@ function notifier_run($argv, $argc){ // tag_deliver'd post which needs to be sent back to the original author - if(($cmd === 'uplink') && ($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && (! $deleted_item)) { + if(($cmd === 'uplink') && ($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post)) { logger('notifier: uplink'); $uplink = true; } @@ -400,7 +405,7 @@ function notifier_run($argv, $argc){ // if our parent is a tag_delivery recipient, uplink to the original author causing // a delivery fork. - if(($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && ($cmd !== 'uplink') && (! $deleted_item)) { + if(($parent_item['item_flags'] & ITEM_UPLINK) && (! $top_level_post) && ($cmd !== 'uplink')) { logger('notifier: uplinking this item'); proc_run('php','include/notifier.php','uplink',$item_id); } diff --git a/include/zot.php b/include/zot.php index 59d158a0b..455702b06 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1297,7 +1297,9 @@ function public_recips($msg) { else { // This doesn't look like it works so I have to explain what happened. These are my - // notes (below) from when I got this section of code working. + // notes (below) from when I got this section of code working. You would think that + // we only have to find those with the requisite stream or comment permissions, + // depending on whether this is a top-level post or a comment - but you would be wrong. // ... so public_recips and allowed_public_recips is working so much better // than before, but was still not quite right. We seem to be getting all the right @@ -1403,9 +1405,12 @@ function public_recips($msg) { } } else { - // this is a comment. Find any parent with ITEM_UPLINK set. + // This is a comment. We need to find any parent with ITEM_UPLINK set. But in fact, let's just return + // everybody that stored a copy of the parent. This way we know we're covered. We'll check the + // comment permissions when we deliver them. + if($msg['message']['message_top']) { - $z = q("select owner_xchan as hash from item where parent_mid = '%s' and ( item_flags & %d ) > 0 ", + $z = q("select owner_xchan as hash from item where parent_mid = '%s' ", dbesc($msg['message']['message_top']), intval(ITEM_UPLINK) ); @@ -1414,10 +1419,22 @@ function public_recips($msg) { } } - // FIXME - // There are probably a lot of duplicates in $r at this point. We really need to filter those out. + // There are probably a lot of duplicates in $r at this point. We need to filter those out. // It's a bit of work since it's a multi-dimensional array + if($r) { + $uniq = array(); + + foreach($r as $rr) { + if(! in_array($rr['hash'],$uniq)) + $uniq[] = $rr['hash']; + } + $r = array(); + foreach($uniq as $rr) { + $r[] = array('hash' => $rr); + } + } + logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; } @@ -1427,9 +1444,16 @@ function public_recips($msg) { function allowed_public_recips($msg) { - logger('allowed_public_recips: ' . print_r($msg,true),LOGGER_DATA); + if(array_key_exists('public_scope',$msg['message'])) + $scope = $msg['message']['public_scope']; + + // Mail won't have a public scope. + // in fact, it's doubtful mail will ever get here since it almost universally + // has a recipient, but in fact we don't require this, so it's technically + // possible to send mail to anybody that's listening. + $recips = public_recips($msg); if(! $recips) @@ -1438,11 +1462,6 @@ function allowed_public_recips($msg) { if($msg['message']['type'] === 'mail') return $recips; - if(array_key_exists('public_scope',$msg['message'])) - $scope = $msg['message']['public_scope']; - - $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); - if($scope === 'public' || $scope === 'network: red' || $scope === 'authenticated') return $recips; @@ -1454,12 +1473,17 @@ function allowed_public_recips($msg) { } if($scope === 'self') { + + $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); + foreach($recips as $r) if($r['hash'] === $hash) return array('hash' => $hash); } - if($scope === 'contacts') { + // note: we shouldn't ever see $scope === 'specific' in this function, but handle it anyway + + if($scope === 'contacts' || $scope === 'any connections' || $scope === 'specific') { $condensed_recips = array(); foreach($recips as $rr) $condensed_recips[] = $rr['hash']; @@ -1477,6 +1501,7 @@ function allowed_public_recips($msg) { return $results; } + return array(); } -- cgit v1.2.3 From b9e485be54317b68c994c5ffa3b2ffe21f767775 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Feb 2015 16:51:39 -0800 Subject: this may actually fix the deliver loop when deleting existing items. It's hackish but I don't see any other way out. --- include/items.php | 15 +++++++++++++++ include/notifier.php | 9 ++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index b7bdad838..d6c6f5043 100755 --- a/include/items.php +++ b/include/items.php @@ -4799,3 +4799,18 @@ function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, } } } + + +/* + * We can't trust ITEM_ORIGIN to tell us if this is a local comment + * which needs to be relayed, because it was misconfigured at one point for several + * months and set for some remote items (in alternate delivery chains). This could + * cause looping, so use this hackish but accurate method. + */ + + +function comment_local_origin($item) { + if(stripos($item['mid'],get_app()->get_hostname()) && ($item['parent'] != $item['id'])) + return true; + return false; +} \ No newline at end of file diff --git a/include/notifier.php b/include/notifier.php index f64732884..22adc78a3 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -371,7 +371,14 @@ function notifier_run($argv, $argc){ // To clarify, a site accepting a new comment is responsible for sending it to the owner for relay. // Relaying should never be initiated on a post that arrived from elsewhere. - $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN)) ? true : false); + // We should normally be able to rely on ITEM_ORIGIN, but start_delivery_chain() incorrectly set this + // flag on comments for an extended period. So we'll also call comment_local_origin() which looks at + // the hostname in the message_id and provides a second (fallback) opinion. + + $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN) && comment_local_origin()) + ? true + : false + ); $uplink = false; -- cgit v1.2.3 From ac3384e661115fac5d771f62fc3eaa1587e5326f Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Feb 2015 17:24:09 -0800 Subject: syntax - missing arg --- include/notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index 22adc78a3..36a52b209 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -375,7 +375,7 @@ function notifier_run($argv, $argc){ // flag on comments for an extended period. So we'll also call comment_local_origin() which looks at // the hostname in the message_id and provides a second (fallback) opinion. - $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN) && comment_local_origin()) + $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN) && comment_local_origin($target_item)) ? true : false ); -- cgit v1.2.3 From b57010e3da6c0521121a622c27013c8af7678132 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 26 Feb 2015 08:20:29 -0800 Subject: more fake null shenanigans --- include/zot.php | 117 +++++++++++--------------------------------------------- 1 file changed, 23 insertions(+), 94 deletions(-) diff --git a/include/zot.php b/include/zot.php index 455702b06..9a5a0898c 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1295,35 +1295,9 @@ function public_recips($msg) { $check_mentions = true; } else { + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; - // This doesn't look like it works so I have to explain what happened. These are my - // notes (below) from when I got this section of code working. You would think that - // we only have to find those with the requisite stream or comment permissions, - // depending on whether this is a top-level post or a comment - but you would be wrong. - - // ... so public_recips and allowed_public_recips is working so much better - // than before, but was still not quite right. We seem to be getting all the right - // results for top-level posts now, but comments aren't getting through on channels - // for which we've allowed them to send us their stream, but not comment on our posts. - // The reason is we were seeing if they could comment - and we only need to do that if - // we own the post. If they own the post, we only need to check if they can send us their stream. - - // if this is a comment and it wasn't sent by the post owner, check to see who is allowing them to comment. - // We should have one specific recipient and this step shouldn't be needed unless somebody stuffed up - // their software. We may need this step to protect us from bad guys intentionally stuffing up their software. - // If it is sent by the post owner, we don't need to do this. We only need to see who is receiving the - // owner's stream (which was already set above) - as they control the comment permissions, not us. - - // Note that by doing this we introduce another bug because some public forums have channel_w_stream - // permissions set to themselves only. We also need in this function to add these public forums to the - // public recipient list based on if they are tagged or not and have tag permissions. This is complicated - // by the fact that this activity doesn't have the public forum tag. It's the parent activity that - // contains the tag. we'll solve that further below. - - if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { - $col = 'channel_w_comment'; - $field = PERMS_W_COMMENT; - } } } elseif($msg['message']['type'] === 'mail') { @@ -1385,55 +1359,22 @@ function public_recips($msg) { // look for any public mentions on this site // They will get filtered by tgroup_check() so we don't need to check permissions now - if($check_mentions) { - // It's a top level post. Look at the tags. See if any of them are mentions and are on this hub. - if($msg['message']['tags']) { - if(is_array($msg['message']['tags']) && $msg['message']['tags']) { - foreach($msg['message']['tags'] as $tag) { - if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { - $address = basename($tag['url']); - if($address) { - $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", - dbesc($address) - ); - if($z) - $r = array_merge($r,$z); - } + if($check_mentions && $msg['message']['tags']) { + if(is_array($msg['message']['tags']) && $msg['message']['tags']) { + foreach($msg['message']['tags'] as $tag) { + if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { + $address = basename($tag['url']); + if($address) { + $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", + dbesc($address) + ); + if($z) + $r = array_merge($r,$z); } } } } } - else { - // This is a comment. We need to find any parent with ITEM_UPLINK set. But in fact, let's just return - // everybody that stored a copy of the parent. This way we know we're covered. We'll check the - // comment permissions when we deliver them. - - if($msg['message']['message_top']) { - $z = q("select owner_xchan as hash from item where parent_mid = '%s' ", - dbesc($msg['message']['message_top']), - intval(ITEM_UPLINK) - ); - if($z) - $r = array_merge($r,$z); - } - } - - // There are probably a lot of duplicates in $r at this point. We need to filter those out. - // It's a bit of work since it's a multi-dimensional array - - if($r) { - $uniq = array(); - - foreach($r as $rr) { - if(! in_array($rr['hash'],$uniq)) - $uniq[] = $rr['hash']; - } - $r = array(); - foreach($uniq as $rr) { - $r[] = array('hash' => $rr); - } - } logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; @@ -1444,15 +1385,8 @@ function public_recips($msg) { function allowed_public_recips($msg) { - logger('allowed_public_recips: ' . print_r($msg,true),LOGGER_DATA); - - if(array_key_exists('public_scope',$msg['message'])) - $scope = $msg['message']['public_scope']; - // Mail won't have a public scope. - // in fact, it's doubtful mail will ever get here since it almost universally - // has a recipient, but in fact we don't require this, so it's technically - // possible to send mail to anybody that's listening. + logger('allowed_public_recips: ' . print_r($msg,true),LOGGER_DATA); $recips = public_recips($msg); @@ -1462,6 +1396,11 @@ function allowed_public_recips($msg) { if($msg['message']['type'] === 'mail') return $recips; + if(array_key_exists('public_scope',$msg['message'])) + $scope = $msg['message']['public_scope']; + + $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); + if($scope === 'public' || $scope === 'network: red' || $scope === 'authenticated') return $recips; @@ -1473,17 +1412,12 @@ function allowed_public_recips($msg) { } if($scope === 'self') { - - $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); - foreach($recips as $r) if($r['hash'] === $hash) return array('hash' => $hash); } - // note: we shouldn't ever see $scope === 'specific' in this function, but handle it anyway - - if($scope === 'contacts' || $scope === 'any connections' || $scope === 'specific') { + if($scope === 'contacts') { $condensed_recips = array(); foreach($recips as $rr) $condensed_recips[] = $rr['hash']; @@ -1501,7 +1435,6 @@ function allowed_public_recips($msg) { return $results; } - return array(); } @@ -1705,13 +1638,6 @@ function process_delivery($sender,$arr,$deliveries,$relay,$public = false,$reque else { $arr['aid'] = $channel['channel_account_id']; $arr['uid'] = $channel['channel_id']; - - // if it's a sourced post, call the post_local hooks as if it were - // posted locally so that crosspost connectors will be triggered. - - if(check_item_source($arr['uid'],$arr)) - call_hooks('post_local',$arr); - $item_result = item_store($arr); $item_id = 0; if($item_result['success']) { @@ -2880,6 +2806,9 @@ function process_channel_sync_delivery($sender,$arr,$deliveries) { if(count($clean)) { foreach($clean as $k => $v) { + if($k == 'abook_dob') + $v = dbescdate($v); + $r = dbq("UPDATE abook set " . dbesc($k) . " = '" . dbesc($v) . "' where abook_xchan = '" . dbesc($clean['abook_xchan']) . "' and abook_channel = " . intval($channel['channel_id'])); } -- cgit v1.2.3 From f55e2101209c34faf1cc6d4d568c8b55af4a1ecb Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 26 Feb 2015 08:22:15 -0800 Subject: Revert "more fake null shenanigans" This reverts commit b57010e3da6c0521121a622c27013c8af7678132. --- include/zot.php | 117 +++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 94 insertions(+), 23 deletions(-) diff --git a/include/zot.php b/include/zot.php index 9a5a0898c..455702b06 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1295,9 +1295,35 @@ function public_recips($msg) { $check_mentions = true; } else { - $col = 'channel_w_comment'; - $field = PERMS_W_COMMENT; + // This doesn't look like it works so I have to explain what happened. These are my + // notes (below) from when I got this section of code working. You would think that + // we only have to find those with the requisite stream or comment permissions, + // depending on whether this is a top-level post or a comment - but you would be wrong. + + // ... so public_recips and allowed_public_recips is working so much better + // than before, but was still not quite right. We seem to be getting all the right + // results for top-level posts now, but comments aren't getting through on channels + // for which we've allowed them to send us their stream, but not comment on our posts. + // The reason is we were seeing if they could comment - and we only need to do that if + // we own the post. If they own the post, we only need to check if they can send us their stream. + + // if this is a comment and it wasn't sent by the post owner, check to see who is allowing them to comment. + // We should have one specific recipient and this step shouldn't be needed unless somebody stuffed up + // their software. We may need this step to protect us from bad guys intentionally stuffing up their software. + // If it is sent by the post owner, we don't need to do this. We only need to see who is receiving the + // owner's stream (which was already set above) - as they control the comment permissions, not us. + + // Note that by doing this we introduce another bug because some public forums have channel_w_stream + // permissions set to themselves only. We also need in this function to add these public forums to the + // public recipient list based on if they are tagged or not and have tag permissions. This is complicated + // by the fact that this activity doesn't have the public forum tag. It's the parent activity that + // contains the tag. we'll solve that further below. + + if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; + } } } elseif($msg['message']['type'] === 'mail') { @@ -1359,22 +1385,55 @@ function public_recips($msg) { // look for any public mentions on this site // They will get filtered by tgroup_check() so we don't need to check permissions now - if($check_mentions && $msg['message']['tags']) { - if(is_array($msg['message']['tags']) && $msg['message']['tags']) { - foreach($msg['message']['tags'] as $tag) { - if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { - $address = basename($tag['url']); - if($address) { - $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", - dbesc($address) - ); - if($z) - $r = array_merge($r,$z); + if($check_mentions) { + // It's a top level post. Look at the tags. See if any of them are mentions and are on this hub. + if($msg['message']['tags']) { + if(is_array($msg['message']['tags']) && $msg['message']['tags']) { + foreach($msg['message']['tags'] as $tag) { + if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { + $address = basename($tag['url']); + if($address) { + $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", + dbesc($address) + ); + if($z) + $r = array_merge($r,$z); + } } } } } } + else { + // This is a comment. We need to find any parent with ITEM_UPLINK set. But in fact, let's just return + // everybody that stored a copy of the parent. This way we know we're covered. We'll check the + // comment permissions when we deliver them. + + if($msg['message']['message_top']) { + $z = q("select owner_xchan as hash from item where parent_mid = '%s' ", + dbesc($msg['message']['message_top']), + intval(ITEM_UPLINK) + ); + if($z) + $r = array_merge($r,$z); + } + } + + // There are probably a lot of duplicates in $r at this point. We need to filter those out. + // It's a bit of work since it's a multi-dimensional array + + if($r) { + $uniq = array(); + + foreach($r as $rr) { + if(! in_array($rr['hash'],$uniq)) + $uniq[] = $rr['hash']; + } + $r = array(); + foreach($uniq as $rr) { + $r[] = array('hash' => $rr); + } + } logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; @@ -1385,9 +1444,16 @@ function public_recips($msg) { function allowed_public_recips($msg) { - logger('allowed_public_recips: ' . print_r($msg,true),LOGGER_DATA); + if(array_key_exists('public_scope',$msg['message'])) + $scope = $msg['message']['public_scope']; + + // Mail won't have a public scope. + // in fact, it's doubtful mail will ever get here since it almost universally + // has a recipient, but in fact we don't require this, so it's technically + // possible to send mail to anybody that's listening. + $recips = public_recips($msg); if(! $recips) @@ -1396,11 +1462,6 @@ function allowed_public_recips($msg) { if($msg['message']['type'] === 'mail') return $recips; - if(array_key_exists('public_scope',$msg['message'])) - $scope = $msg['message']['public_scope']; - - $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); - if($scope === 'public' || $scope === 'network: red' || $scope === 'authenticated') return $recips; @@ -1412,12 +1473,17 @@ function allowed_public_recips($msg) { } if($scope === 'self') { + + $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); + foreach($recips as $r) if($r['hash'] === $hash) return array('hash' => $hash); } - if($scope === 'contacts') { + // note: we shouldn't ever see $scope === 'specific' in this function, but handle it anyway + + if($scope === 'contacts' || $scope === 'any connections' || $scope === 'specific') { $condensed_recips = array(); foreach($recips as $rr) $condensed_recips[] = $rr['hash']; @@ -1435,6 +1501,7 @@ function allowed_public_recips($msg) { return $results; } + return array(); } @@ -1638,6 +1705,13 @@ function process_delivery($sender,$arr,$deliveries,$relay,$public = false,$reque else { $arr['aid'] = $channel['channel_account_id']; $arr['uid'] = $channel['channel_id']; + + // if it's a sourced post, call the post_local hooks as if it were + // posted locally so that crosspost connectors will be triggered. + + if(check_item_source($arr['uid'],$arr)) + call_hooks('post_local',$arr); + $item_result = item_store($arr); $item_id = 0; if($item_result['success']) { @@ -2806,9 +2880,6 @@ function process_channel_sync_delivery($sender,$arr,$deliveries) { if(count($clean)) { foreach($clean as $k => $v) { - if($k == 'abook_dob') - $v = dbescdate($v); - $r = dbq("UPDATE abook set " . dbesc($k) . " = '" . dbesc($v) . "' where abook_xchan = '" . dbesc($clean['abook_xchan']) . "' and abook_channel = " . intval($channel['channel_id'])); } -- cgit v1.2.3 From 82bb21695259afd234031d7f3b41e2478cfc480c Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 26 Feb 2015 08:23:02 -0800 Subject: more fake null shenanigans --- include/zot.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/zot.php b/include/zot.php index 455702b06..2a0fcd118 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2880,6 +2880,9 @@ function process_channel_sync_delivery($sender,$arr,$deliveries) { if(count($clean)) { foreach($clean as $k => $v) { + if($k == 'abook_dob') + $v = dbescdate($v); + $r = dbq("UPDATE abook set " . dbesc($k) . " = '" . dbesc($v) . "' where abook_xchan = '" . dbesc($clean['abook_xchan']) . "' and abook_channel = " . intval($channel['channel_id'])); } -- cgit v1.2.3 From 09f80270defdd2dfbf5cf4cc9da0cae686874aba Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 26 Feb 2015 14:20:43 -0800 Subject: loop breaker --- include/zot.php | 16 ++++++++++++++++ version.inc | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index 455702b06..e290697b6 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1856,7 +1856,23 @@ function delete_imported_item($sender,$item,$uid,$relay) { logger('delete_imported_item: item was already deleted'); if(! $relay) return false; + + // This is a bit hackish, but may have to suffice until the notification/delivery loop is optimised + // a bit further. We're going to strip the ITEM_ORIGIN on this item if it's a comment, because + // it was already deleted, and we're already relaying, and this ensures that no other process or + // code path downstream can relay it again (causing a loop). Since it's already gone it's not coming + // back, and we aren't going to (or shouldn't at any rate) delete it again in the future - so losing + // this information from the metadata should have no other discernible impact. + + if(($r[0]['id'] != $r[0]['parent']) && ($r[0]['item_flags'] & ITEM_ORIGIN)) { + $x = q("update item set item_flags = %d where id = %d and uid = %d", + intval($r[0]['item_flags'] ^ ITEM_ORIGIN), + intval($r[0]['id']), + intval($r[0]['uid']) + ); + } } + require_once('include/items.php'); diff --git a/version.inc b/version.inc index 710b61eed..1774fb864 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-25.954 +2015-02-26.955 -- cgit v1.2.3 From 32e4d4633ad78f322364f9558c017582be27a76c Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Thu, 26 Feb 2015 23:50:46 +0100 Subject: fix issues in schema_postgres.sql - change PRIMARY_KEY to PRIMARY KEY - replace smallint(1) with smallint --- install/schema_postgres.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 1370f3b8a..44b8f16a4 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -528,7 +528,7 @@ CREATE TABLE "item" ( "item_restrict" bigint NOT NULL DEFAULT '0', "item_flags" bigint NOT NULL DEFAULT '0', "item_private" numeric(4) NOT NULL DEFAULT '0', - "item_unseen" smallint(1) NOT NULL DEFAULT '0', + "item_unseen" smallint NOT NULL DEFAULT '0', "item_search_vector" tsvector, PRIMARY KEY ("id") ); @@ -1163,7 +1163,7 @@ CREATE TABLE "xperm" ( "xp_client" varchar( 20 ) NOT NULL DEFAULT '', "xp_channel" bigint NOT NULL DEFAULT '0', "xp_perm" varchar( 64 ) NOT NULL DEFAULT '', - PRIMARY_KEY ("xp_id") + PRIMARY KEY ("xp_id") ); create index "xp_client" on xperm ("xp_client"); create index "xp_channel" on xperm ("xp_channel"); -- cgit v1.2.3 From dce0bb0ef806d88a855c362f359b7b1a350deff2 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 26 Feb 2015 16:41:38 -0800 Subject: finish converting "delete" to trash icons for consistency. The 'x' was left in a couple of places like the group list widget and saved search term widget and ignoring friend suggestions where it was more appropriate to leave it. --- doc/to_do_code.bb | 2 +- install/update.php | 8 ++++++-- view/js/main.js | 2 +- view/tpl/admin_channels.tpl | 2 +- view/tpl/admin_users.tpl | 2 +- view/tpl/app.tpl | 2 +- view/tpl/item_filer.tpl | 2 +- view/tpl/locmanage.tpl | 2 +- view/tpl/mail_conv.tpl | 2 +- view/tpl/mail_list.tpl | 2 +- view/tpl/menulist.tpl | 2 +- view/tpl/mitemlist.tpl | 2 +- view/tpl/photo_drop.tpl | 2 +- view/tpl/settings_oauth.tpl | 2 +- view/tpl/show_thing.tpl | 2 +- 15 files changed, 20 insertions(+), 16 deletions(-) diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb index 5a5ae76fd..1fa2b17d4 100644 --- a/doc/to_do_code.bb +++ b/doc/to_do_code.bb @@ -5,6 +5,7 @@ We need much more than this, but here are areas where developers can help. Pleas [li]Documentation - see Red Documentation Project To-Do List[/li] [li]Include TOS link in registration/verification email[/li] [li]Create bug tracker module[/li] +[li]Infinite scroll improvements (i.e. embedded page links) see http://scrollsample.appspot.com/items [li]Finish the anti-spam bayesian engine[/li] [li]implement an email permission denied bounce message from the sys channel[/li] [li]finish Wordpress connector - import wordpress comments back to redmatrix[/li] @@ -23,7 +24,6 @@ We need much more than this, but here are areas where developers can help. Pleas [li]service classes - provide a pluggable subscription payment gateway for premium accounts[/li] [li]service classes - account overview page showing resources consumed by channel. With special consideration this page can also be accessed at a meta level by the site admin to drill down on problematic accounts/channels.[/li] [li]Events module - fix permissions on events, and provide JS translation support for the calendar overview; integrate with calDAV[/li] -[li]Events module - event followups[/li] [li]Uploads - integrate #^[url=https://github.com/blueimp/jQuery-File-Upload]https://github.com/blueimp/jQuery-File-Upload[/url][/li] [li]Import/export - include events, things, etc.[/li] [li]Import channel from Diaspora/Friendica[/li] diff --git a/install/update.php b/install/update.php index ee13bee78..70ffb1ebf 100644 --- a/install/update.php +++ b/install/update.php @@ -26,10 +26,14 @@ define( 'UPDATE_VERSION' , 1138 ); * The DB_UPDATE_VERSION will always be one greater than the last numbered script in this file. * * If you change the database schema, the following are required: - * 1. Update the file database.sql to match the new schema. + * 1. Update the files schema_mysql.sql and schema_postgres.sql to match the new schema. + * Be sure to read doc/sql_conventions.bb ($yoururl/help/sql_conventions) use only standard + * SQL data types where possible to keep differences in the files to a minimum * 2. Update this file by adding a new function at the end with the number of the current DB_UPDATE_VERSION. * This function should modify the current database schema and perform any other steps necessary - * to ensure that upgrade is silent and free from requiring interaction. + * to ensure that upgrade is silent and free from requiring interaction. Review to ensure that it + * will run correctly on both postgres and MySQL/Mariadb. It is very difficult and messy to fix DB update + * errors. Once pushed, it requires a new update which undoes any damage and performs the corrected updated. * 3. Increment the DB_UPDATE_VERSION in boot.php *AND* the UPDATE_VERSION in this file to match it * 4. TEST the upgrade prior to checkin and filing a pull request. * diff --git a/view/js/main.js b/view/js/main.js index a10e91449..ee94d05e5 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1166,7 +1166,7 @@ $(window).scroll(function () { } if($(window).scrollTop() + $(window).height() > $(document).height() - 100) { -// if($(window).scrollTop() > ($(document).height() - $(window).height() * 1.5 )) { +// if($(window).scrollTop() > $(document).height() - ($(window).height() * 1.5 )) { if((pageHasMoreContent) && (! loadingPage)) { $('#more').hide(); diff --git a/view/tpl/admin_channels.tpl b/view/tpl/admin_channels.tpl index 817eb939a..f4612c094 100755 --- a/view/tpl/admin_channels.tpl +++ b/view/tpl/admin_channels.tpl @@ -35,7 +35,7 @@ - + {{/foreach}} diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index 5bf64b4df..7e0b828d9 100755 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -76,7 +76,7 @@ - + {{/foreach}} diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 9f0b1746b..cebc17d45 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -11,7 +11,7 @@ {{if $install}}{{/if}} {{if $edit}}{{/if}} -{{if $delete}}{{/if}} +{{if $delete}}{{/if}} {{/if}} {{/if}} diff --git a/view/tpl/item_filer.tpl b/view/tpl/item_filer.tpl index 0e68a172a..07163d59a 100644 --- a/view/tpl/item_filer.tpl +++ b/view/tpl/item_filer.tpl @@ -1,7 +1,7 @@ {{if $categories}}
{{foreach $categories as $cat}} - {{$cat.term}}  + {{$cat.term}}  {{/foreach}}
{{/if}} diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index d1bb00543..40f91a8bb 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -19,7 +19,7 @@ function drophub(id) { {{if $hub.primary}}{{else}}{{/if}} -{{if $hub.primary}}{{else}}{{if ! $hub.deleted}}{{/if}}{{/if}} +{{if $hub.primary}}{{else}}{{if ! $hub.deleted}}{{/if}}{{/if}} {{/foreach}} diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index f794ffc78..a75939617 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -8,7 +8,7 @@
{{$mail.date}}
{{$mail.subject}}
{{$mail.body}}
-
+
{{if $mail.can_recall}}
{{/if}} diff --git a/view/tpl/mail_list.tpl b/view/tpl/mail_list.tpl index 6b06f6127..8643f27b9 100755 --- a/view/tpl/mail_list.tpl +++ b/view/tpl/mail_list.tpl @@ -3,6 +3,6 @@ {{$from_name}} {{$subject}} {{$date}} - +
 
diff --git a/view/tpl/menulist.tpl b/view/tpl/menulist.tpl index bb862fef0..35ad91937 100644 --- a/view/tpl/menulist.tpl +++ b/view/tpl/menulist.tpl @@ -9,7 +9,7 @@ {{if $menus }} {{/if}} diff --git a/view/tpl/mitemlist.tpl b/view/tpl/mitemlist.tpl index 2c1ded6cc..dc5b0e9f9 100644 --- a/view/tpl/mitemlist.tpl +++ b/view/tpl/mitemlist.tpl @@ -10,7 +10,7 @@ {{if $mlist }} {{/if}} diff --git a/view/tpl/photo_drop.tpl b/view/tpl/photo_drop.tpl index cb7ae17ba..31b654374 100755 --- a/view/tpl/photo_drop.tpl +++ b/view/tpl/photo_drop.tpl @@ -1,4 +1,4 @@
- +
diff --git a/view/tpl/settings_oauth.tpl b/view/tpl/settings_oauth.tpl index f7b4a0b1a..20e8f458f 100755 --- a/view/tpl/settings_oauth.tpl +++ b/view/tpl/settings_oauth.tpl @@ -24,7 +24,7 @@ {{/if}} {{if $app.my}} - + {{/if}} {{/foreach}} diff --git a/view/tpl/show_thing.tpl b/view/tpl/show_thing.tpl index c48912918..9aacc8958 100644 --- a/view/tpl/show_thing.tpl +++ b/view/tpl/show_thing.tpl @@ -7,7 +7,7 @@ {{if $canedit}} {{/if}} -- cgit v1.2.3 From 5d57df2694b6515b43c4a641bf47b8c5f112d4f7 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 26 Feb 2015 17:18:09 -0800 Subject: per Randal overheard on a foreign network - tab in post/comment edit window goes to submit instead of the next button. --- view/js/main.js | 6 ++++++ view/tpl/comment_item.tpl | 2 +- view/tpl/jot.tpl | 6 +++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index ee94d05e5..8ee676f0d 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -9,6 +9,10 @@ if(obj.value == aStr['comment']) { obj.value = ''; $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty"); + // Choose an arbitrary tab index that's greater than what we're using in jot (3 of them) + // The submit button gets tabindex + 1 + $("#comment-edit-text-" + id).attr('tabindex','9'); + $("#comment-edit-submit-" + id).attr('tabindex','10'); $("#comment-tools-" + id).show(); } }; @@ -25,6 +29,8 @@ if(obj.value == '') { obj.value = aStr['comment']; $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty"); + $("#comment-edit-text-" + id).removeAttr('tabindex'); + $("#comment-edit-submit-" + id).removeAttr('tabindex'); $("#comment-tools-" + id).hide(); } }; diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index ab67bc196..cdcf35131 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -60,7 +60,7 @@
{{if $preview}} - {{/if}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index f32dba095..4fe48d4e5 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -21,7 +21,7 @@
{{/if}} {{if $catsenabled}} {{/if}}
- +
@@ -99,7 +99,7 @@ {{/if}} - +
-- cgit v1.2.3 From a00c072f02efb741629b4b3e5b0eac1b3d6a95d4 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 26 Feb 2015 20:00:47 -0800 Subject: high level queue inspector - needs a lot more, like the ability to dump certain destinations and indicating known dead sites, but this is a start --- doc/to_do_code.bb | 1 + mod/admin.php | 26 +++++++++++++++++++++++++- view/tpl/admin_aside.tpl | 1 + 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb index 1fa2b17d4..616b20cad 100644 --- a/doc/to_do_code.bb +++ b/doc/to_do_code.bb @@ -17,6 +17,7 @@ We need much more than this, but here are areas where developers can help. Pleas [li]implement openid server interface[/li] [li]Write more webpage layouts[/li] [li]Write more webpage widgets[/li] +[li]restricted access OAuth clients[/li] [li](Advanced) create a UI for building Comanche pages[/li] [li]Extend WebDAV to provide desktop access to photo albums[/li] [li]External post connectors - create standard interface[/li] diff --git a/mod/admin.php b/mod/admin.php index ba52033ec..a54a4b0b8 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -99,7 +99,8 @@ function admin_content(&$a) { 'channels' => Array($a->get_baseurl(true)."/admin/channels/", t("Channels") , "channels"), 'plugins' => Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"), 'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"), - 'hubloc' => Array($a->get_baseurl(true)."/admin/hubloc/", t("Server") , "server"), + 'queue' => array(z_root() . '/admin/queue', t('Inspect queue'), 'queue'), +// 'hubloc' => Array($a->get_baseurl(true)."/admin/hubloc/", t("Server") , "server"), 'profs' => array(z_root() . '/admin/profs', t('Profile Config'), 'profs'), 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync") ); @@ -164,6 +165,9 @@ function admin_content(&$a) { case 'profs': $o = admin_page_profs($a); break; + case 'queue': + $o = admin_page_queue($a); + break; default: notice( t("Item not found.") ); } @@ -583,6 +587,26 @@ function admin_page_dbsync(&$a) { } +function admin_page_queue($a) { + $o = ''; + + $r = q("select count(outq_posturl) as total, outq_posturl from outq + where outq_delivered = 0 group by outq_posturl order by total desc"); + + $o .= '

' . t('Queue Statistics') . '

'; + + if($r) { + $o .= ''; + foreach($r as $rr) { + $o .= ''; + } + $o .= '
' . t('Total Entries') . '  ' . t('Destination URL') . '
' . $rr['total'] . '' . $rr['outq_posturl'] . '
'; + } + + return $o; + +} + /** * Users admin page * diff --git a/view/tpl/admin_aside.tpl b/view/tpl/admin_aside.tpl index 013b72d50..58d645dbf 100755 --- a/view/tpl/admin_aside.tpl +++ b/view/tpl/admin_aside.tpl @@ -16,6 +16,7 @@
  • {{$admin.site.1}}
  • {{$admin.users.1}}
  • {{$admin.channels.1}}
  • +
  • {{$admin.queue.1}}
  • {{$admin.plugins.1}}
  • {{$admin.themes.1}}
  • {{$admin.dbsync.1}}
  • -- cgit v1.2.3 From 05dff886c8e1d9da1f34f57c82d073714188f9d6 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 26 Feb 2015 20:07:08 -0800 Subject: don't report already delivered queue items in admin queue summary --- mod/admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/admin.php b/mod/admin.php index a54a4b0b8..98b2f4266 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -202,7 +202,7 @@ function admin_page_summary(&$a) { $r = q("SELECT COUNT(id) as `count` FROM `register`"); $pending = $r[0]['count']; - $r = q("select count(*) as total from outq"); + $r = q("select count(*) as total from outq where outq_delivered = 0"); $queue = (($r) ? $r[0]['total'] : 0); // We can do better, but this is a quick queue status -- cgit v1.2.3 From 08a4c714dbb5da597aa45fda8ad07c128f8eee67 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 27 Feb 2015 11:02:07 +0100 Subject: update to German strings --- view/de/messages.po | 872 ++++++++++++++++++++++++++++------------------------ view/de/strings.php | 86 +++--- 2 files changed, 514 insertions(+), 444 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index ac5e82fbe..ef27fd162 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-13 00:04-0800\n" -"PO-Revision-Date: 2015-02-19 11:35+0000\n" +"POT-Creation-Date: 2015-02-20 00:04-0800\n" +"PO-Revision-Date: 2015-02-27 09:55+0000\n" "Last-Translator: zottel \n" "Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,7 @@ msgstr "Profilfotos" #: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 #: ../../mod/profile_photo.php:277 ../../mod/block.php:22 #: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:554 ../../mod/group.php:9 ../../mod/setup.php:207 +#: ../../mod/settings.php:560 ../../mod/group.php:9 ../../mod/setup.php:207 #: ../../mod/common.php:35 ../../mod/suggest.php:26 #: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 #: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 @@ -69,7 +69,7 @@ msgstr "Profilfotos" #: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 #: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:101 +#: ../../mod/editwebpage.php:118 ../../mod/rate.php:110 #: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 #: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 #: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 @@ -132,7 +132,7 @@ msgstr "Neue Seite" #: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 #: ../../include/apps.php:254 ../../include/menu.php:42 #: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:639 +#: ../../mod/editpost.php:113 ../../mod/settings.php:645 #: ../../mod/connections.php:382 ../../mod/connections.php:395 #: ../../mod/connections.php:414 ../../mod/thing.php:233 #: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 @@ -145,8 +145,8 @@ msgstr "Bearbeiten" msgid "View" msgstr "Ansicht" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:681 -#: ../../include/conversation.php:1152 ../../mod/events.php:620 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 +#: ../../include/conversation.php:1152 ../../mod/events.php:651 #: ../../mod/webpages.php:166 ../../mod/photos.php:964 msgid "Preview" msgstr "Vorschau" @@ -171,7 +171,7 @@ msgstr "Erstellt" msgid "Edited" msgstr "Geändert" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 +#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 #: ../../include/contact_widgets.php:92 msgid "Categories" msgstr "Kategorien" @@ -284,9 +284,9 @@ msgstr "Beste Freunde" #: ../../include/widgets.php:428 ../../include/identity.php:387 #: ../../include/identity.php:388 ../../include/identity.php:395 #: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:329 ../../mod/settings.php:333 -#: ../../mod/settings.php:334 ../../mod/settings.php:337 -#: ../../mod/settings.php:348 +#: ../../mod/settings.php:335 ../../mod/settings.php:339 +#: ../../mod/settings.php:340 ../../mod/settings.php:343 +#: ../../mod/settings.php:354 msgid "Friends" msgstr "Freunde" @@ -389,6 +389,10 @@ msgstr "Bewerte mich" msgid "View Ratings" msgstr "Bewertungen ansehen" +#: ../../include/widgets.php:971 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "Red Matrix Benachrichtigung" @@ -438,7 +442,7 @@ msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu #: ../../include/enotify.php:144 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]ein %4$s[/zrl] kommentiert" +msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" #: ../../include/enotify.php:152 #, php-format @@ -859,7 +863,7 @@ msgstr "aus der Datei entfernen" msgid "Click to open/close" msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/text.php:1540 ../../mod/events.php:437 +#: ../../include/text.php:1540 ../../mod/events.php:444 msgid "Link to Source" msgstr "Link zur Quelle" @@ -879,7 +883,7 @@ msgstr "Content-Typ der Seite:" msgid "Select an alternate language" msgstr "Wähle eine alternative Sprache" -#: ../../include/text.php:1753 ../../include/diaspora.php:1994 +#: ../../include/text.php:1753 ../../include/diaspora.php:1909 #: ../../include/conversation.php:120 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 msgid "photo" @@ -890,7 +894,7 @@ msgstr "Foto" msgid "event" msgstr "Termin" -#: ../../include/text.php:1759 ../../include/diaspora.php:1994 +#: ../../include/text.php:1759 ../../include/diaspora.php:1909 #: ../../include/conversation.php:148 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 msgid "status" @@ -929,16 +933,74 @@ msgstr "Seiten" msgid "Collection" msgstr "Ordner" +#: ../../include/attach.php:242 ../../include/attach.php:296 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:352 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:369 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:387 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:398 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:410 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:493 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:505 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:547 ../../include/attach.php:564 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:611 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:627 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:651 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:702 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:706 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:671 -#: ../../mod/photos.php:962 ../../mod/photos.php:1072 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:962 ../../mod/photos.php:1080 msgid "Comment" msgstr "Kommentar" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:388 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 msgid "[+] show all" msgstr "[+] Alle anzeigen" @@ -988,9 +1050,9 @@ msgstr "Nichts Neues hier" #: ../../include/js_strings.php:19 msgid "Rate This Channel (this is public)" -msgstr "Bewerte diesen Kanal (öffentlich sichtbar)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:144 +#: ../../include/js_strings.php:20 ../../mod/rate.php:156 msgid "Rating" msgstr "Bewertung" @@ -998,15 +1060,15 @@ msgstr "Bewertung" msgid "Describe (optional)" msgstr "Beschreibung (optional)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:672 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 #: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:623 ../../mod/settings.php:577 -#: ../../mod/settings.php:689 ../../mod/settings.php:718 -#: ../../mod/settings.php:741 ../../mod/settings.php:823 -#: ../../mod/settings.php:1019 ../../mod/group.php:81 ../../mod/setup.php:313 +#: ../../mod/events.php:654 ../../mod/settings.php:583 +#: ../../mod/settings.php:708 ../../mod/settings.php:737 +#: ../../mod/settings.php:760 ../../mod/settings.php:842 +#: ../../mod/settings.php:1038 ../../mod/group.php:81 ../../mod/setup.php:313 #: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 #: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:153 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 #: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 #: ../../mod/sources.php:138 ../../mod/filestorage.php:155 #: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 @@ -1014,7 +1076,7 @@ msgstr "Beschreibung (optional)" #: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 #: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 #: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1073 ../../mod/poll.php:68 +#: ../../mod/photos.php:963 ../../mod/photos.php:1081 ../../mod/poll.php:68 #: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" @@ -1121,7 +1183,7 @@ msgstr "Postausgang für überwachte Kalender" #: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 #: ../../include/apps.php:387 ../../include/conversation.php:1019 #: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1098 +#: ../../mod/photos.php:1113 msgid "Unknown" msgstr "Unbekannt" @@ -1157,12 +1219,12 @@ msgstr "Erstelle" #: ../../include/RedDAV/RedBrowser.php:255 #: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1212 +#: ../../mod/photos.php:706 ../../mod/photos.php:1228 msgid "Upload" msgstr "Hochladen" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:871 +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 +#: ../../mod/settings.php:611 ../../mod/admin.php:871 #: ../../mod/sharedwithme.php:100 msgid "Name" msgstr "Name" @@ -1181,9 +1243,9 @@ msgstr "Zuletzt geändert" #: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 #: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:640 +#: ../../mod/connedit.php:533 ../../mod/settings.php:646 #: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1036 +#: ../../mod/admin.php:866 ../../mod/photos.php:1044 msgid "Delete" msgstr "Löschen" @@ -1200,113 +1262,55 @@ msgstr "Datei hochladen" msgid "%1$s's bookmarks" msgstr "%1$ss Lesezeichen" -#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 +#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 msgid "Tags" msgstr "Schlagwörter" -#: ../../include/taxonomy.php:269 +#: ../../include/taxonomy.php:274 msgid "Keywords" msgstr "Schlüsselwörter" -#: ../../include/taxonomy.php:294 +#: ../../include/taxonomy.php:299 msgid "have" msgstr "habe" -#: ../../include/taxonomy.php:294 +#: ../../include/taxonomy.php:299 msgid "has" msgstr "hat" -#: ../../include/taxonomy.php:295 +#: ../../include/taxonomy.php:300 msgid "want" msgstr "will" -#: ../../include/taxonomy.php:295 +#: ../../include/taxonomy.php:300 msgid "wants" msgstr "will" -#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:258 +#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 msgid "like" msgstr "mag" -#: ../../include/taxonomy.php:296 +#: ../../include/taxonomy.php:301 msgid "likes" msgstr "gefällt" -#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:259 +#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 msgid "dislike" msgstr "verurteile" -#: ../../include/taxonomy.php:297 +#: ../../include/taxonomy.php:302 msgid "dislikes" msgstr "missfällt" -#: ../../include/taxonomy.php:380 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:173 ../../include/ItemObject.php:183 -#: ../../include/conversation.php:1692 ../../mod/photos.php:993 +#: ../../include/taxonomy.php:385 ../../include/identity.php:1155 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 +#: ../../mod/photos.php:1001 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "Gefällt mir" msgstr[1] "Gefällt mir" -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - #: ../../include/features.php:38 msgid "General Features" msgstr "Allgemeine Funktionen" @@ -1415,7 +1419,7 @@ msgstr "Große Fotos" msgid "" "Include large (640px) photo thumbnails in posts. If not enabled, use small " "(320px) photo thumbnails" -msgstr "Zeige große (640px) Vorschaubilder in Beiträgen. Wenn nicht aktiviert, nutze kleine (320px) Vorschaubilder." +msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." #: ../../include/features.php:61 msgid "Automatically import channel content from other channels or feeds" @@ -1436,7 +1440,7 @@ msgstr "Umfragewerkzeuge aktivieren" #: ../../include/features.php:63 msgid "Provide a class of post which others can vote on" -msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden)" +msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" #: ../../include/features.php:64 msgid "Flag Adult Photos" @@ -1599,7 +1603,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1555 +#: ../../mod/admin.php:740 ../../boot.php:1554 msgid "Email" msgstr "E-Mail" @@ -1746,7 +1750,7 @@ msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" #: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:614 +#: ../../include/event.php:40 ../../mod/events.php:645 #: ../../mod/directory.php:204 msgid "Location:" msgstr "Ort:" @@ -1770,7 +1774,7 @@ msgstr "gerade online" #: ../../include/identity.php:983 ../../include/identity.php:1063 #: ../../mod/ping.php:324 msgid "g A l F d" -msgstr "l, d. F G \\\\U\\\\h\\\\r" +msgstr "l, d. F, G:i \\U\\h\\r" #: ../../include/identity.php:984 ../../include/identity.php:1064 msgid "F d" @@ -1806,7 +1810,7 @@ msgstr "Termine in dieser Woche:" msgid "Profile" msgstr "Profil" -#: ../../include/identity.php:1137 ../../mod/settings.php:1025 +#: ../../include/identity.php:1137 ../../mod/settings.php:1044 msgid "Full Name:" msgstr "Voller Name:" @@ -1972,7 +1976,7 @@ msgstr "Verschiedenes" msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/datetime.php:212 ../../mod/events.php:602 +#: ../../include/datetime.php:212 ../../mod/events.php:633 #: ../../mod/appman.php:91 ../../mod/appman.php:92 msgid "Required" msgstr "Benötigt" @@ -2062,7 +2066,7 @@ msgstr "Anhänge:" #: ../../include/bb2diaspora.php:428 ../../include/event.php:11 msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\\\, H:i" +msgstr "l, d. F Y, H:i" #: ../../include/bb2diaspora.php:430 msgid "Redmatrix event notification:" @@ -2096,7 +2100,7 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Raum ist voll" -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1552 +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 msgid "Logout" msgstr "Abmelden" @@ -2172,7 +2176,7 @@ msgstr "Webseiten" msgid "Your webpages" msgstr "Deine Webseiten" -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1553 +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 msgid "Login" msgstr "Anmelden" @@ -2197,7 +2201,7 @@ msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" msgid "Home Page" msgstr "Homepage" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1529 +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 msgid "Register" msgstr "Registrieren" @@ -2300,7 +2304,7 @@ msgid "Outbox" msgstr "Ausgang" #: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:465 +#: ../../mod/events.php:472 msgid "Events" msgstr "Termine" @@ -2391,135 +2395,135 @@ msgstr "Ich lehne ab" msgid "I abstain" msgstr "Ich enthalte mich" -#: ../../include/ItemObject.php:179 ../../include/ItemObject.php:191 -#: ../../include/conversation.php:1667 ../../mod/photos.php:989 -#: ../../mod/photos.php:1001 +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1667 ../../mod/photos.php:997 +#: ../../mod/photos.php:1009 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:188 ../../include/conversation.php:1695 -#: ../../mod/photos.php:998 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 +#: ../../mod/photos.php:1006 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Gefällt nicht" msgstr[1] "Gefällt nicht" -#: ../../include/ItemObject.php:216 +#: ../../include/ItemObject.php:212 msgid "Add Star" msgstr "Stern hinzufügen" -#: ../../include/ItemObject.php:217 +#: ../../include/ItemObject.php:213 msgid "Remove Star" msgstr "Stern entfernen" -#: ../../include/ItemObject.php:218 +#: ../../include/ItemObject.php:214 msgid "Toggle Star Status" msgstr "Markierungsstatus (Stern) umschalten" -#: ../../include/ItemObject.php:222 +#: ../../include/ItemObject.php:218 msgid "starred" msgstr "markiert" -#: ../../include/ItemObject.php:231 ../../include/conversation.php:659 +#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:232 ../../include/conversation.php:660 +#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" -#: ../../include/ItemObject.php:240 +#: ../../include/ItemObject.php:236 msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../include/ItemObject.php:258 ../../mod/photos.php:941 +#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 msgid "I like this (toggle)" msgstr "Mir gefällt das (Umschalter)" -#: ../../include/ItemObject.php:259 ../../mod/photos.php:942 +#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 msgid "I don't like this (toggle)" msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../include/ItemObject.php:263 +#: ../../include/ItemObject.php:259 msgid "Share This" msgstr "Teilen" -#: ../../include/ItemObject.php:263 +#: ../../include/ItemObject.php:259 msgid "share" msgstr "Teilen" -#: ../../include/ItemObject.php:280 +#: ../../include/ItemObject.php:276 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../include/ItemObject.php:298 ../../include/ItemObject.php:299 +#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 #, php-format msgid "View %s's profile - %s" msgstr "Schaue Dir %ss Profil an – %s" -#: ../../include/ItemObject.php:302 +#: ../../include/ItemObject.php:298 msgid "to" msgstr "an" -#: ../../include/ItemObject.php:303 +#: ../../include/ItemObject.php:299 msgid "via" msgstr "via" -#: ../../include/ItemObject.php:304 +#: ../../include/ItemObject.php:300 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../include/ItemObject.php:305 +#: ../../include/ItemObject.php:301 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:704 +#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 #, php-format msgid " from %s" msgstr "von %s" -#: ../../include/ItemObject.php:319 ../../include/conversation.php:707 +#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../include/ItemObject.php:320 ../../include/conversation.php:708 +#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" -#: ../../include/ItemObject.php:341 +#: ../../include/ItemObject.php:337 msgid "Save Bookmarks" msgstr "Favoriten speichern" -#: ../../include/ItemObject.php:342 +#: ../../include/ItemObject.php:338 msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../include/ItemObject.php:351 +#: ../../include/ItemObject.php:347 msgid "Mark all seen" msgstr "Alle als gelesen markieren" -#: ../../include/ItemObject.php:357 ../../mod/photos.php:1109 +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/ItemObject.php:358 ../../mod/photos.php:1110 +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 msgctxt "noun" msgid "Dislikes" msgstr "Gefällt nicht" -#: ../../include/ItemObject.php:363 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1115 +#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 +#: ../../mod/photos.php:1131 msgid "Close" msgstr "Schließen" -#: ../../include/ItemObject.php:368 ../../include/conversation.php:725 +#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 #: ../../include/conversation.php:1198 ../../mod/editblock.php:152 #: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 #: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 @@ -2527,44 +2531,44 @@ msgstr "Schließen" msgid "Please wait" msgstr "Bitte warten" -#: ../../include/ItemObject.php:669 ../../mod/photos.php:960 -#: ../../mod/photos.php:1070 +#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 +#: ../../mod/photos.php:1078 msgid "This is you" msgstr "Das bist Du" -#: ../../include/ItemObject.php:673 +#: ../../include/ItemObject.php:669 msgid "Bold" msgstr "Fett" -#: ../../include/ItemObject.php:674 +#: ../../include/ItemObject.php:670 msgid "Italic" msgstr "Kursiv" -#: ../../include/ItemObject.php:675 +#: ../../include/ItemObject.php:671 msgid "Underline" msgstr "Unterstrichen" -#: ../../include/ItemObject.php:676 +#: ../../include/ItemObject.php:672 msgid "Quote" msgstr "Zitat" -#: ../../include/ItemObject.php:677 +#: ../../include/ItemObject.php:673 msgid "Code" msgstr "Code" -#: ../../include/ItemObject.php:678 +#: ../../include/ItemObject.php:674 msgid "Image" msgstr "Bild" -#: ../../include/ItemObject.php:679 +#: ../../include/ItemObject.php:675 msgid "Link" msgstr "Link" -#: ../../include/ItemObject.php:680 +#: ../../include/ItemObject.php:676 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:684 ../../include/conversation.php:1224 +#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 #: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 msgid "Encrypt text" msgstr "Text verschlüsseln" @@ -2592,59 +2596,46 @@ msgstr "Besuche %1$s's %2$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/dir_fns.php:88 +#: ../../include/dir_fns.php:96 msgid "Directory Options" msgstr "Verzeichnisoptionen" -#: ../../include/dir_fns.php:89 +#: ../../include/dir_fns.php:97 msgid "Alphabetic" msgstr "alphabetisch" -#: ../../include/dir_fns.php:90 +#: ../../include/dir_fns.php:98 msgid "Reverse Alphabetic" msgstr "Entgegengesetzt alphabetisch" -#: ../../include/dir_fns.php:91 +#: ../../include/dir_fns.php:99 msgid "Newest to Oldest" msgstr "Neueste zuerst" -#: ../../include/dir_fns.php:92 +#: ../../include/dir_fns.php:100 msgid "Oldest to Newest" msgstr "Älteste zuerst" -#: ../../include/dir_fns.php:93 +#: ../../include/dir_fns.php:101 msgid "Public Forums Only" msgstr "Nur öffentliche Foren" -#: ../../include/dir_fns.php:95 +#: ../../include/dir_fns.php:103 msgid "Sort" msgstr "Sortieren" -#: ../../include/dir_fns.php:111 +#: ../../include/dir_fns.php:119 msgid "Enable Safe Search" msgstr "Sichere Suche einschalten" -#: ../../include/dir_fns.php:113 +#: ../../include/dir_fns.php:121 msgid "Disable Safe Search" msgstr "Sichere Suche ausschalten" -#: ../../include/dir_fns.php:115 +#: ../../include/dir_fns.php:123 msgid "Safe Mode" msgstr "Sicherer Modus" -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:1961 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" - #: ../../include/items.php:382 ../../mod/subthread.php:49 #: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 #: ../../index.php:389 @@ -2738,23 +2729,23 @@ msgstr "Benutzer '%s' gelöscht" msgid "view full size" msgstr "In Vollbildansicht anschauen" -#: ../../include/diaspora.php:2023 ../../include/conversation.php:164 +#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 #: ../../mod/like.php:383 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 -#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 -#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 -#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 -#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 +#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 +#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 +#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 +#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 +#: ../../include/bbcode.php:733 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 +#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -2779,11 +2770,11 @@ msgstr "Beitrag" msgid "Different viewers will see this text differently" msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/bbcode.php:656 +#: ../../include/bbcode.php:662 msgid "$1 spoiler" msgstr "$1 Spoiler" -#: ../../include/bbcode.php:676 +#: ../../include/bbcode.php:682 msgid "$1 wrote:" msgstr "$1 schrieb:" @@ -2859,7 +2850,7 @@ msgstr "Anzeigen" msgid "Don't show" msgstr "Nicht anzeigen" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:621 +#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 #: ../../mod/chat.php:209 ../../mod/filestorage.php:146 #: ../../mod/photos.php:559 ../../mod/photos.php:916 msgid "Permissions" @@ -2869,6 +2860,19 @@ msgstr "Berechtigungen" msgid "Public Timeline" msgstr "Öffentliche Zeitleiste" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" + +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" + +#: ../../include/zot.php:1961 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" + #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 msgid "Male" @@ -3161,7 +3165,7 @@ msgid "Profile Photo" msgstr "Profilfoto" #: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:603 +#: ../../mod/settings.php:609 msgid "Update" msgstr "Aktualisieren" @@ -3275,45 +3279,45 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s ist %2$s" -#: ../../include/conversation.php:556 +#: ../../include/conversation.php:556 ../../mod/photos.php:978 msgctxt "title" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/conversation.php:556 +#: ../../include/conversation.php:556 ../../mod/photos.php:978 msgctxt "title" msgid "Dislikes" msgstr "Gefällt mir nicht" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Agree" msgstr "Zustimmungen" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Disagree" msgstr "Ablehnungen" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Abstain" msgstr "Enthaltungen" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Attending" -msgstr "Nehmen teil" +msgstr "Zusagen" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Not attending" -msgstr "Nehmen nicht teil" +msgstr "Absagen" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Might attend" -msgstr "Nehmen vielleicht teil" +msgstr "Vielleicht" #: ../../include/conversation.php:680 #, php-format @@ -3572,14 +3576,14 @@ msgid "Set expiration date" msgstr "Verfallsdatum" #: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:604 +#: ../../mod/events.php:635 msgid "OK" msgstr "Ok" #: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:603 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:578 -#: ../../mod/settings.php:604 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/settings.php:584 +#: ../../mod/settings.php:610 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Abbrechen" @@ -3672,15 +3676,15 @@ msgstr "Webseiten verwalten" msgctxt "noun" msgid "Attending" msgid_plural "Attending" -msgstr[0] "Nimmt teil" -msgstr[1] "Nehmen teil" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" #: ../../include/conversation.php:1701 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" -msgstr[0] "Nimmt teil" -msgstr[1] "Nehmen nicht teil" +msgstr[0] "Absage" +msgstr[1] "Absagen" #: ../../include/conversation.php:1704 msgctxt "noun" @@ -3951,13 +3955,13 @@ msgid "" " and/or create new posts for you?" msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:396 +#: ../../mod/api.php:105 ../../mod/settings.php:974 ../../mod/settings.php:979 +#: ../../mod/settings.php:1064 ../../mod/admin.php:396 msgid "Yes" msgstr "Ja" -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:394 +#: ../../mod/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 +#: ../../mod/settings.php:1064 ../../mod/admin.php:394 msgid "No" msgstr "Nein" @@ -4076,7 +4080,7 @@ msgstr "Blockieren" #: ../../mod/connedit.php:510 msgid "Block (or Unblock) all communications with this connection" -msgstr "Blockiere oder lasse die komplette Kommunikation mit dieser Verbindung zu" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" #: ../../mod/connedit.php:514 ../../mod/connedit.php:695 msgid "Unignore" @@ -4089,7 +4093,7 @@ msgstr "Ignorieren" #: ../../mod/connedit.php:517 msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignoriere oder lasse die komplette eingehende Kommunikation von dieser Verbindung zu" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" #: ../../mod/connedit.php:520 msgid "Unarchive" @@ -4114,7 +4118,7 @@ msgstr "Verstecken" #: ../../mod/connedit.php:529 msgid "Hide or Unhide this connection from your other connections" -msgstr "Verstecke oder zeige diese Verbindung vor anderen Verbindungen" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" #: ../../mod/connedit.php:536 msgid "Delete this connection" @@ -4145,11 +4149,11 @@ msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verb msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/connedit.php:637 ../../mod/rate.php:147 +#: ../../mod/connedit.php:637 ../../mod/rate.php:161 msgid "Rating (this information is public)" msgstr "Bewertung (öffentlich sichtbar)" -#: ../../mod/connedit.php:638 ../../mod/rate.php:148 +#: ../../mod/connedit.php:638 ../../mod/rate.php:162 msgid "Optionally explain your rating (this information is public)" msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" @@ -4424,7 +4428,7 @@ msgstr "Wähle ein Profil:" msgid "Upload Profile Photo" msgstr "Lade neues Profilfoto hoch" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:964 +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 msgid "or" msgstr "oder" @@ -4514,73 +4518,85 @@ msgstr "Titel und Startzeit des Termins sind erforderlich." msgid "Event not found." msgstr "Termin nicht gefunden." -#: ../../mod/events.php:392 +#: ../../mod/events.php:396 msgid "l, F j" msgstr "l, j. F" -#: ../../mod/events.php:414 +#: ../../mod/events.php:418 msgid "Edit event" msgstr "Termin bearbeiten" -#: ../../mod/events.php:466 +#: ../../mod/events.php:419 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../mod/events.php:473 msgid "Create New Event" msgstr "Neuen Termin erstellen" -#: ../../mod/events.php:467 ../../mod/photos.php:827 +#: ../../mod/events.php:474 ../../mod/photos.php:827 msgid "Previous" msgstr "Voriges" -#: ../../mod/events.php:468 ../../mod/setup.php:265 ../../mod/photos.php:836 +#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:469 +#: ../../mod/events.php:476 msgid "Export" msgstr "Exportieren" -#: ../../mod/events.php:594 +#: ../../mod/events.php:504 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../mod/events.php:507 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../mod/events.php:625 msgid "Event details" msgstr "Termin-Details" -#: ../../mod/events.php:595 +#: ../../mod/events.php:626 msgid "Starting date and Title are required." msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/events.php:597 +#: ../../mod/events.php:628 msgid "Categories (comma-separated list)" msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/events.php:599 +#: ../../mod/events.php:630 msgid "Event Starts:" msgstr "Termin beginnt:" -#: ../../mod/events.php:606 +#: ../../mod/events.php:637 msgid "Finish date/time is not known or not relevant" msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../mod/events.php:608 +#: ../../mod/events.php:639 msgid "Event Finishes:" msgstr "Termin endet:" -#: ../../mod/events.php:610 ../../mod/events.php:611 +#: ../../mod/events.php:641 ../../mod/events.php:642 msgid "Adjust for viewer timezone" msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:610 +#: ../../mod/events.php:641 msgid "" "Important for events that happen in a particular place. Not practical for " "global holidays." msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../mod/events.php:612 +#: ../../mod/events.php:643 msgid "Description:" msgstr "Beschreibung:" -#: ../../mod/events.php:616 +#: ../../mod/events.php:647 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:618 +#: ../../mod/events.php:649 msgid "Share this event" msgstr "Den Termin teilen" @@ -4603,21 +4619,37 @@ msgid "" msgstr "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." #: ../../mod/pubsites.php:25 +msgid "Rate this hub" +msgstr "Bewerte diesen Hub" + +#: ../../mod/pubsites.php:26 msgid "Site URL" msgstr "Server-URL" -#: ../../mod/pubsites.php:25 +#: ../../mod/pubsites.php:26 msgid "Access Type" msgstr "Zugangstyp" -#: ../../mod/pubsites.php:25 +#: ../../mod/pubsites.php:26 msgid "Registration Policy" msgstr "Registrierungsrichtlinien" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 msgid "Location" msgstr "Ort" +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Bewertungen dieses Hubs ansehen" + +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Bewerten" + +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Bewertungen ansehen" + #: ../../mod/settings.php:73 msgid "Name is required" msgstr "Name ist erforderlich" @@ -4626,553 +4658,569 @@ msgstr "Name ist erforderlich" msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../mod/settings.php:222 +#: ../../mod/settings.php:120 +msgid "Diaspora Policy Settings updated." +msgstr "Diaspora-Einstellungen aktualisiert." + +#: ../../mod/settings.php:228 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../mod/settings.php:226 +#: ../../mod/settings.php:232 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../mod/settings.php:240 +#: ../../mod/settings.php:246 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../mod/settings.php:242 +#: ../../mod/settings.php:248 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../mod/settings.php:256 +#: ../../mod/settings.php:262 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../mod/settings.php:259 +#: ../../mod/settings.php:265 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../mod/settings.php:268 +#: ../../mod/settings.php:274 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../mod/settings.php:507 +#: ../../mod/settings.php:513 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 msgid "Add application" msgstr "Anwendung hinzufügen" -#: ../../mod/settings.php:579 +#: ../../mod/settings.php:585 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../mod/settings.php:580 ../../mod/settings.php:606 +#: ../../mod/settings.php:586 ../../mod/settings.php:612 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:580 ../../mod/settings.php:581 +#: ../../mod/settings.php:586 ../../mod/settings.php:587 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../mod/settings.php:581 ../../mod/settings.php:607 +#: ../../mod/settings.php:587 ../../mod/settings.php:613 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:588 ../../mod/settings.php:614 msgid "Redirect" msgstr "Umleitung" -#: ../../mod/settings.php:582 +#: ../../mod/settings.php:588 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:589 ../../mod/settings.php:615 msgid "Icon url" msgstr "Symbol-URL" -#: ../../mod/settings.php:583 +#: ../../mod/settings.php:589 msgid "Optional" msgstr "Optional" -#: ../../mod/settings.php:594 +#: ../../mod/settings.php:600 msgid "You can't edit this application." msgstr "Diese Anwendung kann nicht bearbeitet werden." -#: ../../mod/settings.php:637 +#: ../../mod/settings.php:643 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../mod/settings.php:641 +#: ../../mod/settings.php:647 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../mod/settings.php:642 +#: ../../mod/settings.php:648 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:643 +#: ../../mod/settings.php:649 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../mod/settings.php:654 +#: ../../mod/settings.php:663 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:676 msgid "Feature Settings" msgstr "Funktions-Einstellungen" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:679 +msgid "Diaspora Policy Settings" +msgstr "Diaspora-Einstellungen" + +#: ../../mod/settings.php:680 +msgid "Allow any Diaspora member to comment on your public posts." +msgstr "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren." + +#: ../../mod/settings.php:681 +msgid "Submit Diaspora Policy Settings" +msgstr "Diaspora-Einstellungen speichern" + +#: ../../mod/settings.php:704 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:705 msgid "Password Settings" msgstr "Kennwort-Einstellungen" -#: ../../mod/settings.php:687 +#: ../../mod/settings.php:706 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:688 +#: ../../mod/settings.php:707 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:688 +#: ../../mod/settings.php:707 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../mod/settings.php:690 ../../mod/settings.php:1026 +#: ../../mod/settings.php:709 ../../mod/settings.php:1045 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../mod/settings.php:692 +#: ../../mod/settings.php:711 msgid "Remove this account from this server including all its channels" msgstr "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server" -#: ../../mod/settings.php:693 ../../mod/settings.php:1107 +#: ../../mod/settings.php:712 ../../mod/settings.php:1126 msgid "Warning: This action is permanent and cannot be reversed." msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden." -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:728 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:728 msgid "On" msgstr "An" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:735 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../mod/settings.php:740 +#: ../../mod/settings.php:759 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:798 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:801 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../mod/settings.php:785 ../../mod/admin.php:367 +#: ../../mod/settings.php:804 ../../mod/admin.php:367 msgid "mobile" msgstr "mobil" -#: ../../mod/settings.php:821 +#: ../../mod/settings.php:840 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:827 +#: ../../mod/settings.php:846 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../mod/settings.php:828 +#: ../../mod/settings.php:847 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../mod/settings.php:829 +#: ../../mod/settings.php:848 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../mod/settings.php:830 +#: ../../mod/settings.php:849 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:830 +#: ../../mod/settings.php:849 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:831 +#: ../../mod/settings.php:850 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../mod/settings.php:831 +#: ../../mod/settings.php:850 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../mod/settings.php:832 +#: ../../mod/settings.php:851 msgid "Don't show emoticons" msgstr "Emoticons nicht anzeigen" -#: ../../mod/settings.php:833 +#: ../../mod/settings.php:852 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../mod/settings.php:834 +#: ../../mod/settings.php:853 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../mod/settings.php:837 +#: ../../mod/settings.php:856 msgid "Use blog/list mode on channel page" -msgstr "Verwende den Blog-/Listenmodus auf der Kanalseite" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../mod/settings.php:837 ../../mod/settings.php:838 +#: ../../mod/settings.php:856 ../../mod/settings.php:857 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../mod/settings.php:838 +#: ../../mod/settings.php:857 msgid "Use blog/list mode on matrix page" -msgstr "Verwende den Blog-/Listenmodus auf der Matrixseite" +msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" -#: ../../mod/settings.php:839 +#: ../../mod/settings.php:858 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../mod/settings.php:839 ../../mod/settings.php:840 +#: ../../mod/settings.php:858 ../../mod/settings.php:859 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:859 msgid "Matrix page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" -#: ../../mod/settings.php:874 +#: ../../mod/settings.php:893 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:894 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:895 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:896 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:897 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:898 msgid "Anybody in this network" msgstr "Alle Red-Nutzer" -#: ../../mod/settings.php:880 +#: ../../mod/settings.php:899 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../mod/settings.php:881 +#: ../../mod/settings.php:900 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:974 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:979 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:988 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../mod/settings.php:1017 +#: ../../mod/settings.php:1036 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../mod/settings.php:1024 +#: ../../mod/settings.php:1043 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1046 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../mod/settings.php:1028 +#: ../../mod/settings.php:1047 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1028 +#: ../../mod/settings.php:1047 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1048 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1031 +#: ../../mod/settings.php:1050 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../mod/settings.php:1031 +#: ../../mod/settings.php:1050 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1052 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../mod/settings.php:1035 +#: ../../mod/settings.php:1054 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../mod/settings.php:1037 +#: ../../mod/settings.php:1056 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../mod/settings.php:1037 +#: ../../mod/settings.php:1056 msgid "Prevents displaying in your profile that you are online" msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1058 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1040 +#: ../../mod/settings.php:1059 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../mod/settings.php:1041 +#: ../../mod/settings.php:1060 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1061 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1062 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1064 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1064 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1066 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1068 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1068 msgid "0 or blank prevents expiration" msgstr "0 oder kein Inhalt verhindern das Verfallen" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1069 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1069 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1070 msgid "Default Post Permissions" msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" -#: ../../mod/settings.php:1052 ../../mod/mitem.php:161 ../../mod/mitem.php:204 +#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 msgid "(click to open/close)" msgstr "(zum öffnen/schließen anklicken)" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1075 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1081 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1081 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../mod/settings.php:1065 +#: ../../mod/settings.php:1084 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1085 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../mod/settings.php:1067 +#: ../../mod/settings.php:1086 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1087 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1088 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1089 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1090 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1091 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1092 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../mod/settings.php:1074 +#: ../../mod/settings.php:1093 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1094 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1095 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1096 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1097 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1100 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1102 msgid "Unseen matrix activity" msgstr "Ungesehene Matrix-Aktivität" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1103 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1104 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 -#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 +#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 msgid "Recommended" msgstr "Empfohlen" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1105 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1106 msgid "Events today" msgstr "Heutige Termine" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1107 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1107 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1108 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1109 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1110 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1111 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1112 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1113 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1115 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1115 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1117 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1118 msgid "Change the behaviour of this account for special situations" msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1121 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1122 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1124 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1125 msgid "Remove this channel" msgstr "Diesen Kanal löschen" @@ -5839,7 +5887,7 @@ msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." msgid "You have reached your limit of %1$.0f webpages." msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:81 +#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 #: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 #: ../../mod/photos.php:429 msgid "Public access denied." @@ -5922,11 +5970,11 @@ msgstr "Keine System-Benachrichtigungen mehr." msgid "System Notifications" msgstr "System-Benachrichtigungen" -#: ../../mod/acl.php:228 +#: ../../mod/acl.php:231 msgid "network" msgstr "Netzwerk" -#: ../../mod/acl.php:238 +#: ../../mod/acl.php:241 msgid "RSS" msgstr "RSS" @@ -6189,7 +6237,7 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../mod/lostpass.php:85 ../../boot.php:1561 +#: ../../mod/lostpass.php:85 ../../boot.php:1560 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" @@ -6238,7 +6286,11 @@ msgstr "E-Mail Adresse" msgid "Reset" msgstr "Zurücksetzen" -#: ../../mod/rate.php:146 +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Webseite:" + +#: ../../mod/rate.php:160 #, php-format msgid "Remote Channel [%s] (not yet known on this site)" msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" @@ -6865,19 +6917,23 @@ msgstr "Sachen zum Profil hinzufügen" msgid "Include desirable objects in your profile" msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../mod/ratings.php:68 +#: ../../mod/ratings.php:69 msgid "No ratings" msgstr "Keine Bewertungen" -#: ../../mod/ratings.php:94 +#: ../../mod/ratings.php:99 msgid "Ratings" msgstr "Bewertungen" -#: ../../mod/ratings.php:95 +#: ../../mod/ratings.php:100 msgid "Rating: " msgstr "Bewertung: " -#: ../../mod/ratings.php:96 +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Webseite: " + +#: ../../mod/ratings.php:103 msgid "Description: " msgstr "Beschreibung: " @@ -8171,8 +8227,8 @@ msgstr "Keine Statusnachricht für diesen Upload anzeigen" msgid "Album name could not be decoded" msgstr "Albumname konnte nicht dekodiert werden" -#: ../../mod/photos.php:625 ../../mod/photos.php:1133 -#: ../../mod/photos.php:1149 +#: ../../mod/photos.php:625 ../../mod/photos.php:1149 +#: ../../mod/photos.php:1165 msgid "Contact Photos" msgstr "Kontakt-Bilder" @@ -8184,7 +8240,7 @@ msgstr "Neueste zuerst anzeigen" msgid "Show Oldest First" msgstr "Älteste zuerst anzeigen" -#: ../../mod/photos.php:675 ../../mod/photos.php:1181 +#: ../../mod/photos.php:675 ../../mod/photos.php:1197 msgid "View Photo" msgstr "Foto ansehen" @@ -8240,21 +8296,21 @@ msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" msgid "Flag as adult in album view" msgstr "In der Albumansicht als nicht jugendfrei markieren" -#: ../../mod/photos.php:1099 +#: ../../mod/photos.php:1114 msgid "In This Photo:" msgstr "Auf diesem Foto:" -#: ../../mod/photos.php:1187 +#: ../../mod/photos.php:1203 msgid "View Album" msgstr "Album ansehen" -#: ../../mod/photos.php:1210 +#: ../../mod/photos.php:1226 msgid "Recent Photos" msgstr "Neueste Fotos" #: ../../mod/ping.php:263 msgid "sent you a private message" -msgstr "eine private Nachricht schicken" +msgstr "hat Dir eine private Nachricht geschickt" #: ../../mod/ping.php:314 msgid "added your channel" @@ -8673,41 +8729,41 @@ msgstr "Schräge Fotoalben" msgid "Are you a clean desk or a messy desk person?" msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" -#: ../../boot.php:1358 +#: ../../boot.php:1357 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1361 +#: ../../boot.php:1360 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1528 +#: ../../boot.php:1527 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." -#: ../../boot.php:1556 +#: ../../boot.php:1555 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1557 +#: ../../boot.php:1556 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1560 +#: ../../boot.php:1559 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1653 +#: ../../boot.php:1674 msgid "permission denied" msgstr "Zugriff verweigert" -#: ../../boot.php:1654 +#: ../../boot.php:1675 msgid "Got Zot?" msgstr "Haste schon Zot?" -#: ../../boot.php:2137 +#: ../../boot.php:2158 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" diff --git a/view/de/strings.php b/view/de/strings.php index d9a4d3007..2679e9eb1 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -75,6 +75,7 @@ $a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; $a->strings["photo/image"] = "Foto/Bild"; $a->strings["Rate Me"] = "Bewerte mich"; $a->strings["View Ratings"] = "Bewertungen ansehen"; +$a->strings["Public Hubs"] = "Öffentliche Hubs"; $a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; $a->strings["redmatrix"] = "redmatrix"; $a->strings["Thank You,"] = "Danke."; @@ -85,7 +86,7 @@ $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, % $a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; $a->strings["a private message"] = "eine private Nachricht"; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]ein %4\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; $a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; $a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; $a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; @@ -201,6 +202,20 @@ $a->strings["Menus"] = "Menüs"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Seiten"; $a->strings["Collection"] = "Ordner"; +$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +$a->strings["No source file."] = "Keine Quelldatei."; +$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +$a->strings["Path not available."] = "Pfad nicht verfügbar."; +$a->strings["Empty pathname"] = "Leere Pfadangabe"; +$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +$a->strings["Path not found."] = "Pfad nicht gefunden."; +$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; +$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; $a->strings["Delete this item?"] = "Dieses Element löschen?"; $a->strings["Comment"] = "Kommentar"; $a->strings["[+] show all"] = "[+] Alle anzeigen"; @@ -215,7 +230,7 @@ $a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; $a->strings["close all"] = "Alle schließen"; $a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["Rate This Channel (this is public)"] = "Bewerte diesen Kanal (öffentlich sichtbar)"; +$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; $a->strings["Rating"] = "Bewertung"; $a->strings["Describe (optional)"] = "Beschreibung (optional)"; $a->strings["Submit"] = "Bestätigen"; @@ -272,20 +287,6 @@ $a->strings["__ctx:noun__ Like"] = array( 0 => "Gefällt mir", 1 => "Gefällt mir", ); -$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -$a->strings["No source file."] = "Keine Quelldatei."; -$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -$a->strings["Path not available."] = "Pfad nicht verfügbar."; -$a->strings["Empty pathname"] = "Leere Pfadangabe"; -$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -$a->strings["Path not found."] = "Pfad nicht gefunden."; -$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; -$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; $a->strings["General Features"] = "Allgemeine Funktionen"; $a->strings["Content Expiration"] = "Verfall von Inhalten"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; @@ -311,12 +312,12 @@ $a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; $a->strings["Use Markdown"] = "Markdown benutzen"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; $a->strings["Large Photos"] = "Große Fotos"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Zeige große (640px) Vorschaubilder in Beiträgen. Wenn nicht aktiviert, nutze kleine (320px) Vorschaubilder."; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; $a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; -$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden)"; +$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; $a->strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; $a->strings["Provide photo edit option to hide adult photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit"; $a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; @@ -396,7 +397,7 @@ $a->strings["Gender:"] = "Geschlecht:"; $a->strings["Status:"] = "Status:"; $a->strings["Homepage:"] = "Homepage:"; $a->strings["Online Now"] = "gerade online"; -$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r"; +$a->strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; $a->strings["F d"] = "d. F"; $a->strings["[today]"] = "[Heute]"; $a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; @@ -467,7 +468,7 @@ $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; $a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; $a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; $a->strings["Attachments:"] = "Anhänge:"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; $a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:"; $a->strings["Starts:"] = "Beginnt:"; $a->strings["Finishes:"] = "Endet:"; @@ -607,9 +608,6 @@ $a->strings["Sort"] = "Sortieren"; $a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; $a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; $a->strings["Safe Mode"] = "Sicherer Modus"; -$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; -$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; $a->strings["Permission denied"] = "Keine Berechtigung"; $a->strings["(Unknown)"] = "(Unbekannt)"; $a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -665,6 +663,9 @@ $a->strings["Show"] = "Anzeigen"; $a->strings["Don't show"] = "Nicht anzeigen"; $a->strings["Permissions"] = "Berechtigungen"; $a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; +$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; $a->strings["Male"] = "Männlich"; $a->strings["Female"] = "Weiblich"; $a->strings["Currently Male"] = "Momentan männlich"; @@ -765,9 +766,9 @@ $a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; $a->strings["__ctx:title__ Agree"] = "Zustimmungen"; $a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; $a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; -$a->strings["__ctx:title__ Attending"] = "Nehmen teil"; -$a->strings["__ctx:title__ Not attending"] = "Nehmen nicht teil"; -$a->strings["__ctx:title__ Might attend"] = "Nehmen vielleicht teil"; +$a->strings["__ctx:title__ Attending"] = "Zusagen"; +$a->strings["__ctx:title__ Not attending"] = "Absagen"; +$a->strings["__ctx:title__ Might attend"] = "Vielleicht"; $a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; $a->strings["Categories:"] = "Kategorien:"; $a->strings["Filed under:"] = "Gespeichert unter:"; @@ -855,12 +856,12 @@ $a->strings["Chatrooms"] = "Chaträume"; $a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; $a->strings["Manage Webpages"] = "Webseiten verwalten"; $a->strings["__ctx:noun__ Attending"] = array( - 0 => "Nimmt teil", - 1 => "Nehmen teil", + 0 => "Zusage", + 1 => "Zusagen", ); $a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Nimmt teil", - 1 => "Nehmen nicht teil", + 0 => "Absage", + 1 => "Absagen", ); $a->strings["__ctx:noun__ Undecided"] = array( 0 => " Unentschlossen", @@ -964,16 +965,16 @@ $a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; $a->strings["Unblock"] = "Freigeben"; $a->strings["Block"] = "Blockieren"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Blockiere oder lasse die komplette Kommunikation mit dieser Verbindung zu"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; $a->strings["Unignore"] = "Nicht ignorieren"; $a->strings["Ignore"] = "Ignorieren"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignoriere oder lasse die komplette eingehende Kommunikation von dieser Verbindung zu"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; $a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Archive"] = "Archivieren"; $a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; $a->strings["Unhide"] = "Wieder sichtbar machen"; $a->strings["Hide"] = "Verstecken"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Verstecke oder zeige diese Verbindung vor anderen Verbindungen"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; $a->strings["Delete this connection"] = "Verbindung löschen"; $a->strings["Approve this connection"] = "Verbindung genehmigen"; $a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; @@ -1067,10 +1068,13 @@ $a->strings["Event title and start time are required."] = "Titel und Startzeit d $a->strings["Event not found."] = "Termin nicht gefunden."; $a->strings["l, F j"] = "l, j. F"; $a->strings["Edit event"] = "Termin bearbeiten"; +$a->strings["Delete event"] = "Termin löschen"; $a->strings["Create New Event"] = "Neuen Termin erstellen"; $a->strings["Previous"] = "Voriges"; $a->strings["Next"] = "Nächste"; $a->strings["Export"] = "Exportieren"; +$a->strings["Event removed"] = "Termin gelöscht"; +$a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; $a->strings["Event details"] = "Termin-Details"; $a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; $a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; @@ -1085,12 +1089,17 @@ $a->strings["Share this event"] = "Den Termin teilen"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; $a->strings["Public Sites"] = "Öffentliche Server"; $a->strings["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."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; +$a->strings["Rate this hub"] = "Bewerte diesen Hub"; $a->strings["Site URL"] = "Server-URL"; $a->strings["Access Type"] = "Zugangstyp"; $a->strings["Registration Policy"] = "Registrierungsrichtlinien"; $a->strings["Location"] = "Ort"; +$a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; +$a->strings["Rate"] = "Bewerten"; +$a->strings["View ratings"] = "Bewertungen ansehen"; $a->strings["Name is required"] = "Name ist erforderlich"; $a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Einstellungen aktualisiert."; $a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; $a->strings["Password changed."] = "Kennwort geändert."; @@ -1115,6 +1124,9 @@ $a->strings["No name"] = "Kein Name"; $a->strings["Remove authorization"] = "Authorisierung aufheben"; $a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; $a->strings["Feature Settings"] = "Funktions-Einstellungen"; +$a->strings["Diaspora Policy Settings"] = "Diaspora-Einstellungen"; +$a->strings["Allow any Diaspora member to comment on your public posts."] = "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren."; +$a->strings["Submit Diaspora Policy Settings"] = "Diaspora-Einstellungen speichern"; $a->strings["Account Settings"] = "Konto-Einstellungen"; $a->strings["Password Settings"] = "Kennwort-Einstellungen"; $a->strings["New Password:"] = "Neues Passwort:"; @@ -1142,9 +1154,9 @@ $a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; $a->strings["Don't show emoticons"] = "Emoticons nicht anzeigen"; $a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; $a->strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -$a->strings["Use blog/list mode on channel page"] = "Verwende den Blog-/Listenmodus auf der Kanalseite"; +$a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; $a->strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -$a->strings["Use blog/list mode on matrix page"] = "Verwende den Blog-/Listenmodus auf der Matrixseite"; +$a->strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; $a->strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; $a->strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; $a->strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; @@ -1464,6 +1476,7 @@ $a->strings["Forgot your Password?"] = "Kennwort vergessen?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; $a->strings["Email Address"] = "E-Mail Adresse"; $a->strings["Reset"] = "Zurücksetzen"; +$a->strings["Website:"] = "Webseite:"; $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; $a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; $a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; @@ -1624,6 +1637,7 @@ $a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte $a->strings["No ratings"] = "Keine Bewertungen"; $a->strings["Ratings"] = "Bewertungen"; $a->strings["Rating: "] = "Bewertung: "; +$a->strings["Website: "] = "Webseite: "; $a->strings["Description: "] = "Beschreibung: "; $a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; $a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; @@ -1952,7 +1966,7 @@ $a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht juge $a->strings["In This Photo:"] = "Auf diesem Foto:"; $a->strings["View Album"] = "Album ansehen"; $a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["sent you a private message"] = "eine private Nachricht schicken"; +$a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; $a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; $a->strings["posted an event"] = "hat einen Termin veröffentlicht"; $a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -- cgit v1.2.3 From f58b261a8cd092eb205c5ab2661d67efad495d52 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 27 Feb 2015 13:54:13 +0100 Subject: fix link to siteinfo/json --- doc/main.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/main.bb b/doc/main.bb index 1fd234420..d8682d8ac 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -85,4 +85,4 @@ Zot is the great new communicaton protocol invented especially for the RedMatrix [size=large][b]About This RedMatrix Hub[/b][/size] [zrl=[baseurl]/help/TermsOfService]Terms of Service For This Hub[/zrl] [zrl=[baseurl]/siteinfo]Hub Information (/siteinfo)[/zrl] -[zrl=[baseurl]/siteinfo_json]Detailed Technical Hub Information (/siteinfo_json)[/zrl] +[zrl=[baseurl]/siteinfo/json]Detailed Technical Hub Information in JSON format(/siteinfo/json)[/zrl] -- cgit v1.2.3 From 0d3a8b2d9480b5b25866a63dbd8082bfbf3b7b89 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 27 Feb 2015 13:59:56 +0100 Subject: update German help files to current English contents --- doc/de/main.bb | 6 ++++++ doc/de/profiles.bb | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/de/main.bb b/doc/de/main.bb index 1106b750c..2d9ebdb70 100644 --- a/doc/de/main.bb +++ b/doc/de/main.bb @@ -59,6 +59,7 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/help/Translations]Ãœbersetzungen[/zrl] [zrl=[baseurl]/help/developers]Entwickler[/zrl] [zrl=[baseurl]/help/intro_for_developers]Einführung für Entwickler[/zrl] +[zrl=[baseurl]/help/database]Datenbank-Schema[/zrl] [zrl=[baseurl]/help/api_functions]API-Funktionen[/zrl] [zrl=[baseurl]/help/api_posting]Mit der API einen Beitrag erstellen[/zrl] [zrl=[baseurl]/help/developer_function_primer]Ãœbersicht der wichtigsten Red-Funktionen[/zrl] @@ -77,7 +78,12 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [url=https://github.com/friendica/red]Haupt-Website[/url] [url=https://github.com/friendica/red-addons]Addons-Website[/url] [url=https://zothub.com/channel/one]Entwickler-Kanal[/url] +[url=https://federated.social/channel/postgres]Postgres-spezifischer Admin-Support-Kanal[/url] + [url=[baseurl]/help/credits]RedMatrix Credits[/url] + [size=large][b]Ãœber diesen Red-Server[/b][/size] +[zrl=[baseurl]/help/TermsOfService]Nutzungsbedingungen dieses Red-Servers[/zrl] [zrl=[baseurl]/siteinfo]Informationen zu diesem Server und der Red-Version[/zrl] +[zrl=[baseurl]/siteinfo/json]Detaillierte technische Informationen zu diesem Server im JSON-Format[/zrl] diff --git a/doc/de/profiles.bb b/doc/de/profiles.bb index cc2d94fb6..262aeb6e2 100644 --- a/doc/de/profiles.bb +++ b/doc/de/profiles.bb @@ -14,8 +14,6 @@ Trotzdem: Wenn Du willst, dass Freunde Dich finden können, macht es Sinn, folge [*] Ein Foto, das auch wirklich Dich zeigt [*] Deinen Wohnort, oder zumindest Land oder Bundesland[/ul] -Ohne diese Informationen könnte es passieren, dass Du hier sehr einsam bist. Die meisten Leute verbinden sich nicht mit jemandem, von dem sie nur einen Fake-Namen und ein Foto sehen, das noch nicht einmal einen Menschen zeigt. - Wenn Du Leute kennenlernen möchtest, die ähnliche Interessen haben wie Du, nimm Dir einen Moment Zeit und füge einige Schlüsselwörter hinzu. Zum Beispiel „Musik, Linux, Fotografie“ oder was auch immer. Danach können andere dann im Verzeichnis suchen. Du kannst so viele Schlüsselwörter eingeben wie Du möchtest. Um alternative Profile zu erstellen, besuche zunächst die Seite [zrl=[baseurl]/settings/features]Einstellungen > Zusätzliche Funktionen[/zrl] und aktiviere dort „Mehrfachprofile“. Ohne diese Aktivierung hast Du nur ein Profil, nämlich Dein Standard-Profil. @@ -34,6 +32,9 @@ Wenn Du nicht möchtest, dass andere Dich finden können, ohne dass Du ihnen Dei Im Verzeichnis (Kanal-Anzeiger) kannst Du nach Leuten suchen, die ihre Profile veröffentlichen. Zum Beispiel, indem Du Namen oder Spitznamen eingibst. Aktuell werden nur das Namensfeld und die Schlüsselwörter durchsucht. Wenn Du Schlüsselwörter in Dein Standard-Profil einträgst, können Dich Leute mit ähnlichen Interessen finden. Sie werden außerdem bei den Kanal-Vorschlägen benutzt. Sie sind im Verzeichnis nicht direkt sichtbar, wohl aber auf Deiner Profil-Seite. -Auf Deiner „Verbindungen“-Seite und im Verzeichnis (Kanal-Anzeiger) gibt es einen Link „Vorschläge“ bzw. „Kanal-Vorschläge“. Dort findest Du Kanäle, die gleiche oder ähnliche Schlüsselwörter im Profil haben wie Du. Je mehr Schlüsselwörter Du in Dein Standard-Profil einträgst, desto besser werden die Suchergebnisse. Sie sind nach relevanz sortiert. +Auf Deiner „Verbindungen“-Seite und im Verzeichnis (Kanal-Anzeiger) gibt es einen Link „Vorschläge“ bzw. „Kanal-Vorschläge“. Dort findest Du Kanäle, die gleiche oder ähnliche Schlüsselwörter im Profil haben wie Du. Je mehr Schlüsselwörter Du in Dein Standard-Profil einträgst, desto besser werden die Suchergebnisse. Sie sind nach Relevanz sortiert. + +Siehe auch: +[zrl=[baseurl]/help/AdvancedSearch]Fortgeschrittene Suche[/zrl] #include doc/macros/main_footer.bb; -- cgit v1.2.3 From 2a74fab21a3e055a794ebef421eada79ca89c390 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 27 Feb 2015 13:41:41 -0800 Subject: weekly doxygen push --- doc/html/admin_8php.html | 20 ++ doc/html/admin_8php.js | 1 + doc/html/boot_8php.html | 12 +- doc/html/datetime_8php.html | 2 +- doc/html/dba__driver_8php.html | 4 +- doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html | 112 ++++++++ doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js | 4 + doc/html/dir_94ce3c0aa655f52cbce858751688d328.html | 114 ++++++++ doc/html/dir_94ce3c0aa655f52cbce858751688d328.js | 5 + doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html | 2 + doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js | 1 + doc/html/dir_d44c64559bbebec7f509842c48db8b23.html | 2 - doc/html/dir_d44c64559bbebec7f509842c48db8b23.js | 1 - ..._2deadsuperhero_2occupant_2php_2style_8php.html | 112 ++++++++ ..._2deadsuperhero_2occupant_2php_2theme_8php.html | 144 ++++++++++ ...me_2deadsuperhero_2occupant_2php_2theme_8php.js | 4 + doc/html/extract_8php.html | 2 +- doc/html/files.html | 135 +++++----- doc/html/globals.html | 9 - doc/html/globals_0x61.html | 3 + doc/html/globals_0x63.html | 3 + doc/html/globals_0x6c.html | 2 +- doc/html/globals_0x6e.html | 3 +- doc/html/globals_0x6f.html | 3 + doc/html/globals_func_0x61.html | 3 + doc/html/globals_func_0x63.html | 3 + doc/html/globals_func_0x6c.html | 2 +- doc/html/globals_func_0x6f.html | 3 + doc/html/globals_vars.html | 9 - doc/html/globals_vars_0x6e.html | 3 +- doc/html/include_2config_8php.html | 2 +- doc/html/items_8php.html | 22 +- doc/html/items_8php.js | 1 + doc/html/language_8php.html | 2 +- doc/html/navtree.js | 20 +- doc/html/navtreeindex0.js | 30 +-- doc/html/navtreeindex1.js | 4 +- doc/html/navtreeindex10.js | 144 +++++----- doc/html/navtreeindex2.js | 4 +- doc/html/navtreeindex3.js | 4 +- doc/html/navtreeindex4.js | 28 +- doc/html/navtreeindex5.js | 128 ++++----- doc/html/navtreeindex6.js | 222 +++++++-------- doc/html/navtreeindex7.js | 194 +++++++------- doc/html/navtreeindex8.js | 166 ++++++------ doc/html/navtreeindex9.js | 298 ++++++++++----------- doc/html/regdir_8php.html | 2 + doc/html/search/all_24.js | 4 +- doc/html/search/all_61.js | 3 +- doc/html/search/all_63.js | 1 + doc/html/search/all_66.js | 1 - doc/html/search/all_6c.js | 2 +- doc/html/search/all_6e.js | 2 +- doc/html/search/all_6f.js | 1 + doc/html/search/all_73.js | 11 +- doc/html/search/all_74.js | 5 +- doc/html/search/files_66.js | 3 +- doc/html/search/files_73.js | 13 +- doc/html/search/files_74.js | 11 +- doc/html/search/functions_61.js | 1 + doc/html/search/functions_63.js | 1 + doc/html/search/functions_6c.js | 2 +- doc/html/search/functions_6f.js | 1 + doc/html/search/variables_24.js | 4 +- doc/html/search/variables_6e.js | 2 +- doc/html/text_8php.html | 18 +- doc/html/text_8php.js | 2 +- doc/html/typo_8php.html | 2 +- doc/html/view_2theme_2apw_2php_2style_8php.html | 2 +- 69 files changed, 1321 insertions(+), 765 deletions(-) create mode 100644 doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html create mode 100644 doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js create mode 100644 doc/html/dir_94ce3c0aa655f52cbce858751688d328.html create mode 100644 doc/html/dir_94ce3c0aa655f52cbce858751688d328.js create mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html create mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html create mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js diff --git a/doc/html/admin_8php.html b/doc/html/admin_8php.html index 95e86c354..d1f23388e 100644 --- a/doc/html/admin_8php.html +++ b/doc/html/admin_8php.html @@ -128,6 +128,8 @@ Functions    admin_page_dbsync (&$a)   + admin_page_queue ($a) +   admin_page_users_post (&$a)    admin_page_users (&$a) @@ -397,6 +399,24 @@ Functions

    Referenced by admin_post().

    +
    +
    + +
    +
    + + + + + + + + +
    admin_page_queue ( $a)
    +
    + +

    Referenced by admin_content().

    +
    diff --git a/doc/html/admin_8php.js b/doc/html/admin_8php.js index 5b818c41d..90a01355f 100644 --- a/doc/html/admin_8php.js +++ b/doc/html/admin_8php.js @@ -11,6 +11,7 @@ var admin_8php = [ "admin_page_plugins", "admin_8php.html#a54128076986ba80c4a103de3fc3e19a8", null ], [ "admin_page_profs", "admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a", null ], [ "admin_page_profs_post", "admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057", null ], + [ "admin_page_queue", "admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89", null ], [ "admin_page_site", "admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e", null ], [ "admin_page_site_post", "admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f", null ], [ "admin_page_summary", "admin_8php.html#ac6e95b920b5abd030cc522964987087a", null ], diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 6dd3a9a6b..47a982cc7 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -249,7 +249,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1137 +const DB_UPDATE_VERSION 1138   const EOL '<br>' . "\r\n"   @@ -1134,7 +1134,7 @@ Variables

    Useful in functions which require it but don't get it passed to them

    Returns
    App
    -

    Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), RedMatrix\RedDAV\RedDirectory\__construct(), abook_toggle_flag(), account_remove(), account_service_class_allows(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), RedMatrix\RedDAV\RedDirectory\childExists(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), 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(), dir_tagblock(), dirsearch_content(), drop_item(), editpost_content(), event_store_item(), externals_run(), file_activity(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_theme_config_file(), get_theme_screenshot(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), ical_wrapper(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_public_profile(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), list_smilies(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), onedirsync_run(), onepoll_run(), page_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), ratenotif_run(), recursive_activity_recipients(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), siteinfo_init(), smilies(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), verify_email_address(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_random_block(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

    +

    Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), RedMatrix\RedDAV\RedDirectory\__construct(), abook_toggle_flag(), account_remove(), account_service_class_allows(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), RedMatrix\RedDAV\RedDirectory\childExists(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), comment_local_origin(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), 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(), dir_tagblock(), dirsearch_content(), drop_item(), editpost_content(), event_store_item(), externals_run(), file_activity(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_theme_config_file(), get_theme_screenshot(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), ical_wrapper(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_public_profile(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), list_smilies(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), onedirsync_run(), onepoll_run(), page_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), ratenotif_run(), recursive_activity_recipients(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), siteinfo_init(), smilies(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), verify_email_address(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_random_block(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

    @@ -1846,7 +1846,7 @@ Variables
    See Also
    App::get_baseurl()
    Returns
    string
    -

    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_like(), diaspora_request(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), events_content(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_directory_primary(), get_parent_cloudpath(), Item\get_template_data(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_content(), 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(), poller_run(), 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(), regdir_init(), 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(), sharedwithme_content(), 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_like(), diaspora_request(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), events_content(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_directory_primary(), get_parent_cloudpath(), Item\get_template_data(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_content(), 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(), poller_run(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), ratenotif_run(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), regdir_init(), 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(), sharedwithme_content(), 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().

    @@ -2773,7 +2773,7 @@ Variables
    - +
    const DB_UPDATE_VERSION 1137const DB_UPDATE_VERSION 1138
    @@ -3311,7 +3311,7 @@ Variables
    @@ -3459,7 +3459,7 @@ Variables diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index a21414b08..cbc160c85 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -307,7 +307,7 @@ Functions
    -

    Referenced by abook_toggle_flag(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), format_event_ical(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), RedMatrix\RedDAV\RedFile\getLastModified(), RedMatrix\RedDAV\RedDirectory\getLastModified(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), log_failed_login(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), prate_post(), process_rating_delivery(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rate_post(), ratenotif_run(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by abook_toggle_flag(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), format_event_ical(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), RedMatrix\RedDAV\RedFile\getLastModified(), RedMatrix\RedDAV\RedDirectory\getLastModified(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), log_failed_login(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), prate_post(), process_rating_delivery(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rate_post(), ratenotif_run(), regdir_init(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index f23b8b49c..900b6d1c2 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -459,7 +459,7 @@ Functions @@ -575,7 +575,7 @@ Functions
    Returns
    bool|array
    -

    Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), in_group(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), nav(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_on(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), prate_init(), prate_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_local_posts_stat(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), wtagblock(), xchan_content(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_queue(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), in_group(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), nav(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_on(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), prate_init(), prate_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_local_posts_stat(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), wtagblock(), xchan_content(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    diff --git a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html new file mode 100644 index 000000000..b0a09dcc0 --- /dev/null +++ b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: extend/theme/deadsuperhero/occupant Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    occupant Directory Reference
    +
    +
    + + + + +

    +Directories

    directory  php
     
    +
    +
    + diff --git a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js new file mode 100644 index 000000000..68cdb9382 --- /dev/null +++ b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js @@ -0,0 +1,4 @@ +var dir_0d5ac3124d787e6297f47179aec2cdad = +[ + [ "php", "dir_94ce3c0aa655f52cbce858751688d328.html", "dir_94ce3c0aa655f52cbce858751688d328" ] +]; \ No newline at end of file diff --git a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html new file mode 100644 index 000000000..4a232a331 --- /dev/null +++ b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html @@ -0,0 +1,114 @@ + + + + + + +The Red Matrix: extend/theme/deadsuperhero/occupant/php Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    php Directory Reference
    +
    +
    + + + + + + +

    +Files

    file  style.php
     
    file  theme.php
     
    +
    +
    + diff --git a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js new file mode 100644 index 000000000..8fb70cd72 --- /dev/null +++ b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js @@ -0,0 +1,5 @@ +var dir_94ce3c0aa655f52cbce858751688d328 = +[ + [ "style.php", "extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html", null ], + [ "theme.php", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html index 56a2801a8..a0adcb07a 100644 --- a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html +++ b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html @@ -108,6 +108,8 @@ Directories   directory  minded   +directory  occupant +  directory  sporadic   directory  stumble diff --git a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js index 75a57ff81..37a9fc703 100644 --- a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js +++ b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js @@ -2,6 +2,7 @@ var dir_bf49406b6a987836ba4fe5618afdb371 = [ [ "hivenet", "dir_5b50d2dc059442371252f4f6fa0b8ef6.html", "dir_5b50d2dc059442371252f4f6fa0b8ef6" ], [ "minded", "dir_d53802940ab180b2c59d9e30e9e33e5b.html", "dir_d53802940ab180b2c59d9e30e9e33e5b" ], + [ "occupant", "dir_0d5ac3124d787e6297f47179aec2cdad.html", "dir_0d5ac3124d787e6297f47179aec2cdad" ], [ "sporadic", "dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html", "dir_dcbba3cf1f9c80ab791fdcb3d0e78672" ], [ "stumble", "dir_b8abe7ef07ecd5203a481d38354dbb5c.html", "dir_b8abe7ef07ecd5203a481d38354dbb5c" ], [ "suckerberg", "dir_1586f67ab5300c2995f38a68fc5c4b7d.html", "dir_1586f67ab5300c2995f38a68fc5c4b7d" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index 8247cd8c8..fe16c5f56 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -188,8 +188,6 @@ Files   file  features.php   -file  fixd.php -  file  follow.php   file  gprobe.php diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index e2ce562ef..796f65867 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -45,7 +45,6 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "expire.php", "expire_8php.html", "expire_8php" ], [ "externals.php", "externals_8php.html", "externals_8php" ], [ "features.php", "features_8php.html", "features_8php" ], - [ "fixd.php", "fixd_8php.html", "fixd_8php" ], [ "follow.php", "include_2follow_8php.html", "include_2follow_8php" ], [ "gprobe.php", "gprobe_8php.html", "gprobe_8php" ], [ "group.php", "include_2group_8php.html", "include_2group_8php" ], diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html new file mode 100644 index 000000000..ad8e9d7cb --- /dev/null +++ b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: extend/theme/deadsuperhero/occupant/php/style.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    style.php File Reference
    +
    +
    +
    +
    + diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html new file mode 100644 index 000000000..dbcfba61d --- /dev/null +++ b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html @@ -0,0 +1,144 @@ + + + + + + +The Red Matrix: extend/theme/deadsuperhero/occupant/php/theme.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    theme.php File Reference
    +
    +
    + + + + +

    +Functions

     occupant_init (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    occupant_init ($a)
    +
    +
      +
    • Name: Occupant
    • +
    • Description: An Occupy theme.
    • +
    • Version: 1.0
    • +
    • Author: Sean Tilley
    • +
    • Compat: Red [*]
    • +
    + +
    +
    +
    +
    + diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js new file mode 100644 index 000000000..b454020db --- /dev/null +++ b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js @@ -0,0 +1,4 @@ +var extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php = +[ + [ "occupant_init", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8", null ] +]; \ No newline at end of file diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 2b3392b7b..bb5e27be4 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -160,7 +160,7 @@ Variables
    -

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

    +

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

    diff --git a/doc/html/files.html b/doc/html/files.html index d00561097..3e6c8e371 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -120,26 +120,30 @@ $(document).ready(function(){initNavTree('files.html','');}); |  |\+php |  | o*style.php |  | \*theme.php -|  o+sporadic -|  |\+php -|  | o*style.php -|  | \*theme.php -|  o+stumble -|  |\+php -|  | o*style.php -|  | \*theme.php -|  o+suckerberg -|  |\+php -|  | o*style.php -|  | \*theme.php -|  o+sunbeam -|  |\+php -|  | o*style.php -|  | \*theme.php -|  \+yolo -|   \+php -|    o*style.php -|    \*theme.php +|  o+occupant +|  |\+php +|  | o*style.php +|  | \*theme.php +|  o+sporadic +|  |\+php +|  | o*style.php +|  | \*theme.php +|  o+stumble +|  |\+php +|  | o*style.php +|  | \*theme.php +|  o+suckerberg +|  |\+php +|  | o*style.php +|  | \*theme.php +|  o+sunbeam +|  |\+php +|  | o*style.php +|  | \*theme.php +|  \+yolo +|   \+php +|    o*style.php +|    \*theme.php o+include |o+dba ||o*dba_driver.phpSome database related functions and abstract driver class @@ -193,52 +197,51 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*expire.php |o*externals.php |o*features.php -|o*fixd.php -|o*follow.php -|o*gprobe.php -|o*group.php -|o*html2bbcode.php -|o*html2plain.php -|o*hubloc.php -|o*identity.php -|o*ItemObject.php -|o*ITemplateEngine.php -|o*items.php -|o*language.phpTranslation support -|o*menu.php -|o*message.php -|o*nav.php -|o*network.php -|o*notifier.php -|o*notify.php -|o*oauth.php -|o*oembed.php -|o*onedirsync.php -|o*onepoll.php -|o*page_widgets.php -|o*permissions.php -|o*photos.php -|o*plugin.phpSome functions to handle addons and themes -|o*poller.php -|o*probe.php -|o*profile_selectors.php -|o*ProtoDriver.php -|o*queue.php -|o*queue_fn.php -|o*ratenotif.php -|o*reddav.phpSome DAV related functions for RedMatrix -|o*security.php -|o*session.php -|o*smarty.php -|o*socgraph.php -|o*spam.php -|o*statistics_fns.php -|o*system_unavailable.php -|o*taxonomy.php -|o*template_processor.php -|o*text.php -|o*widgets.phpThis file contains the widgets -|\*zot.php +|o*follow.php +|o*gprobe.php +|o*group.php +|o*html2bbcode.php +|o*html2plain.php +|o*hubloc.php +|o*identity.php +|o*ItemObject.php +|o*ITemplateEngine.php +|o*items.php +|o*language.phpTranslation support +|o*menu.php +|o*message.php +|o*nav.php +|o*network.php +|o*notifier.php +|o*notify.php +|o*oauth.php +|o*oembed.php +|o*onedirsync.php +|o*onepoll.php +|o*page_widgets.php +|o*permissions.php +|o*photos.php +|o*plugin.phpSome functions to handle addons and themes +|o*poller.php +|o*probe.php +|o*profile_selectors.php +|o*ProtoDriver.php +|o*queue.php +|o*queue_fn.php +|o*ratenotif.php +|o*reddav.phpSome DAV related functions for RedMatrix +|o*security.php +|o*session.php +|o*smarty.php +|o*socgraph.php +|o*spam.php +|o*statistics_fns.php +|o*system_unavailable.php +|o*taxonomy.php +|o*template_processor.php +|o*text.php +|o*widgets.phpThis file contains the widgets +|\*zot.php o+mod |o*_well_known.php |o*achievements.php diff --git a/doc/html/globals.html b/doc/html/globals.html index 39b613d8b..3e86d682f 100644 --- a/doc/html/globals.html +++ b/doc/html/globals.html @@ -240,12 +240,6 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $pofile : php2po.php
  • -
  • $r -: fixd.php -
  • -
  • $rand -: fixd.php -
  • $res : docblox_errorchecker.php
  • @@ -276,9 +270,6 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $strongmacro : style.php
  • -
  • $total -: fixd.php -
  • $uid : style.php
  • diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html index 277e94b5a..a512fddb3 100644 --- a/doc/html/globals_0x61.html +++ b/doc/html/globals_0x61.html @@ -394,6 +394,9 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');});
  • admin_page_profs_post() : admin.php
  • +
  • admin_page_queue() +: admin.php +
  • admin_page_site() : admin.php
  • diff --git a/doc/html/globals_0x63.html b/doc/html/globals_0x63.html index 7dedc92c7..e85a0e8b0 100644 --- a/doc/html/globals_0x63.html +++ b/doc/html/globals_0x63.html @@ -352,6 +352,9 @@ $(document).ready(function(){initNavTree('globals_0x63.html','');});
  • comanche_widget() : comanche.php
  • +
  • comment_local_origin() +: items.php +
  • comments_are_now_closed() : items.php
  • diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html index 0e81d1939..47fe76a4f 100644 --- a/doc/html/globals_0x6c.html +++ b/doc/html/globals_0x6c.html @@ -179,7 +179,7 @@ $(document).ready(function(){initNavTree('globals_0x6c.html','');}); : text.php
  • linkify() -: text.php +: text.php
  • linkify_tags() : text.php diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html index 7234f16ee..1f96ef9e4 100644 --- a/doc/html/globals_0x6e.html +++ b/doc/html/globals_0x6e.html @@ -146,8 +146,7 @@ $(document).ready(function(){initNavTree('globals_0x6e.html','');});

    - n -

    • n -: fixd.php -, php2po.php +: php2po.php
    • namesList() : docblox_errorchecker.php diff --git a/doc/html/globals_0x6f.html b/doc/html/globals_0x6f.html index 62f041ca2..c4563ddd7 100644 --- a/doc/html/globals_0x6f.html +++ b/doc/html/globals_0x6f.html @@ -154,6 +154,9 @@ $(document).ready(function(){initNavTree('globals_0x6f.html','');});
    • obj_verbs() : taxonomy.php
    • +
    • occupant_init() +: theme.php +
    • oe_build_xpath() : oembed.php
    • diff --git a/doc/html/globals_func_0x61.html b/doc/html/globals_func_0x61.html index 3d65538b8..05ea5dfc9 100644 --- a/doc/html/globals_func_0x61.html +++ b/doc/html/globals_func_0x61.html @@ -222,6 +222,9 @@ $(document).ready(function(){initNavTree('globals_func_0x61.html','');});
    • admin_page_profs_post() : admin.php
    • +
    • admin_page_queue() +: admin.php +
    • admin_page_site() : admin.php
    • diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html index 5a72b87a4..d0243c222 100644 --- a/doc/html/globals_func_0x63.html +++ b/doc/html/globals_func_0x63.html @@ -342,6 +342,9 @@ $(document).ready(function(){initNavTree('globals_func_0x63.html','');});
    • comanche_widget() : comanche.php
    • +
    • comment_local_origin() +: items.php +
    • comments_are_now_closed() : items.php
    • diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html index 880f20479..8ccdbbd32 100644 --- a/doc/html/globals_func_0x6c.html +++ b/doc/html/globals_func_0x6c.html @@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('globals_func_0x6c.html','');}); : text.php
    • linkify() -: text.php +: text.php
    • linkify_tags() : text.php diff --git a/doc/html/globals_func_0x6f.html b/doc/html/globals_func_0x6f.html index 48055bbc0..371f2bea5 100644 --- a/doc/html/globals_func_0x6f.html +++ b/doc/html/globals_func_0x6f.html @@ -153,6 +153,9 @@ $(document).ready(function(){initNavTree('globals_func_0x6f.html','');});
    • obj_verbs() : taxonomy.php
    • +
    • occupant_init() +: theme.php +
    • oe_build_xpath() : oembed.php
    • diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html index a6c13dbee..43f27ad6c 100644 --- a/doc/html/globals_vars.html +++ b/doc/html/globals_vars.html @@ -235,12 +235,6 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
    • $pofile : php2po.php
    • -
    • $r -: fixd.php -
    • -
    • $rand -: fixd.php -
    • $res : docblox_errorchecker.php
    • @@ -271,9 +265,6 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
    • $strongmacro : style.php
    • -
    • $total -: fixd.php -
    • $uid : style.php
    • diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html index 42504fe64..645094fe8 100644 --- a/doc/html/globals_vars_0x6e.html +++ b/doc/html/globals_vars_0x6e.html @@ -141,8 +141,7 @@ $(document).ready(function(){initNavTree('globals_vars_0x6e.html','');});

      - n -

      • n -: fixd.php -, php2po.php +: php2po.php
      • NAMESPACE_ACTIVITY : boot.php diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 12aeaac1d..ae703a490 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -340,7 +340,7 @@ Functions
        Returns
        mixed Return value or false on error or if not set
        -

        Referenced by account_service_class_allows(), account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), AES256CBC_decrypt(), AES256CBC_encrypt(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), apps_content(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), check_webbie(), cli_startup(), connedit_content(), create_account(), create_identity(), create_sys_channel(), RedMatrix\RedDAV\RedDirectory\createFile(), detect_language(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_process_outbound(), diaspora_send_followup(), diaspora_send_mail(), diaspora_send_relay(), diaspora_transmit(), directory_content(), directory_run(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_primary(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_poller_runtime(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), ical_wrapper(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), log_failed_login(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_init(), photo_upload(), photos_content(), photos_init(), poco(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), random_profile(), rate_content(), ratenotif_run(), ratings_content(), ratings_init(), ratingsearch_init(), receive_post(), ref_session_gc(), regdir_init(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), widget_rating(), z_fetch_url(), z_get_temp_dir(), z_get_upload_dir(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        +

        Referenced by account_service_class_allows(), account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), AES256CBC_decrypt(), AES256CBC_encrypt(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), apps_content(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), check_webbie(), cli_startup(), connedit_content(), create_account(), create_identity(), create_sys_channel(), RedMatrix\RedDAV\RedDirectory\createFile(), detect_language(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_process_outbound(), diaspora_send_followup(), diaspora_send_mail(), diaspora_send_relay(), diaspora_transmit(), directory_content(), directory_run(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_primary(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_poller_runtime(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), ical_wrapper(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), log_failed_login(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_init(), photo_upload(), photos_content(), photos_init(), poco(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), random_profile(), rate_content(), ratenotif_run(), ratings_content(), ratings_init(), ratingsearch_init(), receive_post(), ref_session_gc(), regdir_init(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), sync_directories(), tag_deliver(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), widget_rating(), z_fetch_url(), z_get_temp_dir(), z_get_upload_dir(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index 543849d80..74d573346 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -260,6 +260,8 @@ Functions    set_linkified_perms ($linkified, &$str_contact_allow, &$str_group_allow, $profile_uid, $parent_item=false)   + comment_local_origin ($item) + 

        Function Documentation

        @@ -507,7 +509,7 @@ Functions -

        Referenced by tag_deliver().

        +

        Referenced by process_delivery(), and tag_deliver().

        @@ -537,6 +539,24 @@ Functions

        Referenced by notifier_run().

        + + + +
        +
        + + + + + + + + +
        comment_local_origin ( $item)
        +
        + +

        Referenced by notifier_run().

        +
        diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js index ae4116309..1066f072e 100644 --- a/doc/html/items_8php.js +++ b/doc/html/items_8php.js @@ -8,6 +8,7 @@ var items_8php = [ "can_comment_on_post", "items_8php.html#a1e75047cf175aaee8dd16aa761913ff9", null ], [ "check_item_source", "items_8php.html#a87ac9e359591721a824ecd23bbb56296", null ], [ "collect_recipients", "items_8php.html#a772f0ae77ad77c8ab68ed918a3870946", null ], + [ "comment_local_origin", "items_8php.html#ada03c12bfd247c9972844e2daa270b52", null ], [ "comments_are_now_closed", "items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723", null ], [ "compare_permissions", "items_8php.html#a0790a4550b829e85504af548623002ca", null ], [ "construct_activity_object", "items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee", null ], diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index d70632fc2..104787f04 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -360,7 +360,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(), bb_replace_images(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), builtin_activity_puller(), 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(), datetimesel(), dav_init(), 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(), get_roles(), Item\get_template_data(), get_timezones(), getIconFromType(), 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(), 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(), rate_content(), ratings_content(), ratings_init(), rbmark_content(), rbmark_post(), redbasic_form(), regdir_init(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), sharedwithme_content(), 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(), uexport_content(), update_birthdays(), update_channel_content(), update_display_content(), update_home_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_photo(), widget_photo_rand(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), 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_queue(), 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(), bb_replace_images(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), builtin_activity_puller(), 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(), datetimesel(), dav_init(), 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(), get_roles(), Item\get_template_data(), get_timezones(), getIconFromType(), 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(), 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(), rate_content(), ratings_content(), ratings_init(), rbmark_content(), rbmark_post(), redbasic_form(), regdir_init(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), sharedwithme_content(), 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(), uexport_content(), update_birthdays(), update_channel_content(), update_display_content(), update_home_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_photo(), widget_photo_rand(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), xchan_content(), z_readdir(), and zfinger_init().

        diff --git a/doc/html/navtree.js b/doc/html/navtree.js index b285a204d..30d209836 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -38,16 +38,16 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a56fd673eaa7014150297ce1162502db5", -"classApp.html#a230e975296cf164da2fee35ef720964f", -"classTemplate.html", -"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65", -"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6", -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51", -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9", -"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7", -"smarty_8php.html", -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596" +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", +"classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7", +"classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e", +"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b", +"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a", +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3", +"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92", +"pdledit_8php.html", +"sitelist_8php.html", +"vote_8php.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index f626fb6fd..443139db8 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -20,10 +20,10 @@ var NAVTREEINDEX0 = "Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[7,0,1,21,1], "Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[7,0,1,21,0], "ConversationObject_8php.html":[7,0,1,25], -"ITemplateEngine_8php.html":[7,0,1,48], +"ITemplateEngine_8php.html":[7,0,1,47], "Importer_8php.html":[7,0,1,1,0], -"ItemObject_8php.html":[7,0,1,47], -"ProtoDriver_8php.html":[7,0,1,68], +"ItemObject_8php.html":[7,0,1,46], +"ProtoDriver_8php.html":[7,0,1,67], "RedBasicAuth_8php.html":[7,0,1,3,0], "RedBrowser_8php.html":[7,0,1,3,1], "RedDirectory_8php.html":[7,0,1,3,2], @@ -71,23 +71,24 @@ var NAVTREEINDEX0 = "admin_8php.html#a1d1362698af14d209aa3a0fb655551dd":[7,0,2,3,6], "admin_8php.html#a233b7c8c31776b7020532003c6e44e1c":[7,0,2,3,7], "admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057":[7,0,2,3,10], +"admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89":[7,0,2,3,11], "admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a":[7,0,2,3,9], "admin_8php.html#a42e628f367c168add8013352ac74d33f":[7,0,2,3,2], "admin_8php.html#a54128076986ba80c4a103de3fc3e19a8":[7,0,2,3,8], -"admin_8php.html#a5a696706a3869800e65fb365214241b7":[7,0,2,3,16], +"admin_8php.html#a5a696706a3869800e65fb365214241b7":[7,0,2,3,17], "admin_8php.html#a60ba9783ad14545814919970bc3fb725":[7,0,2,3,5], -"admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2":[7,0,2,3,15], +"admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2":[7,0,2,3,16], "admin_8php.html#a6943543f3138f6ee182cb701f415d1cc":[7,0,2,3,4], "admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade":[7,0,2,3,3], -"admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e":[7,0,2,3,11], -"admin_8php.html#ac6e95b920b5abd030cc522964987087a":[7,0,2,3,13], -"admin_8php.html#acf51f5837a7427832144c2bf7308ada3":[7,0,2,3,17], -"admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4":[7,0,2,3,19], +"admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e":[7,0,2,3,12], +"admin_8php.html#ac6e95b920b5abd030cc522964987087a":[7,0,2,3,14], +"admin_8php.html#acf51f5837a7427832144c2bf7308ada3":[7,0,2,3,18], +"admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4":[7,0,2,3,20], "admin_8php.html#ad6f87a764fd35f522c7b4c351d7878ec":[7,0,2,3,1], -"admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f":[7,0,2,3,12], -"admin_8php.html#ae46311a3fefc21abc838a26e91789de6":[7,0,2,3,18], -"admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb":[7,0,2,3,14], -"admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[7,0,2,3,20], +"admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f":[7,0,2,3,13], +"admin_8php.html#ae46311a3fefc21abc838a26e91789de6":[7,0,2,3,19], +"admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb":[7,0,2,3,15], +"admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[7,0,2,3,21], "admin_8php.html#afef415e4011607fbb665610441595015":[7,0,2,3,0], "annotated.html":[6,0], "appman_8php.html":[7,0,2,5], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[7,0,5,32], "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[7,0,5,183], "boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[7,0,5,50], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[7,0,5,102], -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[7,0,5,40] +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[7,0,5,102] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index e12d0c057..ba8c76e2b 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[7,0,5,40], "boot_8php.html#a56fd673eaa7014150297ce1162502db5":[7,0,5,221], "boot_8php.html#a57eee7352714c004d36c26dda74af73e":[7,0,5,261], "boot_8php.html#a59717d02602a4babf2a54da8b33d93a5":[7,0,5,44], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[6,0,8,69], "classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[6,0,8,57], "classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2":[6,0,8,8], -"classApp.html#a1f60d19d47021629faac7a0a6d917e94":[6,0,8,55], -"classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[6,0,8,29] +"classApp.html#a1f60d19d47021629faac7a0a6d917e94":[6,0,8,55] }; diff --git a/doc/html/navtreeindex10.js b/doc/html/navtreeindex10.js index 72d2bf485..66df60907 100644 --- a/doc/html/navtreeindex10.js +++ b/doc/html/navtreeindex10.js @@ -1,5 +1,7 @@ var NAVTREEINDEX10 = { +"vote_8php.html":[7,0,2,141], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[7,0,2,141,2], "vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[7,0,2,141,0], "vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[7,0,2,141,1], "wall__attach_8php.html":[7,0,2,142], @@ -14,42 +16,42 @@ var NAVTREEINDEX10 = "wfinger_8php.html":[7,0,2,146], "wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[7,0,2,146,0], "widedarkness_8php.html":[7,0,4,1,0,2,10], -"widgets_8php.html":[7,0,1,83], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[7,0,1,83,12], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[7,0,1,83,31], -"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[7,0,1,83,3], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[7,0,1,83,9], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[7,0,1,83,10], -"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[7,0,1,83,17], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[7,0,1,83,19], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[7,0,1,83,20], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[7,0,1,83,6], -"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[7,0,1,83,30], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[7,0,1,83,13], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[7,0,1,83,32], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[7,0,1,83,22], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[7,0,1,83,16], -"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[7,0,1,83,2], -"widgets_8php.html#a7d0724165067077ff46484e4610e4323":[7,0,1,83,27], -"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[7,0,1,83,26], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[7,0,1,83,28], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[7,0,1,83,11], -"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[7,0,1,83,21], -"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[7,0,1,83,7], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[7,0,1,83,8], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[7,0,1,83,29], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[7,0,1,83,24], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[7,0,1,83,34], -"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[7,0,1,83,1], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[7,0,1,83,15], -"widgets_8php.html#add9b24d3304e529a7975e96122315554":[7,0,1,83,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[7,0,1,83,14], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[7,0,1,83,33], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[7,0,1,83,5], -"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[7,0,1,83,23], -"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[7,0,1,83,4], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[7,0,1,83,18], -"widgets_8php.html#afc7a579877414f4eb6f59698d3f69492":[7,0,1,83,25], +"widgets_8php.html":[7,0,1,82], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[7,0,1,82,12], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[7,0,1,82,31], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[7,0,1,82,3], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[7,0,1,82,9], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[7,0,1,82,10], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[7,0,1,82,17], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[7,0,1,82,19], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[7,0,1,82,20], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[7,0,1,82,6], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[7,0,1,82,30], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[7,0,1,82,13], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[7,0,1,82,32], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[7,0,1,82,22], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[7,0,1,82,16], +"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[7,0,1,82,2], +"widgets_8php.html#a7d0724165067077ff46484e4610e4323":[7,0,1,82,27], +"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[7,0,1,82,26], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[7,0,1,82,28], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[7,0,1,82,11], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[7,0,1,82,21], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[7,0,1,82,7], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[7,0,1,82,8], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[7,0,1,82,29], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[7,0,1,82,24], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[7,0,1,82,34], +"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[7,0,1,82,1], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[7,0,1,82,15], +"widgets_8php.html#add9b24d3304e529a7975e96122315554":[7,0,1,82,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[7,0,1,82,14], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[7,0,1,82,33], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[7,0,1,82,5], +"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[7,0,1,82,23], +"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[7,0,1,82,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[7,0,1,82,18], +"widgets_8php.html#afc7a579877414f4eb6f59698d3f69492":[7,0,1,82,25], "xchan_8php.html":[7,0,2,147], "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[7,0,2,147,0], "xpoco_8php.html":[7,0,2,148], @@ -60,41 +62,41 @@ var NAVTREEINDEX10 = "xref_8php.html#a9bee399213b8de8226b0d60834307473":[7,0,2,150,0], "zfinger_8php.html":[7,0,2,151], "zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[7,0,2,151,0], -"zot_8php.html":[7,0,1,84], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[7,0,1,84,16], -"zot_8php.html#a084c581d534e7e3b759488b46602288f":[7,0,1,84,21], -"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[7,0,1,84,11], -"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[7,0,1,84,9], -"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[7,0,1,84,6], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[7,0,1,84,7], -"zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b":[7,0,1,84,2], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[7,0,1,84,19], -"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[7,0,1,84,29], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[7,0,1,84,5], -"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[7,0,1,84,8], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[7,0,1,84,26], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[7,0,1,84,32], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[7,0,1,84,23], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[7,0,1,84,0], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[7,0,1,84,31], -"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[7,0,1,84,3], -"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[7,0,1,84,12], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[7,0,1,84,30], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[7,0,1,84,14], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[7,0,1,84,13], -"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[7,0,1,84,1], -"zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7":[7,0,1,84,24], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[7,0,1,84,17], -"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[7,0,1,84,18], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[7,0,1,84,28], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[7,0,1,84,20], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[7,0,1,84,33], -"zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181":[7,0,1,84,15], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[7,0,1,84,10], -"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[7,0,1,84,4], -"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[7,0,1,84,22], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[7,0,1,84,25], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[7,0,1,84,27], +"zot_8php.html":[7,0,1,83], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[7,0,1,83,16], +"zot_8php.html#a084c581d534e7e3b759488b46602288f":[7,0,1,83,21], +"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[7,0,1,83,11], +"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[7,0,1,83,9], +"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[7,0,1,83,6], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[7,0,1,83,7], +"zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b":[7,0,1,83,2], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[7,0,1,83,19], +"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[7,0,1,83,29], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[7,0,1,83,5], +"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[7,0,1,83,8], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[7,0,1,83,26], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[7,0,1,83,32], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[7,0,1,83,23], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[7,0,1,83,0], +"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[7,0,1,83,31], +"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[7,0,1,83,3], +"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[7,0,1,83,12], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[7,0,1,83,30], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[7,0,1,83,14], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[7,0,1,83,13], +"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[7,0,1,83,1], +"zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7":[7,0,1,83,24], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[7,0,1,83,17], +"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[7,0,1,83,18], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[7,0,1,83,28], +"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[7,0,1,83,20], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[7,0,1,83,33], +"zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181":[7,0,1,83,15], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[7,0,1,83,10], +"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[7,0,1,83,4], +"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[7,0,1,83,22], +"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[7,0,1,83,25], +"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[7,0,1,83,27], "zotfeed_8php.html":[7,0,2,152], "zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[7,0,2,152,0], "zotsh_8py.html":[7,0,3,1,1], diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index c753d7a9d..8dac6ad77 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[6,0,8,29], "classApp.html#a230e975296cf164da2fee35ef720964f":[6,0,8,33], "classApp.html#a244b2d53b21be269aad2269d23192f95":[6,0,8,73], "classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[6,0,8,72], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2":[6,0,4,1,3,12], "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe":[6,0,4,1,3,1], "classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25":[6,0,4,1,3,5], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d":[6,0,4,1,3,6], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e":[6,0,4,1,3,3] +"classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d":[6,0,4,1,3,6] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 0ebd60436..b15a4e9db 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e":[6,0,4,1,3,3], "classTemplate.html":[6,0,27], "classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[6,0,27,13], "classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[6,0,27,12], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[7,0,1,22,0], "contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[7,0,1,22,2], "contact__widgets_8php.html":[7,0,1,23], -"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[7,0,1,23,0], -"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[7,0,1,23,2] +"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[7,0,1,23,0] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index ab0b192a0..e472b5c8c 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[7,0,1,23,2], "contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[7,0,1,23,1], "contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[7,0,1,23,3], "contactgroup_8php.html":[7,0,2,20], @@ -145,26 +146,28 @@ var NAVTREEINDEX4 = "dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[7,0,1,31,0], "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[7,0,4,1,2,0], "dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[7,0,4,1,0,2], +"dir_0d5ac3124d787e6297f47179aec2cdad.html":[7,0,0,0,0,2], "dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[7,0,3,0], -"dir_1586f67ab5300c2995f38a68fc5c4b7d.html":[7,0,0,0,0,4], -"dir_172e021ddcd8632dc2b797c4a4961924.html":[7,0,0,0,0,4,0], +"dir_1586f67ab5300c2995f38a68fc5c4b7d.html":[7,0,0,0,0,5], +"dir_172e021ddcd8632dc2b797c4a4961924.html":[7,0,0,0,0,5,0], "dir_21bc5169ff11430004758be31dcfc6c4.html":[7,0,1,0], "dir_2222f31d7a61e527af3624100548cf57.html":[7,0,0], "dir_23ec12649285f9fabf3a6b7380226c28.html":[7,0,3], "dir_2b01166339035d109f34f44565eac444.html":[7,0,0,0], "dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html":[7,0,4,1,2,1], -"dir_3de62e6fc7b5905e890806571f832581.html":[7,0,0,0,0,6], -"dir_3f87478dd9b9ff2b54bc96c9063f79a0.html":[7,0,0,0,0,2,0], +"dir_3de62e6fc7b5905e890806571f832581.html":[7,0,0,0,0,7], +"dir_3f87478dd9b9ff2b54bc96c9063f79a0.html":[7,0,0,0,0,3,0], "dir_55dbaf9b7b53c4fc605c9011743a7353.html":[7,0,4,1,2], "dir_5adc1a22d666400f49fcc8826e30cd6d.html":[7,0,0,0,0,1,0], "dir_5b50d2dc059442371252f4f6fa0b8ef6.html":[7,0,0,0,0,0], "dir_7edbbd0f8c514efef79942dcdc21f738.html":[7,0,1,1], -"dir_80b621040c90c64e1a3ba8df441fb198.html":[7,0,0,0,0,6,0], +"dir_80b621040c90c64e1a3ba8df441fb198.html":[7,0,0,0,0,7,0], "dir_817f6d302394b98e59575acdb59998bc.html":[7,0,4,0], "dir_8543001e5d25368a6edede3e63efb554.html":[7,0,4,1], -"dir_863cdfcaa3c256fef8de0dcc53d6311a.html":[7,0,0,0,0,5], +"dir_863cdfcaa3c256fef8de0dcc53d6311a.html":[7,0,0,0,0,6], "dir_887fdc94312ba7b057b6bfe7fdd27ea5.html":[7,0,4,1,1,0], "dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[7,0,4,1,1], +"dir_94ce3c0aa655f52cbce858751688d328.html":[7,0,0,0,0,2,0], "dir__fns_8php.html":[7,0,1,32], "dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16":[7,0,1,32,0], "dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[7,0,1,32,6], @@ -176,7 +179,7 @@ var NAVTREEINDEX4 = "dir_aae29906d7bfc07d076125f669c8352e.html":[7,0,1,2], "dir_b2f003339c516cc00c8cadcafbe82f13.html":[7,0,4], "dir_b6f208674a96d24af8106c998c637d76.html":[7,0,3,1,0], -"dir_b8abe7ef07ecd5203a481d38354dbb5c.html":[7,0,0,0,0,3], +"dir_b8abe7ef07ecd5203a481d38354dbb5c.html":[7,0,0,0,0,4], "dir_bf49406b6a987836ba4fe5618afdb371.html":[7,0,0,0,0], "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html":[7,0,4,1,0,1], "dir_d41ce877eb409a4791b288730010abe2.html":[7,0,2], @@ -184,11 +187,11 @@ var NAVTREEINDEX4 = "dir_d520c5cf583201d9437764f209363c22.html":[7,0,4,1,0], "dir_d53802940ab180b2c59d9e30e9e33e5b.html":[7,0,0,0,0,1], "dir_da7dee9003bbd0df28447261834d7815.html":[7,0,0,0,0,0,0], -"dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html":[7,0,0,0,0,2], +"dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html":[7,0,0,0,0,3], "dir_e7f045be8bb383d8447c6a6b84145083.html":[7,0,1,3], "dir_f19da925ee886ec38f19b0e8c19779bc.html":[7,0,4,1,0,0], -"dir_f20b1a70c98162efa33fce7214fb9665.html":[7,0,0,0,0,3,0], -"dir_f6607f4f29fa266cde007631e2b0eade.html":[7,0,0,0,0,5,0], +"dir_f20b1a70c98162efa33fce7214fb9665.html":[7,0,0,0,0,4,0], +"dir_f6607f4f29fa266cde007631e2b0eade.html":[7,0,0,0,0,6,0], "dir_fbbac2f976ce3830c063dc14fc87781a.html":[7,0,3,1], "dirsearch_8php.html":[7,0,2,24], "dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[7,0,2,24,4], @@ -246,8 +249,5 @@ var NAVTREEINDEX4 = "extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html":[7,0,0,0,0,0,0,1], "extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29":[7,0,0,0,0,0,0,1,0], "extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html":[7,0,0,0,0,1,0,0], -"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html":[7,0,0,0,0,1,0,1], -"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a":[7,0,0,0,0,1,0,1,0], -"extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html":[7,0,0,0,0,2,0,0], -"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html":[7,0,0,0,0,2,0,1] +"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html":[7,0,0,0,0,1,0,1] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 3c2496839..5c30bb39a 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,18 +1,24 @@ var NAVTREEINDEX5 = { -"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6":[7,0,0,0,0,2,0,1,0], -"extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html":[7,0,0,0,0,3,0,0], -"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html":[7,0,0,0,0,3,0,1], -"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[7,0,0,0,0,3,0,1,0], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html":[7,0,0,0,0,4,0,0], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html":[7,0,0,0,0,4,0,1], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[7,0,0,0,0,4,0,1,0], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html":[7,0,0,0,0,5,0,0], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html":[7,0,0,0,0,5,0,1], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525":[7,0,0,0,0,5,0,1,0], -"extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html":[7,0,0,0,0,6,0,0], -"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html":[7,0,0,0,0,6,0,1], -"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da":[7,0,0,0,0,6,0,1,0], +"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a":[7,0,0,0,0,1,0,1,0], +"extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html":[7,0,0,0,0,2,0,0], +"extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html":[7,0,0,0,0,2,0,1], +"extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8":[7,0,0,0,0,2,0,1,0], +"extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html":[7,0,0,0,0,3,0,0], +"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html":[7,0,0,0,0,3,0,1], +"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6":[7,0,0,0,0,3,0,1,0], +"extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html":[7,0,0,0,0,4,0,0], +"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html":[7,0,0,0,0,4,0,1], +"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[7,0,0,0,0,4,0,1,0], +"extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html":[7,0,0,0,0,5,0,0], +"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html":[7,0,0,0,0,5,0,1], +"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[7,0,0,0,0,5,0,1,0], +"extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html":[7,0,0,0,0,6,0,0], +"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html":[7,0,0,0,0,6,0,1], +"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525":[7,0,0,0,0,6,0,1,0], +"extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html":[7,0,0,0,0,7,0,0], +"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html":[7,0,0,0,0,7,0,1], +"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da":[7,0,0,0,0,7,0,1,0], "externals_8php.html":[7,0,1,37], "externals_8php.html#a4df44079e6f915286088b7a0d44db926":[7,0,1,37,0], "extract_8php.html":[7,0,3,4], @@ -36,11 +42,6 @@ var NAVTREEINDEX5 = "filestorage_8php.html":[7,0,2,35], "filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[7,0,2,35,0], "filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[7,0,2,35,1], -"fixd_8php.html":[7,0,1,39], -"fixd_8php.html#a241b818f48030b628685b2e5119c5624":[7,0,1,39,2], -"fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219":[7,0,1,39,1], -"fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98":[7,0,1,39,0], -"fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb":[7,0,1,39,3], "fpostit_8php.html":[7,0,3,0,0], "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[7,0,3,0,0,0], "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[7,0,3,0,0,1], @@ -65,8 +66,8 @@ var NAVTREEINDEX5 = "fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[7,0,2,37,0], "full_8php.html":[7,0,4,0,2], "full_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,0,2,0], -"functions.html":[6,3,0], "functions.html":[6,3,0,0], +"functions.html":[6,3,0], "functions_0x5f.html":[6,3,0,1], "functions_0x61.html":[6,3,0,2], "functions_0x62.html":[6,3,0,3], @@ -113,8 +114,8 @@ var NAVTREEINDEX5 = "functions_func_0x75.html":[6,3,1,19], "functions_func_0x76.html":[6,3,1,20], "functions_vars.html":[6,3,2], -"globals.html":[7,1,0,0], "globals.html":[7,1,0], +"globals.html":[7,1,0,0], "globals_0x5f.html":[7,1,0,1], "globals_0x61.html":[7,1,0,2], "globals_0x62.html":[7,1,0,3], @@ -142,8 +143,8 @@ var NAVTREEINDEX5 = "globals_0x78.html":[7,1,0,25], "globals_0x79.html":[7,1,0,26], "globals_0x7a.html":[7,1,0,27], -"globals_func.html":[7,1,1,0], "globals_func.html":[7,1,1], +"globals_func.html":[7,1,1,0], "globals_func_0x61.html":[7,1,1,1], "globals_func_0x62.html":[7,1,1,2], "globals_func_0x63.html":[7,1,1,3], @@ -194,8 +195,8 @@ var NAVTREEINDEX5 = "globals_vars_0x77.html":[7,1,2,20], "globals_vars_0x78.html":[7,1,2,21], "globals_vars_0x7a.html":[7,1,2,22], -"gprobe_8php.html":[7,0,1,41], -"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[7,0,1,41,0], +"gprobe_8php.html":[7,0,1,40], +"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[7,0,1,40,0], "greenthumbnails_8php.html":[7,0,4,1,0,2,3], "hcard_8php.html":[7,0,2,39], "hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[7,0,2,39,0], @@ -209,45 +210,44 @@ var NAVTREEINDEX5 = "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[7,0,2,41,1], "hostxrd_8php.html":[7,0,2,42], "hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[7,0,2,42,0], -"html2bbcode_8php.html":[7,0,1,43], -"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[7,0,1,43,3], -"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[7,0,1,43,1], -"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[7,0,1,43,0], -"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[7,0,1,43,2], -"html2plain_8php.html":[7,0,1,44], -"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[7,0,1,44,0], -"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[7,0,1,44,3], -"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[7,0,1,44,2], -"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[7,0,1,44,1], -"hubloc_8php.html":[7,0,1,45], -"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[7,0,1,45,3], -"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[7,0,1,45,5], -"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[7,0,1,45,2], -"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[7,0,1,45,0], -"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[7,0,1,45,1], -"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[7,0,1,45,4], -"identity_8php.html":[7,0,1,46], -"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[7,0,1,46,3], -"identity_8php.html#a224710dfb7465b706c91134247c20afa":[7,0,1,46,12], -"identity_8php.html#a293f416ce9050220b183e08ff5890216":[7,0,1,46,6], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[7,0,1,46,18], -"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[7,0,1,46,23], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[7,0,1,46,11], -"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[7,0,1,46,2], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[7,0,1,46,27], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[7,0,1,46,26], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[7,0,1,46,28], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[7,0,1,46,9], -"identity_8php.html#a4e996e44b50330098a04b467367a559f":[7,0,1,46,21], -"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[7,0,1,46,13], -"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[7,0,1,46,24], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[7,0,1,46,31], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[7,0,1,46,32], -"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[7,0,1,46,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[7,0,1,46,29], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[7,0,1,46,20], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[7,0,1,46,10], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[7,0,1,46,22], -"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[7,0,1,46,0], -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[7,0,1,46,15] +"html2bbcode_8php.html":[7,0,1,42], +"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[7,0,1,42,3], +"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[7,0,1,42,1], +"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[7,0,1,42,0], +"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[7,0,1,42,2], +"html2plain_8php.html":[7,0,1,43], +"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[7,0,1,43,0], +"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[7,0,1,43,3], +"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[7,0,1,43,2], +"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[7,0,1,43,1], +"hubloc_8php.html":[7,0,1,44], +"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[7,0,1,44,3], +"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[7,0,1,44,5], +"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[7,0,1,44,2], +"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[7,0,1,44,0], +"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[7,0,1,44,1], +"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[7,0,1,44,4], +"identity_8php.html":[7,0,1,45], +"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[7,0,1,45,3], +"identity_8php.html#a224710dfb7465b706c91134247c20afa":[7,0,1,45,12], +"identity_8php.html#a293f416ce9050220b183e08ff5890216":[7,0,1,45,6], +"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[7,0,1,45,18], +"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[7,0,1,45,23], +"identity_8php.html#a332df795f684788002f5a6424abacfd7":[7,0,1,45,11], +"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[7,0,1,45,2], +"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[7,0,1,45,27], +"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[7,0,1,45,26], +"identity_8php.html#a47d6f53216f23a3484061793bef29854":[7,0,1,45,28], +"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[7,0,1,45,9], +"identity_8php.html#a4e996e44b50330098a04b467367a559f":[7,0,1,45,21], +"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[7,0,1,45,13], +"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[7,0,1,45,24], +"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[7,0,1,45,31], +"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[7,0,1,45,32], +"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[7,0,1,45,1], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[7,0,1,45,29], +"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[7,0,1,45,20], +"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[7,0,1,45,10], +"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[7,0,1,45,22], +"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[7,0,1,45,0] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 2ce376cf5..35247b8b1 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,15 +1,16 @@ var NAVTREEINDEX6 = { -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[7,0,1,46,14], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[7,0,1,46,7], -"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[7,0,1,46,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[7,0,1,46,17], -"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[7,0,1,46,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[7,0,1,46,25], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[7,0,1,46,19], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[7,0,1,46,8], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[7,0,1,46,30], -"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[7,0,1,46,16], +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[7,0,1,45,15], +"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[7,0,1,45,14], +"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[7,0,1,45,7], +"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[7,0,1,45,5], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[7,0,1,45,17], +"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[7,0,1,45,4], +"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[7,0,1,45,25], +"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[7,0,1,45,19], +"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[7,0,1,45,8], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[7,0,1,45,30], +"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[7,0,1,45,16], "impel_8php.html":[7,0,2,43], "impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[7,0,2,43,0], "import_8php.html":[7,0,2,44], @@ -136,98 +137,98 @@ var NAVTREEINDEX6 = "include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[7,0,1,20,12], "include_2directory_8php.html":[7,0,1,33], "include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[7,0,1,33,0], -"include_2follow_8php.html":[7,0,1,40], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[7,0,1,40,0], -"include_2group_8php.html":[7,0,1,42], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[7,0,1,42,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[7,0,1,42,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[7,0,1,42,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[7,0,1,42,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[7,0,1,42,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[7,0,1,42,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[7,0,1,42,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[7,0,1,42,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[7,0,1,42,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[7,0,1,42,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[7,0,1,42,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[7,0,1,42,9], -"include_2menu_8php.html":[7,0,1,51], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[7,0,1,51,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[7,0,1,51,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[7,0,1,51,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[7,0,1,51,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[7,0,1,51,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[7,0,1,51,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[7,0,1,51,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[7,0,1,51,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[7,0,1,51,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[7,0,1,51,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[7,0,1,51,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[7,0,1,51,0], -"include_2message_8php.html":[7,0,1,52], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[7,0,1,52,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[7,0,1,52,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[7,0,1,52,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[7,0,1,52,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[7,0,1,52,0], -"include_2network_8php.html":[7,0,1,54], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[7,0,1,54,7], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[7,0,1,54,14], -"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[7,0,1,54,16], -"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[7,0,1,54,21], -"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[7,0,1,54,6], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[7,0,1,54,12], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[7,0,1,54,11], -"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[7,0,1,54,4], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[7,0,1,54,20], -"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[7,0,1,54,5], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[7,0,1,54,10], -"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[7,0,1,54,9], -"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[7,0,1,54,13], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[7,0,1,54,19], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[7,0,1,54,8], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[7,0,1,54,25], -"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[7,0,1,54,26], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[7,0,1,54,22], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[7,0,1,54,23], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[7,0,1,54,24], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[7,0,1,54,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[7,0,1,54,0], -"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[7,0,1,54,17], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[7,0,1,54,3], -"include_2network_8php.html#adf741da85aa82493f2084eca63092dd5":[7,0,1,54,18], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[7,0,1,54,15], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[7,0,1,54,1], -"include_2notify_8php.html":[7,0,1,56], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[7,0,1,56,0], -"include_2oembed_8php.html":[7,0,1,58], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[7,0,1,58,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[7,0,1,58,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[7,0,1,58,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[7,0,1,58,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[7,0,1,58,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[7,0,1,58,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[7,0,1,58,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[7,0,1,58,2], -"include_2photos_8php.html":[7,0,1,63], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[7,0,1,63,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[7,0,1,63,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[7,0,1,63,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[7,0,1,63,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[7,0,1,63,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[7,0,1,63,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[7,0,1,63,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[7,0,1,63,4], -"include_2probe_8php.html":[7,0,1,66], -"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[7,0,1,66,3], -"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[7,0,1,66,4], -"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[7,0,1,66,1], -"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[7,0,1,66,8], -"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[7,0,1,66,0], -"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[7,0,1,66,6], -"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[7,0,1,66,2], -"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[7,0,1,66,7], -"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[7,0,1,66,5], +"include_2follow_8php.html":[7,0,1,39], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[7,0,1,39,0], +"include_2group_8php.html":[7,0,1,41], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[7,0,1,41,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[7,0,1,41,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[7,0,1,41,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[7,0,1,41,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[7,0,1,41,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[7,0,1,41,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[7,0,1,41,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[7,0,1,41,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[7,0,1,41,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[7,0,1,41,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[7,0,1,41,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[7,0,1,41,9], +"include_2menu_8php.html":[7,0,1,50], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[7,0,1,50,11], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[7,0,1,50,1], +"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[7,0,1,50,10], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[7,0,1,50,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[7,0,1,50,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[7,0,1,50,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[7,0,1,50,7], +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[7,0,1,50,5], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[7,0,1,50,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[7,0,1,50,6], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[7,0,1,50,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[7,0,1,50,0], +"include_2message_8php.html":[7,0,1,51], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[7,0,1,51,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[7,0,1,51,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[7,0,1,51,3], +"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[7,0,1,51,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[7,0,1,51,0], +"include_2network_8php.html":[7,0,1,53], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[7,0,1,53,7], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[7,0,1,53,14], +"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[7,0,1,53,16], +"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[7,0,1,53,21], +"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[7,0,1,53,6], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[7,0,1,53,12], +"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[7,0,1,53,11], +"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[7,0,1,53,4], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[7,0,1,53,20], +"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[7,0,1,53,5], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[7,0,1,53,10], +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[7,0,1,53,9], +"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[7,0,1,53,13], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[7,0,1,53,19], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[7,0,1,53,8], +"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[7,0,1,53,25], +"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[7,0,1,53,26], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[7,0,1,53,22], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[7,0,1,53,23], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[7,0,1,53,24], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[7,0,1,53,2], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[7,0,1,53,0], +"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[7,0,1,53,17], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[7,0,1,53,3], +"include_2network_8php.html#adf741da85aa82493f2084eca63092dd5":[7,0,1,53,18], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[7,0,1,53,15], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[7,0,1,53,1], +"include_2notify_8php.html":[7,0,1,55], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[7,0,1,55,0], +"include_2oembed_8php.html":[7,0,1,57], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[7,0,1,57,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[7,0,1,57,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[7,0,1,57,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[7,0,1,57,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[7,0,1,57,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[7,0,1,57,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[7,0,1,57,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[7,0,1,57,2], +"include_2photos_8php.html":[7,0,1,62], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[7,0,1,62,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[7,0,1,62,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[7,0,1,62,1], +"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[7,0,1,62,7], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[7,0,1,62,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[7,0,1,62,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[7,0,1,62,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[7,0,1,62,4], +"include_2probe_8php.html":[7,0,1,65], +"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[7,0,1,65,3], +"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[7,0,1,65,4], +"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[7,0,1,65,1], +"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[7,0,1,65,8], +"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[7,0,1,65,0], +"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[7,0,1,65,6], +"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[7,0,1,65,2], +"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[7,0,1,65,7], +"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[7,0,1,65,5], "index.html":[], "interfaceITemplateEngine.html":[6,0,22], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[6,0,22,1], @@ -241,13 +242,12 @@ var NAVTREEINDEX6 = "item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[7,0,2,47,4], "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[7,0,2,47,3], "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[7,0,2,47,1], -"items_8php.html":[7,0,1,49], -"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[7,0,1,49,3], -"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[7,0,1,49,42], -"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[7,0,1,49,30], -"items_8php.html#a0790a4550b829e85504af548623002ca":[7,0,1,49,9], -"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[7,0,1,49,35], -"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[7,0,1,49,44], -"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[7,0,1,49,27], -"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[7,0,1,49,73] +"items_8php.html":[7,0,1,48], +"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[7,0,1,48,3], +"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[7,0,1,48,43], +"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[7,0,1,48,31], +"items_8php.html#a0790a4550b829e85504af548623002ca":[7,0,1,48,10], +"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[7,0,1,48,36], +"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[7,0,1,48,45], +"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[7,0,1,48,28] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 8ed6c702a..3c4a583d9 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,84 +1,86 @@ var NAVTREEINDEX7 = { -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[7,0,1,49,5], -"items_8php.html#a251343637ff40a50cca93452cd530c26":[7,0,1,49,34], -"items_8php.html#a25221826fa4621f523c68483e3b6af26":[7,0,1,49,65], -"items_8php.html#a2541e6861a56d145c9281877cc501615":[7,0,1,49,47], -"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[7,0,1,49,4], -"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[7,0,1,49,72], -"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[7,0,1,49,38], -"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[7,0,1,49,22], -"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[7,0,1,49,0], -"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[7,0,1,49,40], -"items_8php.html#a410f9c743877c125ca06312373346903":[7,0,1,49,54], -"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[7,0,1,49,56], -"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[7,0,1,49,59], -"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[7,0,1,49,36], -"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[7,0,1,49,32], -"items_8php.html#a566c601726697e044e75284af7fb6f17":[7,0,1,49,21], -"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[7,0,1,49,18], -"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[7,0,1,49,14], -"items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c":[7,0,1,49,63], -"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[7,0,1,49,29], -"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[7,0,1,49,46], -"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[7,0,1,49,19], -"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[7,0,1,49,45], -"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[7,0,1,49,17], -"items_8php.html#a6b448675b71b00ee5ef798468dde4d22":[7,0,1,49,15], -"items_8php.html#a6bee35961f2e32905f20367a9309d627":[7,0,1,49,39], -"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[7,0,1,49,43], -"items_8php.html#a756738301f2ed96be50232500677d58a":[7,0,1,49,49], -"items_8php.html#a77051724d1784074ff187e73a4db93fe":[7,0,1,49,37], -"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[7,0,1,49,7], -"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[7,0,1,49,52], -"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[7,0,1,49,60], -"items_8php.html#a81565acf729e629e588d823308448e3c":[7,0,1,49,1], -"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[7,0,1,49,57], -"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[7,0,1,49,53], -"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[7,0,1,49,6], -"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[7,0,1,49,68], -"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[7,0,1,49,26], -"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[7,0,1,49,12], -"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[7,0,1,49,33], -"items_8php.html#a9b449eeae50003414b8b30ca927af434":[7,0,1,49,71], -"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[7,0,1,49,69], -"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[7,0,1,49,11], -"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[7,0,1,49,23], -"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[7,0,1,49,10], -"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[7,0,1,49,31], -"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[7,0,1,49,62], -"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[7,0,1,49,70], -"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[7,0,1,49,66], -"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[7,0,1,49,51], -"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[7,0,1,49,28], -"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[7,0,1,49,8], -"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[7,0,1,49,2], -"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[7,0,1,49,20], -"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[7,0,1,49,48], -"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[7,0,1,49,55], -"items_8php.html#ad34827ed330898456783fb14c7b46154":[7,0,1,49,67], -"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[7,0,1,49,58], -"items_8php.html#ad65e3d4d8c537e560286b735a285e33e":[7,0,1,49,16], -"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[7,0,1,49,13], -"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[7,0,1,49,64], -"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[7,0,1,49,25], -"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[7,0,1,49,41], -"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[7,0,1,49,61], -"items_8php.html#af94c281016c6c912d06e064113336c5c":[7,0,1,49,50], -"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[7,0,1,49,24], +"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[7,0,1,48,74], +"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[7,0,1,48,5], +"items_8php.html#a251343637ff40a50cca93452cd530c26":[7,0,1,48,35], +"items_8php.html#a25221826fa4621f523c68483e3b6af26":[7,0,1,48,66], +"items_8php.html#a2541e6861a56d145c9281877cc501615":[7,0,1,48,48], +"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[7,0,1,48,4], +"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[7,0,1,48,73], +"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[7,0,1,48,39], +"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[7,0,1,48,23], +"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[7,0,1,48,0], +"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[7,0,1,48,41], +"items_8php.html#a410f9c743877c125ca06312373346903":[7,0,1,48,55], +"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[7,0,1,48,57], +"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[7,0,1,48,60], +"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[7,0,1,48,37], +"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[7,0,1,48,33], +"items_8php.html#a566c601726697e044e75284af7fb6f17":[7,0,1,48,22], +"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[7,0,1,48,19], +"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[7,0,1,48,15], +"items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c":[7,0,1,48,64], +"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[7,0,1,48,30], +"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[7,0,1,48,47], +"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[7,0,1,48,20], +"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[7,0,1,48,46], +"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[7,0,1,48,18], +"items_8php.html#a6b448675b71b00ee5ef798468dde4d22":[7,0,1,48,16], +"items_8php.html#a6bee35961f2e32905f20367a9309d627":[7,0,1,48,40], +"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[7,0,1,48,44], +"items_8php.html#a756738301f2ed96be50232500677d58a":[7,0,1,48,50], +"items_8php.html#a77051724d1784074ff187e73a4db93fe":[7,0,1,48,38], +"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[7,0,1,48,7], +"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[7,0,1,48,53], +"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[7,0,1,48,61], +"items_8php.html#a81565acf729e629e588d823308448e3c":[7,0,1,48,1], +"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[7,0,1,48,58], +"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[7,0,1,48,54], +"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[7,0,1,48,6], +"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[7,0,1,48,69], +"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[7,0,1,48,27], +"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[7,0,1,48,13], +"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[7,0,1,48,34], +"items_8php.html#a9b449eeae50003414b8b30ca927af434":[7,0,1,48,72], +"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[7,0,1,48,70], +"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[7,0,1,48,12], +"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[7,0,1,48,24], +"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[7,0,1,48,11], +"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[7,0,1,48,32], +"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[7,0,1,48,63], +"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[7,0,1,48,71], +"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[7,0,1,48,67], +"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[7,0,1,48,52], +"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[7,0,1,48,29], +"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[7,0,1,48,9], +"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[7,0,1,48,2], +"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[7,0,1,48,21], +"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[7,0,1,48,49], +"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[7,0,1,48,56], +"items_8php.html#ad34827ed330898456783fb14c7b46154":[7,0,1,48,68], +"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[7,0,1,48,59], +"items_8php.html#ad65e3d4d8c537e560286b735a285e33e":[7,0,1,48,17], +"items_8php.html#ada03c12bfd247c9972844e2daa270b52":[7,0,1,48,8], +"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[7,0,1,48,14], +"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[7,0,1,48,65], +"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[7,0,1,48,26], +"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[7,0,1,48,42], +"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[7,0,1,48,62], +"items_8php.html#af94c281016c6c912d06e064113336c5c":[7,0,1,48,51], +"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[7,0,1,48,25], "lang_8php.html":[7,0,2,48], "lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[7,0,2,48,0], -"language_8php.html":[7,0,1,50], -"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[7,0,1,50,7], -"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[7,0,1,50,3], -"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[7,0,1,50,0], -"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[7,0,1,50,9], -"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[7,0,1,50,5], -"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[7,0,1,50,4], -"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[7,0,1,50,1], -"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[7,0,1,50,8], -"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[7,0,1,50,6], -"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[7,0,1,50,2], +"language_8php.html":[7,0,1,49], +"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[7,0,1,49,7], +"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[7,0,1,49,3], +"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[7,0,1,49,0], +"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[7,0,1,49,9], +"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[7,0,1,49,5], +"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[7,0,1,49,4], +"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[7,0,1,49,1], +"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[7,0,1,49,8], +"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[7,0,1,49,6], +"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[7,0,1,49,2], "layouts_8php.html":[7,0,2,49], "layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[7,0,2,49,1], "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[7,0,2,49,0], @@ -181,8 +183,8 @@ var NAVTREEINDEX7 = "namespaceacl__selectors.html":[6,0,0], "namespaceeasywebdav.html":[5,0,1], "namespaceeasywebdav.html":[6,0,1], -"namespaceeasywebdav_1_1____version____.html":[6,0,1,0], "namespaceeasywebdav_1_1____version____.html":[5,0,1,0], +"namespaceeasywebdav_1_1____version____.html":[6,0,1,0], "namespaceeasywebdav_1_1client.html":[5,0,1,1], "namespaceeasywebdav_1_1client.html":[6,0,1,1], "namespacefriendica-to-smarty-tpl.html":[5,0,3], @@ -195,11 +197,11 @@ var NAVTREEINDEX7 = "namespaceupdatetpl.html":[5,0,5], "namespaceutil.html":[6,0,6], "namespaceutil.html":[5,0,6], -"namespacezotsh.html":[5,0,7], "namespacezotsh.html":[6,0,7], -"nav_8php.html":[7,0,1,53], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[7,0,1,53,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[7,0,1,53,1], +"namespacezotsh.html":[5,0,7], +"nav_8php.html":[7,0,1,52], +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[7,0,1,52,0], +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[7,0,1,52,1], "netgrowth_8php.html":[7,0,2,64], "netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[7,0,2,64,0], "new__channel_8php.html":[7,0,2,66], @@ -212,20 +214,20 @@ var NAVTREEINDEX7 = "notifications_8php.html":[7,0,2,68], "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[7,0,2,68,1], "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[7,0,2,68,0], -"notifier_8php.html":[7,0,1,55], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[7,0,1,55,0], +"notifier_8php.html":[7,0,1,54], +"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[7,0,1,54,0], "notred_8php.html":[7,0,4,1,2,1,3], -"oauth_8php.html":[7,0,1,57], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[7,0,1,57,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[7,0,1,57,2], +"oauth_8php.html":[7,0,1,56], +"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[7,0,1,56,3], +"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[7,0,1,56,2], "oexchange_8php.html":[7,0,2,71], "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[7,0,2,71,0], "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[7,0,2,71,1], "olddefault_8php.html":[7,0,4,1,0,2,5], -"onedirsync_8php.html":[7,0,1,59], -"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[7,0,1,59,0], -"onepoll_8php.html":[7,0,1,60], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[7,0,1,60,0], +"onedirsync_8php.html":[7,0,1,58], +"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[7,0,1,58,0], +"onepoll_8php.html":[7,0,1,59], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[7,0,1,59,0], "online_8php.html":[7,0,2,72], "online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[7,0,2,72,0], "openid_8php.html":[7,0,2,73], @@ -237,9 +239,9 @@ var NAVTREEINDEX7 = "page_8php.html":[7,0,2,76], "page_8php.html#a4d89800c0366a239191b1692c09635cf":[7,0,2,76,1], "page_8php.html#a91a5f649f68406149108bded1dc90b22":[7,0,2,76,0], -"page__widgets_8php.html":[7,0,1,61], -"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[7,0,1,61,1], -"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[7,0,1,61,0], +"page__widgets_8php.html":[7,0,1,60], +"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[7,0,1,60,1], +"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[7,0,1,60,0], "pages.html":[], "parse__url_8php.html":[7,0,2,77], "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[7,0,2,77,2], @@ -247,7 +249,5 @@ var NAVTREEINDEX7 = "parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[7,0,2,77,1], "parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[7,0,2,77,0], "passion_8php.html":[7,0,4,1,0,2,6], -"passionwide_8php.html":[7,0,4,1,0,2,7], -"pdledit_8php.html":[7,0,2,78], -"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[7,0,2,78,0] +"passionwide_8php.html":[7,0,4,1,0,2,7] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 876241e3e..1311d48ba 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,14 +1,16 @@ var NAVTREEINDEX8 = { +"pdledit_8php.html":[7,0,2,78], +"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[7,0,2,78,0], "pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[7,0,2,78,1], -"permissions_8php.html":[7,0,1,62], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[7,0,1,62,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[7,0,1,62,0], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[7,0,1,62,5], -"permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991":[7,0,1,62,4], -"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[7,0,1,62,3], -"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[7,0,1,62,6], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[7,0,1,62,1], +"permissions_8php.html":[7,0,1,61], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[7,0,1,61,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[7,0,1,61,0], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[7,0,1,61,5], +"permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991":[7,0,1,61,4], +"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[7,0,1,61,3], +"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[7,0,1,61,6], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[7,0,1,61,1], "photo_8php.html":[7,0,2,79], "photo_8php.html#a582779d24882b0d31ee909a91d70a448":[7,0,2,79,0], "photo__driver_8php.html":[7,0,1,2,0], @@ -36,34 +38,34 @@ var NAVTREEINDEX8 = "pine_8php.html":[7,0,4,1,0,2,8], "ping_8php.html":[7,0,2,82], "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[7,0,2,82,0], -"plugin_8php.html":[7,0,1,64], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[7,0,1,64,24], -"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[7,0,1,64,22], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[7,0,1,64,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[7,0,1,64,17], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[7,0,1,64,20], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[7,0,1,64,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[7,0,1,64,16], -"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[7,0,1,64,14], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[7,0,1,64,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[7,0,1,64,26], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[7,0,1,64,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[7,0,1,64,23], -"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[7,0,1,64,12], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[7,0,1,64,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[7,0,1,64,0], -"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[7,0,1,64,19], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[7,0,1,64,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[7,0,1,64,25], -"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[7,0,1,64,13], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[7,0,1,64,18], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[7,0,1,64,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[7,0,1,64,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[7,0,1,64,2], -"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[7,0,1,64,15], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[7,0,1,64,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[7,0,1,64,21], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[7,0,1,64,5], +"plugin_8php.html":[7,0,1,63], +"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[7,0,1,63,24], +"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[7,0,1,63,22], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[7,0,1,63,8], +"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[7,0,1,63,17], +"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[7,0,1,63,20], +"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[7,0,1,63,7], +"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[7,0,1,63,16], +"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[7,0,1,63,14], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[7,0,1,63,9], +"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[7,0,1,63,26], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[7,0,1,63,11], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[7,0,1,63,23], +"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[7,0,1,63,12], +"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[7,0,1,63,4], +"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[7,0,1,63,0], +"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[7,0,1,63,19], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[7,0,1,63,1], +"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[7,0,1,63,25], +"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[7,0,1,63,13], +"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[7,0,1,63,18], +"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[7,0,1,63,3], +"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[7,0,1,63,6], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[7,0,1,63,2], +"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[7,0,1,63,15], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[7,0,1,63,10], +"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[7,0,1,63,21], +"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[7,0,1,63,5], "po2php_8php.html":[7,0,3,7], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[7,0,3,7,0], "po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334":[7,0,3,7,1], @@ -76,8 +78,8 @@ var NAVTREEINDEX8 = "poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[7,0,2,85,2], "poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[7,0,2,85,0], "poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[7,0,2,85,1], -"poller_8php.html":[7,0,1,65], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[7,0,1,65,0], +"poller_8php.html":[7,0,1,64], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[7,0,1,64,0], "post_8php.html":[7,0,2,86], "post_8php.html#af4b48181ce773ef0cdfc972441445c34":[7,0,2,86,0], "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[7,0,2,86,1], @@ -93,13 +95,13 @@ var NAVTREEINDEX8 = "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[7,0,2,91,0], "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[7,0,2,91,1], "profile__photo_8php.html#a561103564199da56e58061a4196eb102":[7,0,2,91,2], -"profile__selectors_8php.html":[7,0,1,67], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[7,0,1,67,4], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[7,0,1,67,2], -"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[7,0,1,67,1], -"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[7,0,1,67,5], -"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[7,0,1,67,3], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[7,0,1,67,0], +"profile__selectors_8php.html":[7,0,1,66], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[7,0,1,66,4], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[7,0,1,66,2], +"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[7,0,1,66,1], +"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[7,0,1,66,5], +"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[7,0,1,66,3], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[7,0,1,66,0], "profiles_8php.html":[7,0,2,92], "profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[7,0,2,92,1], "profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[7,0,2,92,0], @@ -117,19 +119,19 @@ var NAVTREEINDEX8 = "pubsubhubbub_8php.html":[7,0,2,96], "pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd":[7,0,2,96,0], "pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0":[7,0,2,96,1], -"queue_8php.html":[7,0,1,69], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[7,0,1,69,0], -"queue__fn_8php.html":[7,0,1,70], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[7,0,1,70,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[7,0,1,70,0], +"queue_8php.html":[7,0,1,68], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[7,0,1,68,0], +"queue__fn_8php.html":[7,0,1,69], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[7,0,1,69,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[7,0,1,69,0], "randprof_8php.html":[7,0,2,97], "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[7,0,2,97,0], "rate_8php.html":[7,0,2,98], "rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771":[7,0,2,98,1], "rate_8php.html#a22fc66202522acb53fb3746fc21d80f2":[7,0,2,98,0], "rate_8php.html#acae9f41835b07e3c977464030e8831fc":[7,0,2,98,2], -"ratenotif_8php.html":[7,0,1,71], -"ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37":[7,0,1,71,0], +"ratenotif_8php.html":[7,0,1,70], +"ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37":[7,0,1,70,0], "ratings_8php.html":[7,0,2,99], "ratings_8php.html#a25f835d136b884354cf1fa4d897c857b":[7,0,2,99,0], "ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3":[7,0,2,99,1], @@ -143,10 +145,10 @@ var NAVTREEINDEX8 = "redable_8php.html":[7,0,4,0,6], "redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,0,6,0], "redbasic_8php.html":[7,0,4,1,0,2,9], -"reddav_8php.html":[7,0,1,72], -"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[7,0,1,72,1], -"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[7,0,1,72,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[7,0,1,72,0], +"reddav_8php.html":[7,0,1,71], +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[7,0,1,71,1], +"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[7,0,1,71,2], +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[7,0,1,71,0], "refimport_8php.html":[7,0,1,1,1], "refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[7,0,1,1,1,2], "refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[7,0,1,1,1,1], @@ -190,32 +192,32 @@ var NAVTREEINDEX8 = "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[7,0,2,112,1], "search__ac_8php.html":[7,0,2,113], "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[7,0,2,113,0], -"security_8php.html":[7,0,1,73], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[7,0,1,73,2], -"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[7,0,1,73,11], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[7,0,1,73,4], -"security_8php.html#a6126c77a1267e046ac59cf864613f011":[7,0,1,73,10], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[7,0,1,73,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[7,0,1,73,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[7,0,1,73,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[7,0,1,73,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[7,0,1,73,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[7,0,1,73,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[7,0,1,73,0], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[7,0,1,73,8], +"security_8php.html":[7,0,1,72], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[7,0,1,72,2], +"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[7,0,1,72,11], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[7,0,1,72,4], +"security_8php.html#a6126c77a1267e046ac59cf864613f011":[7,0,1,72,10], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[7,0,1,72,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[7,0,1,72,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[7,0,1,72,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[7,0,1,72,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[7,0,1,72,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[7,0,1,72,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[7,0,1,72,0], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[7,0,1,72,8], "service__limits_8php.html":[7,0,2,114], "service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[7,0,2,114,0], -"session_8php.html":[7,0,1,74], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[7,0,1,74,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[7,0,1,74,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[7,0,1,74,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[7,0,1,74,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[7,0,1,74,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[7,0,1,74,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[7,0,1,74,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[7,0,1,74,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[7,0,1,74,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[7,0,1,74,2], +"session_8php.html":[7,0,1,73], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[7,0,1,73,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[7,0,1,73,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[7,0,1,73,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[7,0,1,73,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[7,0,1,73,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[7,0,1,73,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[7,0,1,73,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[7,0,1,73,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[7,0,1,73,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[7,0,1,73,2], "settings_8php.html":[7,0,2,115], "settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[7,0,2,115,0], "settings_8php.html#a3a4cde287482fced008583f54ba2a722":[7,0,2,115,1], @@ -247,7 +249,5 @@ var NAVTREEINDEX8 = "simple__white__on__black_8php.html":[7,0,4,1,2,1,6], "siteinfo_8php.html":[7,0,2,119], "siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[7,0,2,119,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[7,0,2,119,0], -"sitelist_8php.html":[7,0,2,120], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[7,0,2,120,0] +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[7,0,2,119,0] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 9fb97d9fe..9cecfb38b 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,170 +1,172 @@ var NAVTREEINDEX9 = { -"smarty_8php.html":[7,0,1,75], +"sitelist_8php.html":[7,0,2,120], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[7,0,2,120,0], +"smarty_8php.html":[7,0,1,74], "smilies_8php.html":[7,0,2,121], "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[7,0,2,121,0], -"socgraph_8php.html":[7,0,1,76], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[7,0,1,76,0], -"socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1":[7,0,1,76,6], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[7,0,1,76,7], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[7,0,1,76,8], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[7,0,1,76,9], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[7,0,1,76,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[7,0,1,76,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[7,0,1,76,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[7,0,1,76,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[7,0,1,76,3], +"socgraph_8php.html":[7,0,1,75], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[7,0,1,75,0], +"socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1":[7,0,1,75,6], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[7,0,1,75,7], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[7,0,1,75,8], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[7,0,1,75,9], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[7,0,1,75,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[7,0,1,75,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[7,0,1,75,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[7,0,1,75,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[7,0,1,75,3], "sources_8php.html":[7,0,2,122], "sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[7,0,2,122,0], "sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[7,0,2,122,1], -"spam_8php.html":[7,0,1,77], -"spam_8php.html#a05861201147b9a538d006f0269255cf9":[7,0,1,77,1], -"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[7,0,1,77,0], +"spam_8php.html":[7,0,1,76], +"spam_8php.html#a05861201147b9a538d006f0269255cf9":[7,0,1,76,1], +"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[7,0,1,76,0], "sslify_8php.html":[7,0,2,123], "sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[7,0,2,123,0], "starred_8php.html":[7,0,2,124], "starred_8php.html#a63024fb418c678e49fd535e3752d349a":[7,0,2,124,0], -"statistics__fns_8php.html":[7,0,1,78], -"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[7,0,1,78,2], -"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[7,0,1,78,0], -"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[7,0,1,78,3], -"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[7,0,1,78,1], +"statistics__fns_8php.html":[7,0,1,77], +"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[7,0,1,77,2], +"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[7,0,1,77,0], +"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[7,0,1,77,3], +"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[7,0,1,77,1], "subthread_8php.html":[7,0,2,125], "subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[7,0,2,125,0], "suggest_8php.html":[7,0,2,126], "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[7,0,2,126,0], "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[7,0,2,126,1], -"system__unavailable_8php.html":[7,0,1,79], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[7,0,1,79,0], +"system__unavailable_8php.html":[7,0,1,78], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[7,0,1,78,0], "tagger_8php.html":[7,0,2,127], "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[7,0,2,127,0], "tagrm_8php.html":[7,0,2,128], "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[7,0,2,128,1], "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[7,0,2,128,0], -"taxonomy_8php.html":[7,0,1,80], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[7,0,1,80,10], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[7,0,1,80,1], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[7,0,1,80,3], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[7,0,1,80,7], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[7,0,1,80,5], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[7,0,1,80,4], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[7,0,1,80,11], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[7,0,1,80,2], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[7,0,1,80,8], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[7,0,1,80,15], -"taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287":[7,0,1,80,16], -"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[7,0,1,80,0], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[7,0,1,80,14], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[7,0,1,80,12], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[7,0,1,80,13], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[7,0,1,80,6], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[7,0,1,80,9], -"template__processor_8php.html":[7,0,1,81], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[7,0,1,81,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[7,0,1,81,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[7,0,1,81,2], -"text_8php.html":[7,0,1,82], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[7,0,1,82,45], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[7,0,1,82,53], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[7,0,1,82,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[7,0,1,82,16], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[7,0,1,82,11], -"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[7,0,1,82,78], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[7,0,1,82,50], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[7,0,1,82,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[7,0,1,82,89], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[7,0,1,82,38], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[7,0,1,82,41], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[7,0,1,82,57], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[7,0,1,82,60], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[7,0,1,82,54], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[7,0,1,82,55], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[7,0,1,82,48], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[7,0,1,82,79], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[7,0,1,82,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[7,0,1,82,98], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[7,0,1,82,86], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[7,0,1,82,56], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[7,0,1,82,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[7,0,1,82,83], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[7,0,1,82,100], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[7,0,1,82,24], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[7,0,1,82,95], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[7,0,1,82,81], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[7,0,1,82,34], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[7,0,1,82,47], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[7,0,1,82,26], -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[7,0,1,82,19], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[7,0,1,82,80], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[7,0,1,82,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[7,0,1,82,96], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[7,0,1,82,39], -"text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc":[7,0,1,82,52], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[7,0,1,82,35], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[7,0,1,82,49], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[7,0,1,82,69], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[7,0,1,82,58], -"text_8php.html#a4e4045a07c55cacf3e4b63bde190d954":[7,0,1,82,51], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[7,0,1,82,25], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[7,0,1,82,68], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[7,0,1,82,92], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[7,0,1,82,9], -"text_8php.html#a5ee0715f7fa144b1307a3ff10222c609":[7,0,1,82,36], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[7,0,1,82,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[7,0,1,82,91], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[7,0,1,82,46], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[7,0,1,82,31], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[7,0,1,82,87], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[7,0,1,82,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[7,0,1,82,40], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[7,0,1,82,30], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[7,0,1,82,88], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[7,0,1,82,8], -"text_8php.html#a876e94892867019935b348b573299352":[7,0,1,82,76], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[7,0,1,82,82], -"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[7,0,1,82,15], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[7,0,1,82,21], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[7,0,1,82,67], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[7,0,1,82,20], -"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[7,0,1,82,93], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[7,0,1,82,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[7,0,1,82,62], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[7,0,1,82,73], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[7,0,1,82,71], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[7,0,1,82,75], -"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[7,0,1,82,37], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[7,0,1,82,33], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[7,0,1,82,17], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[7,0,1,82,63], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[7,0,1,82,42], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[7,0,1,82,32], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[7,0,1,82,99], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[7,0,1,82,77], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[7,0,1,82,94], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[7,0,1,82,97], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[7,0,1,82,64], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[7,0,1,82,43], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[7,0,1,82,84], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[7,0,1,82,22], -"text_8php.html#acedb584f65114a33f389efb796172a91":[7,0,1,82,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[7,0,1,82,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[7,0,1,82,72], -"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[7,0,1,82,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[7,0,1,82,59], -"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[7,0,1,82,28], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[7,0,1,82,44], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[7,0,1,82,74], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[7,0,1,82,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[7,0,1,82,65], -"text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b":[7,0,1,82,29], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[7,0,1,82,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[7,0,1,82,85], -"text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb":[7,0,1,82,90], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[7,0,1,82,70], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[7,0,1,82,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[7,0,1,82,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[7,0,1,82,66], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[7,0,1,82,61], +"taxonomy_8php.html":[7,0,1,79], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[7,0,1,79,10], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[7,0,1,79,1], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[7,0,1,79,3], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[7,0,1,79,7], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[7,0,1,79,5], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[7,0,1,79,4], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[7,0,1,79,11], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[7,0,1,79,2], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[7,0,1,79,8], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[7,0,1,79,15], +"taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287":[7,0,1,79,16], +"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[7,0,1,79,0], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[7,0,1,79,14], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[7,0,1,79,12], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[7,0,1,79,13], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[7,0,1,79,6], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[7,0,1,79,9], +"template__processor_8php.html":[7,0,1,80], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[7,0,1,80,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[7,0,1,80,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[7,0,1,80,2], +"text_8php.html":[7,0,1,81], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[7,0,1,81,45], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[7,0,1,81,53], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[7,0,1,81,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[7,0,1,81,16], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[7,0,1,81,11], +"text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0":[7,0,1,81,50], +"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[7,0,1,81,78], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[7,0,1,81,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[7,0,1,81,89], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[7,0,1,81,38], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[7,0,1,81,41], +"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[7,0,1,81,57], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[7,0,1,81,60], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[7,0,1,81,54], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[7,0,1,81,55], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[7,0,1,81,48], +"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[7,0,1,81,79], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[7,0,1,81,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[7,0,1,81,98], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[7,0,1,81,86], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[7,0,1,81,56], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[7,0,1,81,10], +"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[7,0,1,81,83], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[7,0,1,81,100], +"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[7,0,1,81,24], +"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[7,0,1,81,95], +"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[7,0,1,81,81], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[7,0,1,81,34], +"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[7,0,1,81,47], +"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[7,0,1,81,26], +"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[7,0,1,81,19], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[7,0,1,81,80], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[7,0,1,81,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[7,0,1,81,96], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[7,0,1,81,39], +"text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc":[7,0,1,81,52], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[7,0,1,81,35], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[7,0,1,81,49], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[7,0,1,81,69], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[7,0,1,81,58], +"text_8php.html#a4e4045a07c55cacf3e4b63bde190d954":[7,0,1,81,51], +"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[7,0,1,81,25], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[7,0,1,81,68], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[7,0,1,81,92], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[7,0,1,81,9], +"text_8php.html#a5ee0715f7fa144b1307a3ff10222c609":[7,0,1,81,36], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[7,0,1,81,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[7,0,1,81,91], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[7,0,1,81,46], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[7,0,1,81,31], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[7,0,1,81,87], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[7,0,1,81,1], +"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[7,0,1,81,40], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[7,0,1,81,30], +"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[7,0,1,81,88], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[7,0,1,81,8], +"text_8php.html#a876e94892867019935b348b573299352":[7,0,1,81,76], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[7,0,1,81,82], +"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[7,0,1,81,15], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[7,0,1,81,21], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[7,0,1,81,67], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[7,0,1,81,20], +"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[7,0,1,81,93], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[7,0,1,81,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[7,0,1,81,62], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[7,0,1,81,73], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[7,0,1,81,71], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[7,0,1,81,75], +"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[7,0,1,81,37], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[7,0,1,81,33], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[7,0,1,81,17], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[7,0,1,81,63], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[7,0,1,81,42], +"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[7,0,1,81,32], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[7,0,1,81,99], +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[7,0,1,81,77], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[7,0,1,81,94], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[7,0,1,81,97], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[7,0,1,81,64], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[7,0,1,81,43], +"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[7,0,1,81,84], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[7,0,1,81,22], +"text_8php.html#acedb584f65114a33f389efb796172a91":[7,0,1,81,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[7,0,1,81,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[7,0,1,81,72], +"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[7,0,1,81,27], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[7,0,1,81,59], +"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[7,0,1,81,28], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[7,0,1,81,44], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[7,0,1,81,74], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[7,0,1,81,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[7,0,1,81,65], +"text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b":[7,0,1,81,29], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[7,0,1,81,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[7,0,1,81,85], +"text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb":[7,0,1,81,90], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[7,0,1,81,70], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[7,0,1,81,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[7,0,1,81,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[7,0,1,81,66], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[7,0,1,81,61], "theme_2apw_2php_2theme__init_8php.html":[7,0,4,1,0,1,4], "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[7,0,4,1,0,1,4,0], "theme_2mytheme_2php_2default_8php.html":[7,0,4,1,1,0,0], @@ -247,7 +249,5 @@ var NAVTREEINDEX9 = "viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[7,0,2,139,1], "viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[7,0,2,139,0], "viewsrc_8php.html":[7,0,2,140], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[7,0,2,140,0], -"vote_8php.html":[7,0,2,141], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[7,0,2,141,2] +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[7,0,2,140,0] }; diff --git a/doc/html/regdir_8php.html b/doc/html/regdir_8php.html index fb50466c3..51b41f7ff 100644 --- a/doc/html/regdir_8php.html +++ b/doc/html/regdir_8php.html @@ -129,6 +129,8 @@ Functions
        +

        With args, register a directory server for this realm With no args, return a JSON array of directory servers for this realm

        +

        FIXME: Not yet implemented: Some realms may require authentication to join their realm. The RED_GLOBAL realm does not require authentication. We would then need a flag in the site table to indicate that they've been validated by the PRIMARY directory for that realm. Sites claiming to be PRIMARY but are not the realm PRIMARY will be marked invalid.

        diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index e8de26ecc..966f1713c 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -110,8 +110,7 @@ var searchData= ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template\$r()'],['../fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98',1,'$r(): fixd.php']]], - ['_24rand',['$rand',['../fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219',1,'fixd.php']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], @@ -143,7 +142,6 @@ var searchData= ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], - ['_24total',['$total',['../fixd_8php.html#a241b818f48030b628685b2e5119c5624',1,'fixd.php']]], ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], ['_24uid',['$uid',['../view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js index ef39bc2d2..6e7e65d87 100644 --- a/doc/html/search/all_61.js +++ b/doc/html/search/all_61.js @@ -94,6 +94,7 @@ var searchData= ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], ['admin_5fpage_5fprofs',['admin_page_profs',['../admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a',1,'admin.php']]], ['admin_5fpage_5fprofs_5fpost',['admin_page_profs_post',['../admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057',1,'admin.php']]], + ['admin_5fpage_5fqueue',['admin_page_queue',['../admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89',1,'admin.php']]], ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], @@ -183,8 +184,8 @@ var searchData= ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], - ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../view_2theme_2apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 4d93809fa..571935b6f 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -109,6 +109,7 @@ var searchData= ['comanche_5fwidget',['comanche_widget',['../comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f',1,'comanche.php']]], ['commandnotfound',['CommandNotFound',['../classzotsh_1_1CommandNotFound.html',1,'zotsh']]], ['commands',['commands',['../classzotsh_1_1ZotSH.html#ad026a070692fe754e256e9b429591713',1,'zotsh::ZotSH']]], + ['comment_5flocal_5forigin',['comment_local_origin',['../items_8php.html#ada03c12bfd247c9972844e2daa270b52',1,'items.php']]], ['comments_5fare_5fnow_5fclosed',['comments_are_now_closed',['../items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723',1,'items.php']]], ['common_2ephp',['common.php',['../common_8php.html',1,'']]], ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js index 70b2a14ca..f2bef29af 100644 --- a/doc/html/search/all_66.js +++ b/doc/html/search/all_66.js @@ -45,7 +45,6 @@ var searchData= ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], ['fix_5fsystem_5furls',['fix_system_urls',['../boot_8php.html#aca5e42678e178c6b9034610d66666fd7',1,'boot.php']]], ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], - ['fixd_2ephp',['fixd.php',['../fixd_8php.html',1,'']]], ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], ['flip',['flip',['../classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832',1,'photo_driver\flip()'],['../classphoto__gd.html#a44cedef376044018702d9355ddc813ce',1,'photo_gd\flip()'],['../classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393',1,'photo_imagick\flip()']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index 285528128..371d12420 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -16,7 +16,7 @@ var searchData= ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], - ['linkify',['linkify',['../text_8php.html#a11255c8c4e5245b6c24f97684826aa54',1,'text.php']]], + ['linkify',['linkify',['../text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0',1,'text.php']]], ['linkify_5ftags',['linkify_tags',['../text_8php.html#a4e4045a07c55cacf3e4b63bde190d954',1,'text.php']]], ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js index 033269fb9..f9de281e1 100644 --- a/doc/html/search/all_6e.js +++ b/doc/html/search/all_6e.js @@ -1,6 +1,6 @@ var searchData= [ - ['n',['n',['../fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb',1,'n(): fixd.php'],['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'n(): php2po.php']]], + ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], diff --git a/doc/html/search/all_6f.js b/doc/html/search/all_6f.js index 81cb138ef..fe491f0db 100644 --- a/doc/html/search/all_6f.js +++ b/doc/html/search/all_6f.js @@ -4,6 +4,7 @@ var searchData= ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], ['obj_5fverb_5fselector',['obj_verb_selector',['../taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7',1,'taxonomy.php']]], ['obj_5fverbs',['obj_verbs',['../taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce',1,'taxonomy.php']]], + ['occupant_5finit',['occupant_init',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8',1,'theme.php']]], ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], ['oembed_2ephp',['oembed.php',['../mod_2oembed_8php.html',1,'']]], diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js index 429c0c748..5f4af21cb 100644 --- a/doc/html/search/all_73.js +++ b/doc/html/search/all_73.js @@ -134,16 +134,17 @@ var searchData= ['strip_5fzids',['strip_zids',['../text_8php.html#a2f2585385530cb935a6325c809d84a4d',1,'text.php']]], ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], ['stumble_5finit',['stumble_init',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753',1,'theme.php']]], + ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2mytheme_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2redbasic_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../view_2theme_2redbasic_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../view_2theme_2mytheme_2php_2style_8php.html',1,'']]], ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], ['suckerberg_5finit',['suckerberg_init',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index 6c1ca89ce..b9cdb9888 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -42,17 +42,18 @@ var searchData= ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../view_2theme_2mytheme_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../view_2theme_2redbasic_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html',1,'']]], ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], diff --git a/doc/html/search/files_66.js b/doc/html/search/files_66.js index 6d83aa37c..41bca4490 100644 --- a/doc/html/search/files_66.js +++ b/doc/html/search/files_66.js @@ -6,9 +6,8 @@ var searchData= ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], ['filestorage_2ephp',['filestorage.php',['../filestorage_8php.html',1,'']]], - ['fixd_2ephp',['fixd.php',['../fixd_8php.html',1,'']]], - ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], diff --git a/doc/html/search/files_73.js b/doc/html/search/files_73.js index 35b8489bf..f49816686 100644 --- a/doc/html/search/files_73.js +++ b/doc/html/search/files_73.js @@ -22,16 +22,17 @@ var searchData= ['sslify_2ephp',['sslify.php',['../sslify_8php.html',1,'']]], ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], ['statistics_5ffns_2ephp',['statistics_fns.php',['../statistics__fns_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../view_2theme_2redbasic_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../view_2theme_2mytheme_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js index da49aa396..ac5b2f1d9 100644 --- a/doc/html/search/files_74.js +++ b/doc/html/search/files_74.js @@ -5,19 +5,20 @@ var searchData= ['taxonomy_2ephp',['taxonomy.php',['../taxonomy_8php.html',1,'']]], ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], ['text_2ephp',['text.php',['../text_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2redbasic_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../view_2theme_2mytheme_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../view_2theme_2redbasic_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../view_2theme_2apw_2php_2theme_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], ['toggle_5fsafesearch_2ephp',['toggle_safesearch.php',['../toggle__safesearch_8php.html',1,'']]], diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js index 4d25e075b..df3cc2b06 100644 --- a/doc/html/search/functions_61.js +++ b/doc/html/search/functions_61.js @@ -29,6 +29,7 @@ var searchData= ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], ['admin_5fpage_5fprofs',['admin_page_profs',['../admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a',1,'admin.php']]], ['admin_5fpage_5fprofs_5fpost',['admin_page_profs_post',['../admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057',1,'admin.php']]], + ['admin_5fpage_5fqueue',['admin_page_queue',['../admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89',1,'admin.php']]], ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index dcae29051..2449f6d9a 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -90,6 +90,7 @@ var searchData= ['comanche_5freplace_5fregion',['comanche_replace_region',['../comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe',1,'comanche.php']]], ['comanche_5fwebpage',['comanche_webpage',['../comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a',1,'comanche.php']]], ['comanche_5fwidget',['comanche_widget',['../comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f',1,'comanche.php']]], + ['comment_5flocal_5forigin',['comment_local_origin',['../items_8php.html#ada03c12bfd247c9972844e2daa270b52',1,'items.php']]], ['comments_5fare_5fnow_5fclosed',['comments_are_now_closed',['../items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723',1,'items.php']]], ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], ['common_5ffriends',['common_friends',['../socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918',1,'socgraph.php']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index 763a0caa3..a6b154c3d 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -9,7 +9,7 @@ var searchData= ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], - ['linkify',['linkify',['../text_8php.html#a11255c8c4e5245b6c24f97684826aa54',1,'text.php']]], + ['linkify',['linkify',['../text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0',1,'text.php']]], ['linkify_5ftags',['linkify_tags',['../text_8php.html#a4e4045a07c55cacf3e4b63bde190d954',1,'text.php']]], ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], diff --git a/doc/html/search/functions_6f.js b/doc/html/search/functions_6f.js index 6e1766c1d..4eb0c3442 100644 --- a/doc/html/search/functions_6f.js +++ b/doc/html/search/functions_6f.js @@ -3,6 +3,7 @@ var searchData= ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], ['obj_5fverb_5fselector',['obj_verb_selector',['../taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7',1,'taxonomy.php']]], ['obj_5fverbs',['obj_verbs',['../taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce',1,'taxonomy.php']]], + ['occupant_5finit',['occupant_init',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8',1,'theme.php']]], ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], ['oembed_5fbbcode2html',['oembed_bbcode2html',['../include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2',1,'oembed.php']]], diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index e8de26ecc..966f1713c 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -110,8 +110,7 @@ var searchData= ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template\$r()'],['../fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98',1,'$r(): fixd.php']]], - ['_24rand',['$rand',['../fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219',1,'fixd.php']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], @@ -143,7 +142,6 @@ var searchData= ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], - ['_24total',['$total',['../fixd_8php.html#a241b818f48030b628685b2e5119c5624',1,'fixd.php']]], ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], ['_24uid',['$uid',['../view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js index 55b3c17f6..0045afbae 100644 --- a/doc/html/search/variables_6e.js +++ b/doc/html/search/variables_6e.js @@ -1,6 +1,6 @@ var searchData= [ - ['n',['n',['../fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb',1,'n(): fixd.php'],['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'n(): php2po.php']]], + ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 5fb3924ca..deb827cc9 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -187,8 +187,8 @@ Functions    valid_email ($x)   - linkify ($s) -  + linkify ($s, $me=false) +   sslify ($s)    get_poke_verbs () @@ -1459,7 +1459,7 @@ Variables - +
        @@ -1467,8 +1467,18 @@ Variables - + + + + + + + + + + +
        linkify (  $s)$s,
         $me = false 
        )
        diff --git a/doc/html/text_8php.js b/doc/html/text_8php.js index 67293bd29..4acfd5c10 100644 --- a/doc/html/text_8php.js +++ b/doc/html/text_8php.js @@ -50,7 +50,7 @@ var text_8php = [ "layout_select", "text_8php.html#a3999a0b3e22e440f280ee791ce34d384", null ], [ "legal_webbie", "text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728", null ], [ "link_compare", "text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285", null ], - [ "linkify", "text_8php.html#a11255c8c4e5245b6c24f97684826aa54", null ], + [ "linkify", "text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0", null ], [ "linkify_tags", "text_8php.html#a4e4045a07c55cacf3e4b63bde190d954", null ], [ "list_smilies", "text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc", null ], [ "logger", "text_8php.html#a030fa5ecc64168af0c4f44897a9bce63", null ], diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 5419ff061..688d2de11 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(), account_service_class_allows(), 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(), 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(), dav_init(), 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(), 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(), linkify_tags(), list_smilies(), 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(), manage_content(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), minded_init(), 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(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), prate_init(), prate_post(), preg_heart(), 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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), push_lang(), queue_run(), randprof_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratings_content(), ratings_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(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), smilies(), smilies_content(), sources_post(), sporadic_init(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), sunbeam_init(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_home_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_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xpoco_init(), xrd_init(), yolo_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(), account_service_class_allows(), 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(), 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(), dav_init(), 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(), 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(), linkify_tags(), list_smilies(), 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(), manage_content(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), minded_init(), 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(), occupant_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(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), prate_init(), prate_post(), preg_heart(), 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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), push_lang(), queue_run(), randprof_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratings_content(), ratings_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(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), smilies(), smilies_content(), sources_post(), sporadic_init(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), sunbeam_init(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_home_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_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xpoco_init(), xrd_init(), yolo_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

        diff --git a/doc/html/view_2theme_2apw_2php_2style_8php.html b/doc/html/view_2theme_2apw_2php_2style_8php.html index dbe12a8ab..1eea4bdf1 100644 --- a/doc/html/view_2theme_2apw_2php_2style_8php.html +++ b/doc/html/view_2theme_2apw_2php_2style_8php.html @@ -260,7 +260,7 @@ Variables
        -

        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_upstream_directory(), 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(), dav_init(), 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_primary(), get_directory_realm(), get_file_activity_object(), 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(), help_content(), 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(), in_group(), invite_content(), invite_post(), item_post(), item_remove_cid(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), randprof_init(), ratenotif_run(), ratings_init(), recursive_activity_recipients(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), regdir_init(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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_upstream_directory(), 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(), dav_init(), decode_tags(), delete_imported_item(), 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_primary(), get_directory_realm(), get_file_activity_object(), 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(), help_content(), 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(), in_group(), invite_content(), invite_post(), item_post(), item_remove_cid(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), randprof_init(), ratenotif_run(), ratings_init(), recursive_activity_recipients(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), regdir_init(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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().

        -- cgit v1.2.3 From 2b44c5fc72ac1a76b0a711d459ddcb52ed6666dc Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 27 Feb 2015 13:43:12 -0800 Subject: Fix a couple of places where we weren't checking for dead hublocs. Add a function to mark a hubloc dead. --- include/hubloc.php | 11 +- include/notifier.php | 19 +- util/messages.po | 7608 +++++++++++++++++++++++++------------------------- version.inc | 2 +- 4 files changed, 3841 insertions(+), 3799 deletions(-) diff --git a/include/hubloc.php b/include/hubloc.php index b5a3d47c5..94f1dc985 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -170,7 +170,16 @@ function hubloc_change_primary($hubloc) { return true; } - + +// We use the post url to distinguish between http and https hublocs. +// The https might be alive, and the http dead. + +function hubloc_mark_as_down($posturl) { + $r = q("update hubloc set hubloc_status = ( hubloc_status | %d ) where hubloc_posturl = '%s'", + intval(HUBLOC_OFFLINE) + ); +} + function xchan_store($arr) { diff --git a/include/notifier.php b/include/notifier.php index 36a52b209..a9c4905ae 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -100,10 +100,14 @@ function notifier_run($argv, $argc){ // Get the recipient $r = q("select abook.*, hubloc.* from abook left join hubloc on hubloc_hash = abook_xchan - where abook_id = %d and not ( abook_flags & %d )>0 limit 1", + where abook_id = %d and not ( abook_flags & %d ) > 0 + and not (hubloc_flags & %d) > 0 and not (hubloc_status & %d) > 0 limit 1", intval($item_id), - intval(ABOOK_FLAG_SELF) + intval(ABOOK_FLAG_SELF), + intval(HUBLOC_FLAGS_DELETED), + intval(HUBLOC_OFFLINE) ); + if($r) { // Get the sender $s = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_id = %d limit 1", @@ -116,8 +120,11 @@ function notifier_run($argv, $argc){ } else { // send a refresh message to each hub they have registered here - $h = q("select * from hubloc where hubloc_hash = '%s'", - dbesc($r[0]['hubloc_hash']) + $h = q("select * from hubloc where hubloc_hash = '%s' + and not (hubloc_flags & %d) > 0 and not (hubloc_status & %d) > 0", + dbesc($r[0]['hubloc_hash']), + intval(HUBLOC_FLAGS_DELETED), + intval(HUBLOC_OFFLINE) ); if($h) { foreach($h as $hh) { @@ -138,7 +145,6 @@ function notifier_run($argv, $argc){ } } } - return; } @@ -491,6 +497,9 @@ function notifier_run($argv, $argc){ logger('notifier: hub choice: ' . intval($relay_to_owner) . ' ' . intval($private) . ' ' . $cmd, LOGGER_DEBUG); + // FIXME: I think we need to remove the private bit or this clause will never execute. Needs more coffee to think it through. + // We may in fact have to send it to clones in case the one we pick recently died. + if($relay_to_owner && (! $private) && ($cmd !== 'relay')) { // If sending a followup to the post owner, only send it to one channel clone - to avoid race conditions. diff --git a/util/messages.po b/util/messages.po index 05e49605d..0c8f6d4fc 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-02-20.950\n" +"Project-Id-Version: 2015-02-27.956\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-20 00:04-0800\n" +"POT-Creation-Date: 2015-02-27 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,40 +34,41 @@ msgstr "" #: ../../include/attach.php:261 ../../include/attach.php:301 #: ../../include/attach.php:315 ../../include/attach.php:339 #: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/chat.php:116 ../../include/items.php:4072 +#: ../../include/items.php:4083 ../../include/chat.php:116 #: ../../mod/profile.php:64 ../../mod/profile.php:72 #: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/connedit.php:321 -#: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:560 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/suggest.php:26 +#: ../../mod/manage.php:6 ../../mod/delegate.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 +#: ../../mod/events.php:219 ../../mod/network.php:12 +#: ../../mod/connedit.php:321 ../../mod/group.php:9 ../../mod/setup.php:207 +#: ../../mod/common.php:35 ../../mod/editpost.php:13 #: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 #: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/appman.php:66 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:110 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 -#: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 +#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/rate.php:110 ../../mod/regmod.php:17 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 #: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 #: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 #: ../../mod/poke.php:128 ../../mod/profiles.php:188 #: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/delegate.php:6 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/regmod.php:17 ../../mod/message.php:16 ../../mod/mitem.php:106 +#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:72 +#: ../../mod/photos.php:68 ../../mod/message.php:16 ../../mod/mitem.php:106 #: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/like.php:178 ../../mod/mail.php:114 +#: ../../mod/layouts.php:85 ../../mod/mail.php:114 #: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/photos.php:68 ../../mod/page.php:28 +#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 #: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 #: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/register.php:72 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 +#: ../../mod/settings.php:560 ../../mod/suggest.php:26 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:190 ../../index.php:393 msgid "Permission denied." msgstr "" @@ -105,502 +106,601 @@ msgstr "" msgid "commented on %s's post" msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../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/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:645 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/menu.php:78 ../../mod/webpages.php:162 ../../mod/layouts.php:167 -msgid "Edit" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" +#: ../../include/group.php:254 ../../mod/admin.php:764 +msgid "All Channels" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1152 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 -msgid "Preview" +#: ../../include/group.php:276 +msgid "edit" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" +#: ../../include/group.php:298 +msgid "Collections" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" +#: ../../include/group.php:299 +msgid "Edit collection" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" +#: ../../include/group.php:300 +msgid "Create a new collection" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" +#: ../../include/group.php:301 +msgid "Channels not in any collection" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" msgstr "" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" +#: ../../include/identity.php:31 ../../mod/item.php:1078 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" +#: ../../include/identity.php:66 +msgid "Empty name" msgstr "" -#: ../../include/widgets.php:92 -msgid "System" +#: ../../include/identity.php:68 +msgid "Name too long" msgstr "" -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" +#: ../../include/identity.php:169 +msgid "No account identifier" msgstr "" -#: ../../include/widgets.php:95 -msgid "Create Personal App" +#: ../../include/identity.php:182 +msgid "Nickname is required." msgstr "" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:940 ../../mod/suggest.php:51 -#: ../../mod/directory.php:272 ../../mod/match.php:62 -msgid "Connect" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" +#: ../../include/identity.php:343 +msgid "Default Profile" msgstr "" -#: ../../include/widgets.php:144 -msgid "See more..." +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:428 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 +#: ../../mod/settings.php:335 ../../mod/settings.php:339 +#: ../../mod/settings.php:340 ../../mod/settings.php:343 +#: ../../mod/settings.php:354 +msgid "Friends" msgstr "" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/identity.php:643 +msgid "Requested channel is not available." msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" +#: ../../include/identity.php:691 ../../mod/profile.php:16 +#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 +#: ../../mod/layouts.php:29 +msgid "Requested profile is not available." msgstr "" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" +#: ../../include/identity.php:840 ../../include/widgets.php:136 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/conversation.php:940 ../../mod/match.php:62 +#: ../../mod/directory.php:276 ../../mod/suggest.php:51 +msgid "Connect" msgstr "" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/identity.php:854 ../../mod/profiles.php:774 +msgid "Change profile photo" msgstr "" -#: ../../include/widgets.php:190 -msgid "Notes" +#: ../../include/identity.php:861 +msgid "Profiles" msgstr "" -#: ../../include/widgets.php:192 ../../include/text.php:838 -#: ../../include/text.php:850 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" msgstr "" -#: ../../include/widgets.php:264 -msgid "Remove term" +#: ../../include/identity.php:862 ../../mod/profiles.php:775 +msgid "Create New Profile" msgstr "" -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" +#: ../../include/identity.php:865 ../../include/nav.php:95 +msgid "Edit Profile" msgstr "" -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" +#: ../../include/identity.php:878 ../../mod/profiles.php:786 +msgid "Profile Image" msgstr "" -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" +#: ../../include/identity.php:881 +msgid "visible to everybody" msgstr "" -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" +#: ../../include/identity.php:882 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" msgstr "" -#: ../../include/widgets.php:347 -msgid "Archives" +#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 +#: ../../include/event.php:40 ../../mod/events.php:645 +#: ../../mod/directory.php:208 +msgid "Location:" msgstr "" -#: ../../include/widgets.php:425 -msgid "Refresh" +#: ../../include/identity.php:898 ../../include/identity.php:1139 +msgid "Gender:" msgstr "" -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" +#: ../../include/identity.php:899 ../../include/identity.php:1183 +msgid "Status:" msgstr "" -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" +#: ../../include/identity.php:900 ../../include/identity.php:1194 +msgid "Homepage:" msgstr "" -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:335 ../../mod/settings.php:339 -#: ../../mod/settings.php:340 ../../mod/settings.php:343 -#: ../../mod/settings.php:354 -msgid "Friends" +#: ../../include/identity.php:901 +msgid "Online Now" msgstr "" -#: ../../include/widgets.php:429 -msgid "Co-workers" +#: ../../include/identity.php:983 ../../include/identity.php:1063 +#: ../../mod/ping.php:324 +msgid "g A l F d" msgstr "" -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" +#: ../../include/identity.php:984 ../../include/identity.php:1064 +msgid "F d" msgstr "" -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" +#: ../../include/identity.php:1029 ../../include/identity.php:1104 +#: ../../mod/ping.php:346 +msgid "[today]" msgstr "" -#: ../../include/widgets.php:432 -msgid "Everybody" +#: ../../include/identity.php:1041 +msgid "Birthday Reminders" msgstr "" -#: ../../include/widgets.php:466 -msgid "Account settings" +#: ../../include/identity.php:1042 +msgid "Birthdays this week:" msgstr "" -#: ../../include/widgets.php:472 -msgid "Channel settings" +#: ../../include/identity.php:1097 +msgid "[No description]" msgstr "" -#: ../../include/widgets.php:478 -msgid "Additional features" +#: ../../include/identity.php:1115 +msgid "Event Reminders" msgstr "" -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" +#: ../../include/identity.php:1116 +msgid "Events this week:" msgstr "" -#: ../../include/widgets.php:490 -msgid "Display settings" +#: ../../include/identity.php:1129 ../../include/identity.php:1246 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../include/widgets.php:496 -msgid "Connected apps" +#: ../../include/identity.php:1137 ../../mod/settings.php:1044 +msgid "Full Name:" msgstr "" -#: ../../include/widgets.php:502 -msgid "Export channel" +#: ../../include/identity.php:1144 +msgid "Like this channel" msgstr "" -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "" +#: ../../include/identity.php:1155 ../../include/taxonomy.php:385 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 +#: ../../mod/photos.php:1001 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" +#: ../../include/identity.php:1168 +msgid "j F, Y" msgstr "" -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" +#: ../../include/identity.php:1169 +msgid "j F" msgstr "" -#: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" +#: ../../include/identity.php:1176 +msgid "Birthday:" msgstr "" -#: ../../include/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" +#: ../../include/identity.php:1180 +msgid "Age:" msgstr "" -#: ../../include/widgets.php:551 -msgid "Check Mail" +#: ../../include/identity.php:1189 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" +#: ../../include/identity.php:1192 ../../mod/profiles.php:691 +msgid "Sexual Preference:" msgstr "" -#: ../../include/widgets.php:634 -msgid "Chat Rooms" +#: ../../include/identity.php:1196 ../../mod/profiles.php:693 +msgid "Hometown:" msgstr "" -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" +#: ../../include/identity.php:1198 +msgid "Tags:" msgstr "" -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" +#: ../../include/identity.php:1200 ../../mod/profiles.php:694 +msgid "Political Views:" msgstr "" -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" +#: ../../include/identity.php:1202 +msgid "Religion:" msgstr "" -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" +#: ../../include/identity.php:1204 +msgid "About:" msgstr "" -#: ../../include/widgets.php:960 -msgid "View Ratings" +#: ../../include/identity.php:1206 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/widgets.php:971 -msgid "Public Hubs" +#: ../../include/identity.php:1208 ../../mod/profiles.php:697 +msgid "Likes:" msgstr "" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" +#: ../../include/identity.php:1210 ../../mod/profiles.php:698 +msgid "Dislikes:" msgstr "" -#: ../../include/enotify.php:42 -msgid "redmatrix" +#: ../../include/identity.php:1212 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/enotify.php:44 -msgid "Thank You," +#: ../../include/identity.php:1214 +msgid "My other channels:" msgstr "" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" +#: ../../include/identity.php:1216 +msgid "Musical interests:" msgstr "" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " +#: ../../include/identity.php:1218 +msgid "Books, literature:" msgstr "" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" +#: ../../include/identity.php:1220 +msgid "Television:" msgstr "" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/identity.php:1222 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../include/identity.php:1224 +msgid "Love/Romance:" msgstr "" -#: ../../include/enotify.php:88 -msgid "a private message" +#: ../../include/identity.php:1226 +msgid "Work/employment:" msgstr "" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../include/identity.php:1228 +msgid "School/education:" msgstr "" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/identity.php:1248 +msgid "Like this thing" msgstr "" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 +#: ../../include/apps.php:254 ../../include/menu.php:42 +#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 +#: ../../mod/editpost.php:113 ../../mod/connections.php:382 +#: ../../mod/connections.php:395 ../../mod/connections.php:414 +#: ../../mod/thing.php:233 ../../mod/editlayout.php:139 +#: ../../mod/editwebpage.php:174 ../../mod/menu.php:78 +#: ../../mod/webpages.php:162 ../../mod/layouts.php:167 +#: ../../mod/settings.php:645 +msgid "Edit" msgstr "" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +msgid "View" msgstr "" -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 +#: ../../include/conversation.php:1152 ../../mod/events.php:651 +#: ../../mod/webpages.php:166 ../../mod/photos.php:964 +msgid "Preview" msgstr "" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" msgstr "" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" msgstr "" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" msgstr "" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" msgstr "" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" msgstr "" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 +#: ../../include/contact_widgets.php:92 +msgid "Categories" msgstr "" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:34 +msgid "Apps" msgstr "" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" +#: ../../include/widgets.php:92 +msgid "System" msgstr "" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" +#: ../../include/widgets.php:94 ../../include/conversation.php:1494 +msgid "Personal" msgstr "" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../include/widgets.php:95 +msgid "Create Personal App" msgstr "" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" msgstr "" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../include/widgets.php:143 ../../mod/connections.php:268 +msgid "Suggestions" msgstr "" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" +#: ../../include/widgets.php:144 +msgid "See more..." msgstr "" -#: ../../include/enotify.php:258 +#: ../../include/widgets.php:166 #, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +#: ../../include/widgets.php:172 +msgid "Add New Connection" msgstr "" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" msgstr "" -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" +#: ../../include/widgets.php:190 +msgid "Notes" msgstr "" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/widgets.php:192 ../../include/text.php:838 +#: ../../include/text.php:850 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1368 ../../mod/admin.php:1389 +msgid "Save" msgstr "" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../include/widgets.php:264 +msgid "Remove term" msgstr "" -#: ../../include/enotify.php:280 -msgid "Name:" +#: ../../include/widgets.php:272 ../../include/features.php:72 +msgid "Saved Searches" msgstr "" -#: ../../include/enotify.php:281 -msgid "Photo:" +#: ../../include/widgets.php:302 ../../include/features.php:84 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" msgstr "" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" msgstr "" -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" +#: ../../include/widgets.php:347 +msgid "Archives" msgstr "" -#: ../../include/text.php:320 -msgid "prev" +#: ../../include/widgets.php:425 +msgid "Refresh" msgstr "" -#: ../../include/text.php:322 -msgid "first" +#: ../../include/widgets.php:426 ../../mod/connedit.php:563 +msgid "Me" msgstr "" -#: ../../include/text.php:351 -msgid "last" +#: ../../include/widgets.php:427 ../../mod/connedit.php:566 +msgid "Best Friends" msgstr "" -#: ../../include/text.php:354 -msgid "next" +#: ../../include/widgets.php:429 +msgid "Co-workers" msgstr "" -#: ../../include/text.php:366 -msgid "older" +#: ../../include/widgets.php:430 ../../mod/connedit.php:568 +msgid "Former Friends" msgstr "" -#: ../../include/text.php:368 -msgid "newer" +#: ../../include/widgets.php:431 ../../mod/connedit.php:569 +msgid "Acquaintances" msgstr "" -#: ../../include/text.php:751 -msgid "No connections" +#: ../../include/widgets.php:432 +msgid "Everybody" msgstr "" -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:484 +msgid "Feature/Addon settings" +msgstr "" + +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:511 ../../mod/connedit.php:627 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:527 ../../include/features.php:61 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/widgets.php:535 ../../include/nav.php:210 +#: ../../include/apps.php:134 ../../mod/admin.php:980 ../../mod/admin.php:1185 +msgid "Settings" +msgstr "" + +#: ../../include/widgets.php:548 ../../mod/message.php:31 +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "" + +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:556 ../../include/nav.php:201 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:954 ../../include/widgets.php:956 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:960 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:971 +msgid "Public Hubs" +msgstr "" + +#: ../../include/text.php:320 +msgid "prev" +msgstr "" + +#: ../../include/text.php:322 +msgid "first" +msgstr "" + +#: ../../include/text.php:351 +msgid "last" +msgstr "" + +#: ../../include/text.php:354 +msgid "next" +msgstr "" + +#: ../../include/text.php:366 +msgid "older" +msgstr "" + +#: ../../include/text.php:368 +msgid "newer" +msgstr "" + +#: ../../include/text.php:751 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:767 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" msgstr[0] "" msgstr[1] "" @@ -864,19 +964,21 @@ msgid "Select an alternate language" msgstr "" #: ../../include/text.php:1753 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 +#: ../../include/conversation.php:120 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:43 msgid "photo" msgstr "" #: ../../include/text.php:1756 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 ../../mod/like.php:337 +#: ../../mod/like.php:337 ../../mod/tagger.php:47 msgid "event" msgstr "" #: ../../include/text.php:1759 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 +#: ../../include/conversation.php:148 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:51 msgid "status" msgstr "" @@ -1041,22 +1143,22 @@ msgid "Describe (optional)" msgstr "" #: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/settings.php:583 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/events.php:654 +#: ../../mod/connedit.php:653 ../../mod/group.php:81 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../mod/import.php:504 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/rate.php:167 ../../mod/invite.php:142 +#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/filestorage.php:155 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:420 +#: ../../mod/admin.php:752 ../../mod/admin.php:888 ../../mod/admin.php:1021 +#: ../../mod/admin.php:1220 ../../mod/admin.php:1307 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:923 ../../mod/photos.php:963 +#: ../../mod/photos.php:1081 ../../mod/mood.php:134 ../../mod/mail.php:355 +#: ../../mod/appman.php:99 ../../mod/settings.php:583 #: ../../mod/settings.php:708 ../../mod/settings.php:737 #: ../../mod/settings.php:760 ../../mod/settings.php:842 -#: ../../mod/settings.php:1038 ../../mod/group.php:81 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1081 ../../mod/poll.php:68 +#: ../../mod/settings.php:1038 ../../mod/poll.php:68 #: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" @@ -1160,8 +1262,8 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1019 +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:1019 +#: ../../include/apps.php:336 ../../include/apps.php:387 #: ../../mod/connedit.php:570 ../../mod/photos.php:681 #: ../../mod/photos.php:1113 msgid "Unknown" @@ -1178,7 +1280,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "" #: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../include/conversation.php:1595 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" @@ -1203,8 +1305,8 @@ msgstr "" msgid "Upload" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/admin.php:895 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 #: ../../mod/sharedwithme.php:100 msgid "Name" msgstr "" @@ -1222,10 +1324,10 @@ msgid "Last Modified" msgstr "" #: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:646 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1044 +#: ../../include/conversation.php:645 ../../include/apps.php:255 +#: ../../mod/connedit.php:533 ../../mod/group.php:176 ../../mod/thing.php:234 +#: ../../mod/admin.php:759 ../../mod/admin.php:890 ../../mod/photos.php:1044 +#: ../../mod/settings.php:646 msgid "Delete" msgstr "" @@ -1282,15 +1384,6 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/taxonomy.php:385 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 -#: ../../mod/photos.php:1001 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - #: ../../include/features.php:38 msgid "General Features" msgstr "" @@ -1534,16 +1627,76 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/auth.php:130 -msgid "Logged out." +#: ../../include/items.php:382 ../../mod/like.php:270 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../index.php:392 +msgid "Permission denied" msgstr "" -#: ../../include/auth.php:271 -msgid "Failed authentication" +#: ../../include/items.php:979 ../../include/items.php:1024 +msgid "(Unknown)" msgstr "" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/items.php:1181 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1183 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1185 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1187 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1189 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1191 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1193 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1195 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4013 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:27 +#: ../../mod/viewsrc.php:20 ../../mod/admin.php:172 ../../mod/admin.php:925 +#: ../../mod/admin.php:1128 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4466 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4481 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4488 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4499 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4502 +msgid "Connection not found." msgstr "" #: ../../include/contact_selectors.php:56 @@ -1582,8 +1735,8 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:755 +#: ../../mod/admin.php:764 ../../boot.php:1554 msgid "Email" msgstr "" @@ -1611,574 +1764,316 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../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." +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/group.php:276 -msgid "edit" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/group.php:298 -msgid "Collections" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/group.php:299 -msgid "Edit collection" +#: ../../include/follow.php:33 +msgid "Channel location missing." msgstr "" -#: ../../include/group.php:300 -msgid "Create a new collection" +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/group.php:301 -msgid "Channels not in any collection" +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" +#: ../../include/follow.php:135 ../../include/follow.php:197 +msgid "Protocol disabled." msgstr "" -#: ../../include/identity.php:66 -msgid "Empty name" +#: ../../include/follow.php:170 +msgid "Channel discovery failed." msgstr "" -#: ../../include/identity.php:68 -msgid "Name too long" +#: ../../include/follow.php:186 +msgid "local account not found." msgstr "" -#: ../../include/identity.php:169 -msgid "No account identifier" +#: ../../include/follow.php:215 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/identity.php:182 -msgid "Nickname is required." +#: ../../include/comanche.php:35 ../../mod/admin.php:361 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" msgstr "" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." +#: ../../include/datetime.php:35 +msgid "Miscellaneous" msgstr "" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/identity.php:343 -msgid "Default Profile" +#: ../../include/datetime.php:212 ../../mod/events.php:633 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" msgstr "" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." +#: ../../include/datetime.php:231 +msgid "never" msgstr "" -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." +#: ../../include/datetime.php:237 +msgid "less than a second ago" msgstr "" -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" +#: ../../include/datetime.php:240 +msgid "year" msgstr "" -#: ../../include/identity.php:861 -msgid "Profiles" +#: ../../include/datetime.php:240 +msgid "years" msgstr "" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" +#: ../../include/datetime.php:241 +msgid "month" msgstr "" -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" +#: ../../include/datetime.php:241 +msgid "months" msgstr "" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" +#: ../../include/datetime.php:242 +msgid "week" msgstr "" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" +#: ../../include/datetime.php:242 +msgid "weeks" msgstr "" -#: ../../include/identity.php:881 -msgid "visible to everybody" +#: ../../include/datetime.php:243 +msgid "day" msgstr "" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" +#: ../../include/datetime.php:243 +msgid "days" msgstr "" -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:204 -msgid "Location:" +#: ../../include/datetime.php:244 +msgid "hour" msgstr "" -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" +#: ../../include/datetime.php:244 +msgid "hours" msgstr "" -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" +#: ../../include/datetime.php:245 +msgid "minute" msgstr "" -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" +#: ../../include/datetime.php:245 +msgid "minutes" msgstr "" -#: ../../include/identity.php:901 -msgid "Online Now" +#: ../../include/datetime.php:246 +msgid "second" msgstr "" -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:324 -msgid "g A l F d" +#: ../../include/datetime.php:246 +msgid "seconds" msgstr "" -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" +#: ../../include/datetime.php:255 +#, php-format +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" +#: ../../include/datetime.php:463 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" +#: ../../include/datetime.php:464 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" +#: ../../include/Contact.php:124 +msgid "New window" msgstr "" -#: ../../include/identity.php:1097 -msgid "[No description]" +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/identity.php:1115 -msgid "Event Reminders" +#: ../../include/Contact.php:215 ../../mod/admin.php:675 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/identity.php:1116 -msgid "Events this week:" +#: ../../include/bb2diaspora.php:349 +msgid "Attachments:" msgstr "" -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" +#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" +#: ../../include/bb2diaspora.php:430 +msgid "Redmatrix event notification:" msgstr "" -#: ../../include/identity.php:1144 -msgid "Like this channel" +#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/identity.php:1168 -msgid "j F, Y" +#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/identity.php:1169 -msgid "j F" +#: ../../include/zot.php:673 +msgid "Invalid data packet" msgstr "" -#: ../../include/identity.php:1176 -msgid "Birthday:" +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/identity.php:1180 -msgid "Age:" +#: ../../include/zot.php:2063 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/identity.php:1189 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/identity.php:1198 -msgid "Tags:" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" -#: ../../include/identity.php:1202 -msgid "Religion:" +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 +msgid "Logout" msgstr "" -#: ../../include/identity.php:1204 -msgid "About:" +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" msgstr "" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" msgstr "" -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" +#: ../../include/nav.php:90 +msgid "Your posts and conversations" msgstr "" -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" +#: ../../include/nav.php:91 ../../include/conversation.php:937 +#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 +msgid "View Profile" msgstr "" -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" +#: ../../include/nav.php:91 +msgid "Your profile page" msgstr "" -#: ../../include/identity.php:1214 -msgid "My other channels:" +#: ../../include/nav.php:93 +msgid "Edit Profiles" msgstr "" -#: ../../include/identity.php:1216 -msgid "Musical interests:" +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/identity.php:1218 -msgid "Books, literature:" +#: ../../include/nav.php:95 +msgid "Edit your profile" msgstr "" -#: ../../include/identity.php:1220 -msgid "Television:" +#: ../../include/nav.php:97 ../../include/conversation.php:1586 +#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" +#: ../../include/nav.php:97 +msgid "Your photos" msgstr "" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" +#: ../../include/nav.php:98 +msgid "Your files" msgstr "" -#: ../../include/identity.php:1226 -msgid "Work/employment:" +#: ../../include/nav.php:103 ../../include/apps.php:146 +msgid "Chat" msgstr "" -#: ../../include/identity.php:1228 -msgid "School/education:" +#: ../../include/nav.php:103 +msgid "Your chatrooms" msgstr "" -#: ../../include/identity.php:1248 -msgid "Like this thing" +#: ../../include/nav.php:109 ../../include/conversation.php:1621 +#: ../../include/apps.php:129 +msgid "Bookmarks" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../include/nav.php:109 +msgid "Your bookmarks" msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" +#: ../../include/nav.php:113 ../../include/conversation.php:1632 +#: ../../include/apps.php:136 ../../mod/webpages.php:160 +msgid "Webpages" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/nav.php:113 +msgid "Your webpages" msgstr "" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 +msgid "Login" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/nav.php:117 +msgid "Sign in" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." +#: ../../include/nav.php:137 +msgid "Remote authentication" msgstr "" -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "" - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Home Page" +#: ../../include/nav.php:151 +msgid "Home Page" msgstr "" #: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 @@ -2207,7 +2102,7 @@ msgid "Search site content" msgstr "" #: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 +#: ../../mod/directory.php:338 msgid "Directory" msgstr "" @@ -2313,7 +2208,7 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:218 ../../mod/admin.php:123 +#: ../../include/nav.php:218 ../../mod/admin.php:124 msgid "Admin" msgstr "" @@ -2339,19 +2234,86 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 -msgid "Private Message" +#: ../../include/activities.php:39 +msgid " and " msgstr "" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 -msgid "Select" +#: ../../include/activities.php:47 +msgid "public profile" msgstr "" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/ItemObject.php:151 +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/dir_fns.php:96 +msgid "Directory Options" +msgstr "" + +#: ../../include/dir_fns.php:97 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:98 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:99 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:100 +msgid "Oldest to Newest" +msgstr "" + +#: ../../include/dir_fns.php:101 +msgid "Public Forums Only" +msgstr "" + +#: ../../include/dir_fns.php:103 +msgid "Sort" +msgstr "" + +#: ../../include/dir_fns.php:119 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:121 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:123 +msgid "Safe Mode" +msgstr "" + +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 +msgid "Private Message" +msgstr "" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +msgid "Select" +msgstr "" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "" + +#: ../../include/ItemObject.php:151 msgid "I will attend" msgstr "" @@ -2506,8 +2468,8 @@ msgstr "" #: ../../include/ItemObject.php:364 ../../include/conversation.php:725 #: ../../include/conversation.php:1198 ../../mod/editblock.php:152 #: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 -#: ../../mod/photos.php:944 +#: ../../mod/editwebpage.php:183 ../../mod/photos.php:944 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 msgid "Please wait" msgstr "" @@ -2553,209 +2515,268 @@ msgstr "" msgid "Encrypt text" msgstr "" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/api.php:1081 +msgid "Public Timeline" msgstr "" -#: ../../include/activities.php:47 -msgid "public profile" +#: ../../include/network.php:613 +msgid "view full size" msgstr "" -#: ../../include/activities.php:56 +#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 +#: ../../mod/like.php:383 #, php-format -msgid "%1$s changed %2$s to “%3$s”" +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 +#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 +#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 +#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 +#: ../../include/bbcode.php:733 +msgid "Image/photo" msgstr "" -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 +msgid "Encrypted content" msgstr "" -#: ../../include/dir_fns.php:96 -msgid "Directory Options" +#: ../../include/bbcode.php:168 +msgid "Install design element: " msgstr "" -#: ../../include/dir_fns.php:97 -msgid "Alphabetic" +#: ../../include/bbcode.php:174 +msgid "QR code" msgstr "" -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" +#: ../../include/bbcode.php:223 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" +#: ../../include/bbcode.php:225 +msgid "post" msgstr "" -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" +#: ../../include/bbcode.php:447 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" +#: ../../include/bbcode.php:662 +msgid "$1 spoiler" msgstr "" -#: ../../include/dir_fns.php:103 -msgid "Sort" +#: ../../include/bbcode.php:682 +msgid "$1 wrote:" msgstr "" -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" +#: ../../include/auth.php:130 +msgid "Logged out." msgstr "" -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" +#: ../../include/auth.php:271 +msgid "Failed authentication" msgstr "" -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." msgstr "" -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 -msgid "Permission denied" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" msgstr "" -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" +#: ../../include/enotify.php:42 +msgid "redmatrix" msgstr "" -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." +#: ../../include/enotify.php:44 +msgid "Thank You," msgstr "" -#: ../../include/items.php:1183 -msgid "Visible to you only." +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " msgstr "" -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" msgstr "" -#: ../../include/items.php:1189 +#: ../../include/enotify.php:87 #, php-format -msgid "Visible to anybody on %s." +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../include/items.php:1191 -msgid "Visible to all connections." +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/items.php:1193 -msgid "Visible to approved connections." +#: ../../include/enotify.php:88 +msgid "a private message" msgstr "" -#: ../../include/items.php:1195 -msgid "Visible to specific connections." +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/items.php:4002 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/items.php:4470 -msgid "Collection is empty." +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/items.php:4477 +#: ../../include/enotify.php:172 #, php-format -msgid "Collection: %s" +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/items.php:4488 +#: ../../include/enotify.php:173 #, php-format -msgid "Connection: %s" +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/items.php:4491 -msgid "Connection not found." +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/Contact.php:124 -msgid "New window" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/Contact.php:215 ../../mod/admin.php:651 +#: ../../include/enotify.php:210 #, php-format -msgid "User '%s' deleted" +msgid "[Red:Notify] %s tagged you" msgstr "" -#: ../../include/network.php:613 -msgid "view full size" +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 -#: ../../mod/like.php:383 +#: ../../include/enotify.php:212 #, php-format -msgid "%1$s likes %2$s's %3$s" +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" msgstr "" -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/bbcode.php:168 -msgid "Install design element: " +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/bbcode.php:174 -msgid "QR code" +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" msgstr "" -#: ../../include/bbcode.php:223 +#: ../../include/enotify.php:244 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/bbcode.php:225 -msgid "post" +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" msgstr "" -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +msgstr "" + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/enotify.php:499 +msgid "[Red:Notify]" msgstr "" #: ../../include/contact_widgets.php:14 @@ -2765,7 +2786,7 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:424 msgid "Advanced" msgstr "" @@ -2786,12 +2807,12 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 +#: ../../mod/directory.php:334 ../../mod/directory.php:339 msgid "Find" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:338 +#: ../../mod/suggest.php:59 msgid "Channel Suggestions" msgstr "" @@ -2836,864 +2857,847 @@ msgstr "" msgid "Permissions" msgstr "" -#: ../../include/api.php:1081 -msgid "Public Timeline" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" msgstr "" -#: ../../include/zot.php:673 -msgid "Invalid data packet" +#: ../../include/conversation.php:167 ../../mod/like.php:385 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/zot.php:1961 +#: ../../include/conversation.php:239 #, php-format -msgid "Unable to verify site signature for %s" +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" +#: ../../include/conversation.php:556 ../../mod/photos.php:978 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" +#: ../../include/conversation.php:556 ../../mod/photos.php:978 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: ../../include/conversation.php:680 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" +#: ../../include/conversation.php:695 +msgid "Categories:" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" +#: ../../include/conversation.php:696 +msgid "Filed under:" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" +#: ../../include/conversation.php:723 +msgid "View in context" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" +#: ../../include/conversation.php:838 +msgid "remove" msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" +#: ../../include/conversation.php:934 +msgid "View Source" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Gay" +#: ../../include/conversation.php:935 +msgid "Follow Thread" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" +#: ../../include/conversation.php:936 +msgid "View Status" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" +#: ../../include/conversation.php:938 +msgid "View Photos" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" +#: ../../include/conversation.php:939 +msgid "Matrix Activity" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" +#: ../../include/conversation.php:941 +msgid "Edit Contact" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" +#: ../../include/conversation.php:942 +msgid "Send PM" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" +#: ../../include/conversation.php:943 ../../include/apps.php:145 +msgid "Poke" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" +#: ../../include/conversation.php:1061 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" +#: ../../include/conversation.php:1061 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "" +#: ../../include/conversation.php:1065 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "" +#: ../../include/conversation.php:1067 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" +#: ../../include/conversation.php:1073 +msgid "and" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" +#: ../../include/conversation.php:1076 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1077 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Available" +#: ../../include/conversation.php:1077 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" +#: ../../include/conversation.php:1136 +msgid "Visible to everybody" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" +#: ../../include/conversation.php:1137 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" +#: ../../include/conversation.php:1138 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" +#: ../../include/conversation.php:1139 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" +#: ../../include/conversation.php:1140 +msgid "Tag term:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" +#: ../../include/conversation.php:1141 ../../mod/filer.php:49 +msgid "Save to Folder:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Casual" +#: ../../include/conversation.php:1142 +msgid "Where are you right now?" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" +#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" +#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 +#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 +#: ../../mod/photos.php:943 ../../mod/layouts.php:168 +msgid "Share" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" +#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 +msgid "Page link title" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Partners" +#: ../../include/conversation.php:1175 +msgid "Post as" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" +#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Upload photo" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Common law" +#: ../../include/conversation.php:1177 +msgid "upload photo" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Happy" +#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 +msgid "Attach file" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" +#: ../../include/conversation.php:1179 +msgid "attach file" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" +#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 +#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Insert web link" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" +#: ../../include/conversation.php:1181 +msgid "web link" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" +#: ../../include/conversation.php:1182 +msgid "Insert video link" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" +#: ../../include/conversation.php:1183 +msgid "video link" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" +#: ../../include/conversation.php:1184 +msgid "Insert audio link" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" +#: ../../include/conversation.php:1185 +msgid "audio link" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" +#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 +#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" +#: ../../include/conversation.php:1187 +msgid "set location" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" +#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 +msgid "Toggle voting" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" +#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" +#: ../../include/conversation.php:1192 +msgid "clear location" msgstr "" -#: ../../include/apps.php:128 -msgid "Site Admin" +#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 +#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" msgstr "" -#: ../../include/apps.php:130 -msgid "Address Book" +#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 +#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" +#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 +#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" msgstr "" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" +#: ../../include/conversation.php:1200 +msgid "permissions" msgstr "" -#: ../../include/apps.php:148 -msgid "Probe" +#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" msgstr "" -#: ../../include/apps.php:149 -msgid "Suggest" +#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 +#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/apps.php:150 -msgid "Random Channel" +#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 +#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 +msgid "Set expiration date" msgstr "" -#: ../../include/apps.php:151 -msgid "Invite" +#: ../../include/conversation.php:1226 ../../mod/events.php:635 +#: ../../mod/editpost.php:154 +msgid "OK" msgstr "" -#: ../../include/apps.php:152 -msgid "Features" +#: ../../include/conversation.php:1227 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:134 ../../mod/events.php:634 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:155 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" msgstr "" -#: ../../include/apps.php:153 -msgid "Language" +#: ../../include/conversation.php:1471 +msgid "Discover" msgstr "" -#: ../../include/apps.php:154 -msgid "Post" +#: ../../include/conversation.php:1474 +msgid "Imported public streams" msgstr "" -#: ../../include/apps.php:155 -msgid "Profile Photo" +#: ../../include/conversation.php:1479 +msgid "Commented Order" msgstr "" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:609 -msgid "Update" +#: ../../include/conversation.php:1482 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/apps.php:247 -msgid "Install" +#: ../../include/conversation.php:1486 +msgid "Posted Order" msgstr "" -#: ../../include/apps.php:252 -msgid "Purchase" +#: ../../include/conversation.php:1489 +msgid "Sort by Post Date" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/conversation.php:1497 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/conversation.php:1503 ../../mod/connections.php:212 +#: ../../mod/connections.php:225 ../../mod/menu.php:80 +msgid "New" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/conversation.php:1506 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/conversation.php:1512 +msgid "Starred" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../include/conversation.php:1515 +msgid "Favourite Posts" msgstr "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/conversation.php:1522 +msgid "Spam" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/conversation.php:1525 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/conversation.php:1565 ../../mod/admin.php:894 +msgid "Channel" msgstr "" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" +#: ../../include/conversation.php:1568 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" +#: ../../include/conversation.php:1577 +msgid "About" msgstr "" -#: ../../include/account.php:337 -msgid "your registration password" +#: ../../include/conversation.php:1580 +msgid "Profile Details" msgstr "" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" +#: ../../include/conversation.php:1598 +msgid "Files and Storage" msgstr "" -#: ../../include/account.php:406 -msgid "Account approved." +#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 +msgid "Chatrooms" msgstr "" -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/conversation.php:1624 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/account.php:486 -msgid "Account verified. Please login." +#: ../../include/conversation.php:1635 +msgid "Manage Webpages" msgstr "" -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "" +#: ../../include/conversation.php:1698 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" +#: ../../include/conversation.php:1701 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "" +#: ../../include/conversation.php:1704 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "" +#: ../../include/conversation.php:1707 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/conversation.php:167 ../../mod/like.php:385 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/conversation.php:1710 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1713 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Likes" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Dislikes" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 +msgid "Other" msgstr "" -#: ../../include/conversation.php:695 -msgid "Categories:" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" msgstr "" -#: ../../include/conversation.php:696 -msgid "Filed under:" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" msgstr "" -#: ../../include/conversation.php:723 -msgid "View in context" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" msgstr "" -#: ../../include/conversation.php:838 -msgid "remove" +#: ../../include/profile_selectors.php:42 +msgid "Gay" msgstr "" -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" msgstr "" -#: ../../include/conversation.php:934 -msgid "View Source" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" msgstr "" -#: ../../include/conversation.php:935 -msgid "Follow Thread" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" msgstr "" -#: ../../include/conversation.php:936 -msgid "View Status" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" msgstr "" -#: ../../include/conversation.php:938 -msgid "View Photos" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" msgstr "" -#: ../../include/conversation.php:939 -msgid "Matrix Activity" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" msgstr "" -#: ../../include/conversation.php:941 -msgid "Edit Contact" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" msgstr "" -#: ../../include/conversation.php:942 -msgid "Send PM" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" msgstr "" -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." +#: ../../include/profile_selectors.php:42 +msgid "Oodles" msgstr "" -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" msgstr "" -#: ../../include/conversation.php:1065 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "" -#: ../../include/conversation.php:1067 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "" -#: ../../include/conversation.php:1073 -msgid "and" +#: ../../include/profile_selectors.php:80 +msgid "Available" msgstr "" -#: ../../include/conversation.php:1076 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s like this." +#: ../../include/profile_selectors.php:80 +msgid "Has crush" msgstr "" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" msgstr "" -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" msgstr "" -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" msgstr "" -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" msgstr "" -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" msgstr "" -#: ../../include/conversation.php:1140 -msgid "Tag term:" +#: ../../include/profile_selectors.php:80 +msgid "Casual" msgstr "" -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" msgstr "" -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" msgstr "" -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" msgstr "" -#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:943 -msgid "Share" +#: ../../include/profile_selectors.php:80 +msgid "Partners" msgstr "" -#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" msgstr "" -#: ../../include/conversation.php:1175 -msgid "Post as" +#: ../../include/profile_selectors.php:80 +msgid "Common law" msgstr "" -#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" +#: ../../include/profile_selectors.php:80 +msgid "Happy" msgstr "" -#: ../../include/conversation.php:1177 -msgid "upload photo" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" msgstr "" -#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" msgstr "" -#: ../../include/conversation.php:1179 -msgid "attach file" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" msgstr "" -#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" msgstr "" -#: ../../include/conversation.php:1181 -msgid "web link" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" msgstr "" -#: ../../include/conversation.php:1182 -msgid "Insert video link" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" msgstr "" -#: ../../include/conversation.php:1183 -msgid "video link" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/conversation.php:1184 -msgid "Insert audio link" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" msgstr "" -#: ../../include/conversation.php:1185 -msgid "audio link" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" msgstr "" -#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" msgstr "" -#: ../../include/conversation.php:1187 -msgid "set location" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" msgstr "" -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" msgstr "" -#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" +#: ../../include/apps.php:128 +msgid "Site Admin" msgstr "" -#: ../../include/conversation.php:1192 -msgid "clear location" +#: ../../include/apps.php:130 +msgid "Address Book" msgstr "" -#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" +#: ../../include/apps.php:144 ../../mod/mood.php:130 +msgid "Mood" msgstr "" -#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" +#: ../../include/apps.php:148 +msgid "Probe" msgstr "" -#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" +#: ../../include/apps.php:149 +msgid "Suggest" msgstr "" -#: ../../include/conversation.php:1200 -msgid "permissions" +#: ../../include/apps.php:150 +msgid "Random Channel" msgstr "" -#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" +#: ../../include/apps.php:151 +msgid "Invite" msgstr "" -#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/apps.php:152 +msgid "Features" msgstr "" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" +#: ../../include/apps.php:153 +msgid "Language" msgstr "" -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" +#: ../../include/apps.php:154 +msgid "Post" msgstr "" -#: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" +#: ../../include/apps.php:155 +msgid "Profile Photo" msgstr "" -#: ../../include/conversation.php:1471 -msgid "Discover" +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:609 +msgid "Update" msgstr "" -#: ../../include/conversation.php:1474 -msgid "Imported public streams" +#: ../../include/apps.php:247 +msgid "Install" msgstr "" -#: ../../include/conversation.php:1479 -msgid "Commented Order" +#: ../../include/apps.php:252 +msgid "Purchase" msgstr "" -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/conversation.php:1486 -msgid "Posted Order" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/conversation.php:1497 -msgid "Posts that mention or involve you" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/conversation.php:1512 -msgid "Starred" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/conversation.php:1522 -msgid "Spam" +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/conversation.php:1577 -msgid "About" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/conversation.php:1580 -msgid "Profile Details" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/conversation.php:1598 -msgid "Files and Storage" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" +#: ../../include/account.php:674 ../../include/account.php:676 +msgid "Click here to upgrade." msgstr "" -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" +#: ../../include/account.php:682 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" +#: ../../include/account.php:687 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "" @@ -3904,6 +3908,45 @@ msgstr "" msgid "%d new introductions" 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:130 ../../mod/tagrm.php:133 ../../mod/photos.php:873 +msgid "Remove" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "" + #: ../../mod/xchan.php:6 msgid "Xchan Lookup" msgstr "" @@ -3934,13 +3977,13 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../mod/api.php:105 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:396 +#: ../../mod/api.php:105 ../../mod/admin.php:400 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 msgid "Yes" msgstr "" -#: ../../mod/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:394 +#: ../../mod/api.php:106 ../../mod/admin.php:398 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 msgid "No" msgstr "" @@ -3948,4468 +3991,4449 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." +#: ../../mod/follow.php:25 +msgid "Channel added." msgstr "" -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" msgstr "" -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/connedit.php:252 -msgid "is now connected to" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" msgstr "" -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" +#: ../../mod/match.php:16 +msgid "Profile Match" msgstr "" -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" +#: ../../mod/match.php:61 +msgid "is interested in:" msgstr "" -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" +#: ../../mod/match.php:69 +msgid "No matches" msgstr "" -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/connedit.php:487 +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" msgstr "" -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." msgstr "" -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/connedit.php:520 -msgid "Unarchive" +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/connedit.php:520 -msgid "Archive" +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." msgstr "" -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." msgstr "" -#: ../../mod/connedit.php:526 -msgid "Unhide" +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" msgstr "" -#: ../../mod/connedit.php:526 -msgid "Hide" +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" msgstr "" -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/connedit.php:536 -msgid "Delete this connection" +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +msgid "or" msgstr "" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" +#: ../../mod/profile_photo.php:366 +msgid "skip this step" msgstr "" -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" msgstr "" -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" msgstr "" -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." msgstr "" -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." msgstr "" -#: ../../mod/connedit.php:648 -msgid "inherited" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." msgstr "" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" +#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." msgstr "" -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." +#: ../../mod/like.php:15 +msgid "Like/Dislike" msgstr "" -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." msgstr "" -#: ../../mod/connedit.php:655 -#, php-format +#: ../../mod/like.php:21 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." msgstr "" -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." msgstr "" -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" +#: ../../mod/like.php:143 +msgid "thing" msgstr "" -#: ../../mod/connedit.php:659 -msgid "Their Settings" +#: ../../mod/like.php:189 +msgid "Channel unavailable." msgstr "" -#: ../../mod/connedit.php:660 -msgid "My Settings" +#: ../../mod/like.php:228 +msgid "Previous action reversed." msgstr "" -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." +#: ../../mod/like.php:387 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" +#: ../../mod/like.php:389 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:664 -msgid "Forum Members" +#: ../../mod/like.php:391 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:665 -msgid "Soapbox" +#: ../../mod/like.php:393 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" +#: ../../mod/like.php:395 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../mod/connedit.php:668 -msgid "Follow Only" +#: ../../mod/like.php:481 +msgid "Action completed." msgstr "" -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" +#: ../../mod/like.php:482 +msgid "Thank you." msgstr "" -#: ../../mod/connedit.php:670 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " -"settings. Changing those inherited settings on this page will have no effect." +#: ../../mod/events.php:87 +msgid "Event can not end before it has started." msgstr "" -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" +#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 +msgid "Unable to generate preview." msgstr "" -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" +#: ../../mod/events.php:96 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" +#: ../../mod/events.php:114 +msgid "Event not found." msgstr "" -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" +#: ../../mod/events.php:396 +msgid "l, F j" msgstr "" -#: ../../mod/connedit.php:678 -msgid "Ignore contact" +#: ../../mod/events.php:418 +msgid "Edit event" msgstr "" -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" +#: ../../mod/events.php:419 +msgid "Delete event" msgstr "" -#: ../../mod/connedit.php:680 -msgid "View conversations" +#: ../../mod/events.php:473 +msgid "Create New Event" msgstr "" -#: ../../mod/connedit.php:682 -msgid "Delete contact" +#: ../../mod/events.php:474 ../../mod/photos.php:827 +msgid "Previous" msgstr "" -#: ../../mod/connedit.php:686 -msgid "Last update:" +#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 +msgid "Next" msgstr "" -#: ../../mod/connedit.php:688 -msgid "Update public posts" +#: ../../mod/events.php:476 +msgid "Export" msgstr "" -#: ../../mod/connedit.php:690 -msgid "Update now" +#: ../../mod/events.php:504 +msgid "Event removed" msgstr "" -#: ../../mod/connedit.php:696 -msgid "Currently blocked" +#: ../../mod/events.php:507 +msgid "Failed to remove event" msgstr "" -#: ../../mod/connedit.php:697 -msgid "Currently ignored" +#: ../../mod/events.php:625 +msgid "Event details" msgstr "" -#: ../../mod/connedit.php:698 -msgid "Currently archived" +#: ../../mod/events.php:626 +msgid "Starting date and Title are required." msgstr "" -#: ../../mod/connedit.php:699 -msgid "Currently pending" +#: ../../mod/events.php:628 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" +#: ../../mod/events.php:630 +msgid "Event Starts:" msgstr "" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" +#: ../../mod/events.php:637 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" +#: ../../mod/events.php:639 +msgid "Event Finishes:" msgstr "" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" +#: ../../mod/events.php:641 ../../mod/events.php:642 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" +#: ../../mod/events.php:641 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../mod/events.php:643 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:647 +msgid "Title:" msgstr "" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../mod/events.php:649 +msgid "Share this event" msgstr "" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../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/connect.php:109 -msgid "Restricted or Premium Channel" +#: ../../mod/pubsites.php:25 +msgid "Rate this hub" msgstr "" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" +#: ../../mod/pubsites.php:26 +msgid "Site URL" msgstr "" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" +#: ../../mod/pubsites.php:26 +msgid "Access Type" msgstr "" -#: ../../mod/editpost.php:53 -msgid "Delete item?" +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" msgstr "" -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" +#: ../../mod/pubsites.php:30 +msgid "Rate" msgstr "" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." +#: ../../mod/pubsites.php:31 +msgid "View ratings" msgstr "" -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." +#: ../../mod/network.php:84 +msgid "No such group" msgstr "" -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../mod/network.php:122 +msgid "Search Results For:" msgstr "" -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" +#: ../../mod/network.php:176 +msgid "Collection is empty" msgstr "" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." +#: ../../mod/network.php:184 +msgid "Collection: " msgstr "" -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." +#: ../../mod/network.php:197 +msgid "Connection: " msgstr "" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" +#: ../../mod/network.php:200 +msgid "Invalid connection." msgstr "" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" +#: ../../mod/connedit.php:75 ../../mod/connections.php:37 +msgid "Could not access contact record." msgstr "" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" +#: ../../mod/connedit.php:99 ../../mod/connections.php:51 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 -msgid "or" +#: ../../mod/connedit.php:204 ../../mod/connections.php:94 +msgid "Connection updated." msgstr "" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" +#: ../../mod/connedit.php:206 ../../mod/connections.php:96 +msgid "Failed to update connection record." msgstr "" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" +#: ../../mod/connedit.php:252 +msgid "is now connected to" msgstr "" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" +#: ../../mod/connedit.php:365 +msgid "Could not access address book record." msgstr "" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../mod/connedit.php:379 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" +#: ../../mod/connedit.php:386 +msgid "Channel has been unblocked" msgstr "" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." +#: ../../mod/connedit.php:387 +msgid "Channel has been blocked" msgstr "" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." +#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 +#: ../../mod/connedit.php:443 +msgid "Unable to set address book parameters." msgstr "" -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." +#: ../../mod/connedit.php:398 +msgid "Channel has been unignored" msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/connedit.php:399 +msgid "Channel has been ignored" msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/connedit.php:410 +msgid "Channel has been unarchived" msgstr "" -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/connedit.php:411 +msgid "Channel has been archived" msgstr "" -#: ../../mod/network.php:84 -msgid "No such group" +#: ../../mod/connedit.php:422 +msgid "Channel has been unhidden" msgstr "" -#: ../../mod/network.php:122 -msgid "Search Results For:" +#: ../../mod/connedit.php:423 +msgid "Channel has been hidden" msgstr "" -#: ../../mod/network.php:176 -msgid "Collection is empty" +#: ../../mod/connedit.php:438 +msgid "Channel has been approved" msgstr "" -#: ../../mod/network.php:184 -msgid "Collection: " +#: ../../mod/connedit.php:439 +msgid "Channel has been unapproved" msgstr "" -#: ../../mod/network.php:197 -msgid "Connection: " +#: ../../mod/connedit.php:467 +msgid "Connection has been removed." msgstr "" -#: ../../mod/network.php:200 -msgid "Invalid connection." +#: ../../mod/connedit.php:487 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." +#: ../../mod/connedit.php:491 +msgid "Refresh Permissions" msgstr "" -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." +#: ../../mod/connedit.php:494 +msgid "Fetch updated permissions" msgstr "" -#: ../../mod/events.php:96 -msgid "Event title and start time are required." +#: ../../mod/connedit.php:498 +msgid "Recent Activity" msgstr "" -#: ../../mod/events.php:114 -msgid "Event not found." +#: ../../mod/connedit.php:501 +msgid "View recent posts and comments" msgstr "" -#: ../../mod/events.php:396 -msgid "l, F j" +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:761 +msgid "Unblock" msgstr "" -#: ../../mod/events.php:418 -msgid "Edit event" +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:760 +msgid "Block" msgstr "" -#: ../../mod/events.php:419 -msgid "Delete event" +#: ../../mod/connedit.php:510 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../mod/events.php:473 -msgid "Create New Event" +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +msgid "Unignore" msgstr "" -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/notifications.php:51 +msgid "Ignore" msgstr "" -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" +#: ../../mod/connedit.php:517 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../mod/events.php:476 -msgid "Export" +#: ../../mod/connedit.php:520 +msgid "Unarchive" msgstr "" -#: ../../mod/events.php:504 -msgid "Event removed" +#: ../../mod/connedit.php:520 +msgid "Archive" msgstr "" -#: ../../mod/events.php:507 -msgid "Failed to remove event" +#: ../../mod/connedit.php:523 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../mod/events.php:625 -msgid "Event details" +#: ../../mod/connedit.php:526 +msgid "Unhide" msgstr "" -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." +#: ../../mod/connedit.php:526 +msgid "Hide" msgstr "" -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" +#: ../../mod/connedit.php:529 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../mod/events.php:630 -msgid "Event Starts:" +#: ../../mod/connedit.php:536 +msgid "Delete this connection" msgstr "" -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" +#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +msgid "Approve this connection" msgstr "" -#: ../../mod/events.php:639 -msgid "Event Finishes:" +#: ../../mod/connedit.php:611 +msgid "Accept connection to allow communication" msgstr "" -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" +#: ../../mod/connedit.php:627 +#, php-format +msgid "Connections: settings for %s" msgstr "" -#: ../../mod/events.php:641 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../mod/connedit.php:628 +msgid "Apply these permissions automatically" msgstr "" -#: ../../mod/events.php:643 -msgid "Description:" +#: ../../mod/connedit.php:632 +msgid "Apply the permissions indicated on this page to all new connections." msgstr "" -#: ../../mod/events.php:647 -msgid "Title:" +#: ../../mod/connedit.php:636 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/events.php:649 -msgid "Share this event" +#: ../../mod/connedit.php:637 ../../mod/rate.php:161 +msgid "Rating (this information is public)" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/connedit.php:638 ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" +#: ../../mod/connedit.php:645 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." 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." +#: ../../mod/connedit.php:648 +msgid "inherited" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" +#: ../../mod/connedit.php:651 +msgid "Connection has no individual permissions!" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Site URL" +#: ../../mod/connedit.php:652 +msgid "" +"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Access Type" +#: ../../mod/connedit.php:654 +msgid "Profile Visibility" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" +#: ../../mod/connedit.php:655 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" +#: ../../mod/connedit.php:656 +msgid "Contact Information / Notes" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" +#: ../../mod/connedit.php:657 +msgid "Edit contact notes" msgstr "" -#: ../../mod/pubsites.php:30 -msgid "Rate" +#: ../../mod/connedit.php:659 +msgid "Their Settings" msgstr "" -#: ../../mod/pubsites.php:31 -msgid "View ratings" +#: ../../mod/connedit.php:660 +msgid "My Settings" msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/connedit.php:662 +msgid "" +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../mod/connedit.php:663 +msgid "Clear/Disable Automatic Permissions" msgstr "" -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." +#: ../../mod/connedit.php:664 +msgid "Forum Members" msgstr "" -#: ../../mod/settings.php:228 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/connedit.php:665 +msgid "Soapbox" msgstr "" -#: ../../mod/settings.php:232 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../mod/connedit.php:666 +msgid "Full Sharing (typical social network permissions)" msgstr "" -#: ../../mod/settings.php:246 -msgid "Password changed." +#: ../../mod/connedit.php:667 +msgid "Cautious Sharing " msgstr "" -#: ../../mod/settings.php:248 -msgid "Password update failed. Please try again." +#: ../../mod/connedit.php:668 +msgid "Follow Only" msgstr "" -#: ../../mod/settings.php:262 -msgid "Not valid email." +#: ../../mod/connedit.php:669 +msgid "Individual Permissions" msgstr "" -#: ../../mod/settings.php:265 -msgid "Protected email address. Cannot change to that email." +#: ../../mod/connedit.php:670 +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/settings.php:274 -msgid "System failure storing new email. Please try again." +#: ../../mod/connedit.php:671 +msgid "Advanced Permissions" msgstr "" -#: ../../mod/settings.php:513 -msgid "Settings updated." +#: ../../mod/connedit.php:672 +msgid "Simple Permissions (select one and submit)" msgstr "" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 -msgid "Add application" +#: ../../mod/connedit.php:676 +#, php-format +msgid "Visit %s's profile - %s" msgstr "" -#: ../../mod/settings.php:585 -msgid "Name of application" +#: ../../mod/connedit.php:677 +msgid "Block/Unblock contact" msgstr "" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Key" +#: ../../mod/connedit.php:678 +msgid "Ignore contact" msgstr "" -#: ../../mod/settings.php:586 ../../mod/settings.php:587 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../mod/connedit.php:679 +msgid "Repair URL settings" msgstr "" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Secret" +#: ../../mod/connedit.php:680 +msgid "View conversations" msgstr "" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Redirect" +#: ../../mod/connedit.php:682 +msgid "Delete contact" msgstr "" -#: ../../mod/settings.php:588 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../mod/connedit.php:686 +msgid "Last update:" msgstr "" -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Icon url" +#: ../../mod/connedit.php:688 +msgid "Update public posts" msgstr "" -#: ../../mod/settings.php:589 -msgid "Optional" +#: ../../mod/connedit.php:690 +msgid "Update now" msgstr "" -#: ../../mod/settings.php:600 -msgid "You can't edit this application." +#: ../../mod/connedit.php:696 +msgid "Currently blocked" msgstr "" -#: ../../mod/settings.php:643 -msgid "Connected Apps" +#: ../../mod/connedit.php:697 +msgid "Currently ignored" msgstr "" -#: ../../mod/settings.php:647 -msgid "Client key starts with" +#: ../../mod/connedit.php:698 +msgid "Currently archived" msgstr "" -#: ../../mod/settings.php:648 -msgid "No name" +#: ../../mod/connedit.php:699 +msgid "Currently pending" msgstr "" -#: ../../mod/settings.php:649 -msgid "Remove authorization" +#: ../../mod/dav.php:121 +msgid "RedMatrix channel" msgstr "" -#: ../../mod/settings.php:663 -msgid "No feature settings configured" +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../mod/settings.php:676 -msgid "Feature Settings" +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../mod/settings.php:680 -msgid "Allow any Diaspora member to comment on your public posts." +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../mod/settings.php:681 -msgid "Submit Diaspora Policy Settings" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../mod/settings.php:704 -msgid "Account Settings" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../mod/settings.php:705 -msgid "Password Settings" +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/settings.php:706 -msgid "New Password:" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/settings.php:707 -msgid "Confirm:" +#: ../../mod/group.php:182 +msgid "Collection Editor" msgstr "" -#: ../../mod/settings.php:707 -msgid "Leave password fields blank unless changing" +#: ../../mod/group.php:196 +msgid "Members" msgstr "" -#: ../../mod/settings.php:709 ../../mod/settings.php:1045 -msgid "Email Address:" +#: ../../mod/group.php:198 +msgid "All Connected Channels" msgstr "" -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/settings.php:711 -msgid "Remove this account from this server including all its channels" +#: ../../mod/siteinfo.php:106 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/settings.php:712 ../../mod/settings.php:1126 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/siteinfo.php:127 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/settings.php:728 -msgid "Off" +#: ../../mod/siteinfo.php:140 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/settings.php:728 -msgid "On" +#: ../../mod/siteinfo.php:149 +msgid "Red" msgstr "" -#: ../../mod/settings.php:735 -msgid "Additional Features" +#: ../../mod/siteinfo.php:150 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/settings.php:759 -msgid "Connector Settings" +#: ../../mod/siteinfo.php:152 +msgid "Tag: " msgstr "" -#: ../../mod/settings.php:798 -msgid "No special theme for mobile devices" +#: ../../mod/siteinfo.php:154 +msgid "Last background fetch: " msgstr "" -#: ../../mod/settings.php:801 -#, php-format -msgid "%s - (Experimental)" +#: ../../mod/siteinfo.php:157 +msgid "Running at web location" msgstr "" -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" +#: ../../mod/siteinfo.php:158 +msgid "" +"Please visit RedMatrix.me to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/settings.php:840 -msgid "Display Settings" +#: ../../mod/siteinfo.php:159 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/settings.php:846 -msgid "Display Theme:" +#: ../../mod/siteinfo.php:162 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/settings.php:847 -msgid "Mobile Theme:" +#: ../../mod/siteinfo.php:164 +msgid "Site Administrators" msgstr "" -#: ../../mod/settings.php:848 -msgid "Enable user zoom on mobile devices" +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" msgstr "" -#: ../../mod/settings.php:849 -msgid "Update browser every xx seconds" +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" msgstr "" -#: ../../mod/settings.php:849 -msgid "Minimum of 10 seconds, no maximum" +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" msgstr "" -#: ../../mod/settings.php:850 -msgid "Maximum number of conversations to load at any time:" +#: ../../mod/setup.php:172 +msgid "Could not connect to database." msgstr "" -#: ../../mod/settings.php:850 -msgid "Maximum of 100 items" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" +#: ../../mod/setup.php:183 +msgid "Could not create table." msgstr "" -#: ../../mod/settings.php:852 -msgid "Link post titles to source" +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/settings.php:853 -msgid "System Page Layout Editor - (advanced)" +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../mod/settings.php:856 -msgid "Use blog/list mode on channel page" +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../mod/settings.php:856 ../../mod/settings.php:857 -msgid "(comments displayed separately)" +#: ../../mod/setup.php:261 +msgid "System check" msgstr "" -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on matrix page" +#: ../../mod/setup.php:266 +msgid "Check again" msgstr "" -#: ../../mod/settings.php:858 -msgid "Channel page max height of content (in pixels)" +#: ../../mod/setup.php:289 +msgid "Database connection" msgstr "" -#: ../../mod/settings.php:858 ../../mod/settings.php:859 -msgid "click to expand content exceeding this height" +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/settings.php:859 -msgid "Matrix page max height of content (in pixels)" +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/settings.php:893 -msgid "Nobody except yourself" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/settings.php:894 -msgid "Only those you specifically allow" +#: ../../mod/setup.php:296 +msgid "Database Server Name" msgstr "" -#: ../../mod/settings.php:895 -msgid "Approved connections" +#: ../../mod/setup.php:296 +msgid "Default is localhost" msgstr "" -#: ../../mod/settings.php:896 -msgid "Any connections" +#: ../../mod/setup.php:297 +msgid "Database Port" msgstr "" -#: ../../mod/settings.php:897 -msgid "Anybody on this website" +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../mod/settings.php:898 -msgid "Anybody in this network" +#: ../../mod/setup.php:298 +msgid "Database Login Name" msgstr "" -#: ../../mod/settings.php:899 -msgid "Anybody authenticated" +#: ../../mod/setup.php:299 +msgid "Database Login Password" msgstr "" -#: ../../mod/settings.php:900 -msgid "Anybody on the internet" +#: ../../mod/setup.php:300 +msgid "Database Name" msgstr "" -#: ../../mod/settings.php:974 -msgid "Publish your default profile in the network directory" +#: ../../mod/setup.php:301 +msgid "Database Type" msgstr "" -#: ../../mod/settings.php:979 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" msgstr "" -#: ../../mod/settings.php:988 -msgid "Your channel address is" +#: ../../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/settings.php:1036 -msgid "Channel Settings" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" msgstr "" -#: ../../mod/settings.php:1043 -msgid "Basic Settings" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/settings.php:1046 -msgid "Your Timezone:" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/settings.php:1047 -msgid "Default Post Location:" +#: ../../mod/setup.php:335 +msgid "Site settings" msgstr "" -#: ../../mod/settings.php:1047 -msgid "Geographical location to display on your posts" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/settings.php:1048 -msgid "Use Browser Location:" +#: ../../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/settings.php:1050 -msgid "Adult Content" +#: ../../mod/setup.php:400 +msgid "PHP executable path" msgstr "" -#: ../../mod/settings.php:1050 +#: ../../mod/setup.php:400 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/settings.php:1052 -msgid "Security and Privacy Settings" +#: ../../mod/setup.php:405 +msgid "Command line PHP" msgstr "" -#: ../../mod/settings.php:1054 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/settings.php:1056 -msgid "Hide my online presence" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/settings.php:1056 -msgid "Prevents displaying in your profile that you are online" +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/settings.php:1058 -msgid "Simple Privacy Settings:" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/settings.php:1059 +#: ../../mod/setup.php:439 msgid "" -"Very Public - extremely permissive (should be used with caution)" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/settings.php:1060 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/settings.php:1061 -msgid "Private - default private, never open or public" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/settings.php:1062 -msgid "Blocked - default blocked to/from everybody" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/settings.php:1064 -msgid "Allow others to tag your posts" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/settings.php:1064 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../mod/settings.php:1066 -msgid "Advanced Privacy Settings" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/settings.php:1068 -msgid "Expire other channel content after this many days" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/settings.php:1068 -msgid "0 or blank prevents expiration" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/settings.php:1069 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/settings.php:1069 -msgid "May reduce spam activity" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" msgstr "" -#: ../../mod/settings.php:1070 -msgid "Default Post Permissions" +#: ../../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/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1075 -msgid "Channel permissions category:" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../mod/settings.php:1081 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1081 -msgid "Useful to reduce spamming" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1084 -msgid "Notification Settings" +#: ../../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/settings.php:1085 -msgid "By default post a status message when:" +#: ../../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/settings.php:1086 -msgid "accepting a friend request" +#: ../../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/settings.php:1087 -msgid "joining a forum/community" +#: ../../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/settings.php:1088 -msgid "making an interesting profile change" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/settings.php:1089 -msgid "Send a notification email when:" +#: ../../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/settings.php:1090 -msgid "You receive a connection request" +#: ../../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/settings.php:1091 -msgid "Your connections are confirmed" +#: ../../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/settings.php:1092 -msgid "Someone writes on your profile wall" +#: ../../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/settings.php:1093 -msgid "Someone writes a followup comment" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../mod/settings.php:1094 -msgid "You receive a private message" +#: ../../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/settings.php:1095 -msgid "You receive a friend suggestion" +#: ../../mod/setup.php:547 +msgid "store is writable" msgstr "" -#: ../../mod/settings.php:1096 -msgid "You are tagged in a post" +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/settings.php:1097 -msgid "You are poked/prodded/etc. in a post" +#: ../../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/settings.php:1100 -msgid "Show visual notifications including:" +#: ../../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/settings.php:1102 -msgid "Unseen matrix activity" +#: ../../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/settings.php:1103 -msgid "Unseen channel activity" +#: ../../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/settings.php:1104 -msgid "Unseen private messages" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 -msgid "Recommended" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" msgstr "" -#: ../../mod/settings.php:1105 -msgid "Upcoming events" +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/settings.php:1106 -msgid "Events today" +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/settings.php:1107 -msgid "Upcoming birthdays" +#: ../../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/settings.php:1107 -msgid "Not available in all themes" +#: ../../mod/setup.php:625 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/settings.php:1108 -msgid "System (personal) notifications" +#: ../../mod/setup.php:660 +msgid "

        What next

        " msgstr "" -#: ../../mod/settings.php:1109 -msgid "System info messages" +#: ../../mod/setup.php:661 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/settings.php:1110 -msgid "System critical alerts" +#: ../../mod/common.php:10 +msgid "No channel." msgstr "" -#: ../../mod/settings.php:1111 -msgid "New connections" +#: ../../mod/common.php:39 +msgid "Common connections" msgstr "" -#: ../../mod/settings.php:1112 -msgid "System Registrations" +#: ../../mod/common.php:44 +msgid "No connections in common." msgstr "" -#: ../../mod/settings.php:1113 -msgid "" -"Also show new wall posts, private messages and connections under Notices" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/settings.php:1115 -msgid "Notify me of events this many days in advance" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" msgstr "" -#: ../../mod/settings.php:1115 -msgid "Must be greater than 0" +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" -#: ../../mod/settings.php:1117 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/connections.php:192 ../../mod/connections.php:293 +msgid "Blocked" msgstr "" -#: ../../mod/settings.php:1118 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/connections.php:197 ../../mod/connections.php:300 +msgid "Ignored" msgstr "" -#: ../../mod/settings.php:1121 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../mod/connections.php:202 ../../mod/connections.php:314 +msgid "Hidden" msgstr "" -#: ../../mod/settings.php:1122 -msgid "Miscellaneous Settings" +#: ../../mod/connections.php:207 ../../mod/connections.php:307 +msgid "Archived" msgstr "" -#: ../../mod/settings.php:1124 -msgid "Personal menu to display in your channel pages" +#: ../../mod/connections.php:231 ../../mod/connections.php:246 +msgid "All" msgstr "" -#: ../../mod/settings.php:1125 -msgid "Remove this channel" +#: ../../mod/connections.php:271 +msgid "Suggest new connections" msgstr "" -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +#: ../../mod/connections.php:274 +msgid "New Connections" msgstr "" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" +#: ../../mod/connections.php:277 +msgid "Show pending (new) connections" msgstr "" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" +#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +msgid "All Connections" msgstr "" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " +#: ../../mod/connections.php:283 +msgid "Show all connections" msgstr "" -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" +#: ../../mod/connections.php:286 +msgid "Unblocked" msgstr "" -#: ../../mod/group.php:20 -msgid "Collection created." +#: ../../mod/connections.php:289 +msgid "Only show unblocked connections" msgstr "" -#: ../../mod/group.php:26 -msgid "Could not create collection." +#: ../../mod/connections.php:296 +msgid "Only show blocked connections" msgstr "" -#: ../../mod/group.php:54 -msgid "Collection updated." +#: ../../mod/connections.php:303 +msgid "Only show ignored connections" msgstr "" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." +#: ../../mod/connections.php:310 +msgid "Only show archived connections" msgstr "" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " +#: ../../mod/connections.php:317 +msgid "Only show hidden connections" msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" +#: ../../mod/connections.php:372 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../mod/connections.php:373 +msgid "Edit connection" msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../mod/connections.php:411 +msgid "Search your connections" msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../mod/connections.php:412 +msgid "Finding: " msgstr "" -#: ../../mod/group.php:196 -msgid "Members" +#: ../../mod/impel.php:33 +msgid "webpage" msgstr "" -#: ../../mod/group.php:198 -msgid "All Connected Channels" +#: ../../mod/impel.php:38 +msgid "block" msgstr "" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." +#: ../../mod/impel.php:43 +msgid "layout" msgstr "" -#: ../../mod/siteinfo.php:93 +#: ../../mod/impel.php:117 #, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" +msgid "%s element installed" msgstr "" -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/siteinfo.php:136 -msgid "Red" +#: ../../mod/cloud.php:120 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/siteinfo.php:137 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../mod/item.php:165 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/siteinfo.php:139 -msgid "Tag: " +#: ../../mod/item.php:424 +msgid "Empty post discarded." msgstr "" -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " +#: ../../mod/item.php:466 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" +#: ../../mod/item.php:865 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/siteinfo.php:145 -msgid "" -"Please visit RedMatrix.me to learn more " -"about the Red Matrix." +#: ../../mod/item.php:1083 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" +#: ../../mod/item.php:1089 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/siteinfo.php:149 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 +#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 +#: ../../mod/photos.php:429 +msgid "Public access denied." msgstr "" -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" +#: ../../mod/thing.php:96 +msgid "Thing updated" msgstr "" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" +#: ../../mod/thing.php:156 +msgid "Object store: failed" msgstr "" -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" +#: ../../mod/thing.php:160 +msgid "Thing added" msgstr "" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." +#: ../../mod/thing.php:232 +msgid "Show Thing" msgstr "" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../mod/thing.php:239 +msgid "item not found." msgstr "" -#: ../../mod/setup.php:183 -msgid "Could not create table." +#: ../../mod/thing.php:270 +msgid "Edit Thing" msgstr "" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" msgstr "" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" msgstr "" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../mod/setup.php:261 -msgid "System check" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" msgstr "" -#: ../../mod/setup.php:266 -msgid "Check again" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" msgstr "" -#: ../../mod/setup.php:289 -msgid "Database connection" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" msgstr "" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/chatsvc.php:111 +msgid "Away" msgstr "" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/chatsvc.php:115 +msgid "Online" msgstr "" -#: ../../mod/setup.php:296 -msgid "Database Server Name" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" msgstr "" -#: ../../mod/setup.php:296 -msgid "Default is localhost" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" msgstr "" -#: ../../mod/setup.php:297 -msgid "Database Port" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" msgstr "" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" msgstr "" -#: ../../mod/setup.php:298 -msgid "Database Login Name" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../mod/setup.php:299 -msgid "Database Login Password" +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." msgstr "" -#: ../../mod/setup.php:300 -msgid "Database Name" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" msgstr "" -#: ../../mod/setup.php:301 -msgid "Database Type" +#: ../../mod/acl.php:231 +msgid "network" msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" +#: ../../mod/acl.php:241 +msgid "RSS" 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." +#: ../../mod/pdledit.php:13 +msgid "Layout updated." msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." +#: ../../mod/pdledit.php:48 +msgid "Layout not found." msgstr "" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" msgstr "" -#: ../../mod/setup.php:335 -msgid "Site settings" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" msgstr "" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/filer.php:49 +msgid "- select -" 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." +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../mod/setup.php:400 -msgid "PHP executable path" +#: ../../mod/import.php:51 +msgid "Nothing to import." msgstr "" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" msgstr "" -#: ../../mod/setup.php:405 -msgid "Command line PHP" +#: ../../mod/import.php:81 +msgid "Imported file is empty." msgstr "" -#: ../../mod/setup.php:414 +#: ../../mod/import.php:106 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/import.php:475 +msgid "Import completed." msgstr "" -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" +#: ../../mod/import.php:492 +msgid "Import Channel" msgstr "" -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" +#: ../../mod/import.php:493 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." msgstr "" -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" +#: ../../mod/import.php:494 +msgid "File to Upload" msgstr "" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" +#: ../../mod/import.php:497 +msgid "Your old login email address" msgstr "" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" +#: ../../mod/import.php:498 +msgid "Your old login password" msgstr "" -#: ../../mod/setup.php:458 +#: ../../mod/import.php:499 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" msgstr "" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" msgstr "" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" msgstr "" -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" msgstr "" -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" msgstr "" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/chat.php:167 +msgid "Room not found" msgstr "" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/chat.php:178 +msgid "Leave Room" 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." +#: ../../mod/chat.php:179 +msgid "Delete This Room" 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." +#: ../../mod/chat.php:180 +msgid "I am away right now" 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." +#: ../../mod/chat.php:181 +msgid "I am online" 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." +#: ../../mod/chat.php:183 +msgid "Bookmark this room" msgstr "" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" 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." +#: ../../mod/chat.php:208 +msgid "Chatroom Name" msgstr "" -#: ../../mod/setup.php:525 +#: ../../mod/chat.php:225 #, 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." +msgid "%1$s's Chatrooms" 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." +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" 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." +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" msgstr "" -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" 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" +#: ../../mod/dirsearch.php:19 ../../mod/regdir.php:47 +msgid "This site is not a directory server" msgstr "" -#: ../../mod/setup.php:547 -msgid "store is writable" +#: ../../mod/dirsearch.php:27 +msgid "This directory server requires an access token" msgstr "" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." 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!" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." 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." +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" 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." +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/setup.php:581 +#: ../../mod/lostpass.php:63 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../mod/lostpass.php:85 ../../boot.php:1560 +msgid "Password Reset" msgstr "" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../mod/lostpass.php:87 +msgid "Your new password is" msgstr "" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" 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." +#: ../../mod/lostpass.php:89 +msgid "click here to login" msgstr "" -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/setup.php:660 -msgid "

        What next

        " +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../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/common.php:39 -msgid "Common connections" +#: ../../mod/lostpass.php:124 +msgid "Email Address" msgstr "" -#: ../../mod/common.php:44 -msgid "No connections in common." +#: ../../mod/lostpass.php:125 +msgid "Reset" msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/rate.php:157 +msgid "Website:" msgstr "" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" +#: ../../mod/regmod.php:11 +msgid "Please login." msgstr "" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" msgstr "" -#: ../../mod/connections.php:271 -msgid "Suggest new connections" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../mod/connections.php:274 -msgid "New Connections" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" msgstr "" -#: ../../mod/connections.php:283 -msgid "Show all connections" +#: ../../mod/invite.php:129 +msgid "Send invitations" msgstr "" -#: ../../mod/connections.php:286 -msgid "Unblocked" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" msgstr "" -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." msgstr "" -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " msgstr "" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" msgstr "" -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." msgstr "" -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" +#: ../../mod/invite.php:138 +msgid "or visit " msgstr "" -#: ../../mod/connections.php:373 -msgid "Edit connection" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" msgstr "" -#: ../../mod/connections.php:411 -msgid "Search your connections" +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." msgstr "" -#: ../../mod/connections.php:412 -msgid "Finding: " +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." msgstr "" -#: ../../mod/impel.php:33 -msgid "webpage" +#: ../../mod/locs.php:88 +msgid "No locations found." msgstr "" -#: ../../mod/impel.php:38 -msgid "block" +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" msgstr "" -#: ../../mod/impel.php:43 -msgid "layout" +#: ../../mod/locs.php:102 +msgid "Location (address)" msgstr "" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" +#: ../../mod/locs.php:103 +msgid "Primary Location" msgstr "" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/locs.php:104 +msgid "Drop location" msgstr "" -#: ../../mod/item.php:165 -msgid "Unable to locate original post." +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/item.php:424 -msgid "Empty post discarded." +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/item.php:865 -msgid "System error. Post not saved." +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." +#: ../../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/thing.php:96 -msgid "Thing updated" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/thing.php:156 -msgid "Object store: failed" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/thing.php:160 -msgid "Thing added" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" msgstr "" -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/thing.php:232 -msgid "Show Thing" +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/thing.php:239 -msgid "item not found." +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/thing.php:270 -msgid "Edit Thing" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" +#: ../../mod/menu.php:31 +msgid "Menu updated." msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" +#: ../../mod/menu.php:35 +msgid "Unable to update menu." msgstr "" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" +#: ../../mod/menu.php:40 +msgid "Menu created." msgstr "" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" +#: ../../mod/menu.php:44 +msgid "Unable to create menu." msgstr "" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" +#: ../../mod/menu.php:76 +msgid "Manage Menus" msgstr "" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +#: ../../mod/menu.php:79 +msgid "Drop" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../mod/menu.php:82 +msgid "Create a new menu" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../mod/menu.php:83 +msgid "Delete this menu" msgstr "" -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" msgstr "" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" +#: ../../mod/menu.php:85 +msgid "Edit this menu" msgstr "" -#: ../../mod/acl.php:231 -msgid "network" +#: ../../mod/menu.php:96 +msgid "New Menu" msgstr "" -#: ../../mod/acl.php:241 -msgid "RSS" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" msgstr "" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" msgstr "" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" msgstr "" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" msgstr "" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." +#: ../../mod/menu.php:108 ../../mod/mitem.php:24 +msgid "Menu not found." msgstr "" -#: ../../mod/appman.php:37 -msgid "Malformed app." +#: ../../mod/menu.php:114 +msgid "Menu deleted." msgstr "" -#: ../../mod/appman.php:80 -msgid "Embed code" +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." msgstr "" -#: ../../mod/appman.php:86 -msgid "Edit App" +#: ../../mod/menu.php:122 +msgid "Edit Menu" msgstr "" -#: ../../mod/appman.php:86 -msgid "Create App" +#: ../../mod/menu.php:124 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../mod/appman.php:91 -msgid "Name of app" +#: ../../mod/menu.php:130 ../../mod/mitem.php:213 +msgid "Modify" msgstr "" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" +#: ../../mod/filestorage.php:81 +msgid "Permission Denied." msgstr "" -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" +#: ../../mod/filestorage.php:97 +msgid "File not found." msgstr "" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" +#: ../../mod/filestorage.php:140 +msgid "Edit file permissions" msgstr "" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" +#: ../../mod/filestorage.php:149 +msgid "Set/edit permissions" msgstr "" -#: ../../mod/appman.php:95 -msgid "Version ID" +#: ../../mod/filestorage.php:150 +msgid "Include all files and sub folders" msgstr "" -#: ../../mod/appman.php:96 -msgid "Price of app" +#: ../../mod/filestorage.php:151 +msgid "Return to file list" msgstr "" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" +#: ../../mod/filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../mod/filestorage.php:156 +msgid "Attach this file to a new post" msgstr "" -#: ../../mod/import.php:51 -msgid "Nothing to import." +#: ../../mod/filestorage.php:157 +msgid "Show URL to this file" msgstr "" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" +#: ../../mod/filestorage.php:158 +msgid "Do not show in shared with me folder of your connections" msgstr "" -#: ../../mod/import.php:81 -msgid "Imported file is empty." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." +#: ../../mod/magic.php:70 +msgid "Hub not found." msgstr "" -#: ../../mod/import.php:475 -msgid "Import completed." +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/import.php:492 -msgid "Import Channel" +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/import.php:494 -msgid "File to Upload" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/import.php:497 -msgid "Your old login email address" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/import.php:498 -msgid "Your old login password" +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" +#: ../../mod/lockview.php:52 +msgid "Visible to:" msgstr "" -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." msgstr "" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/chat.php:167 -msgid "Room not found" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/chat.php:178 -msgid "Leave Room" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." msgstr "" -#: ../../mod/chat.php:179 -msgid "Delete This Room" +#: ../../mod/profiles.php:404 +msgid "Marital Status" msgstr "" -#: ../../mod/chat.php:180 -msgid "I am away right now" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" msgstr "" -#: ../../mod/chat.php:181 -msgid "I am online" +#: ../../mod/profiles.php:412 +msgid "Likes" msgstr "" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" +#: ../../mod/profiles.php:416 +msgid "Dislikes" msgstr "" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" +#: ../../mod/profiles.php:420 +msgid "Work/Employment" msgstr "" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" +#: ../../mod/profiles.php:423 +msgid "Religion" msgstr "" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../mod/profiles.php:427 +msgid "Political Views" msgstr "" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" +#: ../../mod/profiles.php:431 +msgid "Gender" msgstr "" -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" msgstr "" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" +#: ../../mod/profiles.php:439 +msgid "Homepage" msgstr "" -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" +#: ../../mod/profiles.php:443 +msgid "Interests" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." +#: ../../mod/profiles.php:447 ../../mod/admin.php:895 +msgid "Address" msgstr "" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." +#: ../../mod/profiles.php:537 +msgid "Profile updated." msgstr "" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../mod/profiles.php:668 +msgid "View this profile" msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1560 -msgid "Password Reset" +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" +#: ../../mod/profiles.php:672 +msgid "Clone this profile" msgstr "" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" +#: ../../mod/profiles.php:673 +msgid "Delete this profile" msgstr "" -#: ../../mod/lostpass.php:89 -msgid "click here to login" +#: ../../mod/profiles.php:675 +msgid "Import profile from file" msgstr "" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/profiles.php:676 +msgid "Export profile to file" msgstr "" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" msgstr "" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" msgstr "" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../mod/profiles.php:679 +msgid "Title/Description:" msgstr "" -#: ../../mod/lostpass.php:124 -msgid "Email Address" +#: ../../mod/profiles.php:680 +msgid "Your Gender:" msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Reset" +#: ../../mod/profiles.php:681 +msgid "Birthday :" msgstr "" -#: ../../mod/rate.php:157 -msgid "Website:" +#: ../../mod/profiles.php:682 +msgid "Street Address:" msgstr "" -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../mod/profiles.php:683 +msgid "Locality/City:" msgstr "" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." +#: ../../mod/profiles.php:685 +msgid "Country:" msgstr "" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" +#: ../../mod/profiles.php:686 +msgid "Region/State:" msgstr "" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../mod/profiles.php:687 +msgid " Marital Status:" msgstr "" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" msgstr "" -#: ../../mod/invite.php:129 -msgid "Send invitations" +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" msgstr "" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" +#: ../../mod/profiles.php:695 +msgid "Religious Views:" msgstr "" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" +#: ../../mod/profiles.php:696 +msgid "Keywords:" msgstr "" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" msgstr "" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/invite.php:138 -msgid "or visit " +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" +#: ../../mod/profiles.php:704 +msgid "My other channels" msgstr "" -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." +#: ../../mod/profiles.php:705 +msgid "Musical interests" msgstr "" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." +#: ../../mod/profiles.php:706 +msgid "Books, literature" msgstr "" -#: ../../mod/locs.php:88 -msgid "No locations found." +#: ../../mod/profiles.php:707 +msgid "Television" msgstr "" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/locs.php:102 -msgid "Location (address)" +#: ../../mod/profiles.php:709 +msgid "Love/romance" msgstr "" -#: ../../mod/locs.php:103 -msgid "Primary Location" +#: ../../mod/profiles.php:710 +msgid "Work/employment" msgstr "" -#: ../../mod/locs.php:104 -msgid "Drop location" +#: ../../mod/profiles.php:711 +msgid "School/education" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/profiles.php:717 +msgid "This is your default profile." msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/profiles.php:728 ../../mod/directory.php:192 +msgid "Age: " msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/profiles.php:772 +msgid "Add profile things" msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/ratings.php:69 +msgid "No ratings" 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." +#: ../../mod/ratings.php:99 +msgid "Ratings" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/ratings.php:100 +msgid "Rating: " msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/ratings.php:101 +msgid "Website: " msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" +#: ../../mod/ratings.php:103 +msgid "Description: " msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/directory.php:198 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/directory.php:210 +msgid "Gender: " msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/directory.php:212 +msgid "Status: " msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/directory.php:214 +msgid "Homepage: " msgstr "" -#: ../../mod/menu.php:31 -msgid "Menu updated." +#: ../../mod/directory.php:217 +msgid "Hometown: " msgstr "" -#: ../../mod/menu.php:35 -msgid "Unable to update menu." +#: ../../mod/directory.php:219 +msgid "About: " msgstr "" -#: ../../mod/menu.php:40 -msgid "Menu created." +#: ../../mod/directory.php:277 +msgid "Public Forum:" msgstr "" -#: ../../mod/menu.php:44 -msgid "Unable to create menu." +#: ../../mod/directory.php:280 +msgid "Keywords: " msgstr "" -#: ../../mod/menu.php:76 -msgid "Manage Menus" +#: ../../mod/directory.php:335 +msgid "Finding:" msgstr "" -#: ../../mod/menu.php:79 -msgid "Drop" +#: ../../mod/directory.php:340 +msgid "next page" msgstr "" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" +#: ../../mod/directory.php:340 +msgid "previous page" msgstr "" -#: ../../mod/menu.php:82 -msgid "Create a new menu" +#: ../../mod/directory.php:357 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/menu.php:83 -msgid "Delete this menu" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" msgstr "" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your content." msgstr "" -#: ../../mod/menu.php:85 -msgid "Edit this menu" +#: ../../mod/uexport.php:36 +msgid "Export Content" msgstr "" -#: ../../mod/menu.php:96 -msgid "New Menu" +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." msgstr "" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" +#: ../../mod/viewconnections.php:58 +msgid "No connections." msgstr "" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" msgstr "" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." msgstr "" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" +#: ../../mod/admin.php:97 ../../mod/admin.php:419 +msgid "Site" msgstr "" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" +#: ../../mod/admin.php:98 +msgid "Accounts" msgstr "" -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." +#: ../../mod/admin.php:99 ../../mod/admin.php:887 +msgid "Channels" msgstr "" -#: ../../mod/menu.php:114 -msgid "Menu deleted." +#: ../../mod/admin.php:100 ../../mod/admin.php:978 ../../mod/admin.php:1020 +msgid "Plugins" msgstr "" -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." +#: ../../mod/admin.php:101 ../../mod/admin.php:1183 ../../mod/admin.php:1219 +msgid "Themes" msgstr "" -#: ../../mod/menu.php:122 -msgid "Edit Menu" +#: ../../mod/admin.php:102 +msgid "Inspect queue" msgstr "" -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" +#: ../../mod/admin.php:104 +msgid "Profile Config" msgstr "" -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" +#: ../../mod/admin.php:105 +msgid "DB updates" msgstr "" -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." +#: ../../mod/admin.php:119 ../../mod/admin.php:126 ../../mod/admin.php:1306 +msgid "Logs" msgstr "" -#: ../../mod/filestorage.php:97 -msgid "File not found." +#: ../../mod/admin.php:125 +msgid "Plugin Features" msgstr "" -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" +#: ../../mod/admin.php:127 +msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" +#: ../../mod/admin.php:210 +msgid "Message queues" msgstr "" -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" +#: ../../mod/admin.php:215 ../../mod/admin.php:418 ../../mod/admin.php:520 +#: ../../mod/admin.php:750 ../../mod/admin.php:886 ../../mod/admin.php:977 +#: ../../mod/admin.php:1019 ../../mod/admin.php:1182 ../../mod/admin.php:1218 +#: ../../mod/admin.php:1305 +msgid "Administration" msgstr "" -#: ../../mod/filestorage.php:151 -msgid "Return to file list" +#: ../../mod/admin.php:216 +msgid "Summary" msgstr "" -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" +#: ../../mod/admin.php:218 +msgid "Registered users" msgstr "" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" +#: ../../mod/admin.php:220 ../../mod/admin.php:524 +msgid "Pending registrations" msgstr "" -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" +#: ../../mod/admin.php:221 +msgid "Version" msgstr "" -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" +#: ../../mod/admin.php:223 ../../mod/admin.php:525 +msgid "Active plugins" msgstr "" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" +#: ../../mod/admin.php:334 +msgid "Site settings updated." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/admin.php:371 ../../mod/settings.php:804 +msgid "mobile" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/admin.php:373 +msgid "experimental" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/admin.php:375 +msgid "unsupported" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../mod/admin.php:399 +msgid "Yes - with approval" msgstr "" -#: ../../mod/magic.php:70 -msgid "Hub not found." +#: ../../mod/admin.php:405 +msgid "My site is not a public server" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/admin.php:406 +msgid "My site has paid access only" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/admin.php:407 +msgid "My site has free access only" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/admin.php:408 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/admin.php:421 ../../mod/register.php:207 +msgid "Registration" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/admin.php:422 +msgid "File upload" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/admin.php:423 +msgid "Policies" msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/admin.php:428 +msgid "Site name" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/admin.php:429 +msgid "Banner/Logo" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/admin.php:430 +msgid "Administrator Information" msgstr "" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." +#: ../../mod/admin.php:430 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../mod/lockview.php:52 -msgid "Visible to:" +#: ../../mod/admin.php:431 +msgid "System language" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." +#: ../../mod/admin.php:432 +msgid "System theme" msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/admin.php:432 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/admin.php:433 +msgid "Mobile system theme" msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/admin.php:433 +msgid "Theme for mobile devices" msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/admin.php:435 +msgid "Enable Diaspora Protocol" msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/admin.php:435 +msgid "Communicate with Diaspora and Friendica - experimental" msgstr "" -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." +#: ../../mod/admin.php:436 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../mod/profiles.php:404 -msgid "Marital Status" +#: ../../mod/admin.php:436 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" +#: ../../mod/admin.php:437 +msgid "Maximum image size" msgstr "" -#: ../../mod/profiles.php:412 -msgid "Likes" +#: ../../mod/admin.php:437 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../mod/profiles.php:416 -msgid "Dislikes" +#: ../../mod/admin.php:438 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../mod/profiles.php:420 -msgid "Work/Employment" +#: ../../mod/admin.php:439 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../mod/profiles.php:423 -msgid "Religion" +#: ../../mod/admin.php:440 +msgid "Register text" msgstr "" -#: ../../mod/profiles.php:427 -msgid "Political Views" +#: ../../mod/admin.php:440 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/profiles.php:431 -msgid "Gender" +#: ../../mod/admin.php:441 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" +#: ../../mod/admin.php:441 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/profiles.php:439 -msgid "Homepage" +#: ../../mod/admin.php:442 +msgid "Allowed friend domains" msgstr "" -#: ../../mod/profiles.php:443 -msgid "Interests" +#: ../../mod/admin.php:442 +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/profiles.php:447 ../../mod/admin.php:871 -msgid "Address" +#: ../../mod/admin.php:443 +msgid "Allowed email domains" msgstr "" -#: ../../mod/profiles.php:537 -msgid "Profile updated." +#: ../../mod/admin.php:443 +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/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/admin.php:444 +msgid "Not allowed email domains" msgstr "" -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" +#: ../../mod/admin.php:444 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../mod/profiles.php:668 -msgid "View this profile" +#: ../../mod/admin.php:445 +msgid "Block public" msgstr "" -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" +#: ../../mod/admin.php:445 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." msgstr "" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" +#: ../../mod/admin.php:446 +msgid "Verify Email Addresses" msgstr "" -#: ../../mod/profiles.php:672 -msgid "Clone this profile" +#: ../../mod/admin.php:446 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" +#: ../../mod/admin.php:447 +msgid "Force publish" msgstr "" -#: ../../mod/profiles.php:675 -msgid "Import profile from file" +#: ../../mod/admin.php:447 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" +#: ../../mod/admin.php:448 +msgid "Disable discovery tab" msgstr "" -#: ../../mod/profiles.php:677 -msgid "Profile Name:" +#: ../../mod/admin.php:448 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." msgstr "" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" +#: ../../mod/admin.php:449 +msgid "No login on Homepage" msgstr "" -#: ../../mod/profiles.php:679 -msgid "Title/Description:" +#: ../../mod/admin.php:449 +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/profiles.php:680 -msgid "Your Gender:" +#: ../../mod/admin.php:451 +msgid "Proxy user" msgstr "" -#: ../../mod/profiles.php:681 -msgid "Birthday :" +#: ../../mod/admin.php:452 +msgid "Proxy URL" msgstr "" -#: ../../mod/profiles.php:682 -msgid "Street Address:" +#: ../../mod/admin.php:453 +msgid "Network timeout" msgstr "" -#: ../../mod/profiles.php:683 -msgid "Locality/City:" +#: ../../mod/admin.php:453 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" +#: ../../mod/admin.php:454 +msgid "Delivery interval" msgstr "" -#: ../../mod/profiles.php:685 -msgid "Country:" +#: ../../mod/admin.php:454 +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/profiles.php:686 -msgid "Region/State:" +#: ../../mod/admin.php:455 +msgid "Poll interval" msgstr "" -#: ../../mod/profiles.php:687 -msgid " Marital Status:" +#: ../../mod/admin.php:455 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" +#: ../../mod/admin.php:456 +msgid "Maximum Load Average" msgstr "" -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/admin.php:456 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../mod/profiles.php:690 -msgid "Since [date]:" +#: ../../mod/admin.php:512 +msgid "No server found" msgstr "" -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" +#: ../../mod/admin.php:519 ../../mod/admin.php:764 +msgid "ID" msgstr "" -#: ../../mod/profiles.php:695 -msgid "Religious Views:" +#: ../../mod/admin.php:519 +msgid "for channel" msgstr "" -#: ../../mod/profiles.php:696 -msgid "Keywords:" +#: ../../mod/admin.php:519 +msgid "on server" msgstr "" -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" +#: ../../mod/admin.php:519 +msgid "Status" msgstr "" -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" +#: ../../mod/admin.php:521 +msgid "Server" msgstr "" -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." +#: ../../mod/admin.php:540 +msgid "Update has been marked successful" msgstr "" -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" +#: ../../mod/admin.php:550 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" +#: ../../mod/admin.php:553 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/profiles.php:704 -msgid "My other channels" +#: ../../mod/admin.php:557 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/profiles.php:705 -msgid "Musical interests" +#: ../../mod/admin.php:560 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../mod/profiles.php:706 -msgid "Books, literature" +#: ../../mod/admin.php:575 +msgid "No failed updates." msgstr "" -#: ../../mod/profiles.php:707 -msgid "Television" +#: ../../mod/admin.php:579 +msgid "Failed Updates" msgstr "" -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" +#: ../../mod/admin.php:581 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/profiles.php:709 -msgid "Love/romance" +#: ../../mod/admin.php:582 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/profiles.php:710 -msgid "Work/employment" +#: ../../mod/admin.php:596 +msgid "Queue Statistics" msgstr "" -#: ../../mod/profiles.php:711 -msgid "School/education" +#: ../../mod/admin.php:599 +msgid "Total Entries" msgstr "" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." +#: ../../mod/admin.php:599 +msgid "Destination URL" msgstr "" -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 -msgid "Age: " -msgstr "" +#: ../../mod/admin.php:628 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" +#: ../../mod/admin.php:635 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:664 +msgid "Account not found" msgstr "" -#: ../../mod/profiles.php:772 -msgid "Add profile things" +#: ../../mod/admin.php:684 +#, php-format +msgid "User '%s' unblocked" msgstr "" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" +#: ../../mod/admin.php:684 +#, php-format +msgid "User '%s' blocked" msgstr "" -#: ../../mod/ratings.php:69 -msgid "No ratings" +#: ../../mod/admin.php:751 ../../mod/admin.php:763 +msgid "Users" msgstr "" -#: ../../mod/ratings.php:99 -msgid "Ratings" +#: ../../mod/admin.php:753 ../../mod/admin.php:889 +msgid "select all" msgstr "" -#: ../../mod/ratings.php:100 -msgid "Rating: " +#: ../../mod/admin.php:754 +msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/ratings.php:101 -msgid "Website: " +#: ../../mod/admin.php:755 +msgid "Request date" msgstr "" -#: ../../mod/ratings.php:103 -msgid "Description: " +#: ../../mod/admin.php:756 +msgid "No registrations." msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/admin.php:757 +msgid "Approve" msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/admin.php:758 +msgid "Deny" msgstr "" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/admin.php:764 +msgid "Register date" msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/admin.php:764 +msgid "Last login" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/admin.php:764 +msgid "Expires" msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/admin.php:764 +msgid "Service Class" msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/admin.php:766 +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/delegate.php:132 -msgid "No entries." +#: ../../mod/admin.php:767 +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/directory.php:194 +#: ../../mod/admin.php:800 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "" +#: ../../mod/admin.php:807 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/directory.php:210 -msgid "Homepage: " +#: ../../mod/admin.php:826 +msgid "Channel not found" msgstr "" -#: ../../mod/directory.php:213 -msgid "Hometown: " +#: ../../mod/admin.php:837 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/directory.php:215 -msgid "About: " +#: ../../mod/admin.php:848 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/directory.php:273 -msgid "Public Forum:" +#: ../../mod/admin.php:848 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../mod/directory.php:276 -msgid "Keywords: " +#: ../../mod/admin.php:891 +msgid "Censor" msgstr "" -#: ../../mod/directory.php:331 -msgid "Finding:" +#: ../../mod/admin.php:892 +msgid "Uncensor" msgstr "" -#: ../../mod/directory.php:336 -msgid "next page" +#: ../../mod/admin.php:895 +msgid "UID" msgstr "" -#: ../../mod/directory.php:336 -msgid "previous page" +#: ../../mod/admin.php:897 +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/directory.php:353 -msgid "No entries (some entries may be hidden)." +#: ../../mod/admin.php:898 +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/rbmark.php:88 -msgid "Select a bookmark folder" +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" +#: ../../mod/admin.php:941 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" +#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +msgid "Disable" msgstr "" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" +#: ../../mod/admin.php:953 ../../mod/admin.php:1155 +msgid "Enable" msgstr "" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" +#: ../../mod/admin.php:979 ../../mod/admin.php:1184 +msgid "Toggle" msgstr "" -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your content." +#: ../../mod/admin.php:987 ../../mod/admin.php:1194 +msgid "Author: " msgstr "" -#: ../../mod/uexport.php:36 -msgid "Export Content" +#: ../../mod/admin.php:988 ../../mod/admin.php:1195 +msgid "Maintainer: " msgstr "" -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." +#: ../../mod/admin.php:1117 +msgid "No themes found." msgstr "" -#: ../../mod/viewconnections.php:58 -msgid "No connections." +#: ../../mod/admin.php:1176 +msgid "Screenshot" msgstr "" -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/admin.php:1224 +msgid "[Experimental]" msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/admin.php:1225 +msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." +#: ../../mod/admin.php:1252 +msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" +#: ../../mod/admin.php:1308 +msgid "Clear" msgstr "" -#: ../../mod/admin.php:98 -msgid "Accounts" +#: ../../mod/admin.php:1314 +msgid "Debugging" msgstr "" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" +#: ../../mod/admin.php:1315 +msgid "Log file" msgstr "" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" +#: ../../mod/admin.php:1315 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" +#: ../../mod/admin.php:1316 +msgid "Log level" msgstr "" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" +#: ../../mod/admin.php:1363 +msgid "New Profile Field" msgstr "" -#: ../../mod/admin.php:103 -msgid "Profile Config" +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +msgid "Field nickname" msgstr "" -#: ../../mod/admin.php:104 -msgid "DB updates" +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +msgid "System name of field" msgstr "" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" +#: ../../mod/admin.php:1365 ../../mod/admin.php:1386 +msgid "Input type" msgstr "" -#: ../../mod/admin.php:124 -msgid "Plugin Features" +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +msgid "Field Name" msgstr "" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +msgid "Label on profile pages" msgstr "" -#: ../../mod/admin.php:206 -msgid "Message queues" +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +msgid "Help text" msgstr "" -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 -msgid "Administration" +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +msgid "Additional info (optional)" msgstr "" -#: ../../mod/admin.php:212 -msgid "Summary" +#: ../../mod/admin.php:1378 +msgid "Field definition not found" msgstr "" -#: ../../mod/admin.php:214 -msgid "Registered users" +#: ../../mod/admin.php:1384 +msgid "Edit Profile Field" msgstr "" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." msgstr "" -#: ../../mod/admin.php:217 -msgid "Version" +#: ../../mod/oexchange.php:37 +msgid "Post successful." msgstr "" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/admin.php:330 -msgid "Site settings updated." +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/admin.php:369 -msgid "experimental" +#: ../../mod/register.php:84 +msgid "Passwords do not match." msgstr "" -#: ../../mod/admin.php:371 -msgid "unsupported" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/admin.php:395 -msgid "Yes - with approval" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/admin.php:401 -msgid "My site is not a public server" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/admin.php:402 -msgid "My site has paid access only" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/admin.php:403 -msgid "My site has free access only" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/admin.php:404 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/admin.php:417 ../../mod/register.php:207 -msgid "Registration" +#: ../../mod/register.php:185 +msgid "Terms of Service" msgstr "" -#: ../../mod/admin.php:418 -msgid "File upload" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/admin.php:419 -msgid "Policies" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/admin.php:424 -msgid "Site name" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/admin.php:425 -msgid "Banner/Logo" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" msgstr "" -#: ../../mod/admin.php:426 -msgid "Administrator Information" +#: ../../mod/register.php:216 +msgid "Your email address" msgstr "" -#: ../../mod/admin.php:426 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../mod/register.php:217 +msgid "Choose a password" msgstr "" -#: ../../mod/admin.php:427 -msgid "System language" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" msgstr "" -#: ../../mod/admin.php:428 -msgid "System theme" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/admin.php:428 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../mod/admin.php:429 -msgid "Mobile system theme" +#: ../../mod/removeaccount.php:58 +msgid "" +"This will completely remove this account including all its channels from the " +"network. Once this has been done it is not recoverable." msgstr "" -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:710 +msgid "Remove Account" msgstr "" -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/admin.php:433 -msgid "Maximum image size" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../mod/admin.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../mod/photos.php:97 +msgid "Album not found." msgstr "" -#: ../../mod/admin.php:434 -msgid "Does this site allow new member registration?" +#: ../../mod/photos.php:119 ../../mod/photos.php:643 +msgid "Delete Album" msgstr "" -#: ../../mod/admin.php:435 -msgid "Which best describes the types of account offered by this hub?" +#: ../../mod/photos.php:159 ../../mod/photos.php:924 +msgid "Delete Photo" msgstr "" -#: ../../mod/admin.php:436 -msgid "Register text" +#: ../../mod/photos.php:440 +msgid "No photos selected" msgstr "" -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." +#: ../../mod/photos.php:484 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" +#: ../../mod/photos.php:523 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../mod/photos.php:526 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" +#: ../../mod/photos.php:550 +msgid "Upload Photos" msgstr "" -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 +msgid "Enter a new album name" msgstr "" -#: ../../mod/admin.php:439 -msgid "Allowed email domains" +#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/admin.php:439 -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" +#: ../../mod/photos.php:556 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/admin.php:440 -msgid "Not allowed email domains" +#: ../../mod/photos.php:584 +msgid "Album name could not be decoded" msgstr "" -#: ../../mod/admin.php:440 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../mod/photos.php:625 ../../mod/photos.php:1149 +#: ../../mod/photos.php:1165 +msgid "Contact Photos" msgstr "" -#: ../../mod/admin.php:441 -msgid "Block public" +#: ../../mod/photos.php:649 +msgid "Show Newest First" msgstr "" -#: ../../mod/admin.php:441 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: ../../mod/photos.php:651 +msgid "Show Oldest First" msgstr "" -#: ../../mod/admin.php:442 -msgid "Verify Email Addresses" +#: ../../mod/photos.php:675 ../../mod/photos.php:1197 +msgid "View Photo" msgstr "" -#: ../../mod/admin.php:442 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../mod/photos.php:704 +msgid "Edit Album" msgstr "" -#: ../../mod/admin.php:443 -msgid "Force publish" +#: ../../mod/photos.php:749 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/admin.php:443 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../mod/photos.php:751 +msgid "Photo not available" msgstr "" -#: ../../mod/admin.php:444 -msgid "Disable discovery tab" +#: ../../mod/photos.php:809 +msgid "Use as profile photo" msgstr "" -#: ../../mod/admin.php:444 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." +#: ../../mod/photos.php:816 +msgid "Private Photo" msgstr "" -#: ../../mod/admin.php:445 -msgid "No login on Homepage" +#: ../../mod/photos.php:831 +msgid "View Full Size" msgstr "" -#: ../../mod/admin.php:445 -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)." +#: ../../mod/photos.php:903 +msgid "Edit photo" msgstr "" -#: ../../mod/admin.php:447 -msgid "Proxy user" +#: ../../mod/photos.php:905 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/admin.php:448 -msgid "Proxy URL" +#: ../../mod/photos.php:906 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/admin.php:449 -msgid "Network timeout" +#: ../../mod/photos.php:913 +msgid "Caption" msgstr "" -#: ../../mod/admin.php:449 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../mod/photos.php:915 +msgid "Add a Tag" msgstr "" -#: ../../mod/admin.php:450 -msgid "Delivery interval" +#: ../../mod/photos.php:919 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/admin.php:450 -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." +#: ../../mod/photos.php:922 +msgid "Flag as adult in album view" msgstr "" -#: ../../mod/admin.php:451 -msgid "Poll interval" +#: ../../mod/photos.php:1114 +msgid "In This Photo:" msgstr "" -#: ../../mod/admin.php:451 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../mod/photos.php:1203 +msgid "View Album" msgstr "" -#: ../../mod/admin.php:452 -msgid "Maximum Load Average" +#: ../../mod/photos.php:1226 +msgid "Recent Photos" msgstr "" -#: ../../mod/admin.php:452 +#: ../../mod/post.php:229 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/admin.php:508 -msgid "No server found" +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" msgstr "" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" +#: ../../mod/message.php:41 +msgid "Conversation removed." msgstr "" -#: ../../mod/admin.php:515 -msgid "for channel" +#: ../../mod/message.php:56 +msgid "No messages." msgstr "" -#: ../../mod/admin.php:515 -msgid "on server" +#: ../../mod/message.php:72 ../../mod/mail.php:336 +msgid "Delete conversation" msgstr "" -#: ../../mod/admin.php:515 -msgid "Status" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" msgstr "" -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" +#: ../../mod/mitem.php:67 +msgid "Menu element updated." msgstr "" -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." msgstr "" -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." +#: ../../mod/mitem.php:77 +msgid "Menu element added." msgstr "" -#: ../../mod/admin.php:553 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." msgstr "" -#: ../../mod/admin.php:556 -#, php-format -msgid "Update function %s could not be found." +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" msgstr "" -#: ../../mod/admin.php:571 -msgid "No failed updates." +#: ../../mod/mitem.php:130 +msgid "Edit menu" msgstr "" -#: ../../mod/admin.php:575 -msgid "Failed Updates" +#: ../../mod/mitem.php:133 +msgid "Edit element" msgstr "" -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" +#: ../../mod/mitem.php:134 +msgid "Drop element" msgstr "" -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" +#: ../../mod/mitem.php:135 +msgid "New element" msgstr "" -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "" -#: ../../mod/admin.php:611 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "" -#: ../../mod/admin.php:640 -msgid "Account not found" +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" msgstr "" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" msgstr "" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" +#: ../../mod/mitem.php:158 +msgid "New Menu Element" msgstr "" -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" msgstr "" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1071 +msgid "(click to open/close)" msgstr "" -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" msgstr "" -#: ../../mod/admin.php:731 -msgid "Request date" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" msgstr "" -#: ../../mod/admin.php:732 -msgid "No registrations." +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" msgstr "" -#: ../../mod/admin.php:733 -msgid "Approve" +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" msgstr "" -#: ../../mod/admin.php:734 -msgid "Deny" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" msgstr "" -#: ../../mod/admin.php:740 -msgid "Register date" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../mod/admin.php:740 -msgid "Last login" +#: ../../mod/mitem.php:181 +msgid "Menu item not found." msgstr "" -#: ../../mod/admin.php:740 -msgid "Expires" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." msgstr "" -#: ../../mod/admin.php:740 -msgid "Service Class" +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." msgstr "" -#: ../../mod/admin.php:742 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" msgstr "" -#: ../../mod/admin.php:743 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +#: ../../mod/mood.php:131 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/admin.php:776 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "" -#: ../../mod/admin.php:783 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "" -#: ../../mod/admin.php:802 -msgid "Channel not found" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" msgstr "" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../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/admin.php:824 -#, php-format -msgid "Channel '%s' censored" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../mod/admin.php:867 -msgid "Censor" +#: ../../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/admin.php:868 -msgid "Uncensor" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" msgstr "" -#: ../../mod/admin.php:871 -msgid "UID" +#: ../../mod/layouts.php:110 +msgid "Help with this feature" msgstr "" -#: ../../mod/admin.php:873 -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?" +#: ../../mod/layouts.php:130 +msgid "Layout Name" msgstr "" -#: ../../mod/admin.php:874 +#: ../../mod/rmagic.php:38 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?" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../mod/admin.php:913 -#, php-format -msgid "Plugin %s disabled." +#: ../../mod/rmagic.php:38 +msgid "The error message was:" msgstr "" -#: ../../mod/admin.php:917 -#, php-format -msgid "Plugin %s enabled." +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." msgstr "" -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 -msgid "Disable" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" msgstr "" -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 -msgid "Enable" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 -msgid "Toggle" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" msgstr "" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../mod/admin.php:1093 -msgid "No themes found." +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." msgstr "" -#: ../../mod/admin.php:1152 -msgid "Screenshot" +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../mod/admin.php:1200 -msgid "[Experimental]" +#: ../../mod/mail.php:139 +msgid "Message deleted." msgstr "" -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" +#: ../../mod/mail.php:156 +msgid "Message recalled." msgstr "" -#: ../../mod/admin.php:1228 -msgid "Log settings updated." +#: ../../mod/mail.php:225 +msgid "Send Private Message" msgstr "" -#: ../../mod/admin.php:1284 -msgid "Clear" +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" msgstr "" -#: ../../mod/admin.php:1290 -msgid "Debugging" +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" msgstr "" -#: ../../mod/admin.php:1291 -msgid "Log file" +#: ../../mod/mail.php:242 +msgid "Send" msgstr "" -#: ../../mod/admin.php:1291 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +#: ../../mod/mail.php:269 +msgid "Message not found." msgstr "" -#: ../../mod/admin.php:1292 -msgid "Log level" +#: ../../mod/mail.php:312 +msgid "Delete message" msgstr "" -#: ../../mod/admin.php:1339 -msgid "New Profile Field" +#: ../../mod/mail.php:313 +msgid "Recall message" msgstr "" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" +#: ../../mod/mail.php:315 +msgid "Message has been recalled." msgstr "" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" +#: ../../mod/mail.php:332 +msgid "Private Conversation" msgstr "" -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" +#: ../../mod/mail.php:342 +msgid "Send Reply" msgstr "" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" +#: ../../mod/notifications.php:35 +msgid "Discard" msgstr "" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" msgstr "" -#: ../../mod/admin.php:1354 -msgid "Field definition not found" +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" +#: ../../mod/new_channel.php:113 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." msgstr "" -#: ../../mod/post.php:229 +#: ../../mod/new_channel.php:116 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"Or import an existing channel from another location" msgstr "" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/regmod.php:11 -msgid "Please login." +#: ../../mod/new_channel.php:119 +msgid "Channel Type" msgstr "" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" msgstr "" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." msgstr "" -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the " -"network. Once this has been done it is not recoverable." +#: ../../mod/appman.php:37 +msgid "Malformed app." msgstr "" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" +#: ../../mod/appman.php:80 +msgid "Embed code" msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../mod/appman.php:86 +msgid "Edit App" msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../mod/appman.php:86 +msgid "Create App" msgstr "" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" +#: ../../mod/appman.php:91 +msgid "Name of app" msgstr "" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" msgstr "" -#: ../../mod/match.php:16 -msgid "Profile Match" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" msgstr "" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../mod/match.php:61 -msgid "is interested in:" +#: ../../mod/appman.php:95 +msgid "Version ID" msgstr "" -#: ../../mod/match.php:69 -msgid "No matches" +#: ../../mod/appman.php:96 +msgid "Price of app" msgstr "" -#: ../../mod/message.php:41 -msgid "Conversation removed." +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../mod/message.php:56 -msgid "No messages." +#: ../../mod/ping.php:263 +msgid "sent you a private message" msgstr "" -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" +#: ../../mod/ping.php:314 +msgid "added your channel" msgstr "" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" +#: ../../mod/ping.php:355 +msgid "posted an event" msgstr "" -#: ../../mod/mitem.php:67 -msgid "Menu element updated." +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" msgstr "" -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" msgstr "" -#: ../../mod/mitem.php:77 -msgid "Menu element added." +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" msgstr "" -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" +#: ../../mod/settings.php:73 +msgid "Name is required" msgstr "" -#: ../../mod/mitem.php:130 -msgid "Edit menu" +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" msgstr "" -#: ../../mod/mitem.php:133 -msgid "Edit element" +#: ../../mod/settings.php:120 +msgid "Diaspora Policy Settings updated." msgstr "" -#: ../../mod/mitem.php:134 -msgid "Drop element" +#: ../../mod/settings.php:228 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/mitem.php:135 -msgid "New element" +#: ../../mod/settings.php:232 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" +#: ../../mod/settings.php:246 +msgid "Password changed." msgstr "" -#: ../../mod/mitem.php:137 -msgid "Add menu element" +#: ../../mod/settings.php:248 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" +#: ../../mod/settings.php:262 +msgid "Not valid email." msgstr "" -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" +#: ../../mod/settings.php:265 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/mitem.php:158 -msgid "New Menu Element" +#: ../../mod/settings.php:274 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" +#: ../../mod/settings.php:513 +msgid "Settings updated." msgstr "" -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" msgstr "" -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" +#: ../../mod/settings.php:585 +msgid "Name of application" msgstr "" -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" msgstr "" -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" msgstr "" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" msgstr "" -#: ../../mod/mitem.php:181 -msgid "Menu item not found." +#: ../../mod/settings.php:588 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" msgstr "" -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." +#: ../../mod/settings.php:589 +msgid "Optional" msgstr "" -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" +#: ../../mod/settings.php:600 +msgid "You can't edit this application." msgstr "" -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" +#: ../../mod/settings.php:643 +msgid "Connected Apps" msgstr "" -#: ../../mod/vote.php:97 -msgid "Total votes" +#: ../../mod/settings.php:647 +msgid "Client key starts with" msgstr "" -#: ../../mod/vote.php:98 -msgid "Average Rating" +#: ../../mod/settings.php:648 +msgid "No name" msgstr "" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../mod/settings.php:649 +msgid "Remove authorization" msgstr "" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" +#: ../../mod/settings.php:663 +msgid "No feature settings configured" msgstr "" -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." +#: ../../mod/settings.php:676 +msgid "Feature Settings" msgstr "" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" +#: ../../mod/settings.php:679 +msgid "Diaspora Policy Settings" msgstr "" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../mod/settings.php:680 +msgid "Allow any Diaspora member to comment on your public posts." msgstr "" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" +#: ../../mod/settings.php:681 +msgid "Submit Diaspora Policy Settings" msgstr "" -#: ../../mod/layouts.php:110 -msgid "Help with this feature" +#: ../../mod/settings.php:704 +msgid "Account Settings" msgstr "" -#: ../../mod/layouts.php:130 -msgid "Layout Name" +#: ../../mod/settings.php:705 +msgid "Password Settings" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../mod/settings.php:706 +msgid "New Password:" msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../mod/settings.php:707 +msgid "Confirm:" msgstr "" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +#: ../../mod/settings.php:707 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." +#: ../../mod/settings.php:709 ../../mod/settings.php:1045 +msgid "Email Address:" msgstr "" -#: ../../mod/like.php:143 -msgid "thing" +#: ../../mod/settings.php:711 +msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/like.php:189 -msgid "Channel unavailable." +#: ../../mod/settings.php:712 ../../mod/settings.php:1126 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/like.php:228 -msgid "Previous action reversed." +#: ../../mod/settings.php:728 +msgid "Off" msgstr "" -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../mod/settings.php:728 +msgid "On" msgstr "" -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../mod/settings.php:735 +msgid "Additional Features" msgstr "" -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../mod/settings.php:759 +msgid "Connector Settings" msgstr "" -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../mod/settings.php:798 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/like.php:395 +#: ../../mod/settings.php:801 #, php-format -msgid "%1$s is not attending %2$s's %3$s" +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../mod/settings.php:840 +msgid "Display Settings" msgstr "" -#: ../../mod/like.php:481 -msgid "Action completed." +#: ../../mod/settings.php:846 +msgid "Display Theme:" msgstr "" -#: ../../mod/like.php:482 -msgid "Thank you." +#: ../../mod/settings.php:847 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/settings.php:848 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/settings.php:849 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/settings.php:849 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/settings.php:850 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/mail.php:139 -msgid "Message deleted." +#: ../../mod/settings.php:850 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/mail.php:156 -msgid "Message recalled." +#: ../../mod/settings.php:851 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/mail.php:225 -msgid "Send Private Message" +#: ../../mod/settings.php:852 +msgid "Link post titles to source" msgstr "" -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" +#: ../../mod/settings.php:853 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" +#: ../../mod/settings.php:856 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../mod/mail.php:242 -msgid "Send" +#: ../../mod/settings.php:856 ../../mod/settings.php:857 +msgid "(comments displayed separately)" msgstr "" -#: ../../mod/mail.php:269 -msgid "Message not found." +#: ../../mod/settings.php:857 +msgid "Use blog/list mode on matrix page" msgstr "" -#: ../../mod/mail.php:312 -msgid "Delete message" +#: ../../mod/settings.php:858 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../mod/mail.php:313 -msgid "Recall message" +#: ../../mod/settings.php:858 ../../mod/settings.php:859 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../mod/mail.php:315 -msgid "Message has been recalled." +#: ../../mod/settings.php:859 +msgid "Matrix page max height of content (in pixels)" msgstr "" -#: ../../mod/mail.php:332 -msgid "Private Conversation" +#: ../../mod/settings.php:893 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../mod/settings.php:894 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/mail.php:342 -msgid "Send Reply" +#: ../../mod/settings.php:895 +msgid "Approved connections" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/settings.php:896 +msgid "Any connections" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../mod/settings.php:897 +msgid "Anybody on this website" msgstr "" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" +#: ../../mod/settings.php:898 +msgid "Anybody in this network" msgstr "" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." +#: ../../mod/settings.php:899 +msgid "Anybody authenticated" msgstr "" -#: ../../mod/new_channel.php:113 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " +#: ../../mod/settings.php:900 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" +#: ../../mod/settings.php:974 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." +#: ../../mod/settings.php:979 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/new_channel.php:116 -msgid "" -"Or import an existing channel from another location" +#: ../../mod/settings.php:988 +msgid "Your channel address is" msgstr "" -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" +#: ../../mod/settings.php:1036 +msgid "Channel Settings" msgstr "" -#: ../../mod/new_channel.php:119 -msgid "Channel Type" +#: ../../mod/settings.php:1043 +msgid "Basic Settings" msgstr "" -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" +#: ../../mod/settings.php:1046 +msgid "Your Timezone:" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." +#: ../../mod/settings.php:1047 +msgid "Default Post Location:" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." +#: ../../mod/settings.php:1047 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/photos.php:97 -msgid "Album not found." +#: ../../mod/settings.php:1048 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" +#: ../../mod/settings.php:1050 +msgid "Adult Content" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" +#: ../../mod/settings.php:1050 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/photos.php:440 -msgid "No photos selected" +#: ../../mod/settings.php:1052 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." +#: ../../mod/settings.php:1054 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../mod/settings.php:1056 +msgid "Hide my online presence" msgstr "" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../mod/settings.php:1056 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/photos.php:550 -msgid "Upload Photos" +#: ../../mod/settings.php:1058 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 -msgid "Enter a new album name" +#: ../../mod/settings.php:1059 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 -msgid "or select an existing one (doubleclick)" +#: ../../mod/settings.php:1060 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" +#: ../../mod/settings.php:1061 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" +#: ../../mod/settings.php:1062 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" +#: ../../mod/settings.php:1064 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/photos.php:649 -msgid "Show Newest First" +#: ../../mod/settings.php:1064 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/photos.php:651 -msgid "Show Oldest First" +#: ../../mod/settings.php:1066 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" +#: ../../mod/settings.php:1068 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/photos.php:704 -msgid "Edit Album" +#: ../../mod/settings.php:1068 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." +#: ../../mod/settings.php:1069 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/photos.php:751 -msgid "Photo not available" +#: ../../mod/settings.php:1069 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/photos.php:809 -msgid "Use as profile photo" +#: ../../mod/settings.php:1070 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/photos.php:816 -msgid "Private Photo" +#: ../../mod/settings.php:1075 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/photos.php:831 -msgid "View Full Size" +#: ../../mod/settings.php:1081 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/photos.php:903 -msgid "Edit photo" +#: ../../mod/settings.php:1081 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" +#: ../../mod/settings.php:1084 +msgid "Notification Settings" msgstr "" -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" +#: ../../mod/settings.php:1085 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/photos.php:913 -msgid "Caption" +#: ../../mod/settings.php:1086 +msgid "accepting a friend request" msgstr "" -#: ../../mod/photos.php:915 -msgid "Add a Tag" +#: ../../mod/settings.php:1087 +msgid "joining a forum/community" msgstr "" -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../mod/settings.php:1088 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" +#: ../../mod/settings.php:1089 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/photos.php:1114 -msgid "In This Photo:" +#: ../../mod/settings.php:1090 +msgid "You receive a connection request" msgstr "" -#: ../../mod/photos.php:1203 -msgid "View Album" +#: ../../mod/settings.php:1091 +msgid "Your connections are confirmed" msgstr "" -#: ../../mod/photos.php:1226 -msgid "Recent Photos" +#: ../../mod/settings.php:1092 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/ping.php:263 -msgid "sent you a private message" +#: ../../mod/settings.php:1093 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/ping.php:314 -msgid "added your channel" +#: ../../mod/settings.php:1094 +msgid "You receive a private message" msgstr "" -#: ../../mod/ping.php:355 -msgid "posted an event" +#: ../../mod/settings.php:1095 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" +#: ../../mod/settings.php:1096 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" +#: ../../mod/settings.php:1097 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" +#: ../../mod/settings.php:1100 +msgid "Show visual notifications including:" msgstr "" -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/settings.php:1102 +msgid "Unseen matrix activity" msgstr "" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../mod/settings.php:1103 +msgid "Unseen channel activity" msgstr "" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../mod/settings.php:1104 +msgid "Unseen private messages" msgstr "" -#: ../../mod/register.php:84 -msgid "Passwords do not match." +#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +msgid "Recommended" msgstr "" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../mod/settings.php:1105 +msgid "Upcoming events" msgstr "" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/settings.php:1106 +msgid "Events today" msgstr "" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." +#: ../../mod/settings.php:1107 +msgid "Upcoming birthdays" msgstr "" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." +#: ../../mod/settings.php:1107 +msgid "Not available in all themes" msgstr "" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" +#: ../../mod/settings.php:1108 +msgid "System (personal) notifications" msgstr "" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../mod/settings.php:1109 +msgid "System info messages" msgstr "" -#: ../../mod/register.php:185 -msgid "Terms of Service" +#: ../../mod/settings.php:1110 +msgid "System critical alerts" msgstr "" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" +#: ../../mod/settings.php:1111 +msgid "New connections" msgstr "" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../mod/settings.php:1112 +msgid "System Registrations" msgstr "" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." +#: ../../mod/settings.php:1113 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" +#: ../../mod/settings.php:1115 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/register.php:216 -msgid "Your email address" +#: ../../mod/settings.php:1115 +msgid "Must be greater than 0" msgstr "" -#: ../../mod/register.php:217 -msgid "Choose a password" +#: ../../mod/settings.php:1117 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../mod/settings.php:1118 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/rmagic.php:38 +#: ../../mod/settings.php:1121 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:" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." +#: ../../mod/settings.php:1122 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" +#: ../../mod/settings.php:1124 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../mod/settings.php:1125 +msgid "Remove this channel" msgstr "" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" #: ../../mod/poll.php:64 diff --git a/version.inc b/version.inc index 1774fb864..448d75763 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-26.955 +2015-02-27.956 -- cgit v1.2.3 From 016f096208cc7e2e9824f26ff80c5acba79e73a2 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Sat, 28 Feb 2015 21:46:15 +0100 Subject: Dutch language updated --- view/nl/messages.po | 11072 ++++++++++++++++++++++++++------------------------ view/nl/strings.php | 2703 ++++++------ 2 files changed, 7055 insertions(+), 6720 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 2edb4ea58..7bd9c6de8 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-30 00:04-0800\n" -"PO-Revision-Date: 2015-02-03 16:43+0000\n" +"POT-Creation-Date: 2015-02-27 00:03-0800\n" +"PO-Revision-Date: 2015-02-28 20:31+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -25,616 +25,651 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/photos.php:91 ../../mod/photos.php:625 #: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 -#: ../../mod/profile_photo.php:424 +#: ../../mod/profile_photo.php:424 ../../mod/photos.php:91 +#: ../../mod/photos.php:625 msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Systeem" +#: ../../include/photos.php:15 ../../include/attach.php:137 +#: ../../include/attach.php:184 ../../include/attach.php:247 +#: ../../include/attach.php:261 ../../include/attach.php:301 +#: ../../include/attach.php:315 ../../include/attach.php:339 +#: ../../include/attach.php:532 ../../include/attach.php:606 +#: ../../include/items.php:4083 ../../include/chat.php:116 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 +#: ../../mod/manage.php:6 ../../mod/delegate.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 +#: ../../mod/events.php:219 ../../mod/network.php:12 +#: ../../mod/connedit.php:321 ../../mod/group.php:9 ../../mod/setup.php:207 +#: ../../mod/common.php:35 ../../mod/editpost.php:13 +#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 +#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 +#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/rate.php:110 ../../mod/regmod.php:17 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 +#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 +#: ../../mod/poke.php:128 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 +#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:72 +#: ../../mod/photos.php:68 ../../mod/message.php:16 ../../mod/mitem.php:106 +#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 +#: ../../mod/layouts.php:85 ../../mod/mail.php:114 +#: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 +#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 +#: ../../mod/channel.php:199 ../../mod/channel.php:242 +#: ../../mod/settings.php:560 ../../mod/suggest.php:26 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:190 ../../index.php:393 +msgid "Permission denied." +msgstr "Toegang geweigerd" -#: ../../include/widgets.php:94 ../../include/conversation.php:1472 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../include/photos.php:105 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../include/photos.php:112 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:946 -#: ../../include/identity.php:840 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/photos.php:213 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../include/photos.php:355 ../../include/conversation.php:1589 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/photos.php:359 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../include/widgets.php:166 +#: ../../include/notify.php:24 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" +#: ../../include/group.php:254 ../../mod/admin.php:764 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" -#: ../../include/widgets.php:192 ../../include/text.php:837 -#: ../../include/text.php:849 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Opslaan" +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" -#: ../../include/widgets.php:272 ../../include/features.php:71 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" -#: ../../include/widgets.php:273 ../../include/group.php:303 +#: ../../include/group.php:303 ../../include/widgets.php:273 msgid "add" msgstr "toevoegen" -#: ../../include/widgets.php:302 ../../include/features.php:83 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Bewaarde mappen" +#: ../../include/identity.php:31 ../../mod/item.php:1078 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archieven" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/widgets.php:426 ../../mod/connedit.php:555 -msgid "Me" -msgstr "Ik" +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/widgets.php:427 ../../mod/connedit.php:558 -msgid "Best Friends" -msgstr "Goede vrienden" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 -#: ../../mod/settings.php:333 ../../mod/settings.php:334 -#: ../../mod/settings.php:337 ../../mod/settings.php:348 -#: ../../mod/connedit.php:559 +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:428 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 +#: ../../mod/settings.php:335 ../../mod/settings.php:339 +#: ../../mod/settings.php:340 ../../mod/settings.php:343 +#: ../../mod/settings.php:354 msgid "Friends" msgstr "Vrienden" -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Collega's" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:560 -msgid "Former Friends" -msgstr "Oude vrienden" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/widgets.php:431 ../../mod/connedit.php:561 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../include/identity.php:691 ../../mod/profile.php:16 +#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 +#: ../../mod/layouts.php:29 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Iedereen" +#: ../../include/identity.php:840 ../../include/widgets.php:136 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/conversation.php:940 ../../mod/match.php:62 +#: ../../mod/directory.php:276 ../../mod/suggest.php:51 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Account" +#: ../../include/identity.php:854 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "Profielen" -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" +#: ../../include/identity.php:862 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/identity.php:865 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/identity.php:878 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/widgets.php:511 ../../mod/connedit.php:605 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../include/identity.php:882 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 +#: ../../include/event.php:40 ../../mod/events.php:645 +#: ../../mod/directory.php:208 +msgid "Location:" +msgstr "Plaats:" -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../include/identity.php:898 ../../include/identity.php:1139 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/widgets.php:535 ../../include/apps.php:134 -#: ../../include/nav.php:210 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Instellingen" +#: ../../include/identity.php:899 ../../include/identity.php:1183 +msgid "Status:" +msgstr "Status:" -#: ../../include/widgets.php:548 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" +#: ../../include/identity.php:900 ../../include/identity.php:1194 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" +#: ../../include/identity.php:901 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/identity.php:983 ../../include/identity.php:1063 +#: ../../mod/ping.php:324 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chatkanalen" +#: ../../include/identity.php:984 ../../include/identity.php:1064 +msgid "F d" +msgstr "d F" -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/identity.php:1029 ../../include/identity.php:1104 +#: ../../mod/ping.php:346 +msgid "[today]" +msgstr "[vandaag]" -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/identity.php:1041 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../include/identity.php:1042 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/identity.php:1097 +msgid "[No description]" +msgstr "[Geen omschrijving]" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/identity.php:1115 +msgid "Event Reminders" +msgstr "Herinneringen" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" +#: ../../include/identity.php:1116 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/identity.php:1129 ../../include/identity.php:1246 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" +#: ../../include/identity.php:1137 ../../mod/settings.php:1044 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/identity.php:1144 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/identity.php:1155 ../../include/taxonomy.php:385 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 +#: ../../mod/photos.php:1001 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/identity.php:1168 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/identity.php:1169 +msgid "j F" +msgstr "F j" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/identity.php:1176 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" +#: ../../include/identity.php:1180 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/identity.php:1189 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/identity.php:1192 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/identity.php:1196 ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/identity.php:1198 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/identity.php:1200 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/identity.php:1202 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/identity.php:1204 +msgid "About:" +msgstr "Over:" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/identity.php:1206 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/identity.php:1208 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/identity.php:1210 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../include/identity.php:1212 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/identity.php:1214 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" +#: ../../include/identity.php:1216 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beperkt zichtbaar" +#: ../../include/identity.php:1218 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Verborgen kanaal" +#: ../../include/identity.php:1220 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/identity.php:1222 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/identity.php:1224 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/identity.php:1226 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" +#: ../../include/identity.php:1228 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Groepsopslag" +#: ../../include/identity.php:1248 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/permissions.php:814 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Anders" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 +#: ../../include/apps.php:254 ../../include/menu.php:42 +#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 +#: ../../mod/editpost.php:113 ../../mod/connections.php:382 +#: ../../mod/connections.php:395 ../../mod/connections.php:414 +#: ../../mod/thing.php:233 ../../mod/editlayout.php:139 +#: ../../mod/editwebpage.php:174 ../../mod/menu.php:78 +#: ../../mod/webpages.php:162 ../../mod/layouts.php:167 +#: ../../mod/settings.php:645 +msgid "Edit" +msgstr "Bewerken" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +msgid "View" +msgstr "Weergeven" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 +#: ../../include/conversation.php:1152 ../../mod/events.php:651 +#: ../../mod/webpages.php:166 ../../mod/photos.php:964 +msgid "Preview" +msgstr "Voorvertoning" -#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 -msgid "Tags" -msgstr "Tags" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" +msgstr "Acties" -#: ../../include/taxonomy.php:269 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" +msgstr "Paginalink" -#: ../../include/taxonomy.php:294 -msgid "have" -msgstr "heb" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" +msgstr "Titel" -#: ../../include/taxonomy.php:294 -msgid "has" -msgstr "heeft" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" +msgstr "Aangemaakt" -#: ../../include/taxonomy.php:295 -msgid "want" -msgstr "wil" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" +msgstr "Bewerkt" -#: ../../include/taxonomy.php:295 -msgid "wants" -msgstr "wil" +#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorieën" -#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221 -msgid "like" -msgstr "vind dit leuk" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Apps" -#: ../../include/taxonomy.php:296 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Systeem" -#: ../../include/taxonomy.php:297 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/widgets.php:94 ../../include/conversation.php:1494 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146 -#: ../../include/identity.php:1151 ../../mod/photos.php:995 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 -#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 -#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 -#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 -#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 -msgid "Image/photo" -msgstr "Afbeelding/foto" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Installeer ontwerp-onderdeel" +#: ../../include/widgets.php:143 ../../mod/connections.php:268 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-code" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." -#: ../../include/bbcode.php:223 +#: ../../include/widgets.php:166 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "bericht" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/bbcode.php:656 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" -#: ../../include/bbcode.php:676 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/widgets.php:192 ../../include/text.php:838 +#: ../../include/text.php:850 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1368 ../../mod/admin.php:1389 +msgid "Save" +msgstr "Opslaan" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/editblock.php:143 -#: ../../mod/settings.php:639 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 -msgid "Edit" -msgstr "Bewerken" +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Weergeven" +#: ../../include/widgets.php:272 ../../include/features.php:72 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:638 -#: ../../include/conversation.php:1136 ../../mod/webpages.php:166 -#: ../../mod/photos.php:966 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../include/widgets.php:302 ../../include/features.php:84 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Acties" +#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Paginalink" +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Archieven" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Aangemaakt" +#: ../../include/widgets.php:426 ../../mod/connedit.php:563 +msgid "Me" +msgstr "Ik" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Bewerkt" +#: ../../include/widgets.php:427 ../../mod/connedit.php:566 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Ingesloten inhoud" +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Collega's" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" +#: ../../include/widgets.php:430 ../../mod/connedit.php:568 +msgid "Former Friends" +msgstr "Oude vrienden" -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/items.php:4063 ../../include/chat.php:116 -#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 -#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 -#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 -#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 -#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 -#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 -#: ../../mod/editblock.php:65 ../../mod/settings.php:554 -#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 -#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 -#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/menu.php:61 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 -#: ../../mod/mood.php:112 ../../mod/mail.php:114 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/connedit.php:314 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Toegang geweigerd" +#: ../../include/widgets.php:431 ../../mod/connedit.php:569 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Iedereen" -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "Account" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Extra functies" -#: ../../include/photos.php:355 ../../include/conversation.php:1567 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: ../../include/widgets.php:484 +msgid "Feature/Addon settings" +msgstr "Extra functie- en plugin-instellingen" -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Weergave" -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../include/bb2diaspora.php:366 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Kanaal exporteren" -#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/widgets.php:511 ../../mod/connedit.php:627 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../include/bb2diaspora.php:447 -msgid "Redmatrix event notification:" -msgstr "Notificatie RedMatrix-gebeurtenis:" +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" -#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 -msgid "Starts:" -msgstr "Start:" +#: ../../include/widgets.php:527 ../../include/features.php:61 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/widgets.php:535 ../../include/nav.php:210 +#: ../../include/apps.php:134 ../../mod/admin.php:980 ../../mod/admin.php:1185 +msgid "Settings" +msgstr "Instellingen" -#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 -#: ../../include/identity.php:894 ../../mod/events.php:594 -#: ../../mod/directory.php:199 -msgid "Location:" -msgstr "Plaats:" +#: ../../include/widgets.php:548 ../../mod/message.php:31 +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Berichten" -#: ../../include/security.php:357 -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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:556 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/widgets.php:954 ../../include/widgets.php:956 +msgid "Rate Me" +msgstr "Beoordeel mij" + +#: ../../include/widgets.php:960 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" + +#: ../../include/widgets.php:971 +msgid "Public Hubs" +msgstr "Openbare hubs" #: ../../include/text.php:320 msgid "prev" @@ -660,560 +695,549 @@ msgstr "ouder" msgid "newer" msgstr "nieuwer" -#: ../../include/text.php:750 +#: ../../include/text.php:751 msgid "No connections" msgstr "Geen connecties" -#: ../../include/text.php:766 +#: ../../include/text.php:767 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d connectie" msgstr[1] "%d connecties" -#: ../../include/text.php:779 ../../mod/viewconnections.php:86 +#: ../../include/text.php:780 ../../mod/viewconnections.php:86 msgid "View Connections" msgstr "Connecties weergeven" -#: ../../include/text.php:836 ../../include/text.php:848 -#: ../../include/apps.php:147 ../../include/nav.php:165 +#: ../../include/text.php:837 ../../include/text.php:849 +#: ../../include/nav.php:165 ../../include/apps.php:147 #: ../../mod/search.php:34 msgid "Search" msgstr "Zoeken" -#: ../../include/text.php:915 +#: ../../include/text.php:916 msgid "poke" msgstr "aanstoten" -#: ../../include/text.php:915 ../../include/conversation.php:243 +#: ../../include/text.php:916 ../../include/conversation.php:243 msgid "poked" msgstr "aangestoten" -#: ../../include/text.php:916 +#: ../../include/text.php:917 msgid "ping" msgstr "ping" -#: ../../include/text.php:916 +#: ../../include/text.php:917 msgid "pinged" msgstr "gepingd" -#: ../../include/text.php:917 +#: ../../include/text.php:918 msgid "prod" msgstr "por" -#: ../../include/text.php:917 +#: ../../include/text.php:918 msgid "prodded" msgstr "gepord" -#: ../../include/text.php:918 +#: ../../include/text.php:919 msgid "slap" msgstr "slaan" -#: ../../include/text.php:918 +#: ../../include/text.php:919 msgid "slapped" msgstr "sloeg" -#: ../../include/text.php:919 +#: ../../include/text.php:920 msgid "finger" msgstr "finger" -#: ../../include/text.php:919 +#: ../../include/text.php:920 msgid "fingered" msgstr "gefingerd" -#: ../../include/text.php:920 +#: ../../include/text.php:921 msgid "rebuff" msgstr "afpoeieren" -#: ../../include/text.php:920 +#: ../../include/text.php:921 msgid "rebuffed" msgstr "afgepoeierd" -#: ../../include/text.php:930 +#: ../../include/text.php:931 msgid "happy" msgstr "gelukkig" -#: ../../include/text.php:931 +#: ../../include/text.php:932 msgid "sad" msgstr "bedroefd" -#: ../../include/text.php:932 +#: ../../include/text.php:933 msgid "mellow" msgstr "mellow" -#: ../../include/text.php:933 +#: ../../include/text.php:934 msgid "tired" msgstr "moe" -#: ../../include/text.php:934 +#: ../../include/text.php:935 msgid "perky" msgstr "parmantig" -#: ../../include/text.php:935 +#: ../../include/text.php:936 msgid "angry" msgstr "boos" -#: ../../include/text.php:936 +#: ../../include/text.php:937 msgid "stupified" msgstr "beteuterd" -#: ../../include/text.php:937 +#: ../../include/text.php:938 msgid "puzzled" msgstr "verward" -#: ../../include/text.php:938 +#: ../../include/text.php:939 msgid "interested" msgstr "geïnteresseerd" -#: ../../include/text.php:939 +#: ../../include/text.php:940 msgid "bitter" msgstr "verbitterd" -#: ../../include/text.php:940 +#: ../../include/text.php:941 msgid "cheerful" msgstr "vrolijk" -#: ../../include/text.php:941 +#: ../../include/text.php:942 msgid "alive" msgstr "levendig" -#: ../../include/text.php:942 +#: ../../include/text.php:943 msgid "annoyed" msgstr "geërgerd" -#: ../../include/text.php:943 +#: ../../include/text.php:944 msgid "anxious" msgstr "bezorgd" -#: ../../include/text.php:944 +#: ../../include/text.php:945 msgid "cranky" msgstr "humeurig" -#: ../../include/text.php:945 +#: ../../include/text.php:946 msgid "disturbed" msgstr "verontrust" -#: ../../include/text.php:946 +#: ../../include/text.php:947 msgid "frustrated" msgstr "gefrustreerd " -#: ../../include/text.php:947 +#: ../../include/text.php:948 msgid "depressed" msgstr "gedeprimeerd" -#: ../../include/text.php:948 +#: ../../include/text.php:949 msgid "motivated" msgstr "gemotiveerd" -#: ../../include/text.php:949 +#: ../../include/text.php:950 msgid "relaxed" msgstr "ontspannen" -#: ../../include/text.php:950 +#: ../../include/text.php:951 msgid "surprised" msgstr "verrast" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Monday" msgstr "maandag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Tuesday" msgstr "dinsdag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Wednesday" msgstr "woensdag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Thursday" msgstr "donderdag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Friday" msgstr "vrijdag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Saturday" msgstr "zaterdag" -#: ../../include/text.php:1116 +#: ../../include/text.php:1117 msgid "Sunday" msgstr "zondag" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "January" msgstr "januari" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "February" msgstr "februari" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "March" msgstr "maart" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "April" msgstr "april" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "May" msgstr "mei" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "June" msgstr "juni" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "July" msgstr "juli" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "August" msgstr "augustus" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "September" msgstr "september" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "October" msgstr "oktober" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "November" msgstr "november" -#: ../../include/text.php:1120 +#: ../../include/text.php:1121 msgid "December" msgstr "december" -#: ../../include/text.php:1198 +#: ../../include/text.php:1199 msgid "unknown.???" msgstr "onbekend.???" -#: ../../include/text.php:1199 +#: ../../include/text.php:1200 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1235 +#: ../../include/text.php:1236 msgid "remove category" msgstr "categorie verwijderen" -#: ../../include/text.php:1304 +#: ../../include/text.php:1305 msgid "remove from file" msgstr "uit map verwijderen" -#: ../../include/text.php:1380 ../../include/text.php:1391 -#: ../../mod/connedit.php:613 +#: ../../include/text.php:1381 ../../include/text.php:1392 +#: ../../mod/connedit.php:635 msgid "Click to open/close" msgstr "Klik om te openen of te sluiten" -#: ../../include/text.php:1539 ../../mod/events.php:418 +#: ../../include/text.php:1540 ../../mod/events.php:444 msgid "Link to Source" msgstr "Originele locatie" -#: ../../include/text.php:1558 +#: ../../include/text.php:1559 msgid "Select a page layout: " msgstr "Kies een paginalay-out: " -#: ../../include/text.php:1561 ../../include/text.php:1621 +#: ../../include/text.php:1562 ../../include/text.php:1622 msgid "default" msgstr "standaard" -#: ../../include/text.php:1594 +#: ../../include/text.php:1595 msgid "Page content type: " msgstr "Opmaakcode pagina" -#: ../../include/text.php:1633 +#: ../../include/text.php:1634 msgid "Select an alternate language" msgstr "Kies een andere taal" -#: ../../include/text.php:1752 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43 +#: ../../include/text.php:1753 ../../include/diaspora.php:1909 +#: ../../include/conversation.php:120 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:43 msgid "photo" msgstr "foto" -#: ../../include/text.php:1755 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 +#: ../../include/text.php:1756 ../../include/conversation.php:123 +#: ../../mod/like.php:337 ../../mod/tagger.php:47 msgid "event" msgstr "gebeurtenis" -#: ../../include/text.php:1758 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51 +#: ../../include/text.php:1759 ../../include/diaspora.php:1909 +#: ../../include/conversation.php:148 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:51 msgid "status" msgstr "bericht" -#: ../../include/text.php:1760 ../../include/conversation.php:150 +#: ../../include/text.php:1761 ../../include/conversation.php:150 #: ../../mod/tagger.php:53 msgid "comment" msgstr "reactie" -#: ../../include/text.php:1765 +#: ../../include/text.php:1766 msgid "activity" msgstr "activiteit" -#: ../../include/text.php:2052 +#: ../../include/text.php:2053 msgid "Design" msgstr "Ontwerp" -#: ../../include/text.php:2055 +#: ../../include/text.php:2056 msgid "Blocks" msgstr "Blokken" -#: ../../include/text.php:2056 +#: ../../include/text.php:2057 msgid "Menus" msgstr "Menu's" -#: ../../include/text.php:2057 +#: ../../include/text.php:2058 msgid "Layouts" msgstr "Lay-outs" -#: ../../include/text.php:2058 +#: ../../include/text.php:2059 msgid "Pages" msgstr "Pagina's" -#: ../../include/text.php:2390 ../../include/RedDAV/RedBrowser.php:130 +#: ../../include/text.php:2395 ../../include/RedDAV/RedBrowser.php:130 msgid "Collection" msgstr "map" -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Algemene functies" +#: ../../include/attach.php:242 ../../include/attach.php:296 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../include/attach.php:352 +msgid "No source file." +msgstr "Geen bronbestand." -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" +#: ../../include/attach.php:369 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../include/attach.php:387 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../include/attach.php:398 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../include/attach.php:410 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../include/attach.php:493 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../include/attach.php:505 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../include/attach.php:547 ../../include/attach.php:564 +msgid "Path not available." +msgstr "Pad niet beschikbaar." -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../include/attach.php:611 +msgid "Empty pathname" +msgstr "Padnaam leeg" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" +#: ../../include/attach.php:627 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Privé-aantekeningen" +#: ../../include/attach.php:651 +msgid "Path not found." +msgstr "Pad niet gevonden" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" +#: ../../include/attach.php:702 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../include/attach.php:706 +msgid "database storage failed." +msgstr "opslag in database mislukt." -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Uitgebreid identiteit delen" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:962 ../../mod/photos.php:1080 +msgid "Comment" +msgstr "Reactie" -#: ../../include/features.php:50 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../include/features.php:51 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../include/features.php:51 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../include/features.php:52 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../include/features.php:52 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/features.php:57 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/features.php:59 -msgid "Use Markdown" -msgstr "Markdown gebruiken" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "iedereen" -#: ../../include/features.php:59 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/features.php:60 -msgid "Large Photos" -msgstr "Grote foto's" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/features.php:60 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. " +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/features.php:61 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/features.php:62 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/features.php:62 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../include/features.php:63 -msgid "Flag Adult Photos" -msgstr "Markeer foto's als voor volwassenen" +#: ../../include/js_strings.php:20 ../../mod/rate.php:156 +msgid "Rating" +msgstr "Beoordeling" -#: ../../include/features.php:63 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" + +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/events.php:654 +#: ../../mod/connedit.php:653 ../../mod/group.php:81 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../mod/import.php:504 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/rate.php:167 ../../mod/invite.php:142 +#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/filestorage.php:155 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:420 +#: ../../mod/admin.php:752 ../../mod/admin.php:888 ../../mod/admin.php:1021 +#: ../../mod/admin.php:1220 ../../mod/admin.php:1307 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:923 ../../mod/photos.php:963 +#: ../../mod/photos.php:1081 ../../mod/mood.php:134 ../../mod/mail.php:355 +#: ../../mod/appman.php:99 ../../mod/settings.php:583 +#: ../../mod/settings.php:708 ../../mod/settings.php:737 +#: ../../mod/settings.php:760 ../../mod/settings.php:842 +#: ../../mod/settings.php:1038 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" -#: ../../include/features.php:68 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../include/js_strings.php:24 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/features.php:69 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../include/js_strings.php:25 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/features.php:69 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:70 -msgid "Collections Filter" -msgstr "Filter op collecties" - -#: ../../include/features.php:70 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" - -#: ../../include/features.php:71 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:72 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:72 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:73 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:73 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:74 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:74 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" +#: ../../include/js_strings.php:26 +msgid "ago" +msgstr "geleden" -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../include/js_strings.php:27 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../include/js_strings.php:28 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../include/js_strings.php:29 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Taggen" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te taggen" +#: ../../include/js_strings.php:31 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../include/js_strings.php:32 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../include/js_strings.php:33 +msgid "a day" +msgstr "een dag" -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../include/js_strings.php:35 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../include/js_strings.php:37 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Tagwolk" +#: ../../include/js_strings.php:39 +msgid " " +msgstr " " -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../include/js_strings.php:40 +msgid "timeago.numbers" +msgstr "timeago.numbers" #: ../../include/RedDAV/RedBrowser.php:106 #: ../../include/RedDAV/RedBrowser.php:266 @@ -1240,10 +1264,10 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1026 -#: ../../mod/photos.php:681 ../../mod/photos.php:1100 -#: ../../mod/connedit.php:562 +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:1019 +#: ../../include/apps.php:336 ../../include/apps.php:387 +#: ../../mod/connedit.php:570 ../../mod/photos.php:681 +#: ../../mod/photos.php:1113 msgid "Unknown" msgstr "Onbekend" @@ -1257,8 +1281,8 @@ msgstr "%1$s gebruikt" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s van %2$s gebruikt (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135 -#: ../../include/conversation.php:1573 ../../include/nav.php:98 +#: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 +#: ../../include/conversation.php:1595 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Bestanden" @@ -1272,19 +1296,19 @@ msgid "Shared" msgstr "Gedeeld" #: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:121 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 +#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 msgid "Create" msgstr "Aanmaken" #: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:706 -#: ../../mod/photos.php:1214 ../../mod/profile_photo.php:362 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 +#: ../../mod/photos.php:706 ../../mod/photos.php:1228 msgid "Upload" msgstr "Uploaden" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:871 +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/admin.php:895 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 #: ../../mod/sharedwithme.php:100 msgid "Name" msgstr "Naam" @@ -1301,11 +1325,11 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255 -#: ../../include/ItemObject.php:120 ../../include/conversation.php:644 -#: ../../mod/settings.php:640 ../../mod/photos.php:1038 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/connedit.php:525 +#: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 +#: ../../include/conversation.php:645 ../../include/apps.php:255 +#: ../../mod/connedit.php:533 ../../mod/group.php:176 ../../mod/thing.php:234 +#: ../../mod/admin.php:759 ../../mod/admin.php:890 ../../mod/photos.php:1044 +#: ../../mod/settings.php:646 msgid "Delete" msgstr "Verwijderen" @@ -1322,571 +1346,425 @@ msgstr "Bestand uploaden" msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/dir_fns.php:88 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 +msgid "Tags" +msgstr "Tags" -#: ../../include/dir_fns.php:89 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../include/taxonomy.php:274 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/dir_fns.php:90 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../include/taxonomy.php:299 +msgid "have" +msgstr "heb" -#: ../../include/dir_fns.php:91 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../include/taxonomy.php:299 +msgid "has" +msgstr "heeft" -#: ../../include/dir_fns.php:92 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" +#: ../../include/taxonomy.php:300 +msgid "want" +msgstr "wil" -#: ../../include/dir_fns.php:93 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/taxonomy.php:300 +msgid "wants" +msgstr "wil" -#: ../../include/dir_fns.php:95 -msgid "Sort" -msgstr "Sorteren" +#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 +msgid "like" +msgstr "vind dit leuk" -#: ../../include/dir_fns.php:111 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" +#: ../../include/taxonomy.php:301 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/dir_fns.php:113 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" +#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "vind dit niet leuk" -#: ../../include/dir_fns.php:115 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/taxonomy.php:302 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/features.php:38 +msgid "General Features" +msgstr "Algemene functies" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/features.php:40 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" -#: ../../include/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/features.php:41 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/features.php:42 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/features.php:43 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:44 +msgid "Web Pages" +msgstr "Webpagina's" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:45 +msgid "Private Notes" +msgstr "Privé-aantekeningen" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1552 -msgid "Email" -msgstr "E-mail" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" +msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:50 +msgid "Extended Identity Sharing" +msgstr "Uitgebreid identiteit delen" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:50 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:51 +msgid "Expert Mode" +msgstr "Expertmodus" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../include/features.php:51 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/apps.php:129 ../../include/conversation.php:1599 -#: ../../include/nav.php:109 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../include/features.php:52 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Connecties" +#: ../../include/features.php:52 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 -msgid "Login" -msgstr "Inloggen" +#: ../../include/features.php:57 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../include/apps.php:132 ../../include/nav.php:208 -#: ../../mod/manage.php:150 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../include/features.php:59 +msgid "Use Markdown" +msgstr "Markdown gebruiken" -#: ../../include/apps.php:133 ../../include/nav.php:182 -msgid "Matrix" -msgstr "Matrix" +#: ../../include/features.php:59 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." -#: ../../include/apps.php:136 ../../include/conversation.php:1610 -#: ../../include/nav.php:113 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../include/features.php:60 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../include/apps.php:137 ../../include/nav.php:185 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" +#: ../../include/features.php:60 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. " -#: ../../include/apps.php:138 ../../include/identity.php:1125 -#: ../../include/identity.php:1242 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" +#: ../../include/features.php:61 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/apps.php:139 ../../include/conversation.php:1564 -#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" +#: ../../include/features.php:62 +msgid "Even More Encryption" +msgstr "Extra encryptie" -#: ../../include/apps.php:140 ../../include/nav.php:204 -#: ../../mod/events.php:446 -msgid "Events" -msgstr "Agenda" +#: ../../include/features.php:62 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/apps.php:141 ../../include/nav.php:168 -#: ../../mod/directory.php:325 -msgid "Directory" -msgstr "Kanalengids" +#: ../../include/features.php:63 +msgid "Enable voting tools" +msgstr "Stemmen inschakelen" -#: ../../include/apps.php:142 ../../include/nav.php:160 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hulp" +#: ../../include/features.php:63 +msgid "Provide a class of post which others can vote on" +msgstr "Creëert een berichtenoptie zodat anderen op jouw vraag kunnen stemmen." -#: ../../include/apps.php:143 ../../include/nav.php:196 -msgid "Mail" -msgstr "Privéberichten" +#: ../../include/features.php:64 +msgid "Flag Adult Photos" +msgstr "Markeer foto's als voor volwassenen" -#: ../../include/apps.php:144 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" +#: ../../include/features.php:64 +msgid "Provide photo edit option to hide adult photos from default album view" +msgstr "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen" -#: ../../include/apps.php:145 ../../include/conversation.php:949 -msgid "Poke" -msgstr "Aanstoten" +#: ../../include/features.php:69 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/apps.php:146 ../../include/nav.php:103 -msgid "Chat" -msgstr "Chatten" +#: ../../include/features.php:70 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../include/features.php:70 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../include/features.php:71 +msgid "Collections Filter" +msgstr "Filter op collecties" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../include/features.php:71 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../include/features.php:72 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Extra functies" +#: ../../include/features.php:73 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/apps.php:153 -msgid "Language" -msgstr "Taal" +#: ../../include/features.php:73 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Bericht" +#: ../../include/features.php:74 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/apps.php:155 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../include/features.php:74 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:603 -msgid "Update" -msgstr "Bijwerken" +#: ../../include/features.php:75 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installeren" +#: ../../include/features.php:75 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../include/features.php:76 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../include/features.php:76 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Geen bronbestand." +#: ../../include/features.php:81 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" +#: ../../include/features.php:82 +msgid "Tagging" +msgstr "Taggen" -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" +#: ../../include/features.php:82 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te taggen" -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" +#: ../../include/features.php:83 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." +#: ../../include/features.php:83 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." +#: ../../include/features.php:84 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." +#: ../../include/features.php:85 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Pad niet beschikbaar." +#: ../../include/features.php:85 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Padnaam leeg" +#: ../../include/features.php:86 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +#: ../../include/features.php:86 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Pad niet gevonden" +#: ../../include/features.php:87 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." +#: ../../include/features.php:87 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../include/items.php:382 ../../mod/like.php:270 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../index.php:392 +msgid "Permission denied" +msgstr "Toegang geweigerd" -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:600 -#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 -#: ../../mod/filestorage.php:146 -msgid "Permissions" -msgstr "Permissies" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1117 -msgid "Close" -msgstr "Sluiten" - -#: ../../include/activities.php:39 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:651 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:643 -msgid "Select" -msgstr "Kies" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:991 ../../mod/photos.php:1003 -msgid "View all" -msgstr "Toon alles" - -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:194 ../../include/conversation.php:658 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" - -#: ../../include/ItemObject.php:195 ../../include/conversation.php:659 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Tag toevoegen" +#: ../../include/items.php:979 ../../include/items.php:1024 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../include/items.php:1181 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../include/items.php:1183 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Delen" +#: ../../include/items.php:1185 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "delen" +#: ../../include/items.php:1187 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/ItemObject.php:243 +#: ../../include/items.php:1189 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../include/items.php:1191 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/ItemObject.php:260 -msgid "to" -msgstr "aan" +#: ../../include/items.php:1193 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." -#: ../../include/ItemObject.php:261 -msgid "via" -msgstr "via" +#: ../../include/items.php:1195 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/ItemObject.php:262 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../include/items.php:4013 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:27 +#: ../../mod/viewsrc.php:20 ../../mod/admin.php:172 ../../mod/admin.php:925 +#: ../../mod/admin.php:1128 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../include/ItemObject.php:263 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../include/items.php:4466 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." -#: ../../include/ItemObject.php:274 ../../include/conversation.php:703 -#, php-format -msgid " from %s" -msgstr " van %s" +#: ../../include/items.php:4481 +msgid "Collection is empty." +msgstr "Collectie is leeg" -#: ../../include/ItemObject.php:277 ../../include/conversation.php:706 +#: ../../include/items.php:4488 #, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" +msgid "Collection: %s" +msgstr "Collectie: %s" -#: ../../include/ItemObject.php:278 ../../include/conversation.php:707 +#: ../../include/items.php:4499 #, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/ItemObject.php:299 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:300 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:309 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../include/items.php:4502 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/ItemObject.php:325 ../../include/conversation.php:724 -#: ../../include/conversation.php:1176 ../../mod/editblock.php:152 -#: ../../mod/photos.php:946 ../../mod/editpost.php:121 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Even wachten" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/ItemObject.php:626 ../../mod/photos.php:962 -#: ../../mod/photos.php:1072 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:964 ../../mod/photos.php:1074 -msgid "Comment" -msgstr "Reactie" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/ItemObject.php:629 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/events.php:602 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/settings.php:577 -#: ../../mod/settings.php:689 ../../mod/settings.php:718 -#: ../../mod/settings.php:741 ../../mod/settings.php:823 -#: ../../mod/settings.php:1019 ../../mod/photos.php:565 -#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 -#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 -#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/connect.php:93 ../../mod/appman.php:99 -#: ../../mod/mood.php:135 ../../mod/mail.php:355 ../../mod/connedit.php:631 -#: ../../mod/xchan.php:11 ../../mod/profiles.php:667 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/ItemObject.php:630 -msgid "Bold" -msgstr "Vet" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/ItemObject.php:631 -msgid "Italic" -msgstr "Cursief" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/ItemObject.php:632 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/ItemObject.php:633 -msgid "Quote" -msgstr "Citeren" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:755 +#: ../../mod/admin.php:764 ../../boot.php:1554 +msgid "Email" +msgstr "E-mail" -#: ../../include/ItemObject.php:634 -msgid "Code" -msgstr "Broncode" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/ItemObject.php:635 -msgid "Image" -msgstr "Afbeelding" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/ItemObject.php:636 -msgid "Link" -msgstr "Link" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/ItemObject.php:637 -msgid "Video" -msgstr "Video" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/ItemObject.php:641 ../../include/conversation.php:1202 -#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" #: ../../include/message.php:18 msgid "No recipient provided." @@ -1904,1550 +1782,1547 @@ msgstr "Afzender kan niet bepaald worden." msgid "Stored post could not be verified." msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/zot.php:1900 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "RedMatrix-notificatie" +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "RedMatrix" +#: ../../include/follow.php:135 ../../include/follow.php:197 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Bedankt," +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "lokale account niet gevonden." -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/follow.php:215 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../include/comanche.php:35 ../../mod/admin.php:361 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standaard" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "een privébericht" +#: ../../include/datetime.php:212 ../../mod/events.php:633 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Vereist" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." +#: ../../include/datetime.php:231 +msgid "never" +msgstr "nooit" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" +#: ../../include/datetime.php:237 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" +#: ../../include/datetime.php:240 +msgid "year" +msgstr "jaar" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" +#: ../../include/datetime.php:240 +msgid "years" +msgstr "jaren" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notificatie] Reactie op conversatie #%1$d door %2$s" +#: ../../include/datetime.php:241 +msgid "month" +msgstr "maand" -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." +#: ../../include/datetime.php:241 +msgid "months" +msgstr "maanden" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." +#: ../../include/datetime.php:242 +msgid "week" +msgstr "week" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" +#: ../../include/datetime.php:242 +msgid "weeks" +msgstr "weken" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" +#: ../../include/datetime.php:243 +msgid "day" +msgstr "dag" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" +#: ../../include/datetime.php:243 +msgid "days" +msgstr "dagen" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificatie] %s heeft je genoemd" +#: ../../include/datetime.php:244 +msgid "hour" +msgstr "uur" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" +#: ../../include/datetime.php:244 +msgid "hours" +msgstr "uren" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." +#: ../../include/datetime.php:245 +msgid "minute" +msgstr "minuut" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notificatie] %1$s heeft je aangestoten" +#: ../../include/datetime.php:245 +msgid "minutes" +msgstr "minuten" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" +#: ../../include/datetime.php:246 +msgid "second" +msgstr "seconde" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." +#: ../../include/datetime.php:246 +msgid "seconds" +msgstr "seconden" -#: ../../include/enotify.php:243 +#: ../../include/datetime.php:255 #, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht getagd" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/enotify.php:244 +#: ../../include/datetime.php:463 #, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/enotify.php:245 +#: ../../include/datetime.php:464 #, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notificatie] Connectieverzoek ontvangen" +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../include/enotify.php:259 +#: ../../include/Contact.php:215 ../../mod/admin.php:675 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" +#: ../../include/bb2diaspora.php:349 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." +#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" +#: ../../include/bb2diaspora.php:430 +msgid "Redmatrix event notification:" +msgstr "Notificatie RedMatrix-gebeurtenis:" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" +#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 +msgid "Starts:" +msgstr "Start:" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." +#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Naam:" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/enotify.php:284 +#: ../../include/zot.php:2063 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Notificatie]" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Uitgelogd." +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../include/network.php:613 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 -msgid "Advanced" -msgstr "Geavanceerd" +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Home" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/nav.php:91 ../../include/conversation.php:937 +#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:321 ../../mod/directory.php:326 -msgid "Find" -msgstr "Vinden" +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:325 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" +#: ../../include/nav.php:97 ../../include/conversation.php:1586 +#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/nav.php:103 ../../include/apps.php:146 +msgid "Chat" +msgstr "Chatten" -#: ../../include/conversation.php:126 ../../mod/like.php:101 -msgid "channel" -msgstr "kanaal" +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1965 -#: ../../mod/like.php:348 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../include/nav.php:109 ../../include/conversation.php:1621 +#: ../../include/apps.php:129 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/conversation.php:167 ../../mod/like.php:350 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +#: ../../include/nav.php:113 ../../include/conversation.php:1632 +#: ../../include/apps.php:136 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 +msgid "Login" +msgstr "Inloggen" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/conversation.php:679 +#: ../../include/nav.php:134 #, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/conversation.php:694 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/conversation.php:695 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" -#: ../../include/conversation.php:722 -msgid "View in context" -msgstr "In context bekijken" +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/conversation.php:844 -msgid "remove" -msgstr "verwijderen" +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 +msgid "Register" +msgstr "Registreren" -#: ../../include/conversation.php:848 ../../include/nav.php:249 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/conversation.php:849 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 +#: ../../mod/help.php:72 +msgid "Help" +msgstr "Hulp" -#: ../../include/conversation.php:940 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/conversation.php:941 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/conversation.php:942 -msgid "View Status" -msgstr "Status weergeven" +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" -#: ../../include/conversation.php:943 ../../include/nav.php:91 -#: ../../mod/connedit.php:476 ../../mod/connedit.php:612 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../include/nav.php:168 ../../include/apps.php:141 +#: ../../mod/directory.php:338 +msgid "Directory" +msgstr "Kanalengids" -#: ../../include/conversation.php:944 -msgid "View Photos" -msgstr "Foto's weergeven" +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/conversation.php:945 -msgid "Matrix Activity" -msgstr "Activiteit in de RedMatrix" +#: ../../include/nav.php:182 ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/conversation.php:947 -msgid "Edit Contact" -msgstr "Contact bewerken" +#: ../../include/nav.php:182 +msgid "Your matrix" +msgstr "Jouw matrix" -#: ../../include/conversation.php:948 -msgid "Send PM" -msgstr "Privébericht verzenden" +#: ../../include/nav.php:183 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" -#: ../../include/conversation.php:1047 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../include/nav.php:185 ../../include/apps.php:137 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" -#: ../../include/conversation.php:1047 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../include/nav.php:185 +msgid "Channel home" +msgstr "Tijdlijn kanaal" -#: ../../include/conversation.php:1051 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." +#: ../../include/nav.php:186 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/conversation.php:1053 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." +#: ../../include/nav.php:189 ../../mod/connections.php:407 +msgid "Connections" +msgstr "Connecties" -#: ../../include/conversation.php:1059 -msgid "and" -msgstr "en" +#: ../../include/nav.php:192 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/conversation.php:1062 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" +#: ../../include/nav.php:192 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/conversation.php:1063 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +#: ../../include/nav.php:193 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/conversation.php:1063 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +#: ../../include/nav.php:194 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/conversation.php:1120 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/nav.php:196 ../../include/apps.php:143 +msgid "Mail" +msgstr "Privéberichten" -#: ../../include/conversation.php:1121 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" +#: ../../include/nav.php:196 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/conversation.php:1122 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" +#: ../../include/nav.php:197 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/conversation.php:1123 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" +#: ../../include/nav.php:198 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/conversation.php:1124 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/nav.php:199 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/conversation.php:1125 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../include/nav.php:200 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/conversation.php:1126 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../include/nav.php:204 ../../include/apps.php:140 +#: ../../mod/events.php:472 +msgid "Events" +msgstr "Agenda" -#: ../../include/conversation.php:1127 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../include/nav.php:204 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/conversation.php:1151 ../../mod/editblock.php:198 -#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 -msgid "Share" -msgstr "Delen" +#: ../../include/nav.php:205 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/conversation.php:1153 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel van paginalink" +#: ../../include/nav.php:206 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/conversation.php:1156 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../include/nav.php:208 ../../include/apps.php:132 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../include/conversation.php:1157 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Foto uploaden" +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/conversation.php:1158 -msgid "upload photo" -msgstr "foto uploaden" +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/conversation.php:1159 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../include/nav.php:218 ../../mod/admin.php:124 +msgid "Admin" +msgstr "Beheer" -#: ../../include/conversation.php:1160 -msgid "attach file" -msgstr "bestand toevoegen" +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/conversation.php:1161 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Weblink invoegen" +#: ../../include/nav.php:249 ../../include/conversation.php:842 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/conversation.php:1162 -msgid "web link" -msgstr "Weblink" +#: ../../include/nav.php:254 +msgid "@name, #tag, content" +msgstr "@kanaal, #label, inhoud" -#: ../../include/conversation.php:1163 -msgid "Insert video link" -msgstr "Videolink invoegen" +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/conversation.php:1164 -msgid "video link" -msgstr "videolink" +#: ../../include/security.php:357 +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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/conversation.php:1165 -msgid "Insert audio link" -msgstr "Audiolink invoegen" +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " -#: ../../include/conversation.php:1166 -msgid "audio link" -msgstr "audiolink" +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" -#: ../../include/conversation.php:1167 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Locatie instellen" +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../include/conversation.php:1168 -msgid "set location" -msgstr "locatie instellen" +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" -#: ../../include/conversation.php:1169 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/conversation.php:1170 -msgid "clear location" -msgstr "locatie wissen" +#: ../../include/dir_fns.php:96 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/conversation.php:1172 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../include/dir_fns.php:97 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../include/conversation.php:1175 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../include/dir_fns.php:98 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../include/conversation.php:1177 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Permissies" +#: ../../include/dir_fns.php:99 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../include/conversation.php:1178 -msgid "permissions" -msgstr "permissies" +#: ../../include/dir_fns.php:100 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../include/conversation.php:1185 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Openbaar bericht" +#: ../../include/dir_fns.php:101 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/conversation.php:1187 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" +#: ../../include/dir_fns.php:103 +msgid "Sort" +msgstr "Sorteren" -#: ../../include/conversation.php:1200 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../include/dir_fns.php:119 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" -#: ../../include/conversation.php:1204 ../../mod/events.php:584 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" +#: ../../include/dir_fns.php:121 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" -#: ../../include/conversation.php:1205 ../../mod/events.php:583 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -#: ../../mod/settings.php:578 ../../mod/settings.php:604 -#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annuleren" +#: ../../include/dir_fns.php:123 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/conversation.php:1449 -msgid "Discover" -msgstr "Ontdekken" +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/conversation.php:1452 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 +msgid "Private Message" +msgstr "Privébericht" -#: ../../include/conversation.php:1457 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +msgid "Select" +msgstr "Kies" -#: ../../include/conversation.php:1460 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../include/conversation.php:1464 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Aanwezig" -#: ../../include/conversation.php:1467 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Niet aanwezig" -#: ../../include/conversation.php:1475 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Mogelijk aanwezig" -#: ../../include/conversation.php:1481 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Nieuw" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Eens" -#: ../../include/conversation.php:1484 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Oneens" -#: ../../include/conversation.php:1490 -msgid "Starred" -msgstr "Met ster" +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Onthouding" -#: ../../include/conversation.php:1493 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1667 ../../mod/photos.php:997 +#: ../../mod/photos.php:1009 +msgid "View all" +msgstr "Toon alles" -#: ../../include/conversation.php:1500 -msgid "Spam" -msgstr "Spam" +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 +#: ../../mod/photos.php:1006 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../include/conversation.php:1503 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../include/conversation.php:1543 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanaal" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../include/conversation.php:1546 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../include/conversation.php:1555 -msgid "About" -msgstr "Over" +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "met ster" -#: ../../include/conversation.php:1558 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1576 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1586 ../../include/conversation.php:1589 -msgid "Chatrooms" -msgstr "Chatkanalen" +#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" -#: ../../include/conversation.php:1602 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" -#: ../../include/conversation.php:1613 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag toevoegen" -#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" +#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Delen" -#: ../../include/group.php:276 -msgid "edit" -msgstr "bewerken" +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "delen" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collecties" +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Collectie bewerken" +#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" +#: ../../include/ItemObject.php:298 +msgid "to" +msgstr "aan" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" +#: ../../include/ItemObject.php:299 +msgid "via" +msgstr "via" -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/like.php:258 ../../mod/profperm.php:23 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../include/ItemObject.php:300 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/ItemObject.php:301 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 +#, php-format +msgid " from %s" +msgstr " van %s" -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/ItemObject.php:337 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +#: ../../include/ItemObject.php:338 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/ItemObject.php:347 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/items.php:3993 ../../mod/display.php:32 -#: ../../mod/viewsrc.php:20 ../../mod/filestorage.php:27 -#: ../../mod/thing.php:76 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 +#: ../../mod/photos.php:1131 +msgid "Close" +msgstr "Sluiten" -#: ../../include/items.php:4446 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 +#: ../../include/conversation.php:1198 ../../mod/editblock.php:152 +#: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:183 ../../mod/photos.php:944 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 +msgid "Please wait" +msgstr "Even wachten" -#: ../../include/items.php:4461 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 +#: ../../mod/photos.php:1078 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../include/items.php:4468 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +#: ../../include/ItemObject.php:669 +msgid "Bold" +msgstr "Vet" -#: ../../include/items.php:4479 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../include/ItemObject.php:670 +msgid "Italic" +msgstr "Cursief" -#: ../../include/items.php:4482 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/ItemObject.php:671 +msgid "Underline" +msgstr "Onderstrepen" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/ItemObject.php:672 +msgid "Quote" +msgstr "Citeren" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" +#: ../../include/ItemObject.php:673 +msgid "Code" +msgstr "Broncode" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." +#: ../../include/ItemObject.php:674 +msgid "Image" +msgstr "Afbeelding" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/ItemObject.php:675 +msgid "Link" +msgstr "Link" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/ItemObject.php:676 +msgid "Video" +msgstr "Video" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 +#: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/api.php:1081 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/network.php:613 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/account.php:313 +#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 +#: ../../mod/like.php:383 #, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 +#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 +#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 +#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 +#: ../../include/bbcode.php:733 +msgid "Image/photo" +msgstr "Afbeelding/foto" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" +#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" +#: ../../include/bbcode.php:168 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" +#: ../../include/bbcode.php:174 +msgid "QR code" +msgstr "QR-code" -#: ../../include/account.php:440 +#: ../../include/bbcode.php:223 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." +#: ../../include/bbcode.php:225 +msgid "post" +msgstr "bericht" -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." +#: ../../include/bbcode.php:447 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." +#: ../../include/bbcode.php:662 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../include/bbcode.php:682 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/datetime.php:230 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:236 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/datetime.php:239 -msgid "year" -msgstr "jaar" +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../include/datetime.php:239 -msgid "years" -msgstr "jaren" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "RedMatrix-notificatie" -#: ../../include/datetime.php:240 -msgid "month" -msgstr "maand" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "RedMatrix" -#: ../../include/datetime.php:240 -msgid "months" -msgstr "maanden" +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Bedankt," -#: ../../include/datetime.php:241 -msgid "week" -msgstr "week" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" -#: ../../include/datetime.php:241 -msgid "weeks" -msgstr "weken" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/datetime.php:242 -msgid "day" -msgstr "dag" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../include/datetime.php:242 -msgid "days" -msgstr "dagen" +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." -#: ../../include/datetime.php:243 -msgid "hour" -msgstr "uur" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." -#: ../../include/datetime.php:243 -msgid "hours" -msgstr "uren" +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "een privébericht" -#: ../../include/datetime.php:244 -msgid "minute" -msgstr "minuut" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." -#: ../../include/datetime.php:244 -msgid "minutes" -msgstr "minuten" +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" -#: ../../include/datetime.php:245 -msgid "second" -msgstr "seconde" +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" -#: ../../include/datetime.php:245 -msgid "seconds" -msgstr "seconden" +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" -#: ../../include/datetime.php:254 +#: ../../include/enotify.php:172 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Notificatie] Reactie op conversatie #%1$d door %2$s" -#: ../../include/datetime.php:462 +#: ../../include/enotify.php:173 #, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." -#: ../../include/datetime.php:463 +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notificatie] %s heeft je genoemd" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notificatie] %1$s heeft je aangestoten" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notificatie] %s heeft jouw bericht getagd" -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "lokale account niet gevonden." +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notificatie] Connectieverzoek ontvangen" -#: ../../include/identity.php:31 ../../mod/item.php:1071 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" -#: ../../include/identity.php:201 ../../include/dimport.php:34 +#: ../../include/enotify.php:274 +#, php-format msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Naam:" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/webpages.php:29 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/hcard.php:8 -#: ../../mod/filestorage.php:53 ../../mod/layouts.php:29 -#: ../../mod/connect.php:13 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../include/enotify.php:499 +msgid "[Red:Notify]" +msgstr "[Red:Notificatie]" -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profielen" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:424 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 +#: ../../mod/directory.php:334 ../../mod/directory.php:339 +msgid "Find" +msgstr "Vinden" -#: ../../include/identity.php:898 ../../include/identity.php:1135 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:338 +#: ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/identity.php:899 ../../include/identity.php:1179 -msgid "Status:" -msgstr "Status:" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../include/identity.php:900 ../../include/identity.php:1190 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/identity.php:979 ../../include/identity.php:1059 -#: ../../mod/ping.php:329 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/identity.php:980 ../../include/identity.php:1060 -msgid "F d" -msgstr "d F" +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/identity.php:1025 ../../include/identity.php:1100 -#: ../../mod/ping.php:351 -msgid "[today]" -msgstr "[vandaag]" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../include/identity.php:1037 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" -#: ../../include/identity.php:1038 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/identity.php:1093 -msgid "[No description]" -msgstr "[Geen omschrijving]" +#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 +#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 +#: ../../mod/photos.php:559 ../../mod/photos.php:916 +msgid "Permissions" +msgstr "Permissies" -#: ../../include/identity.php:1111 -msgid "Event Reminders" -msgstr "Herinneringen" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "kanaal" -#: ../../include/identity.php:1112 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" +#: ../../include/conversation.php:167 ../../mod/like.php:385 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../include/identity.php:1133 ../../mod/settings.php:1025 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/identity.php:1140 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/identity.php:1164 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../include/identity.php:1165 -msgid "j F" -msgstr "F j" +#: ../../include/conversation.php:556 ../../mod/photos.php:978 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/identity.php:1172 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/conversation.php:556 ../../mod/photos.php:978 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/identity.php:1176 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../include/identity.php:1185 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../include/identity.php:1188 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/conversation.php:557 ../../mod/photos.php:979 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" -#: ../../include/identity.php:1192 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../include/identity.php:1194 -msgid "Tags:" -msgstr "Tags:" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../include/identity.php:1196 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/conversation.php:558 ../../mod/photos.php:980 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../include/identity.php:1198 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/conversation.php:680 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/identity.php:1200 -msgid "About:" -msgstr "Over:" +#: ../../include/conversation.php:695 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../include/identity.php:1202 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/conversation.php:696 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../include/identity.php:1204 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/conversation.php:723 +msgid "View in context" +msgstr "In context bekijken" -#: ../../include/identity.php:1206 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "verwijderen" -#: ../../include/identity.php:1208 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../include/identity.php:1210 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../include/identity.php:1212 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../include/identity.php:1214 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "Status weergeven" -#: ../../include/identity.php:1216 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "Foto's weergeven" -#: ../../include/identity.php:1218 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "Activiteit in de RedMatrix" -#: ../../include/identity.php:1220 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/conversation.php:941 +msgid "Edit Contact" +msgstr "Contact bewerken" -#: ../../include/identity.php:1222 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/conversation.php:942 +msgid "Send PM" +msgstr "Privébericht verzenden" -#: ../../include/identity.php:1224 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/conversation.php:943 ../../include/apps.php:145 +msgid "Poke" +msgstr "Aanstoten" -#: ../../include/identity.php:1244 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/conversation.php:1061 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Uitloggen" +#: ../../include/conversation.php:1061 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/conversation.php:1065 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" +#: ../../include/conversation.php:1067 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" +#: ../../include/conversation.php:1073 +msgid "and" +msgstr "en" -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/conversation.php:1076 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../include/conversation.php:1077 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/conversation.php:1077 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/conversation.php:1136 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/conversation.php:1137 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/conversation.php:1138 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/conversation.php:1139 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/conversation.php:1140 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/conversation.php:1141 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/conversation.php:1142 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 +#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 +#: ../../mod/photos.php:943 ../../mod/layouts.php:168 +msgid "Share" +msgstr "Delen" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" +#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel van paginalink" -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/conversation.php:1175 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Registreren" +#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Upload photo" +msgstr "Foto uploaden" -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/conversation.php:1177 +msgid "upload photo" +msgstr "foto uploaden" -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/conversation.php:1179 +msgid "attach file" +msgstr "bestand toevoegen" -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" +#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 +#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Insert web link" +msgstr "Weblink invoegen" -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/conversation.php:1181 +msgid "web link" +msgstr "Weblink" -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Jouw matrix" +#: ../../include/conversation.php:1182 +msgid "Insert video link" +msgstr "Videolink invoegen" -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" +#: ../../include/conversation.php:1183 +msgid "video link" +msgstr "videolink" -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Tijdlijn kanaal" +#: ../../include/conversation.php:1184 +msgid "Insert audio link" +msgstr "Audiolink invoegen" -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/conversation.php:1185 +msgid "audio link" +msgstr "audiolink" -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Connecties" +#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 +#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "Locatie instellen" -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/conversation.php:1187 +msgid "set location" +msgstr "locatie instellen" -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 +msgid "Toggle voting" +msgstr "Stemmen in- of uitschakelen" -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../include/conversation.php:1192 +msgid "clear location" +msgstr "locatie wissen" -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 +#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 +#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 +#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "Permissies" -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../include/conversation.php:1200 +msgid "permissions" +msgstr "permissies" -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "Openbaar bericht" -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 +#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 +#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/conversation.php:1226 ../../mod/events.php:635 +#: ../../mod/editpost.php:154 +msgid "OK" +msgstr "OK" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/conversation.php:1227 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:134 ../../mod/events.php:634 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:155 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" +msgstr "Annuleren" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/conversation.php:1471 +msgid "Discover" +msgstr "Ontdekken" -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" +#: ../../include/conversation.php:1474 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/conversation.php:1479 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@kanaal, #label, inhoud" +#: ../../include/conversation.php:1482 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/conversation.php:1486 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/conversation.php:1489 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "iedereen" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/conversation.php:1497 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/conversation.php:1503 ../../mod/connections.php:212 +#: ../../mod/connections.php:225 ../../mod/menu.php:80 +msgid "New" +msgstr "Nieuw" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/conversation.php:1506 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/conversation.php:1512 +msgid "Starred" +msgstr "Met ster" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/conversation.php:1515 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/conversation.php:1522 +msgid "Spam" +msgstr "Spam" -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "geleden" +#: ../../include/conversation.php:1525 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/js_strings.php:23 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/conversation.php:1565 ../../mod/admin.php:894 +msgid "Channel" +msgstr "Kanaal" -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/conversation.php:1568 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../include/js_strings.php:25 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/conversation.php:1577 +msgid "About" +msgstr "Over" -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/conversation.php:1580 +msgid "Profile Details" +msgstr "Profiel" -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/conversation.php:1598 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "een dag" +#: ../../include/conversation.php:1624 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/conversation.php:1635 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/conversation.php:1698 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../include/conversation.php:1701 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/conversation.php:1704 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "%d jaren" +#: ../../include/conversation.php:1707 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" -#: ../../include/js_strings.php:35 -msgid " " -msgstr " " +#: ../../include/conversation.php:1710 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:1713 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 @@ -3499,6 +3374,13 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 +msgid "Other" +msgstr "Anders" + #: ../../include/profile_selectors.php:6 msgid "Undecided" msgstr "Nog niet beslist" @@ -3685,552 +3567,401 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Setup" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hubbeheerder" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Connecties" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../include/apps.php:144 ../../mod/mood.php:130 +msgid "Mood" +msgstr "Stemming" -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Onderzoeken" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Voorstellen" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Willekeurig kanaal" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Uitnodigen " -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "System check" +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Extra functies" -#: ../../mod/setup.php:265 ../../mod/events.php:449 ../../mod/photos.php:836 -msgid "Next" -msgstr "Volgende" +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Taal" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Check again" +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Bericht" -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Database connection" +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profielfoto" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "In order to install RedMatrix we need to know how to connect to your database." +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:609 +msgid "Update" +msgstr "Bijwerken" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installeren" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Aanschaffen" -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Default is localhost" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Database Port" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Database Login Password" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Database Name" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Database Type" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Hub administrator email address" - -#: ../../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 "Your account email address must match this in order to use the web admin panel." - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Hub URL" - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." - -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Hub settings" - -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." - -#: ../../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 "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." - -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP executable path" - -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." - -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Command line PHP" - -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." - -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +#: ../../include/account.php:674 ../../include/account.php:676 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../include/account.php:682 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../include/account.php:687 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Ingesloten inhoud" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../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 "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." +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" -#: ../../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 "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." +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../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 "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." +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" -#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../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 "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../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 "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." +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" -#: ../../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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../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 "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" +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store is writable" +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../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 "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" -#: ../../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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" -#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" -#: ../../mod/setup.php:590 +#: ../../include/permissions.php:48 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../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 "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." +#: ../../include/permissions.php:810 +msgid "Social Networking" +msgstr "Sociaal netwerk" -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" -#: ../../mod/setup.php:660 -msgid "

        What next

        " -msgstr "

        Wat nu

        " +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Restricted" +msgstr "Beperkt zichtbaar" -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +msgid "Private" +msgstr "Verborgen kanaal" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../include/permissions.php:811 +msgid "Community Forum" +msgstr "Groepsforum" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../include/permissions.php:812 +msgid "Feed Republish" +msgstr "Feed herpubliceren" -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../include/permissions.php:813 +msgid "Special Purpose" +msgstr "Speciaal doel" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../include/permissions.php:813 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." +#: ../../include/permissions.php:813 +msgid "Group Repository" +msgstr "Groepsopslag" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../include/permissions.php:814 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" +#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" +#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" -#: ../../mod/register.php:207 ../../mod/admin.php:417 -msgid "Registration" -msgstr "Registratie" +#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Blok verwijderen" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../mod/manage.php:151 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Collectie is leeg" +#: ../../mod/manage.php:156 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Collectie: " +#: ../../mod/manage.php:157 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Connectie: " +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." +#: ../../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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanaal exporteren" +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:873 +msgid "Remove" +msgstr "Verwijderen" -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." +#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +msgid "Not found." +msgstr "Niet gevonden." #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" @@ -4250,105 +3981,188 @@ msgid "" " and/or create new posts for you?" msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:396 +#: ../../mod/api.php:105 ../../mod/admin.php:400 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 msgid "Yes" msgstr "Ja" -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:394 +#: ../../mod/api.php:106 ../../mod/admin.php:398 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 msgid "No" msgstr "Nee" -#: ../../mod/events.php:85 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../mod/events.php:90 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." -#: ../../mod/events.php:104 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Tag verwijderd" -#: ../../mod/events.php:373 -msgid "l, F j" -msgstr "l j F" +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" -#: ../../mod/events.php:395 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" -#: ../../mod/events.php:447 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../mod/events.php:448 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Vorige" +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" -#: ../../mod/events.php:450 -msgid "Export" -msgstr "Exporteren" +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../mod/events.php:575 -msgid "Event details" -msgstr "Details van gebeurtenis" +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../mod/events.php:576 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../mod/events.php:578 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../mod/events.php:580 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../mod/events.php:580 ../../mod/events.php:596 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +msgid "or" +msgstr "of" -#: ../../mod/events.php:586 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../mod/events.php:588 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../mod/events.php:590 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../mod/events.php:592 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." -#: ../../mod/events.php:596 -msgid "Title:" -msgstr "Titel:" +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../mod/events.php:598 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/profile_photo.php:439 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Bloknaam" +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." #: ../../mod/block.php:27 ../../mod/page.php:33 msgid "Invalid item." @@ -4358,194 +4172,181 @@ msgstr "Ongeldig item." msgid "Channel not found." msgstr "Kanaal niet gevonden." -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:79 +#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 #: ../../mod/page.php:81 ../../index.php:241 msgid "Page not found." msgstr "Pagina niet gevonden." -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nieuw element" +#: ../../mod/like.php:143 +msgid "thing" +msgstr "ding" -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../mod/like.php:228 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" +#: ../../mod/like.php:387 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" +#: ../../mod/like.php:389 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nieuw menu-element" +#: ../../mod/like.php:391 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../mod/like.php:393 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1052 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../mod/like.php:395 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Linktekst" +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL of link" +#: ../../mod/like.php:481 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" +#: ../../mod/like.php:482 +msgid "Thank you." +msgstr "Bedankt" -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" +#: ../../mod/events.php:87 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Volgorde in lijst" +#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" +#: ../../mod/events.php:96 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../mod/events.php:114 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../mod/events.php:396 +msgid "l, F j" +msgstr "l j F" -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../mod/events.php:418 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../mod/events.php:419 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Wijzigen" +#: ../../mod/events.php:473 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +#: ../../mod/events.php:474 ../../mod/photos.php:827 +msgid "Previous" +msgstr "Vorige" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 +msgid "Next" +msgstr "Volgende" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/events.php:476 +msgid "Export" +msgstr "Exporteren" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" +#: ../../mod/events.php:504 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" -#: ../../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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." +#: ../../mod/events.php:507 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" +#: ../../mod/events.php:625 +msgid "Event details" +msgstr "Details van gebeurtenis" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" +#: ../../mod/events.php:626 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/events.php:628 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../mod/delegate.php:130 ../../mod/photos.php:873 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Verwijderen" +#: ../../mod/events.php:630 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" +#: ../../mod/events.php:637 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" +#: ../../mod/events.php:639 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../mod/events.php:641 ../../mod/events.php:642 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../mod/events.php:641 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../mod/events.php:643 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" +#: ../../mod/events.php:647 +msgid "Title:" +msgstr "Titel:" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../mod/events.php:649 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4561,1298 +4362,1537 @@ msgid "" msgstr "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." #: ../../mod/pubsites.php:25 +msgid "Rate this hub" +msgstr "Beoordeel deze hub" + +#: ../../mod/pubsites.php:26 msgid "Site URL" msgstr "URL hub" -#: ../../mod/pubsites.php:25 +#: ../../mod/pubsites.php:26 msgid "Access Type" msgstr "Toegangstype" -#: ../../mod/pubsites.php:25 +#: ../../mod/pubsites.php:26 msgid "Registration Policy" msgstr "Registratiebeleid" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 msgid "Location" msgstr "Locatie" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Bekijk hubbeoordelingen" -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Beoordeel" -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Bekijk beoordelingen" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." +#: ../../mod/network.php:84 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Collectie is leeg" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" +#: ../../mod/network.php:184 +msgid "Collection: " +msgstr "Collectie: " -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../mod/network.php:197 +msgid "Connection: " +msgstr "Connectie: " -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" +#: ../../mod/network.php:200 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../mod/connedit.php:75 ../../mod/connections.php:37 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../mod/connedit.php:99 ../../mod/connections.php:51 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" +#: ../../mod/connedit.php:204 ../../mod/connections.php:94 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../mod/chat.php:225 +#: ../../mod/connedit.php:206 ../../mod/connections.php:96 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../mod/connedit.php:252 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../mod/connedit.php:365 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../mod/connedit.php:379 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../mod/connedit.php:386 +msgid "Channel has been unblocked" +msgstr "Kanaal is gedeblokkeerd" + +#: ../../mod/connedit.php:387 +msgid "Channel has been blocked" +msgstr "Kanaal is geblokkeerd" + +#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 +#: ../../mod/connedit.php:443 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:398 +msgid "Channel has been unignored" +msgstr "Kanaal wordt niet meer genegeerd" + +#: ../../mod/connedit.php:399 +msgid "Channel has been ignored" +msgstr "Kanaal wordt genegeerd" + +#: ../../mod/connedit.php:410 +msgid "Channel has been unarchived" +msgstr "Kanaal is niet meer gearchiveerd" + +#: ../../mod/connedit.php:411 +msgid "Channel has been archived" +msgstr "Kanaal is gearchiveerd" + +#: ../../mod/connedit.php:422 +msgid "Channel has been unhidden" +msgstr "Kanaal is niet meer verborgen" + +#: ../../mod/connedit.php:423 +msgid "Channel has been hidden" +msgstr "Kanaal is verborgen" + +#: ../../mod/connedit.php:438 +msgid "Channel has been approved" +msgstr "Connectie/kanaal is geaccepteerd" + +#: ../../mod/connedit.php:439 +msgid "Channel has been unapproved" +msgstr "Connectie/kanaal is afgewezen" + +#: ../../mod/connedit.php:467 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:487 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" +#: ../../mod/connedit.php:491 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/connedit.php:494 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:498 +msgid "Recent Activity" +msgstr "Recente activiteit" + +#: ../../mod/connedit.php:501 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:761 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:760 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/connedit.php:510 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Negeren" + +#: ../../mod/connedit.php:517 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" + +#: ../../mod/connedit.php:520 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:520 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:523 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" + +#: ../../mod/connedit.php:526 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:526 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:529 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" + +#: ../../mod/connedit.php:536 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" + +#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" + +#: ../../mod/connedit.php:611 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" + +#: ../../mod/connedit.php:627 +#, php-format +msgid "Connections: settings for %s" +msgstr "Connecties: instellingen voor %s" + +#: ../../mod/connedit.php:628 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" + +#: ../../mod/connedit.php:632 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." + +#: ../../mod/connedit.php:636 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" + +#: ../../mod/connedit.php:637 ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" + +#: ../../mod/connedit.php:638 ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" + +#: ../../mod/connedit.php:645 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." +msgstr "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden." + +#: ../../mod/connedit.php:648 +msgid "inherited" +msgstr "geërfd" -#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +#: ../../mod/connedit.php:651 +msgid "Connection has no individual permissions!" +msgstr "Connectie heeft geen individuele permissies!" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../mod/connedit.php:652 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../mod/connedit.php:654 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../mod/connedit.php:655 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../mod/connedit.php:656 +msgid "Contact Information / Notes" +msgstr "Informatie/aantekeningen over connectie" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../mod/connedit.php:657 +msgid "Edit contact notes" +msgstr "Bewerk aantekeningen over contact" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +#: ../../mod/connedit.php:659 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../mod/connedit.php:660 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../mod/removeme.php:58 +#: ../../mod/connedit.php:662 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." +msgstr "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren." -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../mod/connedit.php:663 +msgid "Clear/Disable Automatic Permissions" +msgstr "Verwijderen/uitschakelen automatische permissies" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" +#: ../../mod/connedit.php:664 +msgid "Forum Members" +msgstr "Forumleden" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." +#: ../../mod/connedit.php:665 +msgid "Soapbox" +msgstr "Zeepkist" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../mod/connedit.php:666 +msgid "Full Sharing (typical social network permissions)" +msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" -#: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../mod/connedit.php:667 +msgid "Cautious Sharing " +msgstr "Voorzichtig delen" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../mod/connedit.php:668 +msgid "Follow Only" +msgstr "Alleen volgen" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../mod/connedit.php:669 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../mod/connedit.php:670 +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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../mod/connedit.php:671 +msgid "Advanced Permissions" +msgstr "Geavanceerde permissies" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../mod/connedit.php:672 +msgid "Simple Permissions (select one and submit)" +msgstr "Eenvoudige permissies (selecteer er één en opslaan)" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/connedit.php:676 #, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +msgid "Visit %s's profile - %s" +msgstr "Profiel van %s bezoeken - %s" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../mod/connedit.php:677 +msgid "Block/Unblock contact" +msgstr "Connectie blokkeren/deblokkeren" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../mod/connedit.php:678 +msgid "Ignore contact" +msgstr "Connectie negeren" -#: ../../mod/lostpass.php:85 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../mod/connedit.php:679 +msgid "Repair URL settings" +msgstr "URL-instellingen repareren" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../mod/connedit.php:680 +msgid "View conversations" +msgstr "Conversaties weergeven" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../mod/connedit.php:682 +msgid "Delete contact" +msgstr "Connectie verwijderen" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../mod/connedit.php:686 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../mod/connedit.php:688 +msgid "Update public posts" +msgstr "Openbare berichten updaten" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +#: ../../mod/connedit.php:690 +msgid "Update now" +msgstr "Nu updaten" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../mod/connedit.php:696 +msgid "Currently blocked" +msgstr "Momenteel geblokkeerd" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../mod/connedit.php:697 +msgid "Currently ignored" +msgstr "Momenteel genegeerd" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../mod/connedit.php:698 +msgid "Currently archived" +msgstr "Momenteel gearchiveerd" -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../mod/connedit.php:699 +msgid "Currently pending" +msgstr "Moeten nog geaccepteerd of afgewezen worden" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../mod/dav.php:121 +msgid "RedMatrix channel" +msgstr "RedMatrix-kanaal" -#: ../../mod/item.php:163 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" -#: ../../mod/item.php:422 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" -#: ../../mod/item.php:464 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." -#: ../../mod/item.php:858 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" -#: ../../mod/item.php:1076 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" -#: ../../mod/item.php:1082 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" -#: ../../mod/connections.php:37 ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" -#: ../../mod/connections.php:51 ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" -#: ../../mod/connections.php:94 ../../mod/connedit.php:197 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" -#: ../../mod/connections.php:96 ../../mod/connedit.php:199 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Genegeerd" +#: ../../mod/siteinfo.php:106 +#, php-format +msgid "Version %s" +msgstr "Versie %s" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Verborgen" +#: ../../mod/siteinfo.php:127 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../mod/siteinfo.php:140 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alles" +#: ../../mod/siteinfo.php:149 +msgid "Red" +msgstr "Red" -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Nieuwe kanalen voorstellen" +#: ../../mod/siteinfo.php:150 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../mod/siteinfo.php:152 +msgid "Tag: " +msgstr "Tag: " -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../mod/siteinfo.php:154 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../mod/siteinfo.php:157 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../mod/siteinfo.php:158 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Niet geblokkeerd" +#: ../../mod/siteinfo.php:159 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Toon alleen niet geblokkeerde connecties" +#: ../../mod/siteinfo.php:162 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../mod/siteinfo.php:164 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hulp:" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Niet gevonden" -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "RedMatrix Server - Setup" -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../mod/setup.php:183 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Zoeken naar: " +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Blok verwijderen" +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "System check" -#: ../../mod/editblock.php:147 ../../mod/editpost.php:116 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "Check again" -#: ../../mod/editblock.php:148 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "Database connection" -#: ../../mod/editblock.php:149 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "In order to install RedMatrix we need to know how to connect to your database." -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Blok verwijderen" +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../mod/setup.php:296 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../mod/settings.php:222 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "Default is localhost" -#: ../../mod/settings.php:226 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "Database Port" -#: ../../mod/settings.php:240 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../mod/settings.php:242 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../mod/settings.php:256 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../mod/settings.php:259 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "Database Name" -#: ../../mod/settings.php:268 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Database Type" -#: ../../mod/settings.php:507 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../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 "Your account email address must match this in order to use the web admin panel." -#: ../../mod/settings.php:579 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "Hub URL" -#: ../../mod/settings.php:580 ../../mod/settings.php:606 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../mod/settings.php:580 ../../mod/settings.php:581 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "Hub settings" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../mod/settings.php:582 +#: ../../mod/setup.php:396 msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -msgid "Icon url" -msgstr "URL van pictogram" +"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 "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." -#: ../../mod/settings.php:583 -msgid "Optional" -msgstr "Optioneel" +#: ../../mod/setup.php:400 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../mod/settings.php:594 -msgid "You can't edit this application." -msgstr "Je kan deze applicatie niet bewerken" +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../mod/settings.php:637 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../mod/setup.php:405 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../mod/settings.php:641 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../mod/settings.php:642 -msgid "No name" -msgstr "Geen naam" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../mod/settings.php:643 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/settings.php:654 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen ingesteld" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../mod/settings.php:662 -msgid "Feature Settings" -msgstr "Plugin-instellingen" +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/settings.php:685 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../mod/settings.php:686 -msgid "Password Settings" -msgstr "Wachtwoord-instellingen" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../mod/settings.php:687 -msgid "New Password:" -msgstr "Nieuw wachtwoord:" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../mod/settings.php:688 -msgid "Confirm:" -msgstr "Bevestigen:" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../mod/settings.php:688 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../mod/settings.php:690 ../../mod/settings.php:1026 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" -#: ../../mod/settings.php:692 -msgid "Remove this account from this server including all its channels" -msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../mod/settings.php:693 ../../mod/settings.php:1107 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "Uit" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/settings.php:709 -msgid "On" -msgstr "Aan" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../mod/settings.php:716 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../mod/settings.php:740 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../mod/settings.php:779 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../mod/settings.php:782 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../mod/settings.php:785 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobiel" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../mod/settings.php:821 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." -#: ../../mod/settings.php:827 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../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 "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." -#: ../../mod/settings.php:828 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../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 "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -#: ../../mod/settings.php:829 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." -#: ../../mod/settings.php:830 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../mod/settings.php:830 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../mod/settings.php:831 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../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 "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../mod/settings.php:831 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../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 "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder." -#: ../../mod/settings.php:832 -msgid "Don't show emoticons" -msgstr "Geen emoticons weergeven" +#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../mod/settings.php:833 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../mod/settings.php:834 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../mod/settings.php:837 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../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 "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../mod/settings.php:837 ../../mod/settings.php:838 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../mod/setup.php:547 +msgid "store is writable" +msgstr "store is writable" -#: ../../mod/settings.php:838 -msgid "Use blog/list mode on matrix page" -msgstr "Gebruik blog/lijst-modus op matrixpagina" +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../mod/settings.php:839 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../mod/settings.php:839 ../../mod/settings.php:840 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../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 "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../mod/settings.php:840 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" +#: ../../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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../mod/settings.php:874 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../mod/settings.php:875 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../mod/settings.php:876 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../mod/settings.php:877 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../mod/settings.php:878 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../mod/settings.php:879 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../mod/settings.php:880 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../mod/setup.php:625 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../mod/settings.php:881 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../mod/setup.php:660 +msgid "

        What next

        " +msgstr "

        Wat nu

        " -#: ../../mod/settings.php:955 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../mod/setup.php:661 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../mod/settings.php:960 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../mod/settings.php:964 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "of" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../mod/settings.php:969 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../mod/settings.php:1017 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../mod/settings.php:1024 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../mod/settings.php:1027 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" -#: ../../mod/settings.php:1028 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../mod/connections.php:192 ../../mod/connections.php:293 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../mod/settings.php:1028 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../mod/connections.php:197 ../../mod/connections.php:300 +msgid "Ignored" +msgstr "Genegeerd" -#: ../../mod/settings.php:1029 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../mod/connections.php:202 ../../mod/connections.php:314 +msgid "Hidden" +msgstr "Verborgen" -#: ../../mod/settings.php:1031 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../mod/connections.php:207 ../../mod/connections.php:307 +msgid "Archived" +msgstr "Gearchiveerd" -#: ../../mod/settings.php:1031 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +#: ../../mod/connections.php:231 ../../mod/connections.php:246 +msgid "All" +msgstr "Alles" -#: ../../mod/settings.php:1033 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../mod/connections.php:271 +msgid "Suggest new connections" +msgstr "Nieuwe kanalen voorstellen" -#: ../../mod/settings.php:1035 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../mod/connections.php:274 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../mod/settings.php:1037 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../mod/connections.php:277 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../mod/settings.php:1037 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" +#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../mod/settings.php:1039 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../mod/connections.php:283 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../mod/settings.php:1040 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +#: ../../mod/connections.php:286 +msgid "Unblocked" +msgstr "Niet geblokkeerd" -#: ../../mod/settings.php:1041 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" +#: ../../mod/connections.php:289 +msgid "Only show unblocked connections" +msgstr "Toon alleen niet geblokkeerde connecties" -#: ../../mod/settings.php:1042 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +#: ../../mod/connections.php:296 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../mod/settings.php:1043 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../mod/connections.php:303 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../mod/settings.php:1045 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../mod/connections.php:310 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../mod/settings.php:1045 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" +#: ../../mod/connections.php:317 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../mod/settings.php:1047 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" +#: ../../mod/connections.php:372 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/settings.php:1049 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" +#: ../../mod/connections.php:373 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../mod/settings.php:1049 -msgid "0 or blank prevents expiration" -msgstr "0 of leeg voorkomt het verlopen" +#: ../../mod/connections.php:411 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../mod/settings.php:1050 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../mod/connections.php:412 +msgid "Finding: " +msgstr "Zoeken naar: " -#: ../../mod/settings.php:1050 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" -#: ../../mod/settings.php:1051 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" -#: ../../mod/settings.php:1056 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" -#: ../../mod/settings.php:1062 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../mod/settings.php:1062 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" -#: ../../mod/settings.php:1065 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../mod/cloud.php:120 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" -#: ../../mod/settings.php:1066 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" +#: ../../mod/item.php:165 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../mod/settings.php:1067 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../mod/item.php:424 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../mod/settings.php:1068 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../mod/item.php:466 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/settings.php:1069 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../mod/item.php:865 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/settings.php:1070 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../mod/item.php:1083 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../mod/settings.php:1071 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../mod/item.php:1089 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../mod/settings.php:1072 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 +#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 +#: ../../mod/photos.php:429 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../mod/settings.php:1073 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../mod/settings.php:1074 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../mod/settings.php:1075 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../mod/settings.php:1076 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/settings.php:1077 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../mod/settings.php:1078 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../mod/settings.php:1081 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../mod/settings.php:1083 -msgid "Unseen matrix activity" -msgstr "Niet bekeken matrix-activiteit" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../mod/settings.php:1084 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../mod/settings.php:1085 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 -#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../mod/settings.php:1086 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../mod/settings.php:1087 -msgid "Events today" -msgstr "Gebeurtissen van vandaag" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" -#: ../../mod/settings.php:1088 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../mod/settings.php:1088 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" -#: ../../mod/settings.php:1089 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/settings.php:1090 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../mod/settings.php:1091 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../mod/settings.php:1092 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../mod/settings.php:1093 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" -#: ../../mod/settings.php:1094 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../mod/settings.php:1096 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../mod/settings.php:1096 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../mod/settings.php:1098 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../mod/acl.php:231 +msgid "network" +msgstr "netwerk" -#: ../../mod/settings.php:1099 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../mod/acl.php:241 +msgid "RSS" +msgstr "RSS" -#: ../../mod/settings.php:1102 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../mod/settings.php:1103 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../mod/settings.php:1105 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../mod/settings.php:1106 -msgid "Remove this channel" -msgstr "Verwijder dit kanaal" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulenaam:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Lay-out-hulp" #: ../../mod/filer.php:49 msgid "- select -" msgstr "- kies map -" -#: ../../mod/siteinfo.php:93 +#: ../../mod/import.php:25 #, php-format -msgid "Version %s" -msgstr "Versie %s" +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../mod/siteinfo.php:137 +#: ../../mod/import.php:106 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." - -#: ../../mod/siteinfo.php:139 -msgid "Tag: " -msgstr "Tag: " - -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" - -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../mod/siteinfo.php:145 -msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../mod/siteinfo.php:149 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album niet gevonden." +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Verwijder album" +#: ../../mod/import.php:493 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." -#: ../../mod/photos.php:159 ../../mod/photos.php:926 -msgid "Delete Photo" -msgstr "Verwijder foto" +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../mod/import.php:499 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:911 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:912 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importeer bestaande berichten (wanneer mogelijk)" -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Plaats geen bericht voor deze upload." +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" -#: ../../mod/photos.php:625 ../../mod/photos.php:1135 -#: ../../mod/photos.php:1151 -msgid "Contact Photos" -msgstr "Connectiefoto's" +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../mod/photos.php:675 ../../mod/photos.php:1183 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto niet aanwezig" +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privéfoto" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" -#: ../../mod/photos.php:905 -msgid "Edit photo" -msgstr "Foto bewerken" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../mod/photos.php:907 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" -#: ../../mod/photos.php:908 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" -#: ../../mod/photos.php:915 -msgid "Caption" -msgstr "Bijschrift" +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" -#: ../../mod/photos.php:917 -msgid "Add a Tag" -msgstr "Tag toevoegen" +#: ../../mod/dirsearch.php:19 ../../mod/regdir.php:47 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../mod/photos.php:921 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" +#: ../../mod/dirsearch.php:27 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../mod/photos.php:924 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../mod/photos.php:1101 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../mod/photos.php:1189 -msgid "View Album" -msgstr "Album weergeven" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../mod/photos.php:1212 -msgid "Recent Photos" -msgstr "Recente foto's" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../mod/acl.php:228 -msgid "network" -msgstr "netwerk" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../mod/acl.php:238 -msgid "RSS" -msgstr "RSS" +#: ../../mod/lostpass.php:85 ../../boot.php:1560 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../mod/manage.php:138 +#: ../../mod/lostpass.php:107 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../mod/manage.php:146 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../mod/manage.php:151 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../mod/manage.php:153 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../mod/manage.php:154 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../mod/manage.php:155 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../mod/manage.php:158 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Website:" -#: ../../mod/manage.php:159 +#: ../../mod/rate.php:160 #, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Uitnodiging voor de RedMatrix" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Kanalen" +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "of bezoek " -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../mod/ping.php:266 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." -#: ../../mod/ping.php:319 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../mod/locs.php:88 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../mod/ping.php:360 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Lay-out bewerken" +#: ../../mod/locs.php:102 +msgid "Location (address)" +msgstr "Locatie (adres)" -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" +#: ../../mod/locs.php:103 +msgid "Primary Location" +msgstr "Primaire locatie" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" +#: ../../mod/locs.php:104 +msgid "Drop location" +msgstr "Locatie verwijderen" #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." @@ -5917,130 +5957,145 @@ msgstr "Bron verwijderd" msgid "Unable to remove source." msgstr "Verwijderen bron mislukt." -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." +#: ../../mod/menu.php:31 +msgid "Menu updated." +msgstr "Menu aangepast. " -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../mod/menu.php:35 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../mod/menu.php:40 +msgid "Menu created." +msgstr "Menu aangemaakt." -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../mod/menu.php:44 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../mod/menu.php:76 +msgid "Manage Menus" +msgstr "Menu's beheren" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../mod/menu.php:79 +msgid "Drop" +msgstr "Verwijderen" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" +#: ../../mod/menu.php:82 +msgid "Create a new menu" +msgstr "Een nieuwe menu aanmaken" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" +#: ../../mod/menu.php:83 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" +#: ../../mod/menu.php:85 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" +#: ../../mod/menu.php:96 +msgid "New Menu" +msgstr "Nieuw menu" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" +msgstr "Titel van menu" + +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." + +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" + +#: ../../mod/menu.php:108 ../../mod/mitem.php:24 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." +#: ../../mod/menu.php:114 +msgid "Menu deleted." +msgstr "Menu verwijderd." -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../mod/menu.php:122 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../mod/menu.php:124 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../mod/menu.php:130 ../../mod/mitem.php:213 +msgid "Modify" +msgstr "Wijzigen" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../mod/filestorage.php:81 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../mod/filestorage.php:97 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../mod/filestorage.php:140 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../mod/filestorage.php:149 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../mod/filestorage.php:150 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../mod/filestorage.php:151 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../mod/filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../mod/filestorage.php:156 +msgid "Attach this file to a new post" +msgstr "Dit bestand als bijlage aan nieuw bericht toevoegen" -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." +#: ../../mod/filestorage.php:157 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" + +#: ../../mod/filestorage.php:158 +msgid "Do not show in shared with me folder of your connections" +msgstr "Toon niet in de map 'gedeeld' van jouw connecties" #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." @@ -6059,413 +6114,434 @@ msgstr "Kanalen voorstellen" msgid "Suggest a friend for %s" msgstr "Stel een kanaal voor aan %s" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hulp:" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Niet gevonden" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../mod/like.php:89 ../../mod/like.php:116 ../../mod/like.php:154 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../mod/like.php:131 -msgid "thing" -msgstr "ding" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/like.php:177 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/like.php:216 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../mod/like.php:352 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/like.php:354 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../mod/like.php:356 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../mod/like.php:442 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../mod/like.php:443 -msgid "Thank you." -msgstr "Bedankt" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Uitnodiging voor de RedMatrix" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Romantische partner" + +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Homepage" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Interesses" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../mod/profiles.php:447 ../../mod/admin.php:895 +msgid "Address" +msgstr "Kanaaladres" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "of bezoek " +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Profielnaam:" -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Jouw geslacht" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Verjaardag: " -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Dit bestand als bijlage aan nieuw bericht toevoegen" +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Straat en huisnummer:" -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Woonplaats:" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Toon niet in de map 'gedeeld' van jouw connecties" +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "Postcode:" -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-kanaal" +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Land:" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "Sinds [datum]:" -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Adres homepage:" -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Trefwoorden" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "Televisie" -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Liefde/romantiek" -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Werk/arbeid" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "School/onderwijs" -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importeer bestaande berichten (wanneer mogelijk)" +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../mod/profiles.php:728 ../../mod/directory.php:192 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Primaire locatie kan niet worden verwijderd." +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Locatie (adres)" +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primaire locatie" +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Waarderingen" -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Locatie verwijderen" +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Waardering: " -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Website: " -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Omschrijving: " -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../mod/thing.php:180 +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Ding weergeven" +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../mod/directory.php:198 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../mod/directory.php:210 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../mod/directory.php:212 +msgid "Status: " +msgstr "Status: " -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../mod/directory.php:214 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../mod/directory.php:217 +msgid "Hometown: " +msgstr "Oorspronkelijk uit: " -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../mod/directory.php:219 +msgid "About: " +msgstr "Over: " -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../mod/directory.php:277 +msgid "Public Forum:" +msgstr "Openbaar forum:" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" +#: ../../mod/directory.php:280 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../mod/directory.php:335 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" +#: ../../mod/directory.php:340 +msgid "next page" +msgstr "volgende pagina" -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Naam lay-out" +#: ../../mod/directory.php:340 +msgid "previous page" +msgstr "vorige pagina" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../mod/directory.php:357 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../mod/prep.php:62 -msgid "No ratings available" -msgstr "Geen waardering beschikbaar" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../mod/prep.php:66 -msgid "Ratings" -msgstr "Waarderingen" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your " +"content." +msgstr "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../mod/prep.php:67 -msgid "Rating: " -msgstr "Waardering: " +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../mod/prep.php:68 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." +msgstr "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Geen connecties." -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" #: ../../mod/admin.php:52 msgid "Theme settings updated." msgstr "Thema-instellingen bijgewerkt." -#: ../../mod/admin.php:97 ../../mod/admin.php:415 +#: ../../mod/admin.php:97 ../../mod/admin.php:419 msgid "Site" msgstr "Hub-instellingen" @@ -6473,884 +6549,1134 @@ msgstr "Hub-instellingen" msgid "Accounts" msgstr "Accounts" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 +#: ../../mod/admin.php:99 ../../mod/admin.php:887 msgid "Channels" msgstr "Kanalen" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 +#: ../../mod/admin.php:100 ../../mod/admin.php:978 ../../mod/admin.php:1020 msgid "Plugins" msgstr "Plug-ins" -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 +#: ../../mod/admin.php:101 ../../mod/admin.php:1183 ../../mod/admin.php:1219 msgid "Themes" msgstr "Thema's" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Hubbeheer" +#: ../../mod/admin.php:102 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" -#: ../../mod/admin.php:103 +#: ../../mod/admin.php:104 msgid "Profile Config" msgstr "Profielconfiguratie" -#: ../../mod/admin.php:104 +#: ../../mod/admin.php:105 msgid "DB updates" msgstr "Database-updates" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 +#: ../../mod/admin.php:119 ../../mod/admin.php:126 ../../mod/admin.php:1306 msgid "Logs" msgstr "Logboeken" -#: ../../mod/admin.php:124 +#: ../../mod/admin.php:125 msgid "Plugin Features" msgstr "Plug-in-opties" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:127 msgid "User registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/admin.php:206 +#: ../../mod/admin.php:210 msgid "Message queues" msgstr "Berichtenwachtrij" -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 +#: ../../mod/admin.php:215 ../../mod/admin.php:418 ../../mod/admin.php:520 +#: ../../mod/admin.php:750 ../../mod/admin.php:886 ../../mod/admin.php:977 +#: ../../mod/admin.php:1019 ../../mod/admin.php:1182 ../../mod/admin.php:1218 +#: ../../mod/admin.php:1305 msgid "Administration" msgstr "Beheer" -#: ../../mod/admin.php:212 +#: ../../mod/admin.php:216 msgid "Summary" msgstr "Samenvatting" -#: ../../mod/admin.php:214 +#: ../../mod/admin.php:218 msgid "Registered users" msgstr "Geregistreerde accounts" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 +#: ../../mod/admin.php:220 ../../mod/admin.php:524 msgid "Pending registrations" msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/admin.php:217 +#: ../../mod/admin.php:221 msgid "Version" msgstr "Versie" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 +#: ../../mod/admin.php:223 ../../mod/admin.php:525 msgid "Active plugins" msgstr "Ingeschakelde plug-ins" -#: ../../mod/admin.php:330 +#: ../../mod/admin.php:334 msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../mod/admin.php:369 +#: ../../mod/admin.php:371 ../../mod/settings.php:804 +msgid "mobile" +msgstr "mobiel" + +#: ../../mod/admin.php:373 msgid "experimental" msgstr "experimenteel" -#: ../../mod/admin.php:371 +#: ../../mod/admin.php:375 msgid "unsupported" msgstr "Niet ondersteund" -#: ../../mod/admin.php:395 +#: ../../mod/admin.php:399 msgid "Yes - with approval" msgstr "Ja - met goedkeuring" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:405 msgid "My site is not a public server" msgstr "Mijn RedMatrix-hub is niet openbaar" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:406 msgid "My site has paid access only" msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" -#: ../../mod/admin.php:403 +#: ../../mod/admin.php:407 msgid "My site has free access only" msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" -#: ../../mod/admin.php:404 +#: ../../mod/admin.php:408 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:421 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/admin.php:422 msgid "File upload" msgstr "Bestand uploaden" -#: ../../mod/admin.php:419 +#: ../../mod/admin.php:423 msgid "Policies" msgstr "Beleid" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:428 msgid "Site name" msgstr "Naam van deze RedMatrix-hub" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:429 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:430 msgid "Administrator Information" msgstr "Informatie over de beheerder van deze hub" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:430 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:431 msgid "System language" msgstr "Standaardtaal" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "System theme" msgstr "Standaardthema" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "Mobile system theme" msgstr "Standaardthema voor mobiel" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:435 msgid "Enable Diaspora Protocol" msgstr "Diaspora-protocol inschakelen" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:435 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "Communiceer met Diaspora en Friendica (experimenteel)" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "Allow Feeds as Connections" msgstr "Sta feeds toe als connecties" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "(Heavy system resource usage)" msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "Maximum image size" msgstr "Maximale grootte van afbeeldingen" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:438 msgid "Does this site allow new member registration?" msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:439 msgid "Which best describes the types of account offered by this hub?" msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt." -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:440 msgid "Register text" msgstr "Tekst tijdens registratie" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:440 msgid "Will be displayed prominently on the registration page." msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:441 msgid "Accounts abandoned after x days" msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:441 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:442 msgid "Allowed friend domains" msgstr "Toegestane domeinen" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:442 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:443 msgid "Allowed email domains" msgstr "Toegestane e-maildomeinen" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:443 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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:444 msgid "Not allowed email domains" msgstr "Niet toegestane e-maildomeinen" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:444 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:445 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:445 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden." -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:446 msgid "Verify Email Addresses" msgstr "E-mailadres verifieren" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:446 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:447 msgid "Force publish" msgstr "Dwing kanaalvermelding af" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:447 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:448 msgid "Disable discovery tab" msgstr "Ontdekkingstab" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:448 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:449 msgid "No login on Homepage" msgstr "Geen inlogformulier op de homepage" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:449 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 "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:451 msgid "Proxy user" msgstr "Gebruikersnaam proxy" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:452 msgid "Proxy URL" msgstr "URL proxy" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:453 msgid "Network timeout" msgstr "Netwerktimeout" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:453 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:454 msgid "Delivery interval" msgstr "Afleveringsinterval" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:454 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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:455 msgid "Poll interval" msgstr "Poll-interval" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:455 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:456 msgid "Maximum Load Average" msgstr "Maximaal gemiddelde systeembelasting" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:456 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../mod/admin.php:508 +#: ../../mod/admin.php:512 msgid "No server found" msgstr "Geen hub gevonden" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 +#: ../../mod/admin.php:519 ../../mod/admin.php:764 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:519 msgid "for channel" msgstr "voor kanaal" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:519 msgid "on server" msgstr "op hub" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:519 msgid "Status" msgstr "Status" -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:521 +msgid "Server" +msgstr "Hubbeheer" + +#: ../../mod/admin.php:540 msgid "Update has been marked successful" msgstr "Update is als succesvol gemarkeerd" -#: ../../mod/admin.php:546 +#: ../../mod/admin.php:550 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../mod/admin.php:549 +#: ../../mod/admin.php:553 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s was geslaagd." -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:557 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:560 #, php-format msgid "Update function %s could not be found." msgstr "Update-functie %s kon niet gevonden worden." -#: ../../mod/admin.php:571 +#: ../../mod/admin.php:575 msgid "No failed updates." msgstr "Geen mislukte updates." -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:579 msgid "Failed Updates" msgstr "Mislukte updates" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:581 msgid "Mark success (if update was manually applied)" msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:582 msgid "Attempt to execute this update step automatically" msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:596 +msgid "Queue Statistics" +msgstr "Wachtrij-statistieken" + +#: ../../mod/admin.php:599 +msgid "Total Entries" +msgstr "Aantal vermeldingen" + +#: ../../mod/admin.php:599 +msgid "Destination URL" +msgstr "Doel-URL" + +#: ../../mod/admin.php:628 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s account geblokkeerd/gedeblokkeerd" msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:635 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s account verwijderd" msgstr[1] "%s accounts verwijderd" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:664 msgid "Account not found" msgstr "Account niet gevonden" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:684 #, php-format msgid "User '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:684 #, php-format msgid "User '%s' blocked" msgstr "Lid '%s' geblokkeerd" -#: ../../mod/admin.php:727 ../../mod/admin.php:739 +#: ../../mod/admin.php:751 ../../mod/admin.php:763 msgid "Users" msgstr "Accounts" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 +#: ../../mod/admin.php:753 ../../mod/admin.php:889 msgid "select all" msgstr "alles selecteren" -#: ../../mod/admin.php:730 +#: ../../mod/admin.php:754 msgid "User registrations waiting for confirm" msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/admin.php:731 +#: ../../mod/admin.php:755 msgid "Request date" msgstr "Tijd/datum verzoek" -#: ../../mod/admin.php:732 +#: ../../mod/admin.php:756 msgid "No registrations." msgstr "Geen verzoeken." -#: ../../mod/admin.php:733 +#: ../../mod/admin.php:757 msgid "Approve" msgstr "Goedkeuren" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:758 msgid "Deny" msgstr "Afkeuren" -#: ../../mod/admin.php:736 ../../mod/connedit.php:499 -#: ../../mod/connedit.php:672 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/admin.php:737 ../../mod/connedit.php:499 -#: ../../mod/connedit.php:672 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:764 msgid "Register date" msgstr "Geregistreerd" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:764 msgid "Last login" msgstr "Laatste keer ingelogd" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:764 msgid "Expires" msgstr "Verloopt" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:764 msgid "Service Class" msgstr "Abonnementen" -#: ../../mod/admin.php:742 +#: ../../mod/admin.php:766 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../mod/admin.php:743 +#: ../../mod/admin.php:767 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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:776 +#: ../../mod/admin.php:800 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s kanaal gecensureerd/ongecensureerd" msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../mod/admin.php:783 +#: ../../mod/admin.php:807 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s kanaal verwijderd" msgstr[1] "%s kanalen verwijderd" -#: ../../mod/admin.php:802 +#: ../../mod/admin.php:826 msgid "Channel not found" msgstr "Kanaal niet gevonden" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:837 #, php-format msgid "Channel '%s' deleted" msgstr "Kanaal '%s' verwijderd" -#: ../../mod/admin.php:824 +#: ../../mod/admin.php:848 #, php-format msgid "Channel '%s' uncensored" msgstr "Kanaal '%s' ongecensureerd" -#: ../../mod/admin.php:824 +#: ../../mod/admin.php:848 #, php-format msgid "Channel '%s' censored" msgstr "Kanaal '%s' gecensureerd" -#: ../../mod/admin.php:867 +#: ../../mod/admin.php:891 msgid "Censor" msgstr "Censureren" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:892 msgid "Uncensor" msgstr "Niet censureren" -#: ../../mod/admin.php:871 +#: ../../mod/admin.php:895 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:871 ../../mod/profiles.php:447 -msgid "Address" -msgstr "Kanaaladres" - -#: ../../mod/admin.php:873 +#: ../../mod/admin.php:897 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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:874 +#: ../../mod/admin.php:898 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 "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:937 #, php-format msgid "Plugin %s disabled." msgstr "Plug-in %s uitgeschakeld." -#: ../../mod/admin.php:917 +#: ../../mod/admin.php:941 #, php-format msgid "Plugin %s enabled." msgstr "Plug-in %s ingeschakeld" -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 +#: ../../mod/admin.php:951 ../../mod/admin.php:1153 msgid "Disable" msgstr "Uitschakelen" -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 +#: ../../mod/admin.php:953 ../../mod/admin.php:1155 msgid "Enable" msgstr "Inschakelen" -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 +#: ../../mod/admin.php:979 ../../mod/admin.php:1184 msgid "Toggle" msgstr "Omschakelen" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 +#: ../../mod/admin.php:987 ../../mod/admin.php:1194 msgid "Author: " msgstr "Auteur: " -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 +#: ../../mod/admin.php:988 ../../mod/admin.php:1195 msgid "Maintainer: " msgstr "Beheerder: " -#: ../../mod/admin.php:1093 +#: ../../mod/admin.php:1117 msgid "No themes found." msgstr "Geen thema's gevonden" -#: ../../mod/admin.php:1152 +#: ../../mod/admin.php:1176 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../mod/admin.php:1200 +#: ../../mod/admin.php:1224 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../mod/admin.php:1201 +#: ../../mod/admin.php:1225 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../mod/admin.php:1228 +#: ../../mod/admin.php:1252 msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../mod/admin.php:1284 +#: ../../mod/admin.php:1308 msgid "Clear" msgstr "Leegmaken" -#: ../../mod/admin.php:1290 +#: ../../mod/admin.php:1314 msgid "Debugging" msgstr "Debuggen" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1315 msgid "Log file" msgstr "Logbestand" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1315 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie." -#: ../../mod/admin.php:1292 +#: ../../mod/admin.php:1316 msgid "Log level" msgstr "Logniveau" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1363 msgid "New Profile Field" msgstr "Nieuw profielveld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 msgid "Field nickname" msgstr "Bijnaam voor veld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 msgid "System name of field" msgstr "Systeemnaam voor veld" -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 +#: ../../mod/admin.php:1365 ../../mod/admin.php:1386 msgid "Input type" msgstr "Invoertype" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 msgid "Field Name" msgstr "Veldnaam" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 msgid "Label on profile pages" msgstr "Tekstlabel voor op profielpagina's" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 msgid "Help text" msgstr "Helptekst" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" + +#: ../../mod/admin.php:1378 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" + +#: ../../mod/admin.php:1384 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Jouw e-mailadres" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" + +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." + +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" + +#: ../../mod/removeaccount.php:58 +msgid "" +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden." + +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen" + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd." + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:710 +msgid "Remove Account" +msgstr "Account verwijderen" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../mod/photos.php:119 ../../mod/photos.php:643 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:924 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:440 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:484 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:523 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:526 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:550 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../mod/photos.php:556 +msgid "Do not show a status post for this upload" +msgstr "Plaats geen bericht voor deze upload." + +#: ../../mod/photos.php:584 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../mod/photos.php:625 ../../mod/photos.php:1149 +#: ../../mod/photos.php:1165 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../mod/photos.php:649 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../mod/photos.php:651 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../mod/photos.php:675 ../../mod/photos.php:1197 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../mod/photos.php:704 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:749 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../mod/photos.php:751 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../mod/photos.php:809 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../mod/photos.php:816 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../mod/photos.php:831 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../mod/photos.php:903 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../mod/photos.php:905 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../mod/photos.php:906 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" +#: ../../mod/photos.php:913 +msgid "Caption" +msgstr "Bijschrift" -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" +#: ../../mod/photos.php:915 +msgid "Add a Tag" +msgstr "Tag toevoegen" -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menu aangepast. " +#: ../../mod/photos.php:919 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../mod/photos.php:922 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menu aangemaakt." +#: ../../mod/photos.php:1114 +msgid "In This Photo:" +msgstr "Op deze foto:" -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../mod/photos.php:1203 +msgid "View Album" +msgstr "Album weergeven" -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menu's beheren" +#: ../../mod/photos.php:1226 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Verwijderen" +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" +msgstr "Kanaalfoto's" -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Een nieuwe menu aanmaken" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Geen berichten" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../mod/message.php:72 ../../mod/mail.php:336 +msgid "Delete conversation" +msgstr "Verwijder conversatie" -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, j M Y - G:i" -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Nieuw menu" +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menu verwijderd." +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nieuw element" -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nieuw menu-element" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1071 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Linktekst" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:506 -#: ../../mod/connedit.php:673 -msgid "Ignore" -msgstr "Negeren" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "URL of link" -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../mod/mood.php:131 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Totaal aantal stemmen" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Gemiddelde waardering" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bewerken" +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App maken" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Naam van app" +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Naam lay-out" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -7412,10 +7738,6 @@ msgstr "Bericht is ingetrokken." msgid "Private Conversation" msgstr "Privéconversatie" -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - #: ../../mod/mail.php:338 msgid "" "No secure communications available. You may be able to " @@ -7426,735 +7748,701 @@ msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je msgid "Send Reply" msgstr "Antwoord versturen" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Geen connecties." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hub niet gevonden." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totaal aantal stemmen" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gemiddelde waardering" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Kanaalfoto's" - -#: ../../mod/connedit.php:245 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:357 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../mod/connedit.php:371 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Annuleren" -#: ../../mod/connedit.php:378 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanaal toevoegen" -#: ../../mod/connedit.php:379 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." -#: ../../mod/connedit.php:383 ../../mod/connedit.php:395 -#: ../../mod/connedit.php:407 ../../mod/connedit.php:419 -#: ../../mod/connedit.php:435 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" -#: ../../mod/connedit.php:390 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Kies een korte bijnaam" -#: ../../mod/connedit.php:391 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." -#: ../../mod/connedit.php:402 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." -#: ../../mod/connedit.php:403 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" +#: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "Kies een kanaaltype (bijv. een persoonlijk kanaal voor een sociaal netwerk of eentje voor een groepsforum) en jouw behoefte aan privacy, zodat wij voor jou de beste permissies kunnen kiezen." -#: ../../mod/connedit.php:414 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaaltype" -#: ../../mod/connedit.php:415 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../mod/connedit.php:430 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../mod/connedit.php:431 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../mod/connedit.php:459 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../mod/connedit.php:479 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bewerken" -#: ../../mod/connedit.php:483 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App maken" -#: ../../mod/connedit.php:486 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Naam van app" -#: ../../mod/connedit.php:490 -msgid "Recent Activity" -msgstr "Recente activiteit" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../mod/connedit.php:493 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../mod/connedit.php:502 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../mod/connedit.php:506 ../../mod/connedit.php:673 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../mod/connedit.php:509 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../mod/connedit.php:512 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../mod/connedit.php:512 -msgid "Archive" -msgstr "Archiveren" +#: ../../mod/ping.php:263 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../mod/connedit.php:515 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../mod/ping.php:314 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../mod/connedit.php:518 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../mod/ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../mod/connedit.php:518 -msgid "Hide" -msgstr "Verbergen" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../mod/connedit.php:521 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../mod/connedit.php:528 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../mod/connedit.php:589 ../../mod/connedit.php:627 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../mod/connedit.php:589 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../mod/connedit.php:605 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../mod/connedit.php:606 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../mod/settings.php:120 +msgid "Diaspora Policy Settings updated." +msgstr "Beleidsinstellingen Diaspora bijgewerkt." -#: ../../mod/connedit.php:610 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." +#: ../../mod/settings.php:228 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../mod/connedit.php:614 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../mod/settings.php:232 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../mod/connedit.php:615 -msgid "Rating (this information may be public)" -msgstr "Waardering (deze informatie kan mogelijk openbaar worden)" +#: ../../mod/settings.php:246 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../mod/connedit.php:616 -msgid "Optionally explain your rating (this information may be public)" -msgstr "Licht desgewenst jouw waardering toe (kan mogelijk openbaar worden)" +#: ../../mod/settings.php:248 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../mod/connedit.php:623 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden." +#: ../../mod/settings.php:262 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../mod/connedit.php:626 -msgid "inherited" -msgstr "geërfd" +#: ../../mod/settings.php:265 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../mod/connedit.php:629 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" +#: ../../mod/settings.php:274 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../mod/connedit.php:630 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." +#: ../../mod/settings.php:513 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../mod/connedit.php:632 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../mod/connedit.php:633 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../mod/connedit.php:634 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../mod/connedit.php:635 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../mod/connedit.php:637 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../mod/connedit.php:638 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../mod/connedit.php:640 +#: ../../mod/settings.php:588 msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../mod/connedit.php:641 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "URL van pictogram" -#: ../../mod/connedit.php:642 -msgid "Forum Members" -msgstr "Forumleden" +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Optioneel" -#: ../../mod/connedit.php:643 -msgid "Soapbox" -msgstr "Zeepkist" +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "Je kan deze applicatie niet bewerken" -#: ../../mod/connedit.php:644 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../mod/connedit.php:645 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../mod/connedit.php:646 -msgid "Follow Only" -msgstr "Alleen volgen" +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Geen naam" -#: ../../mod/connedit.php:647 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../mod/connedit.php:648 -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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." +#: ../../mod/settings.php:663 +msgid "No feature settings configured" +msgstr "Geen extra functie- of plugin-instellingen" -#: ../../mod/connedit.php:649 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" +#: ../../mod/settings.php:676 +msgid "Feature Settings" +msgstr "Extra functie- en plugin-instellingen" -#: ../../mod/connedit.php:650 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" +#: ../../mod/settings.php:679 +msgid "Diaspora Policy Settings" +msgstr "Beleidsinstellingen Diaspora" -#: ../../mod/connedit.php:654 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" +#: ../../mod/settings.php:680 +msgid "Allow any Diaspora member to comment on your public posts." +msgstr "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren." -#: ../../mod/connedit.php:655 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" +#: ../../mod/settings.php:681 +msgid "Submit Diaspora Policy Settings" +msgstr "Beleidsinstellingen Diaspora toepassen" -#: ../../mod/connedit.php:656 -msgid "Ignore contact" -msgstr "Connectie negeren" +#: ../../mod/settings.php:704 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../mod/connedit.php:657 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" +#: ../../mod/settings.php:705 +msgid "Password Settings" +msgstr "Wachtwoord-instellingen" -#: ../../mod/connedit.php:658 -msgid "View conversations" -msgstr "Conversaties weergeven" +#: ../../mod/settings.php:706 +msgid "New Password:" +msgstr "Nieuw wachtwoord:" -#: ../../mod/connedit.php:660 -msgid "Delete contact" -msgstr "Connectie verwijderen" +#: ../../mod/settings.php:707 +msgid "Confirm:" +msgstr "Bevestigen:" -#: ../../mod/connedit.php:664 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../mod/settings.php:707 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../mod/connedit.php:666 -msgid "Update public posts" -msgstr "Openbare berichten updaten" +#: ../../mod/settings.php:709 ../../mod/settings.php:1045 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../mod/connedit.php:668 -msgid "Update now" -msgstr "Nu updaten" +#: ../../mod/settings.php:711 +msgid "Remove this account from this server including all its channels" +msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" -#: ../../mod/connedit.php:674 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" +#: ../../mod/settings.php:712 ../../mod/settings.php:1126 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." -#: ../../mod/connedit.php:675 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" +#: ../../mod/settings.php:728 +msgid "Off" +msgstr "Uit" -#: ../../mod/connedit.php:676 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" +#: ../../mod/settings.php:728 +msgid "On" +msgstr "Aan" -#: ../../mod/connedit.php:677 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" +#: ../../mod/settings.php:735 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../mod/settings.php:759 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Geen berichten" +#: ../../mod/settings.php:798 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, j M Y - G:i" +#: ../../mod/settings.php:801 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanaal toevoegen" +#: ../../mod/settings.php:840 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." +#: ../../mod/settings.php:846 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" +#: ../../mod/settings.php:847 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Kies een korte bijnaam" +#: ../../mod/settings.php:848 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" + +#: ../../mod/settings.php:849 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." +#: ../../mod/settings.php:849 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." +#: ../../mod/settings.php:850 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Kies een kanaaltype (bijv. een persoonlijk kanaal voor een sociaal netwerk of eentje voor een groepsforum) en jouw behoefte aan privacy, zodat wij voor jou de beste permissies kunnen kiezen." +#: ../../mod/settings.php:850 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaaltype" +#: ../../mod/settings.php:851 +msgid "Don't show emoticons" +msgstr "Geen emoticons weergeven" -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../mod/settings.php:852 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../mod/settings.php:853 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../mod/settings.php:856 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../mod/settings.php:856 ../../mod/settings.php:857 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../mod/settings.php:857 +msgid "Use blog/list mode on matrix page" +msgstr "Gebruik blog/lijst-modus op matrixpagina" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../mod/settings.php:858 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../mod/directory.php:188 ../../mod/profiles.php:728 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../mod/settings.php:858 ../../mod/settings.php:859 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../mod/directory.php:201 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../mod/settings.php:859 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" -#: ../../mod/directory.php:203 -msgid "Status: " -msgstr "Status: " +#: ../../mod/settings.php:893 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../mod/directory.php:205 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../mod/settings.php:894 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../mod/directory.php:208 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " +#: ../../mod/settings.php:895 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../mod/directory.php:210 -msgid "About: " -msgstr "Over: " +#: ../../mod/settings.php:896 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../mod/directory.php:265 -msgid "Public Forum:" -msgstr "Openbaar forum:" +#: ../../mod/settings.php:897 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../mod/directory.php:268 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../mod/settings.php:898 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../mod/directory.php:322 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../mod/settings.php:899 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../mod/directory.php:327 -msgid "next page" -msgstr "volgende pagina" +#: ../../mod/settings.php:900 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../mod/directory.php:327 -msgid "previous page" -msgstr "vorige pagina" +#: ../../mod/settings.php:974 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../mod/directory.php:344 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../mod/settings.php:979 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../mod/settings.php:988 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../mod/settings.php:1036 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" +#: ../../mod/settings.php:1043 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../mod/settings.php:1046 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../mod/settings.php:1047 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../mod/settings.php:1047 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../mod/settings.php:1048 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../mod/settings.php:1050 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../mod/settings.php:1050 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Houdt van" +#: ../../mod/settings.php:1052 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../mod/settings.php:1054 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../mod/settings.php:1056 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religie" +#: ../../mod/settings.php:1056 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../mod/settings.php:1058 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Geslacht" +#: ../../mod/settings.php:1059 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../mod/settings.php:1060 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Homepage" +#: ../../mod/settings.php:1061 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interesses" +#: ../../mod/settings.php:1062 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../mod/settings.php:1064 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../mod/settings.php:1064 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../mod/settings.php:1066 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../mod/settings.php:1068 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" +#: ../../mod/settings.php:1068 +msgid "0 or blank prevents expiration" +msgstr "0 of leeg voorkomt het verlopen" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../mod/settings.php:1069 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../mod/settings.php:1069 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../mod/settings.php:1070 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../mod/settings.php:1075 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../mod/settings.php:1081 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profielnaam:" +#: ../../mod/settings.php:1081 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" +#: ../../mod/settings.php:1084 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" +#: ../../mod/settings.php:1085 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Jouw geslacht" +#: ../../mod/settings.php:1086 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Verjaardag: " +#: ../../mod/settings.php:1087 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Straat en huisnummer:" +#: ../../mod/settings.php:1088 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Woonplaats:" +#: ../../mod/settings.php:1089 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postcode:" +#: ../../mod/settings.php:1090 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" +#: ../../mod/settings.php:1091 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" +#: ../../mod/settings.php:1092 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" +#: ../../mod/settings.php:1093 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" +#: ../../mod/settings.php:1094 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" +#: ../../mod/settings.php:1095 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Sinds [datum]:" +#: ../../mod/settings.php:1096 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Adres homepage:" +#: ../../mod/settings.php:1097 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" +#: ../../mod/settings.php:1100 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Trefwoorden" +#: ../../mod/settings.php:1102 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../mod/settings.php:1103 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" +#: ../../mod/settings.php:1104 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." +#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../mod/settings.php:1105 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../mod/settings.php:1106 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../mod/settings.php:1107 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../mod/settings.php:1107 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../mod/settings.php:1108 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Televisie" +#: ../../mod/settings.php:1109 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../mod/settings.php:1110 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Liefde/romantiek" +#: ../../mod/settings.php:1111 +msgid "New connections" +msgstr "Nieuwe connecties" -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Werk/arbeid" +#: ../../mod/settings.php:1112 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "School/onderwijs" +#: ../../mod/settings.php:1113 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../mod/settings.php:1115 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" +#: ../../mod/settings.php:1115 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../mod/settings.php:1117 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" +#: ../../mod/settings.php:1118 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../mod/settings.php:1121 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../mod/settings.php:1122 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../mod/settings.php:1124 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../mod/settings.php:1125 +msgid "Remove this channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." #: ../../mod/poll.php:64 msgid "Poll" @@ -8164,34 +8452,6 @@ msgstr "Poll" msgid "View Results" msgstr "Bekijk resultaten" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden." - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd." - #: ../../mod/service_limits.php:19 msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." @@ -8476,41 +8736,41 @@ msgstr "Rommelig vormgegeven fotoalbums" msgid "Are you a clean desk or a messy desk person?" msgstr "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?" -#: ../../boot.php:1355 +#: ../../boot.php:1357 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1358 +#: ../../boot.php:1360 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1525 +#: ../../boot.php:1527 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix" -#: ../../boot.php:1553 +#: ../../boot.php:1555 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1554 +#: ../../boot.php:1556 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1557 +#: ../../boot.php:1559 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:1650 +#: ../../boot.php:1674 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../boot.php:1651 +#: ../../boot.php:1675 msgid "Got Zot?" msgstr "Heb je Zot?" -#: ../../boot.php:2134 +#: ../../boot.php:2158 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" diff --git a/view/nl/strings.php b/view/nl/strings.php index 0cc495be1..fa98cdcab 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -7,13 +7,104 @@ function string_plural_select_nl($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["created a new post"] = "maakte een nieuw bericht aan"; +$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +$a->strings["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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["add"] = "toevoegen"; +$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +$a->strings["Empty name"] = "Ontbrekende naam"; +$a->strings["Name too long"] = "Naam te lang"; +$a->strings["No account identifier"] = "Geen account-identificator"; +$a->strings["Nickname is required."] = "Bijnaam is verplicht"; +$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +$a->strings["Default Profile"] = "Standaardprofiel"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Change profile photo"] = "Profielfoto veranderen"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; +$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; +$a->strings["Edit Profile"] = "Profiel bewerken"; +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Full Name:"] = "Volledige naam:"; +$a->strings["Like this channel"] = "Vind dit kanaal leuk"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Geboortedatum:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; +$a->strings["Hometown:"] = "Oorspronkelijk uit:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Politieke overtuigingen:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["About:"] = "Over:"; +$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["My other channels:"] = "Mijn andere kanalen"; +$a->strings["Musical interests:"] = "Muzikale interesses:"; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie:"; +$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +$a->strings["Love/Romance:"] = "Liefde/romantiek:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Like this thing"] = "Vind dit ding leuk"; +$a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["View"] = "Weergeven"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Actions"] = "Acties"; +$a->strings["Page Link"] = "Paginalink"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Edited"] = "Bewerkt"; $a->strings["Categories"] = "Categorieën"; $a->strings["Apps"] = "Apps"; $a->strings["System"] = "Systeem"; $a->strings["Personal"] = "Persoonlijk"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; $a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; -$a->strings["Connect"] = "Verbinden"; $a->strings["Ignore/Hide"] = "Negeren/Verbergen"; $a->strings["Suggestions"] = "Voorgestelde kanalen"; $a->strings["See more..."] = "Meer..."; @@ -25,14 +116,12 @@ $a->strings["Notes"] = "Aantekeningen"; $a->strings["Save"] = "Opslaan"; $a->strings["Remove term"] = "Verwijder zoekterm"; $a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["add"] = "toevoegen"; $a->strings["Saved Folders"] = "Bewaarde mappen"; $a->strings["Everything"] = "Alles"; $a->strings["Archives"] = "Archieven"; $a->strings["Refresh"] = "Vernieuwen"; $a->strings["Me"] = "Ik"; $a->strings["Best Friends"] = "Goede vrienden"; -$a->strings["Friends"] = "Vrienden"; $a->strings["Co-workers"] = "Collega's"; $a->strings["Former Friends"] = "Oude vrienden"; $a->strings["Acquaintances"] = "Kennissen"; @@ -40,7 +129,7 @@ $a->strings["Everybody"] = "Iedereen"; $a->strings["Account settings"] = "Account"; $a->strings["Channel settings"] = "Kanaal"; $a->strings["Additional features"] = "Extra functies"; -$a->strings["Feature/Addon settings"] = "Plugin-instellingen"; +$a->strings["Feature/Addon settings"] = "Extra functie- en plugin-instellingen"; $a->strings["Display settings"] = "Weergave"; $a->strings["Connected apps"] = "Verbonden applicaties"; $a->strings["Export channel"] = "Kanaal exporteren"; @@ -55,90 +144,9 @@ $a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; $a->strings["photo/image"] = "foto/afbeelding"; -$a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -$a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -$a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; -$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; -$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; -$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; -$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -$a->strings["Social Networking"] = "Sociaal netwerk"; -$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; -$a->strings["Restricted"] = "Beperkt zichtbaar"; -$a->strings["Private"] = "Verborgen kanaal"; -$a->strings["Community Forum"] = "Groepsforum"; -$a->strings["Feed Republish"] = "Feed herpubliceren"; -$a->strings["Special Purpose"] = "Speciaal doel"; -$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; -$a->strings["Group Repository"] = "Groepsopslag"; -$a->strings["Other"] = "Anders"; -$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -$a->strings["created a new post"] = "maakte een nieuw bericht aan"; -$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -$a->strings["Tags"] = "Tags"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; -$a->strings["QR code"] = "QR-code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -$a->strings["post"] = "bericht"; -$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["New Page"] = "Nieuwe pagina"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["View"] = "Weergeven"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Actions"] = "Acties"; -$a->strings["Page Link"] = "Paginalink"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Edited"] = "Bewerkt"; -$a->strings["Embedded content"] = "Ingesloten inhoud"; -$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; -$a->strings["Starts:"] = "Start:"; -$a->strings["Finishes:"] = "Einde:"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +$a->strings["Rate Me"] = "Beoordeel mij"; +$a->strings["View Ratings"] = "Bekijk beoordelingen"; +$a->strings["Public Hubs"] = "Openbare hubs"; $a->strings["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -225,98 +233,162 @@ $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; $a->strings["Collection"] = "map"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Content Expiration"] = "Inhoud laten verlopen"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; -$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; -$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -$a->strings["Web Pages"] = "Webpagina's"; -$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -$a->strings["Private Notes"] = "Privé-aantekeningen"; -$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; -$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet."; -$a->strings["Expert Mode"] = "Expertmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -$a->strings["Premium Channel"] = "Premiumkanaal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Use Markdown"] = "Markdown gebruiken"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; -$a->strings["Large Photos"] = "Grote foto's"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. "; -$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -$a->strings["Even More Encryption"] = "Extra encryptie"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; -$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -$a->strings["Search by Date"] = "Zoek op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -$a->strings["Collections Filter"] = "Filter op collecties"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -$a->strings["Affinity Tool"] = "Verwantschapsfilter"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; -$a->strings["Suggest Channels"] = "Kanalen voorstellen"; -$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -$a->strings["Tagging"] = "Taggen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -$a->strings["Tag Cloud"] = "Tagwolk"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -$a->strings["parent"] = "omhoog"; -$a->strings["Principal"] = "principal"; -$a->strings["Addressbook"] = "Adresboek"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Schedule Inbox"] = "Planning-postvak IN"; -$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["%1\$s used"] = "%1\$s gebruikt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Total"] = "Totaal"; -$a->strings["Shared"] = "Gedeeld"; -$a->strings["Create"] = "Aanmaken"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Create new folder"] = "Nieuwe map aanmaken"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["Comment"] = "Reactie"; +$a->strings["[+] show all"] = "[+] alle"; +$a->strings["[-] show less"] = "[-] minder reacties weergeven"; +$a->strings["[+] expand"] = "[+] uitklappen"; +$a->strings["[-] collapse"] = "[-] inklappen"; +$a->strings["Password too short"] = "Wachtwoord te kort"; +$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; +$a->strings["Passphrase hint"] = "Wachtwoordhint"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; +$a->strings["close all"] = "Alles sluiten"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; +$a->strings["Rating"] = "Beoordeling"; +$a->strings["Describe (optional)"] = "Omschrijving (optioneel)"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "geleden"; +$a->strings["from now"] = "vanaf nu"; +$a->strings["less than a minute"] = "minder dan een minuut"; +$a->strings["about a minute"] = "ongeveer een minuut"; +$a->strings["%d minutes"] = "%d minuten"; +$a->strings["about an hour"] = "ongeveer een uur"; +$a->strings["about %d hours"] = "ongeveer %d uren"; +$a->strings["a day"] = "een dag"; +$a->strings["%d days"] = "%d dagen"; +$a->strings["about a month"] = "ongeveer een maand"; +$a->strings["%d months"] = "%d maanden"; +$a->strings["about a year"] = "ongeveer een jaar"; +$a->strings["%d years"] = "%d jaren"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["parent"] = "omhoog"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["Unknown"] = "Onbekend"; +$a->strings["%1\$s used"] = "%1\$s gebruikt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Total"] = "Totaal"; +$a->strings["Shared"] = "Gedeeld"; +$a->strings["Create"] = "Aanmaken"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; +$a->strings["Delete"] = "Verwijderen"; +$a->strings["Create new folder"] = "Nieuwe map aanmaken"; $a->strings["Upload file"] = "Bestand uploaden"; $a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["Directory Options"] = "Opties kanalengids"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$a->strings["Newest to Oldest"] = "Nieuw naar oud"; -$a->strings["Oldest to Newest"] = "Oud naar nieuw"; -$a->strings["Public Forums Only"] = "Alleen openbare forums"; -$a->strings["Sort"] = "Sorteren"; -$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; -$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; -$a->strings["Safe Mode"] = "Veilig zoeken"; -$a->strings["New window"] = "Nieuw venster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; +$a->strings["Tags"] = "Tags"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Content Expiration"] = "Inhoud laten verlopen"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; +$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; +$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +$a->strings["Web Pages"] = "Webpagina's"; +$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +$a->strings["Private Notes"] = "Privé-aantekeningen"; +$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; +$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet."; +$a->strings["Expert Mode"] = "Expertmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +$a->strings["Premium Channel"] = "Premiumkanaal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Use Markdown"] = "Markdown gebruiken"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; +$a->strings["Large Photos"] = "Grote foto's"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. "; +$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +$a->strings["Even More Encryption"] = "Extra encryptie"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +$a->strings["Enable voting tools"] = "Stemmen inschakelen"; +$a->strings["Provide a class of post which others can vote on"] = "Creëert een berichtenoptie zodat anderen op jouw vraag kunnen stemmen."; +$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; +$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; +$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +$a->strings["Search by Date"] = "Zoek op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +$a->strings["Collections Filter"] = "Filter op collecties"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +$a->strings["Affinity Tool"] = "Verwantschapsfilter"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; +$a->strings["Suggest Channels"] = "Kanalen voorstellen"; +$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +$a->strings["Tagging"] = "Taggen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +$a->strings["Tag Cloud"] = "Tagwolk"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Frequently"] = "Regelmatig"; $a->strings["Hourly"] = "Elk uur"; $a->strings["Twice daily"] = "Twee keer per dag"; @@ -333,62 +405,144 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; +$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +$a->strings["local account not found."] = "lokale account niet gevonden."; +$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +$a->strings["Default"] = "Standaard"; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +$a->strings["Required"] = "Vereist"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "seconden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +$a->strings["New window"] = "Nieuw venster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Einde:"; +$a->strings["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +$a->strings["Room not found."] = "Chatkanaal niet gevonden"; +$a->strings["Room is full"] = "Chatkanaal is vol"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Beëindig deze sessie"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["View Profile"] = "Profiel weergeven"; +$a->strings["Your profile page"] = "Jouw profielpagina"; +$a->strings["Edit Profiles"] = "Bewerk profielen"; +$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit your profile"] = "Jouw profiel bewerken"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your files"] = "Jouw bestanden"; +$a->strings["Chat"] = "Chatten"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; $a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Address Book"] = "Connecties"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Webpages"] = "Webpagina's"; +$a->strings["Your webpages"] = "Jouw webpagina's"; $a->strings["Login"] = "Inloggen"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; +$a->strings["Remote authentication"] = "Authenticatie op afstand"; +$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help"] = "Hulp"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Directory"] = "Kanalengids"; +$a->strings["Channel Directory"] = "Kanalengids"; $a->strings["Matrix"] = "Matrix"; -$a->strings["Webpages"] = "Webpagina's"; +$a->strings["Your matrix"] = "Jouw matrix"; +$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; $a->strings["Channel Home"] = "Tijdlijn kanaal"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Events"] = "Agenda"; -$a->strings["Directory"] = "Kanalengids"; -$a->strings["Help"] = "Hulp"; -$a->strings["Mail"] = "Privéberichten"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Probe"] = "Onderzoeken"; -$a->strings["Suggest"] = "Voorstellen"; -$a->strings["Random Channel"] = "Willekeurig kanaal"; -$a->strings["Invite"] = "Uitnodigen "; -$a->strings["Features"] = "Extra functies"; -$a->strings["Language"] = "Taal"; -$a->strings["Post"] = "Bericht"; -$a->strings["Profile Photo"] = "Profielfoto"; -$a->strings["Update"] = "Bijwerken"; -$a->strings["Install"] = "Installeren"; -$a->strings["Purchase"] = "Aanschaffen"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; -$a->strings["Default"] = "Standaard"; -$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -$a->strings["Show"] = "Tonen"; -$a->strings["Don't show"] = "Niet tonen"; -$a->strings["Permissions"] = "Permissies"; -$a->strings["Close"] = "Sluiten"; +$a->strings["Channel home"] = "Tijdlijn kanaal"; +$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +$a->strings["Connections"] = "Connecties"; +$a->strings["Notices"] = "Notificaties"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Alle notificaties weergeven"; +$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +$a->strings["Mail"] = "Privéberichten"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["See all private messages"] = "Alle privéberichten weergeven"; +$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +$a->strings["Inbox"] = "Postvak IN"; +$a->strings["Outbox"] = "Postvak UIT"; +$a->strings["Events"] = "Agenda"; +$a->strings["Event Calendar"] = "Agenda"; +$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; +$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +$a->strings["Channel Manager"] = "Kanaalbeheer"; +$a->strings["Manage Your Channels"] = "Beheer je kanalen"; +$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["Loading..."] = "Aan het laden..."; +$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; +$a->strings["Please wait..."] = "Wachten aub..."; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; $a->strings[" and "] = " en "; $a->strings["public profile"] = "openbaar profiel"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; $a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +$a->strings["Directory Options"] = "Opties kanalengids"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$a->strings["Newest to Oldest"] = "Nieuw naar oud"; +$a->strings["Oldest to Newest"] = "Oud naar nieuw"; +$a->strings["Public Forums Only"] = "Alleen openbare forums"; +$a->strings["Sort"] = "Sorteren"; +$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; +$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; +$a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; $a->strings["Private Message"] = "Privébericht"; $a->strings["Select"] = "Kies"; $a->strings["Save to Folder"] = "In map opslaan"; +$a->strings["I will attend"] = "Aanwezig"; +$a->strings["I will not attend"] = "Niet aanwezig"; +$a->strings["I might attend"] = "Mogelijk aanwezig"; +$a->strings["I agree"] = "Eens"; +$a->strings["I disagree"] = "Oneens"; +$a->strings["I abstain"] = "Onthouding"; $a->strings["View all"] = "Toon alles"; $a->strings["__ctx:noun__ Dislike"] = array( 0 => "vindt dit niet leuk", @@ -422,11 +576,9 @@ $a->strings["Add to Calendar"] = "Aan agenda toevoegen"; $a->strings["Mark all seen"] = "Markeer alles als bekeken"; $a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; $a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Close"] = "Sluiten"; $a->strings["Please wait"] = "Even wachten"; -$a->strings["[+] show all"] = "[+] alle"; $a->strings["This is you"] = "Dit ben jij"; -$a->strings["Comment"] = "Reactie"; -$a->strings["Submit"] = "Opslaan"; $a->strings["Bold"] = "Vet"; $a->strings["Italic"] = "Cursief"; $a->strings["Underline"] = "Onderstrepen"; @@ -436,14 +588,21 @@ $a->strings["Image"] = "Afbeelding"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; $a->strings["Encrypt text"] = "Tekst versleutelen"; -$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -$a->strings["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["Public Timeline"] = "Openbare tijdlijn"; +$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; +$a->strings["QR code"] = "QR-code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +$a->strings["post"] = "bericht"; +$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; $a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; $a->strings["redmatrix"] = "RedMatrix"; $a->strings["Thank You,"] = "Bedankt,"; @@ -484,10 +643,6 @@ $a->strings["Name:"] = "Naam:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; $a->strings["[Red:Notify]"] = "[Red:Notificatie]"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["%d invitation available"] = array( 0 => "%d uitnodiging beschikbaar", 1 => "%d uitnodigingen beschikbaar", @@ -507,27 +662,37 @@ $a->strings["%d connection in common"] = array( 1 => "%d gemeenschappelijke connecties", ); $a->strings["show more"] = "meer connecties weergeven"; +$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +$a->strings["Show"] = "Tonen"; +$a->strings["Don't show"] = "Niet tonen"; +$a->strings["Permissions"] = "Permissies"; $a->strings["channel"] = "kanaal"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; $a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +$a->strings["__ctx:title__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["__ctx:title__ Agree"] = "eens"; +$a->strings["__ctx:title__ Disagree"] = "oneens"; +$a->strings["__ctx:title__ Abstain"] = "onthoudingen"; +$a->strings["__ctx:title__ Attending"] = "aanwezig"; +$a->strings["__ctx:title__ Not attending"] = "niet aanwezig"; +$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; $a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; $a->strings["Categories:"] = "Categorieën:"; $a->strings["Filed under:"] = "Bewaard onder:"; $a->strings["View in context"] = "In context bekijken"; $a->strings["remove"] = "verwijderen"; -$a->strings["Loading..."] = "Aan het laden..."; $a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; $a->strings["View Source"] = "Bron weergeven"; $a->strings["Follow Thread"] = "Conversatie volgen"; $a->strings["View Status"] = "Status weergeven"; -$a->strings["View Profile"] = "Profiel weergeven"; $a->strings["View Photos"] = "Foto's weergeven"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix"; $a->strings["Edit Contact"] = "Contact bewerken"; $a->strings["Send PM"] = "Privébericht verzenden"; +$a->strings["Poke"] = "Aanstoten"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%2\$d people like this."] = array( @@ -568,6 +733,7 @@ $a->strings["Insert audio link"] = "Audiolink invoegen"; $a->strings["audio link"] = "audiolink"; $a->strings["Set your location"] = "Locatie instellen"; $a->strings["set location"] = "locatie instellen"; +$a->strings["Toggle voting"] = "Stemmen in- of uitschakelen"; $a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; $a->strings["clear location"] = "locatie wissen"; $a->strings["Title (optional)"] = "Titel (optioneel)"; @@ -600,30 +766,101 @@ $a->strings["Files and Storage"] = "Bestanden en opslagruimte"; $a->strings["Chatrooms"] = "Chatkanalen"; $a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; $a->strings["Manage Webpages"] = "Webpagina's beheren"; -$a->strings["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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +$a->strings["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel man"; +$a->strings["Currently Female"] = "Momenteel vrouw"; +$a->strings["Mostly Male"] = "Voornamelijk man"; +$a->strings["Mostly Female"] = "Voornamelijk vrouw"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet gespecificeerd"; +$a->strings["Other"] = "Anders"; +$a->strings["Undecided"] = "Nog niet beslist"; +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homoseksueel"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Seksuele onthouding"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Aseksueel"; +$a->strings["Single"] = "Alleen"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Niet beschikbaar"; +$a->strings["Has crush"] = "Heeft een oogje op iemand"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "Common-law-huwelijk"; +$a->strings["Happy"] = "Gelukkig"; +$a->strings["Not looking"] = "Niet op zoek"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Verraden"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$a->strings["Uncertain"] = "Onzeker"; +$a->strings["It's complicated"] = "Het is ingewikkeld"; +$a->strings["Don't care"] = "Maakt mij niks uit"; +$a->strings["Ask me"] = "Vraag het me"; +$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Probe"] = "Onderzoeken"; +$a->strings["Suggest"] = "Voorstellen"; +$a->strings["Random Channel"] = "Willekeurig kanaal"; +$a->strings["Invite"] = "Uitnodigen "; +$a->strings["Features"] = "Extra functies"; +$a->strings["Language"] = "Taal"; +$a->strings["Post"] = "Bericht"; +$a->strings["Profile Photo"] = "Profielfoto"; +$a->strings["Update"] = "Bijwerken"; +$a->strings["Install"] = "Installeren"; +$a->strings["Purchase"] = "Aanschaffen"; $a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; $a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; $a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; @@ -642,699 +879,48 @@ $a->strings["Account verified. Please login."] = "Account is geverifieerd. Je ka $a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; $a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["month"] = "maand"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "seconden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -$a->strings["Room not found."] = "Chatkanaal niet gevonden"; -$a->strings["Room is full"] = "Chatkanaal is vol"; -$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; -$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -$a->strings["local account not found."] = "lokale account niet gevonden."; -$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -$a->strings["Empty name"] = "Ontbrekende naam"; -$a->strings["Name too long"] = "Naam te lang"; -$a->strings["No account identifier"] = "Geen account-identificator"; -$a->strings["Nickname is required."] = "Bijnaam is verplicht"; -$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -$a->strings["Default Profile"] = "Standaardprofiel"; -$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -$a->strings["Change profile photo"] = "Profielfoto veranderen"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; -$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Profile Image"] = "Profielfoto"; -$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepagina:"; -$a->strings["Online Now"] = "Nu online"; -$a->strings["g A l F d"] = "G:i, l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Herinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Beëindig deze sessie"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Remote authentication"] = "Authenticatie op afstand"; -$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren"; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Channel Directory"] = "Kanalengids"; -$a->strings["Your matrix"] = "Jouw matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; -$a->strings["Channel home"] = "Tijdlijn kanaal"; -$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -$a->strings["Connections"] = "Connecties"; -$a->strings["Notices"] = "Notificaties"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Alle notificaties weergeven"; -$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["See all private messages"] = "Alle privéberichten weergeven"; -$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -$a->strings["Inbox"] = "Postvak IN"; -$a->strings["Outbox"] = "Postvak UIT"; -$a->strings["Event Calendar"] = "Agenda"; -$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; -$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -$a->strings["Manage Your Channels"] = "Beheer je kanalen"; -$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; -$a->strings["Please wait..."] = "Wachten aub..."; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["[-] show less"] = "[-] minder reacties weergeven"; -$a->strings["[+] expand"] = "[+] uitklappen"; -$a->strings["[-] collapse"] = "[-] inklappen"; -$a->strings["Password too short"] = "Wachtwoord te kort"; -$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; -$a->strings["Passphrase hint"] = "Wachtwoordhint"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; -$a->strings["close all"] = "Alles sluiten"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "geleden"; -$a->strings["from now"] = "vanaf nu"; -$a->strings["less than a minute"] = "minder dan een minuut"; -$a->strings["about a minute"] = "ongeveer een minuut"; -$a->strings["%d minutes"] = "%d minuten"; -$a->strings["about an hour"] = "ongeveer een uur"; -$a->strings["about %d hours"] = "ongeveer %d uren"; -$a->strings["a day"] = "een dag"; -$a->strings["%d days"] = "%d dagen"; -$a->strings["about a month"] = "ongeveer een maand"; -$a->strings["%d months"] = "%d maanden"; -$a->strings["about a year"] = "ongeveer een jaar"; -$a->strings["%d years"] = "%d jaren"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel man"; -$a->strings["Currently Female"] = "Momenteel vrouw"; -$a->strings["Mostly Male"] = "Voornamelijk man"; -$a->strings["Mostly Female"] = "Voornamelijk vrouw"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet gespecificeerd"; -$a->strings["Undecided"] = "Nog niet beslist"; -$a->strings["Males"] = "Mannen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homoseksueel"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Seksuele onthouding"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Aseksueel"; -$a->strings["Single"] = "Alleen"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Niet beschikbaar"; -$a->strings["Has crush"] = "Heeft een oogje op iemand"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Gelukkig"; -$a->strings["Not looking"] = "Niet op zoek"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Verraden"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$a->strings["Uncertain"] = "Onzeker"; -$a->strings["It's complicated"] = "Het is ingewikkeld"; -$a->strings["Don't care"] = "Maakt mij niks uit"; -$a->strings["Ask me"] = "Vraag het me"; -$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; -$a->strings["Could not connect to database."] = "Could not connect to database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -$a->strings["Could not create table."] = "Could not create table."; -$a->strings["Your site database has been installed."] = "Your hub database has been installed."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -$a->strings["System check"] = "System check"; -$a->strings["Next"] = "Volgende"; -$a->strings["Check again"] = "Check again"; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database Server Name"; -$a->strings["Default is localhost"] = "Default is localhost"; -$a->strings["Database Port"] = "Database Port"; -$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -$a->strings["Database Login Name"] = "Database Login Name"; -$a->strings["Database Login Password"] = "Database Login Password"; -$a->strings["Database Name"] = "Database Name"; -$a->strings["Database Type"] = "Database Type"; -$a->strings["Site administrator email address"] = "Hub administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["Website URL"] = "Hub URL"; -$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -$a->strings["Site settings"] = "Hub settings"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$a->strings["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."] = "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."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generate encryption keys"; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -$a->strings["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."] = "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."; -$a->strings["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."] = "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."; -$a->strings["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."] = "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."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -$a->strings["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."] = "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."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -$a->strings["%s is writable"] = "%s is writable"; -$a->strings["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"] = "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"; -$a->strings["store is writable"] = "store is writable"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -$a->strings["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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; -$a->strings["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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -$a->strings["SSL certificate validation"] = "SSL certificate validation"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -$a->strings["Url rewrite is working"] = "Url rewrite is working"; -$a->strings["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."] = "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."; -$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -$a->strings["

        What next

        "] = "

        Wat nu

        "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; -$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; -$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; -$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; -$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -$a->strings["Your email address"] = "Jouw e-mailadres"; -$a->strings["Choose a password"] = "Geef een wachtwoord op"; -$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -$a->strings["No such group"] = "Collectie niet gevonden"; -$a->strings["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Collection is empty"] = "Collectie is leeg"; -$a->strings["Collection: "] = "Collectie: "; -$a->strings["Connection: "] = "Connectie: "; -$a->strings["Invalid connection."] = "Ongeldige connectie."; -$a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; -$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; -$a->strings["Export Channel"] = "Kanaal exporteren"; -$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -$a->strings["Export Content"] = "Inhoud exporteren"; -$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; -$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; -$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nee"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Export"] = "Exporteren"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; -$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -$a->strings["Event Starts:"] = "Begin gebeurtenis:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; -$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; -$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -$a->strings["Description:"] = "Omschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["Item not available."] = "Item is niet aanwezig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -$a->strings["Block Name"] = "Bloknaam"; -$a->strings["Invalid item."] = "Ongeldig item."; -$a->strings["Channel not found."] = "Kanaal niet gevonden."; -$a->strings["Page not found."] = "Pagina niet gevonden."; -$a->strings["Menu not found."] = "Menu niet gevonden."; -$a->strings["Menu element updated."] = "Menu-onderdeel geüpdatet."; -$a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; -$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -$a->strings["Not found."] = "Niet gevonden."; -$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; -$a->strings["Edit menu"] = "Menu bewerken"; -$a->strings["Edit element"] = "Onderdeel bewerken"; -$a->strings["Drop element"] = "Onderdeel verwijderen"; -$a->strings["New element"] = "Nieuw element"; -$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; -$a->strings["Add menu element"] = "Menu-element toevoegen"; -$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; -$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; -$a->strings["New Menu Element"] = "Nieuw menu-element"; -$a->strings["Menu Item Permissions"] = "Permissies menu-item"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Link text"] = "Linktekst"; -$a->strings["URL of link"] = "URL of link"; -$a->strings["Use RedMatrix magic-auth if available"] = "Gebruik RedMatrix' magic-auth wanneer beschikbaar"; -$a->strings["Open link in new window"] = "Open link in nieuw venster"; -$a->strings["Order in list"] = "Volgorde in lijst"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -$a->strings["Menu item not found."] = "Menu-item niet gevonden."; -$a->strings["Menu item deleted."] = "Menu-item verwijderd."; -$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -$a->strings["Edit Menu Element"] = "Menu-element bewerken"; -$a->strings["Modify"] = "Wijzigen"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["No potential page delegates located."] = "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed."; -$a->strings["Delegate Page Management"] = "Accountbeheer uitbesteden"; -$a->strings["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."] = "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd."; -$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; -$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen"; -$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; -$a->strings["URL of bookmark"] = "URL van bladwijzer"; -$a->strings["Description"] = "Omschrijving"; -$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -$a->strings["Public Sites"] = "Openbare hubs"; -$a->strings["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."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -$a->strings["Site URL"] = "URL hub"; -$a->strings["Access Type"] = "Toegangstype"; -$a->strings["Registration Policy"] = "Registratiebeleid"; -$a->strings["Location"] = "Locatie"; -$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Room not found"] = "Chatkanaal niet gevonden"; -$a->strings["Leave Room"] = "Chatkanaal verlaten"; -$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; -$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; -$a->strings["I am online"] = "Ik ben online"; -$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -$a->strings["New Chatroom"] = "Nieuw chatkanaal"; -$a->strings["Chatroom Name"] = "Naam chatkanaal"; -$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -$a->strings["Away"] = "Afwezig"; -$a->strings["Online"] = "Online"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -$a->strings["The error message was:"] = "Het foutbericht was:"; -$a->strings["Authentication failed."] = "Authenticatie mislukt."; -$a->strings["Remote Authentication"] = "Authenticatie op afstand"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -$a->strings["Authenticate"] = "Authenticeren"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; -$a->strings["Remove Channel"] = "Kanaal verwijderen"; -$a->strings["Public access denied."] = "Openbare toegang geweigerd."; -$a->strings["No channel."] = "Geen kanaal."; -$a->strings["Common connections"] = "Veel voorkomende connecties"; -$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; -$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -$a->strings["Password Reset"] = "Wachtwoord vergeten?"; -$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -$a->strings["click here to login"] = "klik dan hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -$a->strings["Email Address"] = "E-mailadres"; -$a->strings["Reset"] = "Opnieuw instellen"; -$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -$a->strings["Connection updated."] = "Connectie bijgewerkt."; -$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["All"] = "Alles"; -$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; -$a->strings["New Connections"] = "Nieuwe connecties"; -$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; -$a->strings["All Connections"] = "Alle connecties"; -$a->strings["Show all connections"] = "Toon alle connecties"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; -$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Connectie bewerken"; -$a->strings["Search your connections"] = "Doorzoek jouw connecties"; -$a->strings["Finding: "] = "Zoeken naar: "; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit Block"] = "Blok bewerken"; -$a->strings["Delete block?"] = "Blok verwijderen"; -$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; -$a->strings["Delete Block"] = "Blok verwijderen"; -$a->strings["Name is required"] = "Naam is vereist"; -$a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -$a->strings["Password changed."] = "Wachtwoord veranderd."; -$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -$a->strings["Not valid email."] = "Geen geldig e-mailadres."; -$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Applicatie toevoegen"; -$a->strings["Name of application"] = "Naam van applicatie"; -$a->strings["Consumer Key"] = "Consumer key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -$a->strings["Consumer Secret"] = "Consumer secret"; -$a->strings["Redirect"] = "Redirect/doorverwijzing"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -$a->strings["Icon url"] = "URL van pictogram"; -$a->strings["Optional"] = "Optioneel"; -$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = "Client key begint met"; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Autorisatie verwijderen"; -$a->strings["No feature settings configured"] = "Geen plugin-instellingen ingesteld"; -$a->strings["Feature Settings"] = "Plugin-instellingen"; -$a->strings["Account Settings"] = "Account-instellingen"; -$a->strings["Password Settings"] = "Wachtwoord-instellingen"; -$a->strings["New Password:"] = "Nieuw wachtwoord:"; -$a->strings["Confirm:"] = "Bevestigen:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Remove Account"] = "Account verwijderen"; -$a->strings["Remove this account from this server including all its channels"] = "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid."; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; -$a->strings["mobile"] = "mobiel"; -$a->strings["Display Settings"] = "Weergave-instellingen"; -$a->strings["Display Theme:"] = "Gebruik thema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -$a->strings["Don't show emoticons"] = "Geen emoticons weergeven"; -$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; -$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; -$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -$a->strings["Approved connections"] = "Geaccepteerde connecties"; -$a->strings["Any connections"] = "Alle connecties"; -$a->strings["Anybody on this website"] = "Iedereen op deze hub"; -$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; -$a->strings["Anybody authenticated"] = "Geauthenticeerd"; -$a->strings["Anybody on the internet"] = "Iedereen op het internet"; -$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -$a->strings["or"] = "of"; -$a->strings["Your channel address is"] = "Jouw kanaaladres is"; -$a->strings["Channel Settings"] = "Kanaal-instellingen"; -$a->strings["Basic Settings"] = "Basis-instellingen"; -$a->strings["Your Timezone:"] = "Jouw tijdzone:"; -$a->strings["Default Post Location:"] = "Standaardlocatie bericht:"; -$a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; -$a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; -$a->strings["Adult Content"] = "Inhoud voor volwassenen"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; -$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; -$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"; -$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; -$a->strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; -$a->strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; -$a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; -$a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; -$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; -$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -$a->strings["Notification Settings"] = "Notificatie-instellingen"; -$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; -$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; -$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; -$a->strings["Recommended"] = "Aanbevolen"; -$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; -$a->strings["Events today"] = "Gebeurtissen van vandaag"; -$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -$a->strings["System info messages"] = "Systeemmededelingen"; -$a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; -$a->strings["New connections"] = "Nieuwe connecties"; -$a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; -$a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; -$a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; -$a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; -$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -$a->strings["Miscellaneous Settings"] = "Diverse instellingen"; -$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; -$a->strings["Remove this channel"] = "Verwijder dit kanaal"; -$a->strings["- select -"] = "- kies map -"; -$a->strings["Version %s"] = "Versie %s"; -$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; -$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; -$a->strings["Tag: "] = "Tag: "; -$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -$a->strings["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; -$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Hubbeheerders: "; -$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -$a->strings["Album not found."] = "Album niet gevonden."; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; -$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -$a->strings["Contact Photos"] = "Connectiefoto's"; -$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$a->strings["Edit Album"] = "Album bewerken"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -$a->strings["Photo not available"] = "Foto niet aanwezig"; -$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; -$a->strings["Private Photo"] = "Privéfoto"; -$a->strings["View Full Size"] = "Volledige grootte weergeven"; -$a->strings["Edit photo"] = "Foto bewerken"; -$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -$a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Tag toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["network"] = "netwerk"; -$a->strings["RSS"] = "RSS"; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Maak dit bericht privé"; +$a->strings["Embedded content"] = "Ingesloten inhoud"; +$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +$a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +$a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; +$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; +$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; +$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; +$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +$a->strings["Social Networking"] = "Sociaal netwerk"; +$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; +$a->strings["Restricted"] = "Beperkt zichtbaar"; +$a->strings["Private"] = "Verborgen kanaal"; +$a->strings["Community Forum"] = "Groepsforum"; +$a->strings["Feed Republish"] = "Feed herpubliceren"; +$a->strings["Special Purpose"] = "Speciaal doel"; +$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; +$a->strings["Group Repository"] = "Groepsopslag"; +$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +$a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit Block"] = "Blok bewerken"; +$a->strings["Delete block?"] = "Blok verwijderen"; +$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +$a->strings["Delete Block"] = "Blok verwijderen"; $a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; $a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; $a->strings["Current Channel"] = "Huidig kanaal"; @@ -1343,12 +929,203 @@ $a->strings["Default Channel"] = "Standaardkanaal"; $a->strings["Make Default"] = "Als standaard instellen"; $a->strings["%d new messages"] = "%d nieuwe berichten"; $a->strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$a->strings["Item is not editable"] = "Item is niet te bewerken"; -$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["No potential page delegates located."] = "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed."; +$a->strings["Delegate Page Management"] = "Accountbeheer uitbesteden"; +$a->strings["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."] = "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd."; +$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; +$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; +$a->strings["Remove"] = "Verwijderen"; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen"; +$a->strings["Xchan Lookup"] = "Xchan opzoeken"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +$a->strings["Not found."] = "Niet gevonden."; +$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["Block Name"] = "Bloknaam"; +$a->strings["Channel added."] = "Kanaal toegevoegd."; +$a->strings["Tag removed"] = "Tag verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder item-tag"; +$a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +$a->strings["Profile Match"] = "Profielovereenkomst"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +$a->strings["is interested in:"] = "is geïnteresseerd in:"; +$a->strings["No matches"] = "Geen overeenkomsten"; +$a->strings["Item not available."] = "Item is niet aanwezig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; +$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; +$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; +$a->strings["Photo not available."] = "Foto niet beschikbaar."; +$a->strings["Upload File:"] = "Bestand uploaden:"; +$a->strings["Select a profile:"] = "Kies een profiel:"; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$a->strings["or"] = "of"; +$a->strings["skip this step"] = "sla deze stap over"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; +$a->strings["Crop Image"] = "Afbeelding bijsnijden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; +$a->strings["Done Editing"] = "Klaar met bewerken"; +$a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; +$a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; +$a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; +$a->strings["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["Like/Dislike"] = "Leuk/niet leuk"; +$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; +$a->strings["Invalid request."] = "Ongeldig verzoek"; +$a->strings["thing"] = "ding"; +$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +$a->strings["Action completed."] = "Actie voltooid"; +$a->strings["Thank you."] = "Bedankt"; +$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +$a->strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Delete event"] = "Gebeurtenis verwijderen"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["Export"] = "Exporteren"; +$a->strings["Event removed"] = "Gebeurtenis verwijderd"; +$a->strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; +$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; +$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; +$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +$a->strings["Description:"] = "Omschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Public Sites"] = "Openbare hubs"; +$a->strings["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."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +$a->strings["Rate this hub"] = "Beoordeel deze hub"; +$a->strings["Site URL"] = "URL hub"; +$a->strings["Access Type"] = "Toegangstype"; +$a->strings["Registration Policy"] = "Registratiebeleid"; +$a->strings["Location"] = "Locatie"; +$a->strings["View hub ratings"] = "Bekijk hubbeoordelingen"; +$a->strings["Rate"] = "Beoordeel"; +$a->strings["View ratings"] = "Bekijk beoordelingen"; +$a->strings["No such group"] = "Collectie niet gevonden"; +$a->strings["Search Results For:"] = "Zoekresultaten voor:"; +$a->strings["Collection is empty"] = "Collectie is leeg"; +$a->strings["Collection: "] = "Collectie: "; +$a->strings["Connection: "] = "Connectie: "; +$a->strings["Invalid connection."] = "Ongeldige connectie."; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +$a->strings["Connection updated."] = "Connectie bijgewerkt."; +$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +$a->strings["is now connected to"] = "is nu verbonden met"; +$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; +$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; +$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; +$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; +$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; +$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; +$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; +$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; +$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; +$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; +$a->strings["Connection has been removed."] = "Connectie is verwijderd"; +$a->strings["View %s's profile"] = "Profiel van %s weergeven"; +$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; +$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +$a->strings["Recent Activity"] = "Recente activiteit"; +$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +$a->strings["Unblock"] = "Deblokkeren"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +$a->strings["Unignore"] = "Niet meer negeren"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +$a->strings["Unarchive"] = "Niet meer archiveren"; +$a->strings["Archive"] = "Archiveren"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +$a->strings["Unhide"] = "Niet meer verbergen"; +$a->strings["Hide"] = "Verbergen"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +$a->strings["Delete this connection"] = "Deze connectie verwijderen"; +$a->strings["Approve this connection"] = "Deze connectie accepteren"; +$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; +$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; +$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden."; +$a->strings["inherited"] = "geërfd"; +$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; +$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; +$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; +$a->strings["Their Settings"] = "Hun instellingen"; +$a->strings["My Settings"] = "Mijn instellingen"; +$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren."; +$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; +$a->strings["Forum Members"] = "Forumleden"; +$a->strings["Soapbox"] = "Zeepkist"; +$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; +$a->strings["Cautious Sharing "] = "Voorzichtig delen"; +$a->strings["Follow Only"] = "Alleen volgen"; +$a->strings["Individual Permissions"] = "Individuele permissies"; +$a->strings["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."] = "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect."; +$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; +$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; +$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; +$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; +$a->strings["Ignore contact"] = "Connectie negeren"; +$a->strings["Repair URL settings"] = "URL-instellingen repareren"; +$a->strings["View conversations"] = "Conversaties weergeven"; +$a->strings["Delete contact"] = "Connectie verwijderen"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare berichten updaten"; +$a->strings["Update now"] = "Nu updaten"; +$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; +$a->strings["Currently ignored"] = "Momenteel genegeerd"; +$a->strings["Currently archived"] = "Momenteel gearchiveerd"; +$a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; +$a->strings["RedMatrix channel"] = "RedMatrix-kanaal"; $a->strings["Collection created."] = "Collectie aangemaakt"; $a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; $a->strings["Collection updated."] = "Collectie bijgewerkt."; @@ -1361,75 +1138,226 @@ $a->strings["Collection Editor"] = "Collectiebewerker"; $a->strings["Members"] = "Kanalen"; $a->strings["All Connected Channels"] = "Alle kanaalconnecties"; $a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -$a->strings["sent you a private message"] = "stuurde jou een privébericht"; -$a->strings["added your channel"] = "voegde jouw kanaal toe"; -$a->strings["posted an event"] = "plaatste een gebeurtenis"; -$a->strings["Edit Layout"] = "Lay-out bewerken"; -$a->strings["Delete layout?"] = "Lay-out verwijderen?"; -$a->strings["Delete Layout"] = "Lay-out verwijderen"; -$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -$a->strings["Source created."] = "Bron aangemaakt."; -$a->strings["Source updated."] = "Bron aangemaakt."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -$a->strings["New Source"] = "Nieuwe bron"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -$a->strings["Channel Name"] = "Kanaalnaam"; -$a->strings["Source not found."] = "Bron niet gevonden"; -$a->strings["Edit Source"] = "Bron bewerken"; -$a->strings["Delete Source"] = "Bron verwijderen"; -$a->strings["Source removed"] = "Bron verwijderd"; -$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; -$a->strings["Channel added."] = "Kanaal toegevoegd."; +$a->strings["Version %s"] = "Versie %s"; +$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; +$a->strings["Tag: "] = "Tag: "; +$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +$a->strings["Running at web location"] = "Draaiend op weblocatie"; +$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; +$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Hubbeheerders: "; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your site database has been installed."] = "Your hub database has been installed."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Default is localhost"] = "Default is localhost"; +$a->strings["Database Port"] = "Database Port"; +$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Database Type"] = "Database Type"; +$a->strings["Site administrator email address"] = "Hub administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Website URL"] = "Hub URL"; +$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +$a->strings["Site settings"] = "Hub settings"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["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."] = "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."; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; +$a->strings["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."] = "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."; +$a->strings["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."] = "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."; +$a->strings["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."] = "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."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["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."] = "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."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +$a->strings["%s is writable"] = "%s is writable"; +$a->strings["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"] = "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"; +$a->strings["store is writable"] = "store is writable"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +$a->strings["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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; +$a->strings["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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +$a->strings["SSL certificate validation"] = "SSL certificate validation"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +$a->strings["Url rewrite is working"] = "Url rewrite is working"; +$a->strings["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."] = "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."; +$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +$a->strings["

        What next

        "] = "

        Wat nu

        "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Veel voorkomende connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +$a->strings["Item is not editable"] = "Item is niet te bewerken"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["All"] = "Alles"; +$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; +$a->strings["New Connections"] = "Nieuwe connecties"; +$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +$a->strings["All Connections"] = "Alle connecties"; +$a->strings["Show all connections"] = "Toon alle connecties"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; +$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Connectie bewerken"; +$a->strings["Search your connections"] = "Doorzoek jouw connecties"; +$a->strings["Finding: "] = "Zoeken naar: "; +$a->strings["webpage"] = "Webpagina"; +$a->strings["block"] = "blok"; +$a->strings["layout"] = "lay-out"; +$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["Thing updated"] = "Ding bijgewerkt"; +$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; +$a->strings["Thing added"] = "Ding toegevoegd"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Ding weergeven"; +$a->strings["item not found."] = "Item niet gevonden"; +$a->strings["Edit Thing"] = "Ding bewerken"; +$a->strings["Select a profile"] = "Kies een profiel"; +$a->strings["Post an activity"] = "Plaats een bericht"; +$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +$a->strings["Name of thing e.g. something"] = "Naam van ding"; +$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; +$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; +$a->strings["URL of bookmark"] = "URL van bladwijzer"; +$a->strings["Description"] = "Omschrijving"; +$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["network"] = "netwerk"; +$a->strings["RSS"] = "RSS"; $a->strings["Layout updated."] = "Lay-out bijgewerkt."; $a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; $a->strings["Layout not found."] = "Lay-out niet gevonden."; $a->strings["Module Name:"] = "Modulenaam:"; $a->strings["Layout Help"] = "Lay-out-hulp"; +$a->strings["- select -"] = "- kies map -"; +$a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +$a->strings["Nothing to import."] = "Niets gevonden om te importeren"; +$a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +$a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; +$a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; +$a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +$a->strings["Import completed."] = "Import voltooid."; +$a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +$a->strings["Import Channel"] = "Kanaal importeren"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar."; +$a->strings["File to Upload"] = "Bestand om te uploaden"; +$a->strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +$a->strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +$a->strings["Your old login email address"] = "Het e-mailadres van je oude account"; +$a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +$a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; +$a->strings["Edit Layout"] = "Lay-out bewerken"; +$a->strings["Delete layout?"] = "Lay-out verwijderen?"; +$a->strings["Delete Layout"] = "Lay-out verwijderen"; +$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +$a->strings["Room not found"] = "Chatkanaal niet gevonden"; +$a->strings["Leave Room"] = "Chatkanaal verlaten"; +$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; +$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; +$a->strings["I am online"] = "Ik ben online"; +$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +$a->strings["New Chatroom"] = "Nieuw chatkanaal"; +$a->strings["Chatroom Name"] = "Naam chatkanaal"; +$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; $a->strings["Edit Webpage"] = "Webpagina bewerken"; $a->strings["Delete webpage?"] = "Webpagina verwijderen?"; $a->strings["Delete Webpage"] = "Webpagina verwijderen"; -$a->strings["webpage"] = "Webpagina"; -$a->strings["block"] = "blok"; -$a->strings["layout"] = "lay-out"; -$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; -$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; -$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; -$a->strings["Photo not available."] = "Foto niet beschikbaar."; -$a->strings["Upload File:"] = "Bestand uploaden:"; -$a->strings["Select a profile:"] = "Kies een profiel:"; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["skip this step"] = "sla deze stap over"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; -$a->strings["Crop Image"] = "Afbeelding bijsnijden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; -$a->strings["Done Editing"] = "Klaar met bewerken"; -$a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; -$a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; -$a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Kanalen voorstellen"; -$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; -$a->strings["Help:"] = "Hulp:"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Like/Dislike"] = "Leuk/niet leuk"; -$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; -$a->strings["Invalid request."] = "Ongeldig verzoek"; -$a->strings["thing"] = "ding"; -$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -$a->strings["Action completed."] = "Actie voltooid"; -$a->strings["Thank you."] = "Bedankt"; +$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$a->strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; +$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +$a->strings["click here to login"] = "klik dan hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +$a->strings["Email Address"] = "E-mailadres"; +$a->strings["Reset"] = "Opnieuw instellen"; +$a->strings["Website:"] = "Website:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +$a->strings["Please login."] = "Inloggen."; $a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; $a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; $a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; @@ -1449,6 +1377,52 @@ $a->strings["1. Register at any RedMatrix location (they are all inter-connected $a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; $a->strings["or visit "] = "of bezoek "; $a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; +$a->strings["No locations found."] = "Geen locaties gevonden."; +$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +$a->strings["Location (address)"] = "Locatie (adres)"; +$a->strings["Primary Location"] = "Primaire locatie"; +$a->strings["Drop location"] = "Locatie verwijderen"; +$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +$a->strings["Source created."] = "Bron aangemaakt."; +$a->strings["Source updated."] = "Bron aangemaakt."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +$a->strings["New Source"] = "Nieuwe bron"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +$a->strings["Channel Name"] = "Kanaalnaam"; +$a->strings["Source not found."] = "Bron niet gevonden"; +$a->strings["Edit Source"] = "Bron bewerken"; +$a->strings["Delete Source"] = "Bron verwijderen"; +$a->strings["Source removed"] = "Bron verwijderd"; +$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; +$a->strings["Menu updated."] = "Menu aangepast. "; +$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +$a->strings["Menu created."] = "Menu aangemaakt."; +$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +$a->strings["Manage Menus"] = "Menu's beheren"; +$a->strings["Drop"] = "Verwijderen"; +$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; +$a->strings["Delete this menu"] = "Menu verwijderen"; +$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +$a->strings["Edit this menu"] = "Dit menu bewerken"; +$a->strings["New Menu"] = "Nieuw menu"; +$a->strings["Menu name"] = "Naam van menu"; +$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +$a->strings["Menu title"] = "Titel van menu"; +$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +$a->strings["Menu not found."] = "Menu niet gevonden."; +$a->strings["Menu deleted."] = "Menu verwijderd."; +$a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +$a->strings["Edit Menu"] = "Menu bewerken"; +$a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +$a->strings["Modify"] = "Wijzigen"; $a->strings["Permission Denied."] = "Toegang geweigerd"; $a->strings["File not found."] = "Bestand niet gevonden."; $a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -1460,67 +1434,122 @@ $a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak $a->strings["Attach this file to a new post"] = "Dit bestand als bijlage aan nieuw bericht toevoegen"; $a->strings["Show URL to this file"] = "Toon URL van dit bestand"; $a->strings["Do not show in shared with me folder of your connections"] = "Toon niet in de map 'gedeeld' van jouw connecties"; -$a->strings["RedMatrix channel"] = "RedMatrix-kanaal"; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Kanalen voorstellen"; +$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; +$a->strings["Hub not found."] = "Hub niet gevonden."; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Maak dit bericht privé"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +$a->strings["Visible To"] = "Zichtbaar voor"; $a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; $a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -$a->strings["Nothing to import."] = "Niets gevonden om te importeren"; -$a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -$a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; -$a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -$a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -$a->strings["Import completed."] = "Import voltooid."; -$a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -$a->strings["Import Channel"] = "Kanaal importeren"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar."; -$a->strings["File to Upload"] = "Bestand om te uploaden"; -$a->strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -$a->strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -$a->strings["Your old login email address"] = "Het e-mailadres van je oude account"; -$a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -$a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; -$a->strings["Location not found."] = "Locatie niet gevonden."; -$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; -$a->strings["No locations found."] = "Geen locaties gevonden."; -$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -$a->strings["Location (address)"] = "Locatie (adres)"; -$a->strings["Primary Location"] = "Primaire locatie"; -$a->strings["Drop location"] = "Locatie verwijderen"; -$a->strings["Thing updated"] = "Ding bijgewerkt"; -$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; -$a->strings["Thing added"] = "Ding toegevoegd"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Ding weergeven"; -$a->strings["item not found."] = "Item niet gevonden"; -$a->strings["Edit Thing"] = "Ding bewerken"; -$a->strings["Select a profile"] = "Kies een profiel"; -$a->strings["Post an activity"] = "Plaats een bericht"; -$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -$a->strings["Name of thing e.g. something"] = "Naam van ding"; -$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; -$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; -$a->strings["Layout Name"] = "Naam lay-out"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -$a->strings["No ratings available"] = "Geen waardering beschikbaar"; +$a->strings["Profile not found."] = "Profiel niet gevonden."; +$a->strings["Profile deleted."] = "Profiel verwijderd."; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +$a->strings["Profile Name is required."] = "Profielnaam is vereist"; +$a->strings["Marital Status"] = "Huwelijke status"; +$a->strings["Romantic Partner"] = "Romantische partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk/arbeid"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Politieke overtuigingen"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele voorkeur"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Kanaaladres"; +$a->strings["Profile updated."] = "Profiel bijgewerkt"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +$a->strings["Edit Profile Details"] = "Profiel bewerken"; +$a->strings["View this profile"] = "Profiel weergeven"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; +$a->strings["Profile Name:"] = "Profielnaam:"; +$a->strings["Your Full Name:"] = "Jouw volledige naam:"; +$a->strings["Title/Description:"] = "Titel/omschrijving:"; +$a->strings["Your Gender:"] = "Jouw geslacht"; +$a->strings["Birthday :"] = "Verjaardag: "; +$a->strings["Street Address:"] = "Straat en huisnummer:"; +$a->strings["Locality/City:"] = "Woonplaats:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; +$a->strings[" Marital Status:"] = " Huwelijkse staat:"; +$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "Adres homepage:"; +$a->strings["Religious Views:"] = "Religieuze overtuigingen"; +$a->strings["Keywords:"] = "Trefwoorden"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; +$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["My other channels"] = "Mijn andere kanalen"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken/literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; +$a->strings["Love/romance"] = "Liefde/romantiek"; +$a->strings["Work/employment"] = "Werk/arbeid"; +$a->strings["School/education"] = "School/onderwijs"; +$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; +$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; +$a->strings["No ratings"] = "Geen beoordelingen"; $a->strings["Ratings"] = "Waarderingen"; $a->strings["Rating: "] = "Waardering: "; +$a->strings["Website: "] = "Website: "; $a->strings["Description: "] = "Omschrijving: "; -$a->strings["Tag removed"] = "Tag verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder item-tag"; -$a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; +$a->strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", +); +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Homepage: "] = "Homepage: "; +$a->strings["Hometown: "] = "Oorspronkelijk uit: "; +$a->strings["About: "] = "Over: "; +$a->strings["Public Forum:"] = "Openbaar forum:"; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Finding:"] = "Gezocht naar:"; +$a->strings["next page"] = "volgende pagina"; +$a->strings["previous page"] = "vorige pagina"; +$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +$a->strings["Export Channel"] = "Kanaal exporteren"; +$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +$a->strings["Export Content"] = "Inhoud exporteren"; +$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +$a->strings["No connections."] = "Geen connecties."; +$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; $a->strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; $a->strings["Site"] = "Hub-instellingen"; $a->strings["Accounts"] = "Accounts"; $a->strings["Channels"] = "Kanalen"; $a->strings["Plugins"] = "Plug-ins"; $a->strings["Themes"] = "Thema's"; -$a->strings["Server"] = "Hubbeheer"; +$a->strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; $a->strings["Profile Config"] = "Profielconfiguratie"; $a->strings["DB updates"] = "Database-updates"; $a->strings["Logs"] = "Logboeken"; @@ -1534,6 +1563,7 @@ $a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Ingeschakelde plug-ins"; $a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +$a->strings["mobile"] = "mobiel"; $a->strings["experimental"] = "experimenteel"; $a->strings["unsupported"] = "Niet ondersteund"; $a->strings["Yes - with approval"] = "Ja - met goedkeuring"; @@ -1541,6 +1571,7 @@ $a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet open $a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang"; $a->strings["My site has free access only"] = "Mijn RedMatrix-hub kent alleen gratis toegang"; $a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Bestand uploaden"; $a->strings["Policies"] = "Beleid"; $a->strings["Site name"] = "Naam van deze RedMatrix-hub"; @@ -1595,6 +1626,7 @@ $a->strings["ID"] = "ID"; $a->strings["for channel"] = "voor kanaal"; $a->strings["on server"] = "op hub"; $a->strings["Status"] = "Status"; +$a->strings["Server"] = "Hubbeheer"; $a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; $a->strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; $a->strings["Update %s was successfully applied."] = "Update %s was geslaagd."; @@ -1604,6 +1636,9 @@ $a->strings["No failed updates."] = "Geen mislukte updates."; $a->strings["Failed Updates"] = "Mislukte updates"; $a->strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; $a->strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +$a->strings["Queue Statistics"] = "Wachtrij-statistieken"; +$a->strings["Total Entries"] = "Aantal vermeldingen"; +$a->strings["Destination URL"] = "Doel-URL"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s account geblokkeerd/gedeblokkeerd", 1 => "%s accounts geblokkeerd/gedeblokkeerd", @@ -1622,8 +1657,6 @@ $a->strings["Request date"] = "Tijd/datum verzoek"; $a->strings["No registrations."] = "Geen verzoeken."; $a->strings["Approve"] = "Goedkeuren"; $a->strings["Deny"] = "Afkeuren"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Unblock"] = "Deblokkeren"; $a->strings["Register date"] = "Geregistreerd"; $a->strings["Last login"] = "Laatste keer ingelogd"; $a->strings["Expires"] = "Verloopt"; @@ -1645,7 +1678,6 @@ $a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; $a->strings["Censor"] = "Censureren"; $a->strings["Uncensor"] = "Niet censureren"; $a->strings["UID"] = "UID"; -$a->strings["Address"] = "Kanaaladres"; $a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $a->strings["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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld."; @@ -1675,160 +1707,134 @@ $a->strings["Help text"] = "Helptekst"; $a->strings["Additional info (optional)"] = "Extra informatie (optioneel)"; $a->strings["Field definition not found"] = "Velddefinitie niet gevonden"; $a->strings["Edit Profile Field"] = "Profielveld bewerken"; -$a->strings["Menu updated."] = "Menu aangepast. "; -$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -$a->strings["Menu created."] = "Menu aangemaakt."; -$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -$a->strings["Manage Menus"] = "Menu's beheren"; -$a->strings["Drop"] = "Verwijderen"; -$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; -$a->strings["Delete this menu"] = "Menu verwijderen"; -$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -$a->strings["Edit this menu"] = "Dit menu bewerken"; -$a->strings["New Menu"] = "Nieuw menu"; -$a->strings["Menu name"] = "Naam van menu"; -$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -$a->strings["Menu title"] = "Titel van menu"; -$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -$a->strings["Menu deleted."] = "Menu verwijderd."; -$a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -$a->strings["Edit Menu"] = "Menu bewerken"; -$a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -$a->strings["Profile Match"] = "Profielovereenkomst"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -$a->strings["is interested in:"] = "is geïnteresseerd in:"; -$a->strings["No matches"] = "Geen overeenkomsten"; -$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -$a->strings["Discard"] = "Annuleren"; -$a->strings["Ignore"] = "Negeren"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +$a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; +$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; +$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; +$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; +$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +$a->strings["Your email address"] = "Jouw e-mailadres"; +$a->strings["Choose a password"] = "Geef een wachtwoord op"; +$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; +$a->strings["Remove This Account"] = "Verwijder dit account"; +$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden."; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."; +$a->strings["Remove Account"] = "Account verwijderen"; $a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; -$a->strings["Continue"] = "Ga verder"; -$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -$a->strings["App installed."] = "App geïnstalleerd"; -$a->strings["Malformed app."] = "Misvormde app."; -$a->strings["Embed code"] = "Insluitcode"; -$a->strings["Edit App"] = "App bewerken"; -$a->strings["Create App"] = "App maken"; -$a->strings["Name of app"] = "Naam van app"; -$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; -$a->strings["Photo icon URL"] = "URL van pictogram"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -$a->strings["Version ID"] = "Versie-ID"; -$a->strings["Price of app"] = "Prijs van de app"; -$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Message not found."] = "Bericht niet gevonden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Private Conversation"] = "Privéconversatie"; -$a->strings["Delete conversation"] = "Verwijder conversatie"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; -$a->strings["No connections."] = "Geen connecties."; -$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -$a->strings["Hub not found."] = "Hub niet gevonden."; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddelde waardering"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +$a->strings["Album not found."] = "Album niet gevonden."; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; +$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +$a->strings["Contact Photos"] = "Connectiefoto's"; +$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +$a->strings["Photo not available"] = "Foto niet aanwezig"; +$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; +$a->strings["Private Photo"] = "Privéfoto"; +$a->strings["View Full Size"] = "Volledige grootte weergeven"; +$a->strings["Edit photo"] = "Foto bewerken"; +$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +$a->strings["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Tag toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; $a->strings["Wall Photos"] = "Kanaalfoto's"; -$a->strings["is now connected to"] = "is nu verbonden met"; -$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; -$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; -$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; -$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; -$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; -$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; -$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; -$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; -$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; -$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; -$a->strings["Connection has been removed."] = "Connectie is verwijderd"; -$a->strings["View %s's profile"] = "Profiel van %s weergeven"; -$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; -$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -$a->strings["Recent Activity"] = "Recente activiteit"; -$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -$a->strings["Unignore"] = "Niet meer negeren"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -$a->strings["Unarchive"] = "Niet meer archiveren"; -$a->strings["Archive"] = "Archiveren"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -$a->strings["Unhide"] = "Niet meer verbergen"; -$a->strings["Hide"] = "Verbergen"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -$a->strings["Delete this connection"] = "Deze connectie verwijderen"; -$a->strings["Approve this connection"] = "Deze connectie accepteren"; -$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; -$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; -$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -$a->strings["Rating (this information may be public)"] = "Waardering (deze informatie kan mogelijk openbaar worden)"; -$a->strings["Optionally explain your rating (this information may be public)"] = "Licht desgewenst jouw waardering toe (kan mogelijk openbaar worden)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden."; -$a->strings["inherited"] = "geërfd"; -$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; -$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; -$a->strings["Their Settings"] = "Hun instellingen"; -$a->strings["My Settings"] = "Mijn instellingen"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren."; -$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; -$a->strings["Forum Members"] = "Forumleden"; -$a->strings["Soapbox"] = "Zeepkist"; -$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; -$a->strings["Cautious Sharing "] = "Voorzichtig delen"; -$a->strings["Follow Only"] = "Alleen volgen"; -$a->strings["Individual Permissions"] = "Individuele permissies"; -$a->strings["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."] = "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect."; -$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; -$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; -$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; -$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; -$a->strings["Ignore contact"] = "Connectie negeren"; -$a->strings["Repair URL settings"] = "URL-instellingen repareren"; -$a->strings["View conversations"] = "Conversaties weergeven"; -$a->strings["Delete contact"] = "Connectie verwijderen"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare berichten updaten"; -$a->strings["Update now"] = "Nu updaten"; -$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; -$a->strings["Currently ignored"] = "Momenteel genegeerd"; -$a->strings["Currently archived"] = "Momenteel gearchiveerd"; -$a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; $a->strings["Conversation removed."] = "Conversatie verwijderd"; $a->strings["No messages."] = "Geen berichten"; +$a->strings["Delete conversation"] = "Verwijder conversatie"; $a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; +$a->strings["Menu element updated."] = "Menu-onderdeel geüpdatet."; +$a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; +$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; +$a->strings["Edit menu"] = "Menu bewerken"; +$a->strings["Edit element"] = "Onderdeel bewerken"; +$a->strings["Drop element"] = "Onderdeel verwijderen"; +$a->strings["New element"] = "Nieuw element"; +$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; +$a->strings["Add menu element"] = "Menu-element toevoegen"; +$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; +$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; +$a->strings["New Menu Element"] = "Nieuw menu-element"; +$a->strings["Menu Item Permissions"] = "Permissies menu-item"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Link text"] = "Linktekst"; +$a->strings["URL of link"] = "URL of link"; +$a->strings["Use RedMatrix magic-auth if available"] = "Gebruik RedMatrix' magic-auth wanneer beschikbaar"; +$a->strings["Open link in new window"] = "Open link in nieuw venster"; +$a->strings["Order in list"] = "Volgorde in lijst"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +$a->strings["Menu item not found."] = "Menu-item niet gevonden."; +$a->strings["Menu item deleted."] = "Menu-item verwijderd."; +$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +$a->strings["Edit Menu Element"] = "Menu-element bewerken"; +$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Total votes"] = "Totaal aantal stemmen"; +$a->strings["Average Rating"] = "Gemiddelde waardering"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; +$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; +$a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; +$a->strings["Layout Name"] = "Naam lay-out"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +$a->strings["The error message was:"] = "Het foutbericht was:"; +$a->strings["Authentication failed."] = "Authenticatie mislukt."; +$a->strings["Remote Authentication"] = "Authenticatie op afstand"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +$a->strings["Authenticate"] = "Authenticeren"; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Message recalled."] = "Bericht ingetrokken."; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Message not found."] = "Bericht niet gevonden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Private Conversation"] = "Privéconversatie"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; $a->strings["Add a Channel"] = "Kanaal toevoegen"; $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; $a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\""; @@ -1838,96 +1844,165 @@ $a->strings["Or import an existing channel from another l $a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Kies een kanaaltype (bijv. een persoonlijk kanaal voor een sociaal netwerk of eentje voor een groepsforum) en jouw behoefte aan privacy, zodat wij voor jou de beste permissies kunnen kiezen."; $a->strings["Channel Type"] = "Kanaaltype"; $a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; -$a->strings["Xchan Lookup"] = "Xchan opzoeken"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; -$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; -$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -$a->strings["Post successful."] = "Verzenden bericht geslaagd."; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["Status: "] = "Status: "; -$a->strings["Homepage: "] = "Homepage: "; -$a->strings["Hometown: "] = "Oorspronkelijk uit: "; -$a->strings["About: "] = "Over: "; -$a->strings["Public Forum:"] = "Openbaar forum:"; -$a->strings["Keywords: "] = "Trefwoorden: "; -$a->strings["Finding:"] = "Gezocht naar:"; -$a->strings["next page"] = "volgende pagina"; -$a->strings["previous page"] = "vorige pagina"; -$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -$a->strings["Profile not found."] = "Profiel niet gevonden."; -$a->strings["Profile deleted."] = "Profiel verwijderd."; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -$a->strings["Profile Name is required."] = "Profielnaam is vereist"; -$a->strings["Marital Status"] = "Huwelijke status"; -$a->strings["Romantic Partner"] = "Romantische partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk/arbeid"; -$a->strings["Religion"] = "Religie"; -$a->strings["Political Views"] = "Politieke overtuigingen"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele voorkeur"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Profile updated."] = "Profiel bijgewerkt"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -$a->strings["Edit Profile Details"] = "Profiel bewerken"; -$a->strings["View this profile"] = "Profiel weergeven"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; -$a->strings["Profile Name:"] = "Profielnaam:"; -$a->strings["Your Full Name:"] = "Jouw volledige naam:"; -$a->strings["Title/Description:"] = "Titel/omschrijving:"; -$a->strings["Your Gender:"] = "Jouw geslacht"; -$a->strings["Birthday :"] = "Verjaardag: "; -$a->strings["Street Address:"] = "Straat en huisnummer:"; -$a->strings["Locality/City:"] = "Woonplaats:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; -$a->strings[" Marital Status:"] = " Huwelijkse staat:"; -$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres homepage:"; -$a->strings["Religious Views:"] = "Religieuze overtuigingen"; -$a->strings["Keywords:"] = "Trefwoorden"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; -$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["My other channels"] = "Mijn andere kanalen"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken/literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; -$a->strings["Love/romance"] = "Liefde/romantiek"; -$a->strings["Work/employment"] = "Werk/arbeid"; -$a->strings["School/education"] = "School/onderwijs"; -$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; -$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["App installed."] = "App geïnstalleerd"; +$a->strings["Malformed app."] = "Misvormde app."; +$a->strings["Embed code"] = "Insluitcode"; +$a->strings["Edit App"] = "App bewerken"; +$a->strings["Create App"] = "App maken"; +$a->strings["Name of app"] = "Naam van app"; +$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; +$a->strings["Photo icon URL"] = "URL van pictogram"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +$a->strings["Version ID"] = "Versie-ID"; +$a->strings["Price of app"] = "Prijs van de app"; +$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$a->strings["sent you a private message"] = "stuurde jou een privébericht"; +$a->strings["added your channel"] = "voegde jouw kanaal toe"; +$a->strings["posted an event"] = "plaatste een gebeurtenis"; +$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +$a->strings["Name is required"] = "Naam is vereist"; +$a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; +$a->strings["Diaspora Policy Settings updated."] = "Beleidsinstellingen Diaspora bijgewerkt."; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +$a->strings["Password changed."] = "Wachtwoord veranderd."; +$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +$a->strings["Not valid email."] = "Geen geldig e-mailadres."; +$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Applicatie toevoegen"; +$a->strings["Name of application"] = "Naam van applicatie"; +$a->strings["Consumer Key"] = "Consumer key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +$a->strings["Consumer Secret"] = "Consumer secret"; +$a->strings["Redirect"] = "Redirect/doorverwijzing"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +$a->strings["Icon url"] = "URL van pictogram"; +$a->strings["Optional"] = "Optioneel"; +$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = "Client key begint met"; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Autorisatie verwijderen"; +$a->strings["No feature settings configured"] = "Geen extra functie- of plugin-instellingen"; +$a->strings["Feature Settings"] = "Extra functie- en plugin-instellingen"; +$a->strings["Diaspora Policy Settings"] = "Beleidsinstellingen Diaspora"; +$a->strings["Allow any Diaspora member to comment on your public posts."] = "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren."; +$a->strings["Submit Diaspora Policy Settings"] = "Beleidsinstellingen Diaspora toepassen"; +$a->strings["Account Settings"] = "Account-instellingen"; +$a->strings["Password Settings"] = "Wachtwoord-instellingen"; +$a->strings["New Password:"] = "Nieuw wachtwoord:"; +$a->strings["Confirm:"] = "Bevestigen:"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Remove this account from this server including all its channels"] = "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen"; +$a->strings["Warning: This action is permanent and cannot be reversed."] = "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid."; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; +$a->strings["Display Settings"] = "Weergave-instellingen"; +$a->strings["Display Theme:"] = "Gebruik thema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +$a->strings["Don't show emoticons"] = "Geen emoticons weergeven"; +$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; +$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; +$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +$a->strings["Approved connections"] = "Geaccepteerde connecties"; +$a->strings["Any connections"] = "Alle connecties"; +$a->strings["Anybody on this website"] = "Iedereen op deze hub"; +$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; +$a->strings["Anybody authenticated"] = "Geauthenticeerd"; +$a->strings["Anybody on the internet"] = "Iedereen op het internet"; +$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +$a->strings["Your channel address is"] = "Jouw kanaaladres is"; +$a->strings["Channel Settings"] = "Kanaal-instellingen"; +$a->strings["Basic Settings"] = "Basis-instellingen"; +$a->strings["Your Timezone:"] = "Jouw tijdzone:"; +$a->strings["Default Post Location:"] = "Standaardlocatie bericht:"; +$a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; +$a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; +$a->strings["Adult Content"] = "Inhoud voor volwassenen"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; +$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; +$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"; +$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; +$a->strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; +$a->strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; +$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; +$a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; +$a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; +$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; +$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +$a->strings["Notification Settings"] = "Notificatie-instellingen"; +$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; +$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; +$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; +$a->strings["Recommended"] = "Aanbevolen"; +$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; +$a->strings["Events today"] = "Gebeurtissen van vandaag"; +$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +$a->strings["System info messages"] = "Systeemmededelingen"; +$a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +$a->strings["New connections"] = "Nieuwe connecties"; +$a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; +$a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +$a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; +$a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; +$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; +$a->strings["Miscellaneous Settings"] = "Diverse instellingen"; +$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; +$a->strings["Remove this channel"] = "Verwijder dit kanaal"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; $a->strings["Poll"] = "Poll"; $a->strings["View Results"] = "Bekijk resultaten"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; -$a->strings["Remove This Account"] = "Verwijder dit account"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden."; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."; $a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; $a->strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; $a->strings["Remove all files"] = "Verwijder alle bestanden"; -- cgit v1.2.3 From b286ad221cb2b96c4bb22571d157d4e74332705e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 28 Feb 2015 23:21:05 +0100 Subject: some css fixes for settings --- view/css/mod_settings.css | 5 ++--- view/theme/redbasic/css/style.css | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index 1a40facae..ee06e3dd7 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -29,7 +29,7 @@ ul#settings-privacy-macros { } #settings-permissions-wrapper .field > label { - width: 350px; + width: 40%; } .settings-submit-wrapper { @@ -42,8 +42,7 @@ ul#settings-privacy-macros { } #settings-notifications .field > label { - margin-left: 20px; - width: 330px; + width: 40%; } #settings-notify-desc, #settings-activity-desc, #settings-vnotify-desc { font-weight: bold; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 1ad0d5d71..45fcda2ca 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1270,7 +1270,7 @@ nav .acpopup { .field > label { float: left; - width: 350px; + width: 40%; } .field input, @@ -1280,7 +1280,7 @@ nav .acpopup { .field textarea { height: 100px; } .field_help { display: block; - margin-left: 350px; + margin-left: 40%; color: #666666; } @@ -1322,7 +1322,7 @@ nav .acpopup { .hidden { display: none!important; } .field.radio .field_help { margin-left: 0px; } -.field.checkbox .field_help { display: inline; margin-left: 10px; } +.field.checkbox .field_help { display: block; margin-left: 40%; } /** -- cgit v1.2.3 From 6e64f9af54c6af4fd93afb4d7d7a1594bfb55913 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Mar 2015 15:22:23 +0100 Subject: first pile of work on settings --- view/css/bootstrap-red.css | 4 ++ view/css/mod_settings.css | 15 ++--- view/theme/redbasic/css/style.css | 114 +++++-------------------------------- view/tpl/field_checkbox.tpl | 8 ++- view/tpl/field_colorinput.tpl | 8 +-- view/tpl/field_custom.tpl | 6 +- view/tpl/field_input.tpl | 10 ++-- view/tpl/field_intcheckbox.tpl | 8 ++- view/tpl/field_password.tpl | 8 +-- view/tpl/field_select.tpl | 8 +-- view/tpl/field_select_disabled.tpl | 8 +-- view/tpl/field_select_grouped.tpl | 6 +- view/tpl/field_select_raw.tpl | 8 +-- view/tpl/field_textarea.tpl | 8 +-- view/tpl/field_themeselect.tpl | 6 +- view/tpl/group_selection.tpl | 4 +- view/tpl/settings.tpl | 10 +++- view/tpl/settings_nick_set.tpl | 2 +- 18 files changed, 80 insertions(+), 161 deletions(-) diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index a645b13d2..cb26910b0 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -68,6 +68,10 @@ code { white-space: normal; } +.form-control { + font-size: unset; +} + /* Bootstrap assumes that checkboxes are on the left of labels, while it's usually the opposite in Red */ .field.checkbox input[type="checkbox"] { margin-left: 0px; } .field.checkbox label { padding-left: 0px; font-weight: 700} diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index ee06e3dd7..58e13b54f 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -24,14 +24,6 @@ ul#settings-privacy-macros { margin-top: 15px; } -#settings-permissions-wrapper .field { - margin-bottom: 10px; -} - -#settings-permissions-wrapper .field > label { - width: 40%; -} - .settings-submit-wrapper { margin-bottom: 10px; } @@ -41,9 +33,6 @@ ul#settings-privacy-macros { margin-bottom: 45px; } -#settings-notifications .field > label { - width: 40%; -} #settings-notify-desc, #settings-activity-desc, #settings-vnotify-desc { font-weight: bold; margin-bottom: 15px; @@ -77,3 +66,7 @@ ul#settings-privacy-macros { #settings-dspr-wrapper { margin-top: 15px; } + +.group { + margin-left: 20px; +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 45fcda2ca..95a5d6fc1 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -183,17 +183,6 @@ header { padding: 10px; } -.info-message { - font-size: 1.1em; - border: 1px solid #444; - background-color: $infomess_bgcolour; - padding: 10px; - -moz-border-radius: $radiuspx; - border-radius: $radiuspx; - -} - - nav #banner #logo-text a { font-size: 40px; font-weight: bold; @@ -371,18 +360,6 @@ footer { font-weight: bold; } -#profile-edit-wrapper .field { - margin-top: 20px; -} -#profile-edit-wrapper .field > label { - width: 175px; -} - -#profile-edit-wrapper .field input[type="text"] { - width: 220px; -} - - #profile-edit-links { max-width: $converse_width; padding-top: 15px; @@ -1258,71 +1235,6 @@ nav .acpopup { } -/** - * Form fields - */ -.field { - margin-bottom: 10px; -/* padding-bottom: 10px; */ - overflow: auto; - width: 100% -} - -.field > label { - float: left; - width: 40%; -} - -.field input, -.field textarea { - width: 400px; -} -.field textarea { height: 100px; } -.field_help { - display: block; - margin-left: 40%; - color: #666666; - -} - -.field input[type="checkbox"] { - width: 16px; -} - -.field .onoff { - float: left; - width: 80px; - margin-right: 15px; -} -.field .onoff a { - display: block; - border:1px solid #666666; - background-image:url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 24px; - text-decoration: none; -} -.field .onoff .off { - border-color:#666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color:#204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.hidden { display: none!important; } - -.field.radio .field_help { margin-left: 0px; } -.field.checkbox .field_help { display: block; margin-left: 40%; } /** @@ -2402,9 +2314,8 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { /* Turn checkboxes into switches */ -.field.checkbox .fieldhelp { vertical-align:top; } .field.checkbox > div { - position: relative; width: 70px; + position: relative; width: 50px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; display:inline-block; } @@ -2415,8 +2326,8 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .field.checkbox > div label { display: block; overflow: hidden; cursor: pointer; - border: 2px solid #999999; - border-radius: 20px; + border: 1px solid #ccc; + border-radius: 5px; margin:0px; } @@ -2433,31 +2344,32 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .onoffswitch-inner:before { content: attr(data-on); - padding-left: 10px; + padding-right: 21px; background-color: #EEEEEE; + text-align: right; } .onoffswitch-inner:after { content: attr(data-off); - padding-right: 10px; + padding-left: 21px; background-color: #EEEEEE; color: #999999; - text-align: right; + text-align: left; } .onoffswitch-switch { - display: block; width: 25px; margin-left: 6px; margin-right: 6px; margin-top:5%; margin-bottom:5%; + display: block; width: 15px; margin:4px; background: #A1A1A1; - border: 2px solid #999999; border-radius: 20px; - position: absolute; top: 0; bottom: 0; right: 36px; + border-radius: 10px; + position: absolute; top: 0; bottom: 0; right: 26px; -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s; -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s; } .field.checkbox > div > input:checked + label .onoffswitch-inner { - margin-left: 0; + margin-left: 0px; } .field.checkbox > div > input:checked + label .onoffswitch-switch { - right: -2px; - background-color: #27A1CA; + right: 0px; + background-color: $link_colour; } diff --git a/view/tpl/field_checkbox.tpl b/view/tpl/field_checkbox.tpl index 7a2781be0..b6edd8288 100755 --- a/view/tpl/field_checkbox.tpl +++ b/view/tpl/field_checkbox.tpl @@ -1,4 +1,6 @@ -
        - -
        {{$field.3}} +
        + +
        + {{$field.3}}
        +
        diff --git a/view/tpl/field_colorinput.tpl b/view/tpl/field_colorinput.tpl index a1e912186..9b6f33462 100644 --- a/view/tpl/field_colorinput.tpl +++ b/view/tpl/field_colorinput.tpl @@ -1,6 +1,6 @@ -
        - - {{if $field.4}} {{$field.4}} {{/if}} - {{$field.3}} +
        + + {{if $field.4}} {{$field.4}} {{/if}} + {{$field.3}}
        diff --git a/view/tpl/field_custom.tpl b/view/tpl/field_custom.tpl index 754f5b2f4..907b4c50e 100755 --- a/view/tpl/field_custom.tpl +++ b/view/tpl/field_custom.tpl @@ -1,5 +1,5 @@ -
        - +
        + {{$field.2}} - {{$field.3}} + {{$field.3}}
        diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl index be6e3f047..e4756c218 100755 --- a/view/tpl/field_input.tpl +++ b/view/tpl/field_input.tpl @@ -1,6 +1,6 @@ -
        - - {{if $field.4}} {{$field.4}} {{/if}} - {{$field.3}} -
        +
        + + {{if $field.4}} {{$field.4}} {{/if}} + {{$field.3}} +
        diff --git a/view/tpl/field_intcheckbox.tpl b/view/tpl/field_intcheckbox.tpl index 847783518..565f97760 100755 --- a/view/tpl/field_intcheckbox.tpl +++ b/view/tpl/field_intcheckbox.tpl @@ -1,4 +1,6 @@ -
        - -
        {{$field.4}} +
        + +
        + {{$field.4}}
        +
        diff --git a/view/tpl/field_password.tpl b/view/tpl/field_password.tpl index 38ecf3d07..c9f4c5f6d 100755 --- a/view/tpl/field_password.tpl +++ b/view/tpl/field_password.tpl @@ -1,5 +1,5 @@ -
        - - - {{$field.3}} +
        + + + {{$field.3}}
        diff --git a/view/tpl/field_select.tpl b/view/tpl/field_select.tpl index 95d1855d6..762447290 100755 --- a/view/tpl/field_select.tpl +++ b/view/tpl/field_select.tpl @@ -1,7 +1,7 @@ -
        - - {{foreach $field.4 as $opt=>$val}}{{/foreach}} - {{$field.3}} + {{$field.3}}
        diff --git a/view/tpl/field_select_disabled.tpl b/view/tpl/field_select_disabled.tpl index e241be895..ee5e1508f 100644 --- a/view/tpl/field_select_disabled.tpl +++ b/view/tpl/field_select_disabled.tpl @@ -1,7 +1,7 @@ -
        - - {{foreach $field.4 as $opt=>$val}}{{/foreach}} - {{$field.3}} + {{$field.3}}
        diff --git a/view/tpl/field_select_grouped.tpl b/view/tpl/field_select_grouped.tpl index c7fb4f322..e6d1479de 100644 --- a/view/tpl/field_select_grouped.tpl +++ b/view/tpl/field_select_grouped.tpl @@ -1,6 +1,6 @@ -
        +
        - {{foreach $field.4 as $group=>$opts}} {{foreach $opts as $opt=>$val}} @@ -8,5 +8,5 @@ {{/foreach}} - {{$field.3}} + {{$field.3}}
        diff --git a/view/tpl/field_select_raw.tpl b/view/tpl/field_select_raw.tpl index 74d575bd0..2780df58c 100755 --- a/view/tpl/field_select_raw.tpl +++ b/view/tpl/field_select_raw.tpl @@ -1,7 +1,7 @@ -
        - - {{$field.4}} - {{$field.3}} + {{$field.3}}
        diff --git a/view/tpl/field_textarea.tpl b/view/tpl/field_textarea.tpl index dad89a145..01fdc23f5 100755 --- a/view/tpl/field_textarea.tpl +++ b/view/tpl/field_textarea.tpl @@ -1,5 +1,5 @@ -
        - - - {{$field.3}} +
        + + + {{$field.3}}
        diff --git a/view/tpl/field_themeselect.tpl b/view/tpl/field_themeselect.tpl index 120727478..200cf726b 100755 --- a/view/tpl/field_themeselect.tpl +++ b/view/tpl/field_themeselect.tpl @@ -1,7 +1,7 @@ -
        - - {{foreach $field.4 as $opt=>$val}}{{/foreach}} {{$field.3}} diff --git a/view/tpl/group_selection.tpl b/view/tpl/group_selection.tpl index 2223125ea..270d2aa79 100755 --- a/view/tpl/group_selection.tpl +++ b/view/tpl/group_selection.tpl @@ -1,6 +1,6 @@ -
        +
        - {{foreach $groups as $group}} {{/foreach}} diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 894f0fe83..b41bf87b9 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -1,5 +1,8 @@ -
        -

        {{$ptitle}}

        +
        +
        +

        {{$ptitle}}

        +
        +
        {{$nickname_block}} @@ -78,10 +81,12 @@
        {{$activity_options}}
        +
        {{*not yet implemented *}} {{*include file="field_checkbox.tpl" field=$post_joingroup*}} {{include file="field_checkbox.tpl" field=$post_newfriend}} {{include file="field_checkbox.tpl" field=$post_profilechange}} +
        {{$lbl_not}}
        @@ -150,3 +155,4 @@
        +
        diff --git a/view/tpl/settings_nick_set.tpl b/view/tpl/settings_nick_set.tpl index ae11c00c8..5d9f17e9e 100755 --- a/view/tpl/settings_nick_set.tpl +++ b/view/tpl/settings_nick_set.tpl @@ -1,4 +1,4 @@
        -
        {{$desc}} '{{$nickname}}@{{$basepath}}'{{$subdir}}
        +
        -- cgit v1.2.3 From b4a2f764abbc551f84fd5f6a4265e1d71c343569 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Mar 2015 16:21:32 +0100 Subject: fix login --- view/theme/redbasic/css/style.css | 68 ++------------------------------------- view/tpl/login.tpl | 36 +++++++++------------ 2 files changed, 18 insertions(+), 86 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 95a5d6fc1..f049e10dc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -277,75 +277,11 @@ footer { margin-bottom: 10px; } -#main-login { +#login-main { + max-width: 300px; margin-top: 50px; } -#main-login #id_username, #main-login #id_password { - width: 200px; - padding: 10px; - float: left; -} - -#main-login #id_remember { - float: left; - padding: 0; - margin-bottom: 0; - margin-left: 0; - width: 20px; -} - -#main-login .field.checkbox > label { - margin-bottom: 0; - float: left; - width: 100px; - padding-left: 0; -} - -#main-login .field_end { - clear: both; -} - -#main-login .field.input label, #main-login .field.password label { - float: left; - width: 100px; -} - -#login_standard { - width: 350px; - float: left; -} - - -#login_standard input, -#login_openid input { - width: 180px; -} - -#login-extra-links { - clear: both; - width: 300px; -} - -#register-link { - float: left; - margin-left: 100px; -} -#lost-password-link { - float: right; -} - -#login-standard-end { - clear: both; -} - -#login-submit-button { - - margin-left: 100px; - margin-top: 10px; -} - - #cropimage-wrapper, #cropimage-preview-wrapper { float: left; padding: 30px; diff --git a/view/tpl/login.tpl b/view/tpl/login.tpl index f6f48e138..7bde90c23 100755 --- a/view/tpl/login.tpl +++ b/view/tpl/login.tpl @@ -1,33 +1,29 @@ -
        - -
        - {{include file="field_input.tpl" field=$lname}} - {{include file="field_password.tpl" field=$lpassword}} -
        +
        +
        + {{include file="field_input.tpl" field=$lname}} + {{include file="field_password.tpl" field=$lpassword}} +
        - - -
        + +
        - {{include file="field_checkbox.tpl" field=$remember}} + {{include file="field_checkbox.tpl" field=$remember}} -
        +
        -
        - +
        + +
        - + {{foreach $hiddens as $k=>$v}} {{/foreach}} - - - -- cgit v1.2.3 From af067666278046ef9f28e2657c1cf54950bd2d25 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Mar 2015 16:59:44 +0100 Subject: provide some more yes/no labels --- mod/settings.php | 60 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 2ccedcb7b..3205797bb 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -965,18 +965,20 @@ function settings_content(&$a) { $timezone = date_default_timezone_get(); + $yes_no = array(t('No'),t('Yes')); + $opt_tpl = get_markup_template("field_checkbox.tpl"); if(get_config('system','publish_all')) { $profile_in_dir = ''; } else { $profile_in_dir = replace_macros($opt_tpl,array( - '$field' => array('profile_in_directory', t('Publish your default profile in the network directory'), $profile['publish'], '', array(t('No'),t('Yes'))), + '$field' => array('profile_in_directory', t('Publish your default profile in the network directory'), $profile['publish'], '', $yes_no), )); } $suggestme = replace_macros($opt_tpl,array( - '$field' => array('suggestme', t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))), + '$field' => array('suggestme', t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', $yes_no), )); @@ -1045,15 +1047,15 @@ function settings_content(&$a) { '$email' => array('email', t('Email Address:'), $email, ''), '$timezone' => array('timezone_select' , t('Your Timezone:'), $timezone, '', get_timezones()), '$defloc' => array('defloc', t('Default Post Location:'), $defloc, t('Geographical location to display on your posts')), - '$allowloc' => array('allow_location', t('Use Browser Location:'), ((get_pconfig(local_channel(),'system','use_browser_location')) ? 1 : ''), ''), + '$allowloc' => array('allow_location', t('Use Browser Location:'), ((get_pconfig(local_channel(),'system','use_browser_location')) ? 1 : ''), '', $yes_no), - '$adult' => array('adult', t('Adult Content'), $adult_flag, t('This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)')), + '$adult' => array('adult', t('Adult Content'), $adult_flag, t('This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)'), $yes_no), '$h_prv' => t('Security and Privacy Settings'), '$permissions_set' => $permissions_set, '$perms_set_msg' => t('Your permissions are already configured. Click to view/adjust'), - '$hide_presence' => array('hide_presence', t('Hide my online presence'),$hide_presence, t('Prevents displaying in your profile that you are online')), + '$hide_presence' => array('hide_presence', t('Hide my online presence'),$hide_presence, t('Prevents displaying in your profile that you are online'), $yes_no), '$lbl_pmacro' => t('Simple Privacy Settings:'), '$pmacro3' => t('Very Public - extremely permissive (should be used with caution)'), @@ -1061,7 +1063,7 @@ function settings_content(&$a) { '$pmacro1' => t('Private - default private, never open or public'), '$pmacro0' => t('Blocked - default blocked to/from everybody'), '$permiss_arr' => $permiss, - '$blocktags' => array('blocktags',t('Allow others to tag your posts'), 1-$blocktags, t('Often used by the community to retro-actively flag inappropriate content'),array(t('No'),t('Yes'))), + '$blocktags' => array('blocktags',t('Allow others to tag your posts'), 1-$blocktags, t('Often used by the community to retro-actively flag inappropriate content'), $yes_no), '$lbl_p2macro' => t('Advanced Privacy Settings'), @@ -1083,34 +1085,34 @@ function settings_content(&$a) { '$h_not' => t('Notification Settings'), '$activity_options' => t('By default post a status message when:'), - '$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, ''), - '$post_joingroup' => array('post_joingroup', t('joining a forum/community'), $post_joingroup, ''), - '$post_profilechange' => array('post_profilechange', t('making an interesting profile change'), $post_profilechange, ''), + '$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, '', $yes_no), + '$post_joingroup' => array('post_joingroup', t('joining a forum/community'), $post_joingroup, '', $yes_no), + '$post_profilechange' => array('post_profilechange', t('making an interesting profile change'), $post_profilechange, '', $yes_no), '$lbl_not' => t('Send a notification email when:'), - '$notify1' => array('notify1', t('You receive a connection request'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''), - '$notify2' => array('notify2', t('Your connections are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''), - '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''), - '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''), - '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''), - '$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''), - '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), - '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), + '$notify1' => array('notify1', t('You receive a connection request'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, '', $yes_no), + '$notify2' => array('notify2', t('Your connections are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, '', $yes_no), + '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, '', $yes_no), + '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, '', $yes_no), + '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, '', $yes_no), + '$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, '', $yes_no), + '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, '', $yes_no), + '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, '', $yes_no), '$lbl_vnot' => t('Show visual notifications including:'), - '$vnotify1' => array('vnotify1', t('Unseen matrix activity'), ($vnotify & VNOTIFY_NETWORK), VNOTIFY_NETWORK, ''), - '$vnotify2' => array('vnotify2', t('Unseen channel activity'), ($vnotify & VNOTIFY_CHANNEL), VNOTIFY_CHANNEL, ''), - '$vnotify3' => array('vnotify3', t('Unseen private messages'), ($vnotify & VNOTIFY_MAIL), VNOTIFY_MAIL, t('Recommended')), - '$vnotify4' => array('vnotify4', t('Upcoming events'), ($vnotify & VNOTIFY_EVENT), VNOTIFY_EVENT, ''), - '$vnotify5' => array('vnotify5', t('Events today'), ($vnotify & VNOTIFY_EVENTTODAY), VNOTIFY_EVENTTODAY, ''), - '$vnotify6' => array('vnotify6', t('Upcoming birthdays'), ($vnotify & VNOTIFY_BIRTHDAY), VNOTIFY_BIRTHDAY, t('Not available in all themes')), - '$vnotify7' => array('vnotify7', t('System (personal) notifications'), ($vnotify & VNOTIFY_SYSTEM), VNOTIFY_SYSTEM, ''), - '$vnotify8' => array('vnotify8', t('System info messages'), ($vnotify & VNOTIFY_INFO), VNOTIFY_INFO, t('Recommended')), - '$vnotify9' => array('vnotify9', t('System critical alerts'), ($vnotify & VNOTIFY_ALERT), VNOTIFY_ALERT, t('Recommended')), - '$vnotify10' => array('vnotify10', t('New connections'), ($vnotify & VNOTIFY_INTRO), VNOTIFY_INTRO, t('Recommended')), - '$vnotify11' => array('vnotify11', t('System Registrations'), ($vnotify & VNOTIFY_REGISTER), VNOTIFY_REGISTER, ''), - '$always_show_in_notices' => array('always_show_in_notices', t('Also show new wall posts, private messages and connections under Notices'), $always_show_in_notices, 1, ''), + '$vnotify1' => array('vnotify1', t('Unseen matrix activity'), ($vnotify & VNOTIFY_NETWORK), VNOTIFY_NETWORK, '', $yes_no), + '$vnotify2' => array('vnotify2', t('Unseen channel activity'), ($vnotify & VNOTIFY_CHANNEL), VNOTIFY_CHANNEL, '', $yes_no), + '$vnotify3' => array('vnotify3', t('Unseen private messages'), ($vnotify & VNOTIFY_MAIL), VNOTIFY_MAIL, t('Recommended'), $yes_no), + '$vnotify4' => array('vnotify4', t('Upcoming events'), ($vnotify & VNOTIFY_EVENT), VNOTIFY_EVENT, '', $yes_no), + '$vnotify5' => array('vnotify5', t('Events today'), ($vnotify & VNOTIFY_EVENTTODAY), VNOTIFY_EVENTTODAY, '', $yes_no), + '$vnotify6' => array('vnotify6', t('Upcoming birthdays'), ($vnotify & VNOTIFY_BIRTHDAY), VNOTIFY_BIRTHDAY, t('Not available in all themes'), $yes_no), + '$vnotify7' => array('vnotify7', t('System (personal) notifications'), ($vnotify & VNOTIFY_SYSTEM), VNOTIFY_SYSTEM, '', $yes_no), + '$vnotify8' => array('vnotify8', t('System info messages'), ($vnotify & VNOTIFY_INFO), VNOTIFY_INFO, t('Recommended'), $yes_no), + '$vnotify9' => array('vnotify9', t('System critical alerts'), ($vnotify & VNOTIFY_ALERT), VNOTIFY_ALERT, t('Recommended'), $yes_no), + '$vnotify10' => array('vnotify10', t('New connections'), ($vnotify & VNOTIFY_INTRO), VNOTIFY_INTRO, t('Recommended'), $yes_no), + '$vnotify11' => array('vnotify11', t('System Registrations'), ($vnotify & VNOTIFY_REGISTER), VNOTIFY_REGISTER, '', $yes_no), + '$always_show_in_notices' => array('always_show_in_notices', t('Also show new wall posts, private messages and connections under Notices'), $always_show_in_notices, 1, '', $yes_no), '$evdays' => array('evdays', t('Notify me of events this many days in advance'), $evdays, t('Must be greater than 0')), -- cgit v1.2.3 From ea6e86fecc901c0e64b74a1e6fc87499df93af1d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Mar 2015 21:45:49 +0100 Subject: more settings work --- view/theme/redbasic/css/style.css | 33 +++- view/tpl/settings.tpl | 314 +++++++++++++++++++------------------- view/tpl/settings_nick_set.tpl | 4 +- 3 files changed, 191 insertions(+), 160 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f049e10dc..8c4b8eb81 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1912,17 +1912,30 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ margin-bottom: 3px; } -.section-title-wrapper h2 { +.section-title-wrapper h2, +.section-subtitle-wrapper h3 { margin-top: 0px; margin-bottom: 0px; } +.section-subtitle-wrapper { + padding: 7px 10px; + background-color: $item_colour; + margin-bottom: 3px; +} + .section-content-tools-wrapper { padding: 7px 10px; background-color: $comment_item_colour; - margin-bottom: 3px; + margin-bottom: 3px } +.section-content-info-wrapper { + padding: 21px 10px; + color: #31708f; + background-color: #d9edf7; + margin-bottom: 3px; +} .section-content-wrapper { padding: 7px 10px; background-color: $comment_item_colour; @@ -1950,6 +1963,18 @@ nav ul li .notify-unseen /* bootstrap overrides */ +.panel { + background-color: transparent; + border: 0px solid transparent; + border-radius: 0px; + -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .0); + box-shadow: 0 0px 0px rgba(0, 0, 0, .0); +} + +.panel-group .panel + .panel { + margin-top: 0px; +} + blockquote { font-size: $font_size; font-style: italic; @@ -2251,7 +2276,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { /* Turn checkboxes into switches */ .field.checkbox > div { - position: relative; width: 50px; + position: relative; width: 60px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; display:inline-block; } @@ -2296,7 +2321,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { display: block; width: 15px; margin:4px; background: #A1A1A1; border-radius: 10px; - position: absolute; top: 0; bottom: 0; right: 26px; + position: absolute; top: 0; bottom: 0; right: 36px; -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s; -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s; } diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index b41bf87b9..20f2618a0 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -1,158 +1,164 @@
        -
        -

        {{$ptitle}}

        -
        -
        - -{{$nickname_block}} - -
        - - -

        {{$h_basic}}

        - -{{include file="field_input.tpl" field=$username}} -{{include file="field_select_grouped.tpl" field=$timezone}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - -{{include file="field_checkbox.tpl" field=$adult}} - -
        - -
        - - -

        {{$h_prv}}

        - -{{include file="field_select_grouped.tpl" field=$role}} - -
        -{{include file="field_checkbox.tpl" field=$hide_presence}} - - - -
        - -{{foreach $permiss_arr as $permit}} - {{include file="field_select.tpl" field=$permit}} -{{/foreach}} -
        - +
        + +

        {{$ptitle}}

        +
        -
        - -
        - - {{$aclselect}} -
        -
        -
        -
        - -{{$group_select}} - -{{$profile_in_dir}} - -
        - -
        - - - -{{$suggestme}} - -{{include file="field_checkbox.tpl" field=$blocktags}} - - -{{include file="field_input.tpl" field=$expire}} - -
        - - -
        - -
        - - - -

        {{$h_not}}

        -
        - -
        {{$activity_options}}
        -
        -{{*not yet implemented *}} -{{*include file="field_checkbox.tpl" field=$post_joingroup*}} -{{include file="field_checkbox.tpl" field=$post_newfriend}} -{{include file="field_checkbox.tpl" field=$post_profilechange}} -
        - - -
        {{$lbl_not}}
        - -
        -{{include file="field_intcheckbox.tpl" field=$notify1}} -{{include file="field_intcheckbox.tpl" field=$notify2}} -{{include file="field_intcheckbox.tpl" field=$notify3}} -{{include file="field_intcheckbox.tpl" field=$notify4}} -{{include file="field_intcheckbox.tpl" field=$notify5}} -{{include file="field_intcheckbox.tpl" field=$notify6}} -{{include file="field_intcheckbox.tpl" field=$notify7}} -{{include file="field_intcheckbox.tpl" field=$notify8}} -
        - -
        {{$lbl_vnot}}
        - -
        -{{include file="field_intcheckbox.tpl" field=$vnotify1}} -{{include file="field_intcheckbox.tpl" field=$vnotify2}} -{{include file="field_intcheckbox.tpl" field=$vnotify3}} -{{include file="field_intcheckbox.tpl" field=$vnotify4}} -{{include file="field_intcheckbox.tpl" field=$vnotify5}} -{{include file="field_intcheckbox.tpl" field=$vnotify6}} -{{include file="field_intcheckbox.tpl" field=$vnotify10}} -{{include file="field_intcheckbox.tpl" field=$vnotify7}} -{{include file="field_intcheckbox.tpl" field=$vnotify8}} -{{include file="field_intcheckbox.tpl" field=$vnotify9}} -{{include file="field_intcheckbox.tpl" field=$vnotify11}} -{{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} - -{{*include file="field_intcheckbox.tpl" field=$vnotify11*}} -
        - -{{include file="field_input.tpl" field=$evdays}} - - - -
        - -
        - -
        - - -{{if $menus}} -

        {{$lbl_misc}}

        - - - -
        {{$menu_desc}}
        -
        - -
        -
        - -
        -
        -{{/if}} - - -
        + {{$nickname_block}} + + + + + + +
        +
        + +
        +
        + {{include file="field_input.tpl" field=$username}} + {{include file="field_select_grouped.tpl" field=$timezone}} + {{include file="field_input.tpl" field=$defloc}} + {{include file="field_checkbox.tpl" field=$allowloc}} + {{include file="field_checkbox.tpl" field=$adult}} +
        + +
        +
        +
        +
        +
        + +
        +
        + {{include file="field_select_grouped.tpl" field=$role}} + +
        + {{include file="field_checkbox.tpl" field=$hide_presence}} + + +
        + + {{foreach $permiss_arr as $permit}} + {{include file="field_select.tpl" field=$permit}} + {{/foreach}} +
        + +
        +
        + +
        + + {{$aclselect}} +
        +
        +
        + {{$group_select}} + {{$profile_in_dir}} +
        +
        + {{$suggestme}} + {{include file="field_checkbox.tpl" field=$blocktags}} + {{include file="field_input.tpl" field=$expire}} +
        +
        + +
        +
        +
        +
        +
        + +
        +
        +
        +
        {{$activity_options}}
        +
        + {{*not yet implemented *}} + {{*include file="field_checkbox.tpl" field=$post_joingroup*}} + {{include file="field_checkbox.tpl" field=$post_newfriend}} + {{include file="field_checkbox.tpl" field=$post_profilechange}} +
        +
        {{$lbl_not}}
        +
        + {{include file="field_intcheckbox.tpl" field=$notify1}} + {{include file="field_intcheckbox.tpl" field=$notify2}} + {{include file="field_intcheckbox.tpl" field=$notify3}} + {{include file="field_intcheckbox.tpl" field=$notify4}} + {{include file="field_intcheckbox.tpl" field=$notify5}} + {{include file="field_intcheckbox.tpl" field=$notify6}} + {{include file="field_intcheckbox.tpl" field=$notify7}} + {{include file="field_intcheckbox.tpl" field=$notify8}} +
        +
        {{$lbl_vnot}}
        +
        + {{include file="field_intcheckbox.tpl" field=$vnotify1}} + {{include file="field_intcheckbox.tpl" field=$vnotify2}} + {{include file="field_intcheckbox.tpl" field=$vnotify3}} + {{include file="field_intcheckbox.tpl" field=$vnotify4}} + {{include file="field_intcheckbox.tpl" field=$vnotify5}} + {{include file="field_intcheckbox.tpl" field=$vnotify6}} + {{include file="field_intcheckbox.tpl" field=$vnotify10}} + {{include file="field_intcheckbox.tpl" field=$vnotify7}} + {{include file="field_intcheckbox.tpl" field=$vnotify8}} + {{include file="field_intcheckbox.tpl" field=$vnotify9}} + {{include file="field_intcheckbox.tpl" field=$vnotify11}} + {{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} + + {{*include file="field_intcheckbox.tpl" field=$vnotify11*}} +
        + {{include file="field_input.tpl" field=$evdays}} +
        +
        + +
        +
        +
        +
        + {{if $menus}} +
        + +
        +
        +
        + + +
        +
        + +
        +
        +
        +
        + {{/if}} +
        diff --git a/view/tpl/settings_nick_set.tpl b/view/tpl/settings_nick_set.tpl index 5d9f17e9e..2460952fe 100755 --- a/view/tpl/settings_nick_set.tpl +++ b/view/tpl/settings_nick_set.tpl @@ -1,4 +1,4 @@ -
        - +
        -- cgit v1.2.3 From e8e6231a4e079bff7a9d0bdd9e4c1dfa5808402b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Mar 2015 21:51:44 +0100 Subject: settings: missing /form and whitespace --- view/tpl/settings.tpl | 262 +++++++++++++++++++++++++------------------------- 1 file changed, 129 insertions(+), 133 deletions(-) diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 20f2618a0..3d13dc5de 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -4,161 +4,157 @@

        {{$ptitle}}

        - {{$nickname_block}} - - - - -
        -
        - -
        -
        - {{include file="field_input.tpl" field=$username}} - {{include file="field_select_grouped.tpl" field=$timezone}} - {{include file="field_input.tpl" field=$defloc}} - {{include file="field_checkbox.tpl" field=$allowloc}} - {{include file="field_checkbox.tpl" field=$adult}} -
        - +
        +
        + +
        +
        + {{include file="field_input.tpl" field=$username}} + {{include file="field_select_grouped.tpl" field=$timezone}} + {{include file="field_input.tpl" field=$defloc}} + {{include file="field_checkbox.tpl" field=$allowloc}} + {{include file="field_checkbox.tpl" field=$adult}} +
        + +
        -
        -
        - -
        -
        - {{include file="field_select_grouped.tpl" field=$role}} +
        + +
        +
        + {{include file="field_select_grouped.tpl" field=$role}} -
        - {{include file="field_checkbox.tpl" field=$hide_presence}} - +
        + {{include file="field_checkbox.tpl" field=$hide_presence}} + -
        +
        - {{foreach $permiss_arr as $permit}} - {{include file="field_select.tpl" field=$permit}} - {{/foreach}} -
        - + {{foreach $permiss_arr as $permit}} + {{include file="field_select.tpl" field=$permit}} + {{/foreach}} +
        + +
        -
        -
        - - {{$aclselect}} -
        +
        + + {{$aclselect}} +
        +
        +
        + {{$group_select}} + {{$profile_in_dir}} +
        +
        + {{$suggestme}} + {{include file="field_checkbox.tpl" field=$blocktags}} + {{include file="field_input.tpl" field=$expire}} +
        +
        +
        -
        - {{$group_select}} - {{$profile_in_dir}} -
        -
        - {{$suggestme}} - {{include file="field_checkbox.tpl" field=$blocktags}} - {{include file="field_input.tpl" field=$expire}} -
        -
        -
        -
        -
        - -
        -
        -
        -
        {{$activity_options}}
        -
        - {{*not yet implemented *}} - {{*include file="field_checkbox.tpl" field=$post_joingroup*}} - {{include file="field_checkbox.tpl" field=$post_newfriend}} - {{include file="field_checkbox.tpl" field=$post_profilechange}} -
        -
        {{$lbl_not}}
        -
        - {{include file="field_intcheckbox.tpl" field=$notify1}} - {{include file="field_intcheckbox.tpl" field=$notify2}} - {{include file="field_intcheckbox.tpl" field=$notify3}} - {{include file="field_intcheckbox.tpl" field=$notify4}} - {{include file="field_intcheckbox.tpl" field=$notify5}} - {{include file="field_intcheckbox.tpl" field=$notify6}} - {{include file="field_intcheckbox.tpl" field=$notify7}} - {{include file="field_intcheckbox.tpl" field=$notify8}} -
        -
        {{$lbl_vnot}}
        -
        - {{include file="field_intcheckbox.tpl" field=$vnotify1}} - {{include file="field_intcheckbox.tpl" field=$vnotify2}} - {{include file="field_intcheckbox.tpl" field=$vnotify3}} - {{include file="field_intcheckbox.tpl" field=$vnotify4}} - {{include file="field_intcheckbox.tpl" field=$vnotify5}} - {{include file="field_intcheckbox.tpl" field=$vnotify6}} - {{include file="field_intcheckbox.tpl" field=$vnotify10}} - {{include file="field_intcheckbox.tpl" field=$vnotify7}} - {{include file="field_intcheckbox.tpl" field=$vnotify8}} - {{include file="field_intcheckbox.tpl" field=$vnotify9}} - {{include file="field_intcheckbox.tpl" field=$vnotify11}} - {{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} +
        + +
        +
        +
        +
        {{$activity_options}}
        +
        + {{*not yet implemented *}} + {{*include file="field_checkbox.tpl" field=$post_joingroup*}} + {{include file="field_checkbox.tpl" field=$post_newfriend}} + {{include file="field_checkbox.tpl" field=$post_profilechange}} +
        +
        {{$lbl_not}}
        +
        + {{include file="field_intcheckbox.tpl" field=$notify1}} + {{include file="field_intcheckbox.tpl" field=$notify2}} + {{include file="field_intcheckbox.tpl" field=$notify3}} + {{include file="field_intcheckbox.tpl" field=$notify4}} + {{include file="field_intcheckbox.tpl" field=$notify5}} + {{include file="field_intcheckbox.tpl" field=$notify6}} + {{include file="field_intcheckbox.tpl" field=$notify7}} + {{include file="field_intcheckbox.tpl" field=$notify8}} +
        +
        {{$lbl_vnot}}
        +
        + {{include file="field_intcheckbox.tpl" field=$vnotify1}} + {{include file="field_intcheckbox.tpl" field=$vnotify2}} + {{include file="field_intcheckbox.tpl" field=$vnotify3}} + {{include file="field_intcheckbox.tpl" field=$vnotify4}} + {{include file="field_intcheckbox.tpl" field=$vnotify5}} + {{include file="field_intcheckbox.tpl" field=$vnotify6}} + {{include file="field_intcheckbox.tpl" field=$vnotify10}} + {{include file="field_intcheckbox.tpl" field=$vnotify7}} + {{include file="field_intcheckbox.tpl" field=$vnotify8}} + {{include file="field_intcheckbox.tpl" field=$vnotify9}} + {{include file="field_intcheckbox.tpl" field=$vnotify11}} + {{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} - {{*include file="field_intcheckbox.tpl" field=$vnotify11*}} + {{*include file="field_intcheckbox.tpl" field=$vnotify11*}} +
        + {{include file="field_input.tpl" field=$evdays}} +
        +
        +
        - {{include file="field_input.tpl" field=$evdays}} -
        -
        -
        -
        - {{if $menus}} -
        - -
        -
        -
        - - -
        -
        - + {{if $menus}} +
        + +
        +
        +
        + + +
        +
        + +
        + {{/if}}
        - {{/if}} -
        +
        -- cgit v1.2.3 From ba7bdd79b720dcb58dfd88a38f43444eb4da06f4 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 15:55:27 -0800 Subject: queue management actions. Still needs further work such as indication of last successful connection or indication that the hub was marked offline, but these are potentially expensive queries. --- include/hubloc.php | 5 +++-- mod/admin.php | 39 +++++++++++++++++++++++++++++++-------- version.inc | 2 +- view/en/htconfig.tpl | 1 - view/tpl/admin_queue.tpl | 14 ++++++++++++++ 5 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 view/tpl/admin_queue.tpl diff --git a/include/hubloc.php b/include/hubloc.php index 94f1dc985..98c1a21f3 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -175,8 +175,9 @@ function hubloc_change_primary($hubloc) { // The https might be alive, and the http dead. function hubloc_mark_as_down($posturl) { - $r = q("update hubloc set hubloc_status = ( hubloc_status | %d ) where hubloc_posturl = '%s'", - intval(HUBLOC_OFFLINE) + $r = q("update hubloc set hubloc_status = ( hubloc_status | %d ) where hubloc_callback = '%s'", + intval(HUBLOC_OFFLINE), + dbesc($posturl) ); } diff --git a/mod/admin.php b/mod/admin.php index 98b2f4266..f97c15786 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -590,19 +590,42 @@ function admin_page_dbsync(&$a) { function admin_page_queue($a) { $o = ''; - $r = q("select count(outq_posturl) as total, outq_posturl from outq + $r = q("select count(outq_posturl) as total, outq_posturl, max(hubloc_connected) as connected from outq where outq_delivered = 0 group by outq_posturl order by total desc"); - $o .= '

        ' . t('Queue Statistics') . '

        '; + if($_REQUEST['drophub']) { + require_once('hubloc.php'); + hubloc_mark_as_down($_REQUEST['drophub']); + } - if($r) { - $o .= ''; - foreach($r as $rr) { - $o .= ''; - } - $o .= '
        ' . t('Total Entries') . '  ' . t('Destination URL') . '
        ' . $rr['total'] . '' . $rr['outq_posturl'] . '
        '; + if($_REQUEST['emptyhub']) { + $r = q("delete from outq where outq_posturl = '%s' ", + dbesc($_REQUEST['emptyhub']) + ); } + + + $r = q("select count(outq_posturl) as total, outq_posturl from outq + where outq_delivered = 0 group by outq_posturl order by total desc"); + + for($x = 0; $x < count($r); $x ++) { + $r[$x]['eurl'] = urlencode($r[$x]['outq_posturl']); + $r[$x]['connected'] = datetime_convert('UTC',date_default_timezone_get(),$r[$x]['connected'],'Y-m-d'); + } + + + $o = replace_macros(get_markup_template('admin_queue.tpl'), array( + '$banner' => t('Queue Statistics'), + '$numentries' => t('Total Entries'), + '$desturl' => t('Destination URL'), + '$nukehub' => t('Mark hub permanently offline'), + '$empty' => t('Empty queue for this hub'), + '$lastconn' => t('Last known contact'), + '$hasentries' => ((count($r)) ? true : false), + '$entries' => $r + )); + return $o; } diff --git a/version.inc b/version.inc index 448d75763..36fcceb22 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-27.956 +2015-03-01.958 diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index d06e5da49..066ae39d8 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -71,7 +71,6 @@ $a->config['system']['access_policy'] = ACCESS_PRIVATE; $a->config['system']['sellpage'] = ''; // Maximum size of an imported message, 0 is unlimited -// FIXME - NOT currently implemented. $a->config['system']['max_import_size'] = 200000; diff --git a/view/tpl/admin_queue.tpl b/view/tpl/admin_queue.tpl new file mode 100644 index 000000000..2abe87db9 --- /dev/null +++ b/view/tpl/admin_queue.tpl @@ -0,0 +1,14 @@ +

        {{$banner}}

        + +{{if $hasentries}} + + + +{{foreach $entries as $e}} + + +{{/foreach}} + +
        {{$numentries}}  {{$desturl}}  
        {{$e.total}}{{$e.outq_posturl}}
        + +{{/if}} \ No newline at end of file -- cgit v1.2.3 From d83460cd2ae5216208a17154d7a9858a5a633b33 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 18:58:50 -0800 Subject: The never ending saga of parent = 0 bugs on Dreamhost. --- include/items.php | 10 ++++++++++ mod/ping.php | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index d6c6f5043..8f16d23c1 100755 --- a/include/items.php +++ b/include/items.php @@ -2087,6 +2087,16 @@ function item_store($arr,$allow_exec = false) { if($r) { + // in case item_store was killed before the parent's parent attribute got set, + // set it now. This happens with some regularity on Dreamhost. This will keep + // us from getting notifications for threads that exist but which we can't see. + + if(($r[0]['mid'] === $r[0]['parent_mid']) && (! intval($r[0]['parent']))) { + q("update item set parent = id where id = %d", + intval($r[0]['id']) + ); + } + if(comments_are_now_closed($r[0])) { logger('item_store: comments closed'); $ret['message'] = 'Comments closed.'; diff --git a/mod/ping.php b/mod/ping.php index f49789be5..001c5594d 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -287,7 +287,7 @@ function ping_init(&$a) { $result[] = format_notification($item); } } - logger('ping (network||home): ' . print_r($result, true), LOGGER_DATA); +// logger('ping (network||home): ' . print_r($result, true), LOGGER_DATA); echo json_encode(array('notify' => $result)); killme(); } -- cgit v1.2.3 From e006658b017f4de04b8f98049c2960c3165ceb11 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 19:14:59 -0800 Subject: raise the default upload limit for the application. We eliminated this in English long ago, but several of the translated htconfig files still have the old limit. --- view/cs/htconfig.tpl | 2 +- view/eo/htconfig.tpl | 2 +- view/es/htconfig.tpl | 2 +- view/fr/htconfig.tpl | 2 +- view/it/htconfig.tpl | 2 +- view/nb-no/htconfig.tpl | 2 +- view/pt-br/htconfig.tpl | 2 +- view/ru/htconfig.tpl | 2 +- view/sv/htconfig.tpl | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/view/cs/htconfig.tpl b/view/cs/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/cs/htconfig.tpl +++ b/view/cs/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/eo/htconfig.tpl b/view/eo/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/eo/htconfig.tpl +++ b/view/eo/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/es/htconfig.tpl b/view/es/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/es/htconfig.tpl +++ b/view/es/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/fr/htconfig.tpl b/view/fr/htconfig.tpl index 2a7f77186..a3b4c0644 100644 --- a/view/fr/htconfig.tpl +++ b/view/fr/htconfig.tpl @@ -51,7 +51,7 @@ $a->config['system']['max_import_size'] = 200000; // taille maximale pour le téléversement de photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Lien absolu vers le compilateur PHP diff --git a/view/it/htconfig.tpl b/view/it/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/it/htconfig.tpl +++ b/view/it/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/nb-no/htconfig.tpl b/view/nb-no/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/nb-no/htconfig.tpl +++ b/view/nb-no/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/pt-br/htconfig.tpl b/view/pt-br/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/pt-br/htconfig.tpl +++ b/view/pt-br/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/ru/htconfig.tpl b/view/ru/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/ru/htconfig.tpl +++ b/view/ru/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor diff --git a/view/sv/htconfig.tpl b/view/sv/htconfig.tpl index 493cb5d00..096143798 100644 --- a/view/sv/htconfig.tpl +++ b/view/sv/htconfig.tpl @@ -50,7 +50,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 8000000; // Location of PHP command line processor -- cgit v1.2.3 From 36af4265380e2555d35d7dfbf912b657af45b26c Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 20:14:42 -0800 Subject: Nag hub admins with self-signed certs to fix them. Otherwise we'll just have to start marking them as dead sites. --- boot.php | 34 ++++++++++++++++++++++++++++++++++ include/poller.php | 1 + 2 files changed, 35 insertions(+) diff --git a/boot.php b/boot.php index a93f074c4..f0f982e03 100755 --- a/boot.php +++ b/boot.php @@ -2263,3 +2263,37 @@ function z_get_temp_dir() { $temp_dir = sys_get_temp_dir(); return $upload_dir; } + +function z_check_cert() { + $a = get_app(); + if(strpos(z_root(),'https://') !== false) { + $x = z_fetch_url(z_root() . '/siteinfo/json'); + if(! $x['success']) { + $recurse = 0; + $y = z_fetch_url(z_root() . '/siteinfo/json',false,$recurse,array('novalidate' => true)); + if($y['success']) + cert_bad_email(); + } + } +} + + + +function cert_bad_email() { + + $a = get_app(); + + $email_tpl = get_intltext_template("cert_bad_eml.tpl"); + $email_msg = replace_macros($email_tpl, array( + '$sitename' => $a->config['system']['sitename'], + '$siteurl' => $a->get_baseurl(), + '$error' => t('Website SSL certificate is not valid. Please correct.') + )); + + $subject = email_header_encode(sprintf(t('[red] Website SSL error for %s'), $a->get_hostname())); + mail($a->config['system']['admin_email'], $subject, $email_msg, + 'From: Administrator' . '@' . $a->get_hostname() . "\n" + . 'Content-type: text/plain; charset=UTF-8' . "\n" + . 'Content-transfer-encoding: 8bit' ); + +} \ No newline at end of file diff --git a/include/poller.php b/include/poller.php index fd78ce087..06311eb39 100644 --- a/include/poller.php +++ b/include/poller.php @@ -150,6 +150,7 @@ function poller_run($argv, $argc){ call_hooks('cron_weekly',datetime_convert()); + z_check_cert(); require_once('include/hubloc.php'); prune_hub_reinstalls(); -- cgit v1.2.3 From 41415d934f1b5dd32112de7f3bd19aaad0b412cf Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 20:18:08 -0800 Subject: here's the email template --- view/en/cert_bad_eml.tpl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 view/en/cert_bad_eml.tpl diff --git a/view/en/cert_bad_eml.tpl b/view/en/cert_bad_eml.tpl new file mode 100644 index 000000000..f4b197131 --- /dev/null +++ b/view/en/cert_bad_eml.tpl @@ -0,0 +1,20 @@ +This is the webserver at {{$sitename}}; + +A routine check indicates the SSL certificate for this website is +not valid. Your website cannot fully participate in the RedMatrix +until this is resolved. Please check your certificate and with your +certificate provider or service provider to ensure it is "browser valid" +and installed correctly. Self-signed certificates are NOT SUPPORTED +and NOT ALLOWED in the RedMatrix. + +The check is performed by fetching a URL from your website with strict +SSL checking enabled, and if this fails, checking again with SSL +checks disabled. It's possible a transient error could produce this +message, but if any recent configuration changes have been made, +or if you receive this message more than once, please check your +certificate. + +The error message is '{{$error}}'. + +Apologies for the inconvenience, + your web server at {{$siteurl}} \ No newline at end of file -- cgit v1.2.3 From 7d0783c4dd08b63033d403d462ee2f30ef7100a6 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 1 Mar 2015 23:50:31 -0800 Subject: increase the dynamic range of the tag clouds slightly. --- include/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index d36c05db2..3d1ac7058 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -152,7 +152,7 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $ $range = max(.01, $max - $min) * 1.0001; for($x = 0; $x < count($tags); $x ++) { - $tags[$x][2] = 1 + floor(5 * ($tags[$x][1] - $min) / $range); + $tags[$x][2] = 1 + floor(7 * ($tags[$x][1] - $min) / $range); } return $tags; -- cgit v1.2.3 From b3f1fbf04f4aaa5f8eaede11d0a5c013c5f4a8bb Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Mon, 2 Mar 2015 09:14:23 +0100 Subject: Updated Italian strings --- view/it/messages.po | 10568 +++++++++++++++++++++++++------------------------- view/it/strings.php | 1343 +++---- 2 files changed, 6005 insertions(+), 5906 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index f516b3bf6..c38752af4 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-13 00:04-0800\n" -"PO-Revision-Date: 2015-02-19 16:09+0000\n" +"POT-Creation-Date: 2015-02-27 00:03-0800\n" +"PO-Revision-Date: 2015-03-02 08:01+0000\n" "Last-Translator: tuscanhobbit \n" "Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -40,40 +40,41 @@ msgstr "Foto del profilo" #: ../../include/attach.php:261 ../../include/attach.php:301 #: ../../include/attach.php:315 ../../include/attach.php:339 #: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/chat.php:116 ../../include/items.php:4072 +#: ../../include/items.php:4083 ../../include/chat.php:116 #: ../../mod/profile.php:64 ../../mod/profile.php:72 #: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/connedit.php:321 -#: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:554 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/suggest.php:26 +#: ../../mod/manage.php:6 ../../mod/delegate.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 +#: ../../mod/events.php:219 ../../mod/network.php:12 +#: ../../mod/connedit.php:321 ../../mod/group.php:9 ../../mod/setup.php:207 +#: ../../mod/common.php:35 ../../mod/editpost.php:13 #: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 #: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/appman.php:66 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:101 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 -#: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 +#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/rate.php:110 ../../mod/regmod.php:17 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 #: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 #: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 #: ../../mod/poke.php:128 ../../mod/profiles.php:188 #: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/delegate.php:6 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/regmod.php:17 ../../mod/message.php:16 ../../mod/mitem.php:106 +#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:72 +#: ../../mod/photos.php:68 ../../mod/message.php:16 ../../mod/mitem.php:106 #: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/like.php:178 ../../mod/mail.php:114 +#: ../../mod/layouts.php:85 ../../mod/mail.php:114 #: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/photos.php:68 ../../mod/page.php:28 +#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 #: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 #: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/register.php:72 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 +#: ../../mod/settings.php:560 ../../mod/suggest.php:26 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:190 ../../index.php:393 msgid "Permission denied." msgstr "Permesso negato." @@ -111,545 +112,647 @@ msgstr "Ha creato un nuovo articolo" msgid "commented on %s's post" msgstr "ha commentato l'articolo di %s" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../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 "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:639 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/menu.php:78 ../../mod/webpages.php:162 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Modifica" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Insieme predefinito per i canali che inizi a seguire" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Guarda" +#: ../../include/group.php:254 ../../mod/admin.php:764 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:681 -#: ../../include/conversation.php:1152 ../../mod/events.php:620 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 -msgid "Preview" -msgstr "Anteprima" +#: ../../include/group.php:276 +msgid "edit" +msgstr "modifica" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Azioni" +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Insiemi di canali" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Modifica l'insieme di canali" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titolo" +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Crea un nuovo insieme" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Creato" +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Canali che non sono in un insieme" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Modificato" +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" +msgstr "aggiungi" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorie" +#: ../../include/identity.php:31 ../../mod/item.php:1078 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Personali" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crea una app personale" +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Modifica una app personale" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:940 ../../mod/suggest.php:51 -#: ../../mod/directory.php:272 ../../mod/match.php:62 -msgid "Connect" -msgstr "Aggiungi" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Altro..." +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:428 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 +#: ../../mod/settings.php:335 ../../mod/settings.php:339 +#: ../../mod/settings.php:340 ../../mod/settings.php:343 +#: ../../mod/settings.php:354 +msgid "Friends" +msgstr "Amici" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/identity.php:691 ../../mod/profile.php:16 +#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 +#: ../../mod/layouts.php:29 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Scrivi l'indirizzo del canale" +#: ../../include/identity.php:840 ../../include/widgets.php:136 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/conversation.php:940 ../../mod/match.php:62 +#: ../../mod/directory.php:276 ../../mod/suggest.php:51 +msgid "Connect" +msgstr "Aggiungi" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" +#: ../../include/identity.php:854 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Note" +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "Profili" -#: ../../include/widgets.php:192 ../../include/text.php:838 -#: ../../include/text.php:850 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Salva" +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/identity.php:862 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/identity.php:865 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "aggiungi" +#: ../../include/identity.php:878 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "visibile a tutti" -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tutto" +#: ../../include/identity.php:882 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archivi" +#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 +#: ../../include/event.php:40 ../../mod/events.php:645 +#: ../../mod/directory.php:208 +msgid "Location:" +msgstr "Luogo:" -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/identity.php:898 ../../include/identity.php:1139 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Io" +#: ../../include/identity.php:899 ../../include/identity.php:1183 +msgid "Status:" +msgstr "Stato:" -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Migliori amici" +#: ../../include/identity.php:900 ../../include/identity.php:1194 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:329 ../../mod/settings.php:333 -#: ../../mod/settings.php:334 ../../mod/settings.php:337 -#: ../../mod/settings.php:348 -msgid "Friends" -msgstr "Amici" +#: ../../include/identity.php:901 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Colleghi" +#: ../../include/identity.php:983 ../../include/identity.php:1063 +#: ../../mod/ping.php:324 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "Ex amici" +#: ../../include/identity.php:984 ../../include/identity.php:1064 +msgid "F d" +msgstr "d F" -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../include/identity.php:1029 ../../include/identity.php:1104 +#: ../../mod/ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Tutti" +#: ../../include/identity.php:1041 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/identity.php:1042 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../include/identity.php:1097 +msgid "[No description]" +msgstr "[Nessuna descrizione]" -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/identity.php:1115 +msgid "Event Reminders" +msgstr "Promemoria" -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../include/identity.php:1116 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/identity.php:1129 ../../include/identity.php:1246 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/identity.php:1137 ../../mod/settings.php:1044 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/identity.php:1144 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../include/identity.php:1155 ../../include/taxonomy.php:385 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 +#: ../../mod/photos.php:1001 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/identity.php:1168 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../include/identity.php:1169 +msgid "j F" +msgstr "j F" -#: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Impostazioni" +#: ../../include/identity.php:1176 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Messaggi" +#: ../../include/identity.php:1180 +msgid "Age:" +msgstr "Età:" -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "Controlla i messaggi" +#: ../../include/identity.php:1189 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/identity.php:1192 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Aree chat attive" +#: ../../include/identity.php:1196 ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Aree chat nei segnalibri" +#: ../../include/identity.php:1198 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Aree chat suggerite" +#: ../../include/identity.php:1200 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/identity.php:1202 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Dai un giudizio" +#: ../../include/identity.php:1204 +msgid "About:" +msgstr "Informazioni:" -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Vedi i giudizi ricevuti" +#: ../../include/identity.php:1206 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Notifica di RedMatrix" +#: ../../include/identity.php:1208 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "RedMatrix" +#: ../../include/identity.php:1210 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Grazie," +#: ../../include/identity.php:1212 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" +#: ../../include/identity.php:1214 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/identity.php:1216 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[RedMatrix] Nuovo messaggio su %s" +#: ../../include/identity.php:1218 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." +#: ../../include/identity.php:1220 +msgid "Television:" +msgstr "Televisione:" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." +#: ../../include/identity.php:1222 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../include/identity.php:1224 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." +#: ../../include/identity.php:1226 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" +#: ../../include/identity.php:1228 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" +#: ../../include/identity.php:1248 +msgid "Like this thing" +msgstr "Mi piace questo oggetto" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[RedMatrix] Nuovo commento di %2$s alla conversazione #%1$d" +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 +#: ../../include/apps.php:254 ../../include/menu.php:42 +#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 +#: ../../mod/editpost.php:113 ../../mod/connections.php:382 +#: ../../mod/connections.php:395 ../../mod/connections.php:414 +#: ../../mod/thing.php:233 ../../mod/editlayout.php:139 +#: ../../mod/editwebpage.php:174 ../../mod/menu.php:78 +#: ../../mod/webpages.php:162 ../../mod/layouts.php:167 +#: ../../mod/settings.php:645 +msgid "Edit" +msgstr "Modifica" -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +msgid "View" +msgstr "Guarda" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 +#: ../../include/conversation.php:1152 ../../mod/events.php:651 +#: ../../mod/webpages.php:166 ../../mod/photos.php:964 +msgid "Preview" +msgstr "Anteprima" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[RedMatrix] %s ha scritto sulla tua bacheca" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" +msgstr "Azioni" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" +msgstr "Titolo" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[RedMatrix] %s ti ha taggato" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" +msgstr "Creato" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" +msgstr "Modificato" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[RedMatrix] %1$s ti ha mandato un poke" +#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorie" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Apps" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Sistema" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[RedMatrix] %s ha taggato il tuo articolo" +#: ../../include/widgets.php:94 ../../include/conversation.php:1494 +msgid "Personal" +msgstr "Personali" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Crea una app personale" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Modifica una app personale" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[RedMatrix] Hai una richiesta di amicizia" +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" +#: ../../include/widgets.php:143 ../../mod/connections.php:268 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Altro..." -#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#: ../../include/widgets.php:166 #, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[RedMatrix] Ti è stato suggerito un amico" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Scrivi l'indirizzo del canale" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Note" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Nome:" +#: ../../include/widgets.php:192 ../../include/text.php:838 +#: ../../include/text.php:850 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1368 ../../mod/admin.php:1389 +msgid "Save" +msgstr "Salva" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../include/widgets.php:272 ../../include/features.php:72 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[RedMatrix]" +#: ../../include/widgets.php:302 ../../include/features.php:84 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/text.php:320 -msgid "prev" -msgstr "prec" +#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Tutto" -#: ../../include/text.php:322 -msgid "first" -msgstr "inizio" +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Archivi" -#: ../../include/text.php:351 -msgid "last" -msgstr "fine" +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../include/text.php:354 -msgid "next" -msgstr "succ" +#: ../../include/widgets.php:426 ../../mod/connedit.php:563 +msgid "Me" +msgstr "Io" -#: ../../include/text.php:366 -msgid "older" -msgstr "più recenti" +#: ../../include/widgets.php:427 ../../mod/connedit.php:566 +msgid "Best Friends" +msgstr "Migliori amici" -#: ../../include/text.php:368 -msgid "newer" -msgstr "più nuovi" +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Colleghi" -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/widgets.php:430 ../../mod/connedit.php:568 +msgid "Former Friends" +msgstr "Ex amici" -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +#: ../../include/widgets.php:431 ../../mod/connedit.php:569 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Tutti" -#: ../../include/text.php:837 ../../include/text.php:849 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Cerca" +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/text.php:916 -msgid "poke" -msgstr "poke" +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha ricevuto un poke" +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/text.php:917 -msgid "ping" -msgstr "ping" +#: ../../include/widgets.php:484 +msgid "Feature/Addon settings" +msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../include/text.php:917 -msgid "pinged" -msgstr "ha ricevuto un ping" +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/text.php:918 -msgid "prod" -msgstr "spintone" +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/text.php:918 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/text.php:919 -msgid "slap" -msgstr "schiaffo" +#: ../../include/widgets.php:511 ../../mod/connedit.php:627 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/text.php:920 +#: ../../include/widgets.php:527 ../../include/features.php:61 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../include/widgets.php:535 ../../include/nav.php:210 +#: ../../include/apps.php:134 ../../mod/admin.php:980 ../../mod/admin.php:1185 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../include/widgets.php:548 ../../mod/message.php:31 +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Messaggi" + +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Controlla i messaggi" + +#: ../../include/widgets.php:556 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Aree chat attive" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Aree chat nei segnalibri" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Aree chat suggerite" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/immagine" + +#: ../../include/widgets.php:954 ../../include/widgets.php:956 +msgid "Rate Me" +msgstr "Valutami" + +#: ../../include/widgets.php:960 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" + +#: ../../include/widgets.php:971 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../include/text.php:320 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:322 +msgid "first" +msgstr "inizio" + +#: ../../include/text.php:351 +msgid "last" +msgstr "fine" + +#: ../../include/text.php:354 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:366 +msgid "older" +msgstr "più recenti" + +#: ../../include/text.php:368 +msgid "newer" +msgstr "più nuovi" + +#: ../../include/text.php:751 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:767 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:780 ../../mod/viewconnections.php:86 +msgid "View Connections" +msgstr "Elenco contatti" + +#: ../../include/text.php:837 ../../include/text.php:849 +#: ../../include/nav.php:165 ../../include/apps.php:147 +#: ../../mod/search.php:34 +msgid "Search" +msgstr "Cerca" + +#: ../../include/text.php:916 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:916 ../../include/conversation.php:243 +msgid "poked" +msgstr "ha ricevuto un poke" + +#: ../../include/text.php:917 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:917 +msgid "pinged" +msgstr "ha ricevuto un ping" + +#: ../../include/text.php:918 +msgid "prod" +msgstr "spintone" + +#: ../../include/text.php:918 +msgid "prodded" +msgstr "ha ricevuto uno spintone" + +#: ../../include/text.php:919 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:919 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:920 msgid "finger" msgstr "finger" @@ -846,7 +949,7 @@ msgstr "rimuovi dal file" msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: ../../include/text.php:1540 ../../mod/events.php:437 +#: ../../include/text.php:1540 ../../mod/events.php:444 msgid "Link to Source" msgstr "Link al sito d'origine" @@ -866,20 +969,22 @@ msgstr "Contenuto della pagina:" msgid "Select an alternate language" msgstr "Seleziona una lingua diversa" -#: ../../include/text.php:1753 ../../include/diaspora.php:1994 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 +#: ../../include/text.php:1753 ../../include/diaspora.php:1909 +#: ../../include/conversation.php:120 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:43 msgid "photo" msgstr "la foto" #: ../../include/text.php:1756 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 ../../mod/like.php:337 +#: ../../mod/like.php:337 ../../mod/tagger.php:47 msgid "event" msgstr "l'evento" -#: ../../include/text.php:1759 ../../include/diaspora.php:1994 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 +#: ../../include/text.php:1759 ../../include/diaspora.php:1909 +#: ../../include/conversation.php:148 ../../mod/like.php:335 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:51 msgid "status" msgstr "il messaggio di stato" @@ -916,16 +1021,74 @@ msgstr "Pagine" msgid "Collection" msgstr "Cartella" +#: ../../include/attach.php:242 ../../include/attach.php:296 +msgid "Item was not found." +msgstr "Elemento non trovato." + +#: ../../include/attach.php:352 +msgid "No source file." +msgstr "Nessun file di origine." + +#: ../../include/attach.php:369 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" + +#: ../../include/attach.php:387 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" + +#: ../../include/attach.php:398 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../include/attach.php:410 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." + +#: ../../include/attach.php:493 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." + +#: ../../include/attach.php:505 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." + +#: ../../include/attach.php:547 ../../include/attach.php:564 +msgid "Path not available." +msgstr "Percorso non disponibile." + +#: ../../include/attach.php:611 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" + +#: ../../include/attach.php:627 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" + +#: ../../include/attach.php:651 +msgid "Path not found." +msgstr "Percorso del file non trovato." + +#: ../../include/attach.php:702 +msgid "mkdir failed." +msgstr "mkdir fallito." + +#: ../../include/attach.php:706 +msgid "database storage failed." +msgstr "scrittura su database fallita." + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:671 -#: ../../mod/photos.php:962 ../../mod/photos.php:1072 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:962 ../../mod/photos.php:1080 msgid "Comment" msgstr "Commento" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:388 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 msgid "[+] show all" msgstr "[+] mostra tutto" @@ -975,33 +1138,33 @@ msgstr "Niente di nuovo qui" #: ../../include/js_strings.php:19 msgid "Rate This Channel (this is public)" -msgstr "Dai un giudizio su questo canale (sarà pubblico)" +msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:144 +#: ../../include/js_strings.php:20 ../../mod/rate.php:156 msgid "Rating" -msgstr "Giudizi ricevuti" +msgstr "Valutazioni" #: ../../include/js_strings.php:21 msgid "Describe (optional)" -msgstr "Descrizione (opzionale)" - -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:672 -#: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:623 ../../mod/settings.php:577 -#: ../../mod/settings.php:689 ../../mod/settings.php:718 -#: ../../mod/settings.php:741 ../../mod/settings.php:823 -#: ../../mod/settings.php:1019 ../../mod/group.php:81 ../../mod/setup.php:313 +msgstr "Descrizione (facoltativa)" + +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/events.php:654 +#: ../../mod/connedit.php:653 ../../mod/group.php:81 ../../mod/setup.php:313 #: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:153 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1073 ../../mod/poll.php:68 +#: ../../mod/pdledit.php:58 ../../mod/import.php:504 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/rate.php:167 ../../mod/invite.php:142 +#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/filestorage.php:155 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:420 +#: ../../mod/admin.php:752 ../../mod/admin.php:888 ../../mod/admin.php:1021 +#: ../../mod/admin.php:1220 ../../mod/admin.php:1307 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:923 ../../mod/photos.php:963 +#: ../../mod/photos.php:1081 ../../mod/mood.php:134 ../../mod/mail.php:355 +#: ../../mod/appman.php:99 ../../mod/settings.php:583 +#: ../../mod/settings.php:708 ../../mod/settings.php:737 +#: ../../mod/settings.php:760 ../../mod/settings.php:842 +#: ../../mod/settings.php:1038 ../../mod/poll.php:68 #: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" @@ -1105,10 +1268,10 @@ msgstr "Appuntamenti ricevuti" msgid "Schedule Outbox" msgstr "Appuntamenti inviati" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1019 +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:1019 +#: ../../include/apps.php:336 ../../include/apps.php:387 #: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1098 +#: ../../mod/photos.php:1113 msgid "Unknown" msgstr "Sconosciuto" @@ -1123,7 +1286,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s occupati di %2$s (%3$s%)" #: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../include/conversation.php:1595 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Archivio file" @@ -1144,12 +1307,12 @@ msgstr "Crea" #: ../../include/RedDAV/RedBrowser.php:255 #: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1212 +#: ../../mod/photos.php:706 ../../mod/photos.php:1228 msgid "Upload" msgstr "Carica" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:871 +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/admin.php:895 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 #: ../../mod/sharedwithme.php:100 msgid "Name" msgstr "Nome" @@ -1167,10 +1330,10 @@ msgid "Last Modified" msgstr "Ultima modifica" #: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:640 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1036 +#: ../../include/conversation.php:645 ../../include/apps.php:255 +#: ../../mod/connedit.php:533 ../../mod/group.php:176 ../../mod/thing.php:234 +#: ../../mod/admin.php:759 ../../mod/admin.php:890 ../../mod/photos.php:1044 +#: ../../mod/settings.php:646 msgid "Delete" msgstr "Elimina" @@ -1187,113 +1350,46 @@ msgstr "Carica un file" msgid "%1$s's bookmarks" msgstr "I segnalibri di %1$s" -#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 +#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 msgid "Tags" msgstr "Tag" -#: ../../include/taxonomy.php:269 +#: ../../include/taxonomy.php:274 msgid "Keywords" msgstr "Parole chiave" -#: ../../include/taxonomy.php:294 +#: ../../include/taxonomy.php:299 msgid "have" msgstr "ho" -#: ../../include/taxonomy.php:294 +#: ../../include/taxonomy.php:299 msgid "has" msgstr "ha" -#: ../../include/taxonomy.php:295 +#: ../../include/taxonomy.php:300 msgid "want" msgstr "voglio" -#: ../../include/taxonomy.php:295 +#: ../../include/taxonomy.php:300 msgid "wants" msgstr "vuole" -#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:258 +#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 msgid "like" msgstr "mi piace" -#: ../../include/taxonomy.php:296 +#: ../../include/taxonomy.php:301 msgid "likes" msgstr "gli piace" -#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:259 +#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 msgid "dislike" msgstr "non mi piace" -#: ../../include/taxonomy.php:297 +#: ../../include/taxonomy.php:302 msgid "dislikes" msgstr "non gli piace" -#: ../../include/taxonomy.php:380 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:173 ../../include/ItemObject.php:183 -#: ../../include/conversation.php:1692 ../../mod/photos.php:993 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Elemento non trovato." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Nessun file di origine." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "scrittura su database fallita." - #: ../../include/features.php:38 msgid "General Features" msgstr "Funzionalità di base" @@ -1419,11 +1515,11 @@ msgstr "Rendi possibile la crittografia tra mittente e destinatario che condivid #: ../../include/features.php:63 msgid "Enable voting tools" -msgstr "Abilita la possibilità di voto" +msgstr "Permetti i post con votazione" #: ../../include/features.php:63 msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di articoli dove sarà possibile votare" +msgstr "Rende possibile la creazione di articoli in cui sarà possibile votare" #: ../../include/features.php:64 msgid "Flag Adult Photos" @@ -1537,17 +1633,77 @@ msgstr "Nuvola di tag" msgid "Provide a personal tag cloud on your channel page" msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/items.php:382 ../../mod/like.php:270 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../index.php:392 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/items.php:979 ../../include/items.php:1024 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:1181 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." + +#: ../../include/items.php:1183 +msgid "Visible to you only." +msgstr "Visibile solo a te." + +#: ../../include/items.php:1185 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." + +#: ../../include/items.php:1187 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." + +#: ../../include/items.php:1189 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti in %s." + +#: ../../include/items.php:1191 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." + +#: ../../include/items.php:1193 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." + +#: ../../include/items.php:1195 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." + +#: ../../include/items.php:4013 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:27 +#: ../../mod/viewsrc.php:20 ../../mod/admin.php:172 ../../mod/admin.php:925 +#: ../../mod/admin.php:1128 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4466 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Insieme di canali non trovato." + +#: ../../include/items.php:4481 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4488 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4499 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4502 +msgid "Connection not found." +msgstr "Contatto non trovato." #: ../../include/contact_selectors.php:56 msgid "Frequently" @@ -1585,8 +1741,8 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1555 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:755 +#: ../../mod/admin.php:764 ../../boot.php:1554 msgid "Email" msgstr "Email" @@ -1614,563 +1770,305 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../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 "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Insieme predefinito per i canali che inizi a seguire" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/group.php:276 -msgid "edit" -msgstr "modifica" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare l'articolo inserito." -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Insiemi di canali" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Modifica l'insieme di canali" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Crea un nuovo insieme" +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Canali che non sono in un insieme" +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/follow.php:135 ../../include/follow.php:197 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "l'account locale non è stato trovato." -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/follow.php:215 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/comanche.php:35 ../../mod/admin.php:361 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Predefinito" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/datetime.php:212 ../../mod/events.php:633 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Obbligatorio" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/datetime.php:231 +msgid "never" +msgstr "mai" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/datetime.php:237 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Il profilo richiesto non è disponibile." +#: ../../include/datetime.php:240 +msgid "year" +msgstr "anno" -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../include/datetime.php:240 +msgid "years" +msgstr "anni" -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profili" +#: ../../include/datetime.php:241 +msgid "month" +msgstr "mese" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: ../../include/datetime.php:241 +msgid "months" +msgstr "mesi" -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/datetime.php:242 +msgid "week" +msgstr "settimana" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/datetime.php:242 +msgid "weeks" +msgstr "settimane" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../include/datetime.php:243 +msgid "day" +msgstr "giorno" -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "visibile a tutti" +#: ../../include/datetime.php:243 +msgid "days" +msgstr "giorni" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../include/datetime.php:244 +msgid "hour" +msgstr "ora" -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:614 -#: ../../mod/directory.php:204 -msgid "Location:" -msgstr "Luogo:" +#: ../../include/datetime.php:244 +msgid "hours" +msgstr "ore" -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/datetime.php:245 +msgid "minute" +msgstr "minuto" -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Stato:" +#: ../../include/datetime.php:245 +msgid "minutes" +msgstr "minuti" -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/datetime.php:246 +msgid "second" +msgstr "secondo" -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d F" +#: ../../include/datetime.php:246 +msgid "seconds" +msgstr "secondi" -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../include/datetime.php:255 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" +#: ../../include/datetime.php:463 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" +#: ../../include/datetime.php:464 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Nessuna descrizione]" +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Promemoria" +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" +#: ../../include/Contact.php:215 ../../mod/admin.php:675 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profilo" +#: ../../include/bb2diaspora.php:349 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/identity.php:1137 ../../mod/settings.php:1025 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/bb2diaspora.php:430 +msgid "Redmatrix event notification:" +msgstr "Notifica eventi RedMatrix:" -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j F" +#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "Dati non validi" -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Età:" +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/identity.php:1189 +#: ../../include/zot.php:2063 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Area chat senza nome" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Il nome dell'area chat è duplicato" -#: ../../include/identity.php:1198 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Il nome dell'area chat non è valido." -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Area chat non trovata." -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "L'area chat è al completo" -#: ../../include/identity.php:1204 -msgid "About:" -msgstr "Informazioni:" +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 +msgid "Logout" +msgstr "Esci" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Bacheca" -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "I tuoi articoli e conversazioni" -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/nav.php:91 ../../include/conversation.php:937 +#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 +msgid "View Profile" +msgstr "Profilo" -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/identity.php:1216 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Modifica i profili" -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Gestisci/modifica i profili" -#: ../../include/identity.php:1220 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Modifica il profilo" -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/nav.php:97 ../../include/conversation.php:1586 +#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "I tuoi file" -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/nav.php:103 ../../include/apps.php:146 +msgid "Chat" +msgstr "Area chat" -#: ../../include/identity.php:1248 -msgid "Like this thing" -msgstr "Mi piace questo oggetto" +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Le tue aree chat" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../include/nav.php:109 ../../include/conversation.php:1621 +#: ../../include/apps.php:129 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../include/nav.php:113 ../../include/conversation.php:1632 +#: ../../include/apps.php:136 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Pagine web" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare l'articolo inserito." +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Le tue pagine web" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 +msgid "Login" +msgstr "Accedi" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Accedi" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "l'account locale non è stato trovato." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Predefinito" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Altro" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:212 ../../mod/events.php:602 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Obbligatorio" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "Notifica eventi RedMatrix:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Area chat senza nome" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Il nome dell'area chat è duplicato" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Il nome dell'area chat non è valido." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Area chat non trovata." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "L'area chat è al completo" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1552 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "I tuoi articoli e conversazioni" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Modifica i profili" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Area chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Le tue aree chat" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1553 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" #: ../../include/nav.php:137 msgid "Remote authentication" @@ -2184,7 +2082,7 @@ msgstr "Clicca per autenticarti sul tuo server principale" msgid "Home Page" msgstr "Bacheca" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1529 +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 msgid "Register" msgstr "Iscriviti" @@ -2210,7 +2108,7 @@ msgid "Search site content" msgstr "Cerca nel sito" #: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 +#: ../../mod/directory.php:338 msgid "Directory" msgstr "Elenco pubblico" @@ -2287,7 +2185,7 @@ msgid "Outbox" msgstr "Inviati" #: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:465 +#: ../../mod/events.php:472 msgid "Events" msgstr "Eventi" @@ -2316,7 +2214,7 @@ msgstr "Gestisci i tuoi canali" msgid "Account/Channel Settings" msgstr "Impostazioni dell'account e del canale" -#: ../../include/nav.php:218 ../../mod/admin.php:123 +#: ../../include/nav.php:218 ../../mod/admin.php:124 msgid "Admin" msgstr "Amministrazione" @@ -2342,20 +2240,87 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/activities.php:39 +msgid " and " +msgstr "e" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 -msgid "Select" -msgstr "Seleziona" +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Salva nella cartella" +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/ItemObject.php:151 -msgid "I will attend" +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." + +#: ../../include/dir_fns.php:96 +msgid "Directory Options" +msgstr "Opzioni elenco pubblico" + +#: ../../include/dir_fns.php:97 +msgid "Alphabetic" +msgstr "Alfabetico" + +#: ../../include/dir_fns.php:98 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" + +#: ../../include/dir_fns.php:99 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" + +#: ../../include/dir_fns.php:100 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" + +#: ../../include/dir_fns.php:101 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" + +#: ../../include/dir_fns.php:103 +msgid "Sort" +msgstr "Ordinamento" + +#: ../../include/dir_fns.php:119 +msgid "Enable Safe Search" +msgstr "Abilita SafeSearch" + +#: ../../include/dir_fns.php:121 +msgid "Disable Safe Search" +msgstr "Disabilita SafeSearch" + +#: ../../include/dir_fns.php:123 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" + +#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +msgid "Select" +msgstr "Seleziona" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Salva nella cartella" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" msgstr "Parteciperò" #: ../../include/ItemObject.php:151 @@ -2378,370 +2343,209 @@ msgstr "Non sono d'accordo" msgid "I abstain" msgstr "Mi astengo" -#: ../../include/ItemObject.php:179 ../../include/ItemObject.php:191 -#: ../../include/conversation.php:1667 ../../mod/photos.php:989 -#: ../../mod/photos.php:1001 +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1667 ../../mod/photos.php:997 +#: ../../mod/photos.php:1009 msgid "View all" msgstr "Vedi tutto" -#: ../../include/ItemObject.php:188 ../../include/conversation.php:1695 -#: ../../mod/photos.php:998 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 +#: ../../mod/photos.php:1006 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Non mi piace" msgstr[1] "Non mi piace" -#: ../../include/ItemObject.php:216 +#: ../../include/ItemObject.php:212 msgid "Add Star" msgstr "Aggiungi ai preferiti" -#: ../../include/ItemObject.php:217 +#: ../../include/ItemObject.php:213 msgid "Remove Star" msgstr "Rimuovi dai preferiti" -#: ../../include/ItemObject.php:218 +#: ../../include/ItemObject.php:214 msgid "Toggle Star Status" msgstr "Attiva/disattiva preferito" -#: ../../include/ItemObject.php:222 +#: ../../include/ItemObject.php:218 msgid "starred" msgstr "preferito" -#: ../../include/ItemObject.php:231 ../../include/conversation.php:659 +#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 msgid "Message signature validated" msgstr "Messaggio con firma verificata" -#: ../../include/ItemObject.php:232 ../../include/conversation.php:660 +#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 msgid "Message signature incorrect" msgstr "Massaggio con firma non corretta" -#: ../../include/ItemObject.php:240 +#: ../../include/ItemObject.php:236 msgid "Add Tag" msgstr "Aggiungi un tag" -#: ../../include/ItemObject.php:258 ../../mod/photos.php:941 +#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 msgid "I like this (toggle)" msgstr "Attiva/disattiva Mi piace" -#: ../../include/ItemObject.php:259 ../../mod/photos.php:942 +#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 msgid "I don't like this (toggle)" msgstr "Attiva/disattiva Non mi piace" -#: ../../include/ItemObject.php:263 +#: ../../include/ItemObject.php:259 msgid "Share This" msgstr "Condividi" -#: ../../include/ItemObject.php:263 +#: ../../include/ItemObject.php:259 msgid "share" msgstr "condividi" -#: ../../include/ItemObject.php:280 +#: ../../include/ItemObject.php:276 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commento" msgstr[1] "%d commenti" -#: ../../include/ItemObject.php:298 ../../include/ItemObject.php:299 +#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 #, php-format msgid "View %s's profile - %s" msgstr "Guarda il profilo di %s - %s" -#: ../../include/ItemObject.php:302 +#: ../../include/ItemObject.php:298 msgid "to" msgstr "a" -#: ../../include/ItemObject.php:303 +#: ../../include/ItemObject.php:299 msgid "via" msgstr "via" -#: ../../include/ItemObject.php:304 +#: ../../include/ItemObject.php:300 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: ../../include/ItemObject.php:305 +#: ../../include/ItemObject.php:301 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca:" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:704 +#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 #, php-format msgid " from %s" msgstr " da %s" -#: ../../include/ItemObject.php:319 ../../include/conversation.php:707 +#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 #, php-format msgid "last edited: %s" msgstr "ultima modifica: %s" -#: ../../include/ItemObject.php:320 ../../include/conversation.php:708 +#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 #, php-format msgid "Expires: %s" msgstr "Scadenza: %s" -#: ../../include/ItemObject.php:341 +#: ../../include/ItemObject.php:337 msgid "Save Bookmarks" msgstr "Salva segnalibro" -#: ../../include/ItemObject.php:342 +#: ../../include/ItemObject.php:338 msgid "Add to Calendar" msgstr "Aggiungi al calendario" -#: ../../include/ItemObject.php:351 +#: ../../include/ItemObject.php:347 msgid "Mark all seen" msgstr "Marca tutto come letto" -#: ../../include/ItemObject.php:357 ../../mod/photos.php:1109 +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 msgctxt "noun" msgid "Likes" msgstr "Mi piace" -#: ../../include/ItemObject.php:358 ../../mod/photos.php:1110 +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 msgctxt "noun" msgid "Dislikes" msgstr "Non mi piace" -#: ../../include/ItemObject.php:363 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1115 +#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 +#: ../../mod/photos.php:1131 msgid "Close" msgstr "Chiudi" -#: ../../include/ItemObject.php:368 ../../include/conversation.php:725 +#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 #: ../../include/conversation.php:1198 ../../mod/editblock.php:152 #: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 -#: ../../mod/photos.php:944 +#: ../../mod/editwebpage.php:183 ../../mod/photos.php:944 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 msgid "Please wait" msgstr "Attendere" -#: ../../include/ItemObject.php:669 ../../mod/photos.php:960 -#: ../../mod/photos.php:1070 +#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 +#: ../../mod/photos.php:1078 msgid "This is you" msgstr "Questo sei tu" -#: ../../include/ItemObject.php:673 +#: ../../include/ItemObject.php:669 msgid "Bold" msgstr "Grassetto" -#: ../../include/ItemObject.php:674 +#: ../../include/ItemObject.php:670 msgid "Italic" msgstr "Corsivo" -#: ../../include/ItemObject.php:675 +#: ../../include/ItemObject.php:671 msgid "Underline" msgstr "Sottolineato" -#: ../../include/ItemObject.php:676 +#: ../../include/ItemObject.php:672 msgid "Quote" msgstr "Citazione" -#: ../../include/ItemObject.php:677 +#: ../../include/ItemObject.php:673 msgid "Code" msgstr "Codice" -#: ../../include/ItemObject.php:678 +#: ../../include/ItemObject.php:674 msgid "Image" msgstr "Immagine" -#: ../../include/ItemObject.php:679 +#: ../../include/ItemObject.php:675 msgid "Link" msgstr "Link" -#: ../../include/ItemObject.php:680 +#: ../../include/ItemObject.php:676 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:684 ../../include/conversation.php:1224 +#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 #: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 msgid "Encrypt text" msgstr "Crittografia del testo" -#: ../../include/activities.php:39 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." - -#: ../../include/dir_fns.php:88 -msgid "Directory Options" -msgstr "Opzioni elenco pubblico" - -#: ../../include/dir_fns.php:89 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../include/dir_fns.php:90 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../include/dir_fns.php:91 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" - -#: ../../include/dir_fns.php:92 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" - -#: ../../include/dir_fns.php:93 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" - -#: ../../include/dir_fns.php:95 -msgid "Sort" -msgstr "Ordinamento" - -#: ../../include/dir_fns.php:111 -msgid "Enable Safe Search" -msgstr "Abilita SafeSearch" - -#: ../../include/dir_fns.php:113 -msgid "Disable Safe Search" -msgstr "Disabilita SafeSearch" - -#: ../../include/dir_fns.php:115 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:1961 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti in %s." - -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:4002 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Insieme di canali non trovato." - -#: ../../include/items.php:4470 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4477 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4488 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4491 -msgid "Connection not found." -msgstr "Contatto non trovato." - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/api.php:1081 +msgid "Public Timeline" +msgstr "Diario pubblico" #: ../../include/network.php:613 msgid "view full size" msgstr "guarda nelle dimensioni reali" -#: ../../include/diaspora.php:2023 ../../include/conversation.php:164 +#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 #: ../../mod/like.php:383 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s piace %3$s di %2$s" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 -#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 -#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 -#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 -#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 +#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 +#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 +#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 +#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 +#: ../../include/bbcode.php:733 msgid "Image/photo" msgstr "Immagine" -#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 +#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 msgid "Encrypted content" msgstr "Contenuto crittografato" @@ -2764,478 +2568,301 @@ msgstr "l'articolo" #: ../../include/bbcode.php:447 msgid "Different viewers will see this text differently" -msgstr "A persone diverse questo testo potrebbe apparire in modo differente" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/bbcode.php:656 +#: ../../include/bbcode.php:662 msgid "$1 spoiler" msgstr "$1 spoiler" -#: ../../include/bbcode.php:676 +#: ../../include/bbcode.php:682 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 -msgid "Advanced" -msgstr "Avanzate" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Notifica di RedMatrix" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "RedMatrix" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 -msgid "Find" -msgstr "Cerca" +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Grazie," -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Profilo casuale" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" - -#: ../../include/contact_widgets.php:125 +#: ../../include/enotify.php:46 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mostra tutto" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:621 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:916 -msgid "Permissions" -msgstr "Permessi" - -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Altro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Senza preferenza" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Feticista" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Da solo" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Ha una cotta" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Infatuato/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" +msgid "%s Administrator" +msgstr "L'amministratore di %s" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Impegnato" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[RedMatrix] Nuovo messaggio su %s" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Felice" +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[RedMatrix] Nuovo commento di %2$s alla conversazione #%1$d" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[RedMatrix] %s ha scritto sulla tua bacheca" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[RedMatrix] %s ti ha taggato" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[RedMatrix] %1$s ti ha mandato un poke" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Amministrazione sito" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Rubrica" +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Umore" +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[RedMatrix] %s ha taggato il tuo articolo" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Poke" +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Diagnostica" +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Suggerisci" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[RedMatrix] Hai una richiesta di amicizia" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Canale casuale" +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Invita" +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funzionalità" +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../include/apps.php:153 -msgid "Language" -msgstr "Lingua" +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Articolo" +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[RedMatrix] Ti è stato suggerito un amico" -#: ../../include/apps.php:155 -msgid "Profile Photo" -msgstr "Foto del profilo" +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:603 -msgid "Update" -msgstr "Aggiorna" +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installa" +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Nome:" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Acquista" +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/enotify.php:499 +msgid "[Red:Notify]" +msgstr "[RedMatrix]" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:424 +msgid "Advanced" +msgstr "Avanzate" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 +#: ../../mod/directory.php:334 ../../mod/directory.php:339 +msgid "Find" +msgstr "Cerca" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:338 +#: ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" -#: ../../include/account.php:440 +#: ../../include/contact_widgets.php:125 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Registrazione verificata. Adesso puoi effettuare login." +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "mostra tutto" -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Mostra" -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 +#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 +#: ../../mod/photos.php:559 ../../mod/photos.php:916 +msgid "Permissions" +msgstr "Permessi" #: ../../include/conversation.php:126 ../../mod/like.php:113 msgid "channel" @@ -3262,42 +2889,42 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s è %2$s" -#: ../../include/conversation.php:556 +#: ../../include/conversation.php:556 ../../mod/photos.php:978 msgctxt "title" msgid "Likes" msgstr "Mi piace" -#: ../../include/conversation.php:556 +#: ../../include/conversation.php:556 ../../mod/photos.php:978 msgctxt "title" msgid "Dislikes" msgstr "Non mi piace" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Agree" -msgstr "Sono d'accordo" +msgstr "D'accordo" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Disagree" -msgstr "Non sono d'accordo" +msgstr "Non d'accordo" -#: ../../include/conversation.php:557 +#: ../../include/conversation.php:557 ../../mod/photos.php:979 msgctxt "title" msgid "Abstain" -msgstr "Si astengono" +msgstr "Astenuti" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Attending" msgstr "Partecipano" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Not attending" msgstr "Non partecipano" -#: ../../include/conversation.php:558 +#: ../../include/conversation.php:558 ../../mod/photos.php:980 msgctxt "title" msgid "Might attend" msgstr "Forse partecipano" @@ -3355,6 +2982,10 @@ msgstr "Modifica il contatto" msgid "Send PM" msgstr "Invia messaggio privato" +#: ../../include/conversation.php:943 ../../include/apps.php:145 +msgid "Poke" +msgstr "Poke" + #: ../../include/conversation.php:1061 #, php-format msgid "%s likes this." @@ -3436,7 +3067,7 @@ msgstr "Scade il YYYY-MM-DD HH:MM" #: ../../include/conversation.php:1170 ../../mod/editblock.php:198 #: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:943 +#: ../../mod/photos.php:943 ../../mod/layouts.php:168 msgid "Share" msgstr "Condividi" @@ -3558,15 +3189,15 @@ msgstr "Per esempio: mario@esempio.com, simona@esempio.com" msgid "Set expiration date" msgstr "Data di scadenza" -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:604 +#: ../../include/conversation.php:1226 ../../mod/events.php:635 +#: ../../mod/editpost.php:154 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:603 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:578 -#: ../../mod/settings.php:604 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../include/conversation.php:1227 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:134 ../../mod/events.php:634 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:155 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 msgid "Cancel" msgstr "Annulla" @@ -3623,7 +3254,7 @@ msgstr "Spam" msgid "Posts flagged as SPAM" msgstr "Articoli marcati come spam" -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 +#: ../../include/conversation.php:1565 ../../mod/admin.php:894 msgid "Channel" msgstr "Canale" @@ -3697,612 +3328,692 @@ msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Maschio" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Femmina" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e articoli normali" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Può vedere il profilo predefinito del canale" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Può vedere i miei album fotografici" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Può vedere i miei contatti" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Può vedere i miei file condivisi" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Può commentare o aggiungere \"mi piace\" ai miei articoli" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Può aggiungere foto ai miei album" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 +msgid "Other" +msgstr "Altro" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\"" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profili e tutto ciò che non è articoli e commenti" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Maschi" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Femmine" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Gay" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Senza preferenza" + +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Feticista" + +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Da solo" + +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Ha una cotta" + +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Infatuato/a" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Disponibile a un incontro" + +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Può scrivere sul mio archivio file" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Amici con qualcosa in più" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Casual" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Può usare i miei articoli pubblici per creare canali derivati" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Impegnato" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Sposato/a" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Con matrimonio immaginario" -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partner" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Social network" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Convivente" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Quasi sempre pubblico" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Matrimonio regolare" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Con restrizioni" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Felice" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privato" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Non in cerca" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum di discussione" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Scambista" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Tradito/a" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Per finalità speciali" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Separato/a" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Pagina per fan" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Instabile" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Repository di gruppo" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Modifica il riquadro" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Amministrazione sito" -#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Rubrica" -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Elimina il riquadro" +#: ../../include/apps.php:144 ../../mod/mood.php:130 +msgid "Mood" +msgstr "Umore" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Diagnostica" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Suggerisci" -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Canale casuale" -#: ../../mod/manage.php:151 -msgid "Switch to one of your channels by selecting it." -msgstr "Passa a un altro tuo canale selezionandolo." +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Invita" -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Funzionalità" -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Lingua" -#: ../../mod/manage.php:156 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Articolo" -#: ../../mod/manage.php:157 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Foto del profilo" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:609 +msgid "Update" +msgstr "Aggiorna" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installa" -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 -msgid "Not found." -msgstr "Non trovato." +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Acquista" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../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 "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Si" +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:394 -msgid "No" -msgstr "No" +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Nome del riquadro" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Amministratore" -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account approvato." -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Registrazione verificata. Adesso puoi effettuare login." -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Il canale è stato sbloccato" +#: ../../include/account.php:674 ../../include/account.php:676 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Il canale è stato bloccato" +#: ../../include/account.php:682 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." +#: ../../include/account.php:687 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Il canale non sarà più ignorato" +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Il canale sarà ignorato" +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Il canale non è più archiviato" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e articoli normali" -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Il canale è stato archiviato" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Il canale non è più nascosto" +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Può vedere i miei album fotografici" -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Il canale è stato nascosto" +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Il canale è stato approvato" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Può vedere i miei file condivisi" -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Il canale non è più approvato" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Aggiorna i permessi" +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei articoli" -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Scarica i permessi aggiornati" +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Può aggiungere foto ai miei album" -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\"" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Sblocca" +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profili e tutto ciò che non è articoli e commenti" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Blocca" +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignora" +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Può scrivere sul mio archivio file" -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo canale (abilita/disabilita)" +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Può usare i miei articoli pubblici per creare canali derivati" -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Archivia" +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../mod/connedit.php:523 +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:48 msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../include/permissions.php:810 +msgid "Social Networking" +msgstr "Social network" -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Nascondi" +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Mostly Public" +msgstr "Quasi sempre pubblico" -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Restricted" +msgstr "Con restrizioni" -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +msgid "Private" +msgstr "Privato" + +#: ../../include/permissions.php:811 +msgid "Community Forum" +msgstr "Forum di discussione" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../include/permissions.php:812 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../include/permissions.php:813 +msgid "Special Purpose" +msgstr "Per finalità speciali" -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Contatti: impostazioni per %s" +#: ../../include/permissions.php:813 +msgid "Celebrity/Soapbox" +msgstr "Pagina per fan" -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +#: ../../include/permissions.php:813 +msgid "Group Repository" +msgstr "Repository di gruppo" -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Applica i permessi indicati su questa pagina a tutti i nuovi contatti." +#: ../../include/permissions.php:814 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" -#: ../../mod/connedit.php:637 ../../mod/rate.php:147 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../mod/connedit.php:638 ../../mod/rate.php:148 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (visibile a tutti)" +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Modifica il riquadro" -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Su questa pagina puoi verificare le impostazioni e fare i cambiamenti che preferisci. I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi ancora definiti)." +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Vuoi eliminare questo riquadro?" -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "derivato" +#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Non hai assegnato permessi individuali a questo contatto!" +#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Vorbis [.ogg]" -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate." +#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Elimina il riquadro" -#: ../../mod/connedit.php:655 +#: ../../mod/manage.php:136 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Informazioni e annotazioni sul contatto" +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Modifica le informazioni sul contatto" +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../mod/manage.php:151 +msgid "Switch to one of your channels by selecting it." +msgstr "Per passare a un altro tuo canale selezionalo." -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "I permessi che concedo" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "A questo canale sono stati applicati i permessi predefiniti ma non sono stati salvati. In realtà non esistono ancora dei permessi predefiniti da usare su questo sito. Controlla e verifica le impostazioni, [Salva] per confermare." +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Rimuovi/disabilita i permessi automatici" +#: ../../mod/manage.php:156 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Membro di un forum" +#: ../../mod/manage.php:157 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Comunicati e annunci" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Impossibile trovare delegati per questa pagina." -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Condivisione completa (permessi tipici dei social network)" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Condivisione prudente" +#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Follower" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestori attuali della pagina" -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegati attuali della pagina" -#: ../../mod/connedit.php:670 -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 "I permessi nelle impostazioni di privacy hanno priorità su quelli mostrati in questa pagina. Non avrà alcun effetto cambiarli qui, se sono indicati come derivati." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Delegati potenziali" -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Permessi avanzati" +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:873 +msgid "Remove" +msgstr "Rimuovi" -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Permessi semplificati (seleziona e salva)" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Aggiungi" -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Nessun risultato." -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Blocca/sblocca contatto" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Ignora il contatto" +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "Ripara le impostazioni URL" +#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +msgid "Not found." +msgstr "Non trovato." -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Leggi le conversazioni" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Elimina contatto" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Aggiorna gli articoli pubblici" +#: ../../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 "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Aggiorna adesso" +#: ../../mod/api.php:105 ../../mod/admin.php:400 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 +msgid "Yes" +msgstr "Si" -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Attualmente bloccato" +#: ../../mod/api.php:106 ../../mod/admin.php:398 ../../mod/settings.php:974 +#: ../../mod/settings.php:979 ../../mod/settings.php:1064 +msgid "No" +msgstr "No" -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Attualmente ignorato" +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Nome del riquadro" -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Attualmente archiviato" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Attualmente da approvare" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "La tua rete"" +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " #: ../../mod/connect.php:56 ../../mod/connect.php:104 msgid "Continue" @@ -4347,119 +4058,344 @@ msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" msgid "Restricted or Premium Channel" msgstr "Canale premium - con restrizioni" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Modifica articolo" +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessi personali:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "La tua rete"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." + +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" + +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." + +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "Foto non disponibile." + +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "Carica un file:" + +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" + +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +msgid "or" +msgstr "o" + +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." + +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "Modifica terminata" + +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." + +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Per favore accedi con il tuo identificativo RedMatrix o registrati su RedMatrix per continuare." + +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: ../../mod/like.php:143 +msgid "thing" +msgstr "oggetto" + +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "Canale non trovato." + +#: ../../mod/like.php:228 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." + +#: ../../mod/like.php:387 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" + +#: ../../mod/like.php:389 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" + +#: ../../mod/like.php:391 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non ha preso una decisione" + +#: ../../mod/like.php:393 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" + +#: ../../mod/like.php:395 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" + +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" + +#: ../../mod/like.php:481 +msgid "Action completed." +msgstr "Comando completato." + +#: ../../mod/like.php:482 +msgid "Thank you." +msgstr "Grazie." + +#: ../../mod/events.php:87 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." + +#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." + +#: ../../mod/events.php:96 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." + +#: ../../mod/events.php:114 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../mod/events.php:396 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:418 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../mod/events.php:419 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../mod/events.php:473 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:474 ../../mod/photos.php:827 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 +msgid "Next" +msgstr "Successivo" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eliminare questo elemento?" +#: ../../mod/events.php:476 +msgid "Export" +msgstr "Esporta" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../mod/events.php:504 +msgid "Event removed" +msgstr "Evento eliminato" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../mod/events.php:507 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "Canale RedMatrix" +#: ../../mod/events.php:625 +msgid "Event details" +msgstr "Dettagli evento" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../mod/events.php:626 +msgid "Starting date and Title are required." +msgstr "Titolo e data d'inizio sono obbligatori." -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../mod/events.php:628 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." +#: ../../mod/events.php:630 +msgid "Event Starts:" +msgstr "Inizio:" -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" +#: ../../mod/events.php:637 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è rilevante" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../mod/events.php:639 +msgid "Event Finishes:" +msgstr "Fine:" -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto non disponibile." +#: ../../mod/events.php:641 ../../mod/events.php:642 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../mod/events.php:641 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono in base all'orario di un luogo particolare." -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../mod/events.php:643 +msgid "Description:" +msgstr "Descrizione:" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../mod/events.php:647 +msgid "Title:" +msgstr "Titolo:" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:964 -msgid "or" -msgstr "o" +#: ../../mod/events.php:649 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Siti pubblici" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../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 "Gli indirizzi elencati permettono la registrazione su RedMatrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito." -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../mod/pubsites.php:25 +msgid "Rate this hub" +msgstr "Valuta questo hub" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../mod/pubsites.php:26 +msgid "Site URL" +msgstr "URL del sito" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." +#: ../../mod/pubsites.php:26 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Posizione geografica" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Vedi le valutazioni del hub" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Valuta" -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Vedi le valutazioni" #: ../../mod/network.php:84 msgid "No such group" @@ -4485,3888 +4421,4032 @@ msgstr "Contatto:" msgid "Invalid connection." msgstr "Contatto non valido." -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." +#: ../../mod/connedit.php:75 ../../mod/connections.php:37 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." +#: ../../mod/connedit.php:99 ../../mod/connections.php:51 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." +#: ../../mod/connedit.php:204 ../../mod/connections.php:94 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../mod/connedit.php:206 ../../mod/connections.php:96 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." + +#: ../../mod/connedit.php:252 +msgid "is now connected to" +msgstr "ha come nuovo contatto" + +#: ../../mod/connedit.php:365 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." + +#: ../../mod/connedit.php:379 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." + +#: ../../mod/connedit.php:386 +msgid "Channel has been unblocked" +msgstr "Il canale è stato sbloccato" + +#: ../../mod/connedit.php:387 +msgid "Channel has been blocked" +msgstr "Il canale è stato bloccato" + +#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 +#: ../../mod/connedit.php:443 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." + +#: ../../mod/connedit.php:398 +msgid "Channel has been unignored" +msgstr "Il canale non sarà più ignorato" + +#: ../../mod/connedit.php:399 +msgid "Channel has been ignored" +msgstr "Il canale sarà ignorato" + +#: ../../mod/connedit.php:410 +msgid "Channel has been unarchived" +msgstr "Il canale non è più archiviato" + +#: ../../mod/connedit.php:411 +msgid "Channel has been archived" +msgstr "Il canale è stato archiviato" + +#: ../../mod/connedit.php:422 +msgid "Channel has been unhidden" +msgstr "Il canale non è più nascosto" + +#: ../../mod/connedit.php:423 +msgid "Channel has been hidden" +msgstr "Il canale è stato nascosto" + +#: ../../mod/connedit.php:438 +msgid "Channel has been approved" +msgstr "Il canale è stato approvato" + +#: ../../mod/connedit.php:439 +msgid "Channel has been unapproved" +msgstr "Il canale non è più approvato" + +#: ../../mod/connedit.php:467 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../mod/connedit.php:487 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" + +#: ../../mod/connedit.php:491 +msgid "Refresh Permissions" +msgstr "Aggiorna i permessi" + +#: ../../mod/connedit.php:494 +msgid "Fetch updated permissions" +msgstr "Scarica i permessi aggiornati" + +#: ../../mod/connedit.php:498 +msgid "Recent Activity" +msgstr "Attività recenti" + +#: ../../mod/connedit.php:501 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:761 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:760 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/connedit.php:510 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignora" -#: ../../mod/events.php:392 -msgid "l, F j" -msgstr "l j F" +#: ../../mod/connedit.php:517 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../mod/events.php:414 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../mod/connedit.php:520 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../mod/events.php:466 -msgid "Create New Event" -msgstr "Crea un nuovo evento" +#: ../../mod/connedit.php:520 +msgid "Archive" +msgstr "Archivia" -#: ../../mod/events.php:467 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Precendente" +#: ../../mod/connedit.php:523 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../mod/events.php:468 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Successivo" +#: ../../mod/connedit.php:526 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../mod/events.php:469 -msgid "Export" -msgstr "Esporta" +#: ../../mod/connedit.php:526 +msgid "Hide" +msgstr "Nascondi" -#: ../../mod/events.php:594 -msgid "Event details" -msgstr "Dettagli evento" +#: ../../mod/connedit.php:529 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../mod/events.php:595 -msgid "Starting date and Title are required." -msgstr "Titolo e data d'inizio sono obbligatori." +#: ../../mod/connedit.php:536 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../mod/events.php:597 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../mod/events.php:599 -msgid "Event Starts:" -msgstr "Inizio:" +#: ../../mod/connedit.php:611 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../mod/events.php:606 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è rilevante" +#: ../../mod/connedit.php:627 +#, php-format +msgid "Connections: settings for %s" +msgstr "Contatti: impostazioni per %s" -#: ../../mod/events.php:608 -msgid "Event Finishes:" -msgstr "Fine:" +#: ../../mod/connedit.php:628 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../mod/events.php:610 ../../mod/events.php:611 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../mod/connedit.php:632 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Applica i permessi indicati su questa pagina a tutti i nuovi contatti." -#: ../../mod/events.php:610 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono in un luogo particolare. Non è utile per festività generali." +#: ../../mod/connedit.php:636 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../mod/events.php:612 -msgid "Description:" -msgstr "Descrizione:" +#: ../../mod/connedit.php:637 ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../mod/events.php:616 -msgid "Title:" -msgstr "Titolo:" +#: ../../mod/connedit.php:638 ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../mod/events.php:618 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../mod/connedit.php:645 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." +msgstr "I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi impostati). Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Puoi verificare le impostazioni e fare i cambiamenti che preferisci prima di salvare. " -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../mod/connedit.php:648 +msgid "inherited" +msgstr "derivato" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Siti pubblici" +#: ../../mod/connedit.php:651 +msgid "Connection has no individual permissions!" +msgstr "Non hai assegnato permessi individuali a questo contatto!" -#: ../../mod/pubsites.php:19 +#: ../../mod/connedit.php:652 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 "Gli indirizzi elencati permettono la registrazione su RedMatrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL del sito" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate." -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../mod/connedit.php:654 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../mod/connedit.php:655 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Posizione geografica" +#: ../../mod/connedit.php:656 +msgid "Contact Information / Notes" +msgstr "Informazioni e annotazioni sul contatto" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../mod/connedit.php:657 +msgid "Edit contact notes" +msgstr "Modifica le informazioni sul contatto" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../mod/connedit.php:659 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../mod/settings.php:222 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../mod/connedit.php:660 +msgid "My Settings" +msgstr "I permessi che concedo" -#: ../../mod/settings.php:226 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../mod/connedit.php:662 +msgid "" +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." +msgstr "A questo canale sono stati applicati i permessi predefiniti ma non sono stati salvati. In realtà non esistono ancora dei permessi predefiniti da usare su questo sito. Controlla e verifica le impostazioni, [Salva] per confermare." -#: ../../mod/settings.php:240 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../mod/connedit.php:663 +msgid "Clear/Disable Automatic Permissions" +msgstr "Rimuovi/disabilita i permessi automatici" -#: ../../mod/settings.php:242 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../mod/connedit.php:664 +msgid "Forum Members" +msgstr "Membro di un forum" -#: ../../mod/settings.php:256 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../mod/connedit.php:665 +msgid "Soapbox" +msgstr "Comunicati e annunci" -#: ../../mod/settings.php:259 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../mod/connedit.php:666 +msgid "Full Sharing (typical social network permissions)" +msgstr "Condivisione completa (permessi tipici dei social network)" -#: ../../mod/settings.php:268 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../mod/connedit.php:667 +msgid "Cautious Sharing " +msgstr "Condivisione prudente" -#: ../../mod/settings.php:507 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../mod/connedit.php:668 +msgid "Follow Only" +msgstr "Follower" -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../mod/connedit.php:669 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../mod/settings.php:579 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../mod/connedit.php:670 +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 "I permessi nelle impostazioni di privacy hanno priorità su quelli mostrati in questa pagina. Non avrà alcun effetto cambiarli qui, se sono indicati come derivati." -#: ../../mod/settings.php:580 ../../mod/settings.php:606 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../mod/connedit.php:671 +msgid "Advanced Permissions" +msgstr "Permessi avanzati" -#: ../../mod/settings.php:580 ../../mod/settings.php:581 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../mod/connedit.php:672 +msgid "Simple Permissions (select one and submit)" +msgstr "Permessi semplificati (seleziona e salva)" -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../mod/connedit.php:676 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -msgid "Redirect" -msgstr "Redirect" +#: ../../mod/connedit.php:677 +msgid "Block/Unblock contact" +msgstr "Blocca/sblocca contatto" -#: ../../mod/settings.php:582 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione." +#: ../../mod/connedit.php:678 +msgid "Ignore contact" +msgstr "Ignora il contatto" -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -msgid "Icon url" -msgstr "Url icona" +#: ../../mod/connedit.php:679 +msgid "Repair URL settings" +msgstr "Ripara le impostazioni URL" -#: ../../mod/settings.php:583 -msgid "Optional" -msgstr "Opzionale" +#: ../../mod/connedit.php:680 +msgid "View conversations" +msgstr "Leggi le conversazioni" -#: ../../mod/settings.php:594 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." +#: ../../mod/connedit.php:682 +msgid "Delete contact" +msgstr "Elimina contatto" -#: ../../mod/settings.php:637 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../mod/connedit.php:686 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../mod/settings.php:641 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../mod/connedit.php:688 +msgid "Update public posts" +msgstr "Aggiorna gli articoli pubblici" -#: ../../mod/settings.php:642 -msgid "No name" -msgstr "Nessun nome" +#: ../../mod/connedit.php:690 +msgid "Update now" +msgstr "Aggiorna adesso" -#: ../../mod/settings.php:643 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../mod/connedit.php:696 +msgid "Currently blocked" +msgstr "Attualmente bloccato" -#: ../../mod/settings.php:654 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../mod/connedit.php:697 +msgid "Currently ignored" +msgstr "Attualmente ignorato" -#: ../../mod/settings.php:662 -msgid "Feature Settings" -msgstr "Componenti aggiuntivi" +#: ../../mod/connedit.php:698 +msgid "Currently archived" +msgstr "Attualmente archiviato" -#: ../../mod/settings.php:685 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../mod/connedit.php:699 +msgid "Currently pending" +msgstr "Attualmente da approvare" -#: ../../mod/settings.php:686 -msgid "Password Settings" -msgstr "Impostazioni password" +#: ../../mod/dav.php:121 +msgid "RedMatrix channel" +msgstr "Canale RedMatrix" -#: ../../mod/settings.php:687 -msgid "New Password:" -msgstr "Nuova password:" +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "L'insieme di canali è stato creato." -#: ../../mod/settings.php:688 -msgid "Confirm:" -msgstr "Conferma:" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Impossibile creare l'insieme." -#: ../../mod/settings.php:688 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non cambiare la password" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Insieme aggiornato." -#: ../../mod/settings.php:690 ../../mod/settings.php:1026 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Crea un insieme di canali." -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Nome dell'insieme:" -#: ../../mod/settings.php:692 -msgid "Remove this account from this server including all its channels" -msgstr "Elimina l'account da questo server, inclusi tutti i canali" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali dell'insieme" -#: ../../mod/settings.php:693 ../../mod/settings.php:1107 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata." +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Insieme rimosso." -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "Off" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Impossibile rimuovere l'insieme." -#: ../../mod/settings.php:709 -msgid "On" -msgstr "On" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Modifica l'insieme" -#: ../../mod/settings.php:716 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Membri" -#: ../../mod/settings.php:740 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../mod/settings.php:779 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../mod/settings.php:782 +#: ../../mod/siteinfo.php:106 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" - -#: ../../mod/settings.php:785 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobile" +msgid "Version %s" +msgstr "Versione %s" -#: ../../mod/settings.php:821 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../mod/siteinfo.php:127 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../mod/settings.php:827 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../mod/siteinfo.php:140 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../mod/settings.php:828 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../mod/siteinfo.php:149 +msgid "Red" +msgstr "RedMatrix" -#: ../../mod/settings.php:829 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../mod/siteinfo.php:150 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di RedMatrix - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../mod/settings.php:830 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../mod/siteinfo.php:152 +msgid "Tag: " +msgstr "Tag: " -#: ../../mod/settings.php:830 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../mod/siteinfo.php:154 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../mod/settings.php:831 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../mod/siteinfo.php:157 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../mod/settings.php:831 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../mod/siteinfo.php:158 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Visita RedMatrix.me per scoprire di più su Red Matrix." -#: ../../mod/settings.php:832 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" +#: ../../mod/siteinfo.php:159 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../mod/settings.php:833 -msgid "Link post titles to source" -msgstr "Il link del titolo di un articolo porta al sito originale" +#: ../../mod/siteinfo.php:162 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../mod/settings.php:834 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../mod/siteinfo.php:164 +msgid "Site Administrators" +msgstr "Amministratori del sito" -#: ../../mod/settings.php:837 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Guida:" -#: ../../mod/settings.php:837 ../../mod/settings.php:838 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Non disponibile" -#: ../../mod/settings.php:838 -msgid "Use blog/list mode on matrix page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "RedMatrix Server - Installazione" -#: ../../mod/settings.php:839 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../mod/settings.php:839 ../../mod/settings.php:840 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare per mostrare i contenuti di dimensioni maggiori" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../mod/settings.php:840 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../mod/setup.php:183 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../mod/settings.php:874 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../mod/settings.php:875 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../mod/settings.php:876 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../mod/settings.php:877 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../mod/settings.php:878 -msgid "Anybody on this website" -msgstr "Chiunque su questo sito" +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../mod/settings.php:879 -msgid "Anybody in this network" -msgstr "Chiunque su Red" +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../mod/settings.php:880 -msgid "Anybody authenticated" -msgstr "Chiunque sia autenticato" +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "Per installare RedMatrix è necessario conoscere i parametri di connessione al database." -#: ../../mod/settings.php:881 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../mod/settings.php:955 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../mod/settings.php:960 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../mod/setup.php:296 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../mod/settings.php:969 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "'localhost' è il predefinito" -#: ../../mod/settings.php:1017 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "Port del database" -#: ../../mod/settings.php:1024 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../mod/settings.php:1027 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../mod/settings.php:1028 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "Password utente database" -#: ../../mod/settings.php:1028 -msgid "Geographical location to display on your posts" -msgstr "Posizione geografica da mostrare sui tuoi post" +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "Nome database" -#: ../../mod/settings.php:1029 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Tipo database" -#: ../../mod/settings.php:1031 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" -#: ../../mod/settings.php:1031 +#: ../../mod/setup.php:303 ../../mod/setup.php:347 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: ../../mod/settings.php:1033 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../mod/settings.php:1035 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../mod/settings.php:1037 -msgid "Hide my online presence" -msgstr "Non mostrare la mia presenza online" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" -#: ../../mod/settings.php:1037 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostra sul tuo profilo che sei online" +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "Impostazioni del sito" -#: ../../mod/settings.php:1039 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../mod/settings.php:1040 +#: ../../mod/setup.php:396 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +"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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." + +#: ../../mod/setup.php:400 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../mod/settings.php:1041 +#: ../../mod/setup.php:400 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../mod/settings.php:1042 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../mod/setup.php:405 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../mod/settings.php:1043 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../mod/settings.php:1045 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi articoli" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../mod/settings.php:1045 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/settings.php:1047 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione" -#: ../../mod/settings.php:1049 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/settings.php:1049 -msgid "0 or blank prevents expiration" -msgstr "Lascia vuoto oppure 0 per non impostare scadenze" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" -#: ../../mod/settings.php:1050 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../mod/settings.php:1050 -msgid "May reduce spam activity" -msgstr "Serve e ridurre lo spam" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../mod/settings.php:1051 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per gli articoli" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../mod/settings.php:1052 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../mod/settings.php:1056 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../mod/settings.php:1062 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" -#: ../../mod/settings.php:1062 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../mod/settings.php:1065 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../mod/settings.php:1066 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/settings.php:1067 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../mod/settings.php:1068 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../mod/settings.php:1069 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../mod/settings.php:1070 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../mod/settings.php:1071 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../mod/settings.php:1072 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../mod/settings.php:1073 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." -#: ../../mod/settings.php:1074 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo articolo" +#: ../../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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di RedMatrix ma non è in grado di farlo." -#: ../../mod/settings.php:1075 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../mod/settings.php:1076 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../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 "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di RedMatrix." -#: ../../mod/settings.php:1077 -msgid "You are tagged in a post" -msgstr "Sei taggato in un articolo" +#: ../../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 "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../mod/settings.php:1078 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un articolo" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../mod/settings.php:1081 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../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 "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../mod/settings.php:1083 -msgid "Unseen matrix activity" -msgstr "Nuove attività nella rete" +#: ../../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 "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di RedMatrix." -#: ../../mod/settings.php:1084 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../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 "Assicurati che il tuo web server sia in esecuzione da parte di un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../mod/settings.php:1085 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../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 "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 -#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 -msgid "Recommended" -msgstr "Consigliato" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../mod/settings.php:1086 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../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 "RedMatrix salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix" -#: ../../mod/settings.php:1087 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../mod/setup.php:547 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../mod/settings.php:1088 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../mod/settings.php:1088 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" -#: ../../mod/settings.php:1089 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../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 "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../mod/settings.php:1090 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../mod/settings.php:1091 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../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 "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../mod/settings.php:1092 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../mod/settings.php:1093 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../mod/settings.php:1094 +#: ../../mod/setup.php:590 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../mod/settings.php:1096 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../mod/settings.php:1096 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../mod/settings.php:1098 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../mod/setup.php:625 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../mod/settings.php:1099 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../mod/setup.php:660 +msgid "

        What next

        " +msgstr "

        I prossimi passi

        " -#: ../../mod/settings.php:1102 +#: ../../mod/setup.php:661 msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../mod/settings.php:1103 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Nessun canale." -#: ../../mod/settings.php:1105 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../mod/settings.php:1106 -msgid "Remove this channel" -msgstr "Elimina questo canale" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "Accesso a Red Matrix. {Inserisci l'email con cui sei registrato e la password.}" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Modifica articolo" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Eliminare questo elemento?" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../mod/connections.php:192 ../../mod/connections.php:293 +msgid "Blocked" +msgstr "Bloccati" -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Rimuovi" +#: ../../mod/connections.php:197 ../../mod/connections.php:300 +msgid "Ignored" +msgstr "Ignorati" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "L'insieme di canali è stato creato." +#: ../../mod/connections.php:202 ../../mod/connections.php:314 +msgid "Hidden" +msgstr "Nascosti" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossibile creare l'insieme." +#: ../../mod/connections.php:207 ../../mod/connections.php:307 +msgid "Archived" +msgstr "Archiviati" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Insieme aggiornato." +#: ../../mod/connections.php:231 ../../mod/connections.php:246 +msgid "All" +msgstr "Tutti" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crea un insieme di canali." +#: ../../mod/connections.php:271 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome dell'insieme:" +#: ../../mod/connections.php:274 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali dell'insieme" +#: ../../mod/connections.php:277 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Insieme rimosso." +#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossibile rimuovere l'insieme." +#: ../../mod/connections.php:283 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Modifica l'insieme" +#: ../../mod/connections.php:286 +msgid "Unblocked" +msgstr "Non bloccati" -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Membri" +#: ../../mod/connections.php:289 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" + +#: ../../mod/connections.php:296 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../mod/connections.php:303 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../mod/connections.php:310 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../mod/connections.php:317 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../mod/siteinfo.php:93 +#: ../../mod/connections.php:372 #, php-format -msgid "Version %s" -msgstr "Versione %s" +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../mod/connections.php:373 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../mod/connections.php:411 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "RedMatrix" +#: ../../mod/connections.php:412 +msgid "Finding: " +msgstr "Ricerca: " -#: ../../mod/siteinfo.php:137 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di RedMatrix - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "pagina web" -#: ../../mod/siteinfo.php:139 -msgid "Tag: " -msgstr "Tag: " +#: ../../mod/impel.php:38 +msgid "block" +msgstr "riquadro" -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "layout" -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../mod/siteinfo.php:145 -msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Visita RedMatrix.me per scoprire di più su Red Matrix." +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../mod/cloud.php:120 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "Accesso a Red Matrix. {Inserisci l'email con cui sei registrato e la password.}" -#: ../../mod/siteinfo.php:149 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" +#: ../../mod/item.php:165 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Amministratori del sito" +#: ../../mod/item.php:424 +msgid "Empty post discarded." +msgstr "L'articolo vuoto è stato ignorato." -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Guida:" +#: ../../mod/item.php:466 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Non disponibile" +#: ../../mod/item.php:865 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Articolo non salvato." -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Installazione" +#: ../../mod/item.php:1083 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../mod/item.php:1089 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 +#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 +#: ../../mod/photos.php:429 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "L'oggetto è stato aggiunto" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "non trovato." -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "Per installare RedMatrix è necessario conoscere i parametri di connessione al database." +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi segue il relativo canale" -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "'localhost' è il predefinito" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (opzionale)" -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Port del database" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Assente" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Password utente database" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Nome database" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Tipo database" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Descrizione" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" + +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../mod/acl.php:231 +msgid "network" +msgstr "rete" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" +#: ../../mod/acl.php:241 +msgid "RSS" +msgstr "RSS" -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Impostazioni del sito" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- scegli -" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio server" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione" +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../mod/setup.php:439 +#: ../../mod/import.php:106 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "L'importazione è terminata con successo!" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "modulo PHP mcrypt" +#: ../../mod/import.php:493 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio server/hub" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio server" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "La password per il vecchio server" -#: ../../mod/setup.php:476 +#: ../../mod/import.php:499 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc." -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Rendi questo server il mio indirizzo primario" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importazione dei post esistenti, se possibile" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Vuoi eliminare questo layout?" -#: ../../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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di RedMatrix ma non è in grado di farlo." +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Elimina il layout" -#: ../../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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../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 "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di RedMatrix." +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Area chat non trovata" -#: ../../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 "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Lascia l'area chat" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Elimina questa area chat" -#: ../../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 "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Non sono presente" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Sono online" -#: ../../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 "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di RedMatrix." +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Aggiungi l'area chat ai segnalibri" -#: ../../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 "Assicurati che il tuo web server sia in esecuzione da parte di un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nuova area chat" -#: ../../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 "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Nome dell'area chat" -#: ../../mod/setup.php:530 +#: ../../mod/chat.php:225 #, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +msgid "%1$s's Chatrooms" +msgstr "Le aree chat di %1$s" -#: ../../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 "RedMatrix salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix" +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Vuoi eliminare questa pagina web?" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Elimina la pagina web" -#: ../../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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" +#: ../../mod/dirsearch.php:19 ../../mod/regdir.php:47 +msgid "This site is not a directory server" +msgstr "Questo sito non è un server di elenchi pubblici" -#: ../../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 "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../mod/dirsearch.php:27 +msgid "This directory server requires an access token" +msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" -#: ../../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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../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 "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../mod/setup.php:590 +#: ../../mod/lostpass.php:63 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../mod/lostpass.php:85 ../../boot.php:1560 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../mod/setup.php:660 -msgid "

        What next

        " -msgstr "

        I prossimi passi

        " +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nessun canale." +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../mod/suggest.php:35 +#: ../../mod/lostpass.php:123 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." - -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorati" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Nascosti" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Archiviati" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reimposta" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Tutti" +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Sito web:" -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Vieni con noi su RedMatrix" -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Non bloccati" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Entra a far parte della mia comunità su RedMatrix." -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Dovrai fornire questo codice di invito:" -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Ricerca: " +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registrati su un qualsiasi sito RedMatrix (sono tutti interconnessi)" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "pagina web" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo RedMatrix nella barra di ricerca che compare nella pagina." -#: ../../mod/impel.php:38 -msgid "block" -msgstr "riquadro" +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oppure visita " -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." +msgstr "L'indirizzo principale non può essere rimosso." -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../mod/locs.php:88 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "L'articolo vuoto è stato ignorato." +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../mod/locs.php:102 +msgid "Location (address)" +msgstr "Indirizzo" -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Articolo non salvato." +#: ../../mod/locs.php:103 +msgid "Primary Location" +msgstr "Indirizzo primario" -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." +#: ../../mod/locs.php:104 +msgid "Drop location" +msgstr "Elimina un indirizzo" -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:81 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "L'oggetto è stato aggiunto" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../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 "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "non trovato." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi segue il relativo canale" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (opzionale)" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../mod/menu.php:31 +msgid "Menu updated." +msgstr "Menù aggiornato." -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Assente" +#: ../../mod/menu.php:35 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/menu.php:40 +msgid "Menu created." +msgstr "Menù creato." -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../mod/menu.php:44 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../mod/menu.php:76 +msgid "Manage Menus" +msgstr "Gestione menù" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../mod/menu.php:79 +msgid "Drop" +msgstr "Elimina" -#: ../../mod/acl.php:228 -msgid "network" -msgstr "rete" +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../mod/acl.php:238 -msgid "RSS" -msgstr "RSS" +#: ../../mod/menu.php:82 +msgid "Create a new menu" +msgstr "Crea un nuovo menù" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../mod/menu.php:83 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../mod/menu.php:85 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../mod/menu.php:96 +msgid "New Menu" +msgstr "Nuovo menù" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installata" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "App non corretta" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Inserisci del codice" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modifica app" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crea una app" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nome app" +#: ../../mod/menu.php:108 ../../mod/mitem.php:24 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../mod/menu.php:114 +msgid "Menu deleted." +msgstr "Menù eliminato." -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descrizione" +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../mod/menu.php:122 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../mod/menu.php:124 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "ID versione" +#: ../../mod/menu.php:130 ../../mod/mitem.php:213 +msgid "Modify" +msgstr "Modifica" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../mod/filestorage.php:81 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../mod/filestorage.php:97 +msgid "File not found." +msgstr "File non trovato." -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- scegli -" +#: ../../mod/filestorage.php:140 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." +#: ../../mod/filestorage.php:149 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../mod/filestorage.php:150 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio server" +#: ../../mod/filestorage.php:151 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../mod/filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un articolo" -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../mod/filestorage.php:156 +msgid "Attach this file to a new post" +msgstr "Allega questo file a un nuovo articolo" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../mod/filestorage.php:157 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +#: ../../mod/filestorage.php:158 +msgid "Do not show in shared with me folder of your connections" +msgstr "Non mostrare nella cartella dei file condivisi dei tuoi contatti" -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "L'importazione è terminata con successo!" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Server non trovato." -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio server/hub" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Manda un poke, un prod o altro" -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio server" +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Destinatario" -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "La password per il vecchio server" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc." +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Rendi privato questo articolo" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Rendi questo server il mio indirizzo primario" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importazione dei post esistenti, se possibile" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Vuoi eliminare questo layout?" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visibile a" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Elimina il layout" +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Area chat non trovata" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia l'area chat" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa area chat" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profilo-" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi l'area chat ai segnalibri" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova area chat" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio ." -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome dell'area chat" +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le aree chat di %1$s" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Mi piace" -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Vuoi eliminare questa pagina web?" +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Elimina la pagina web" +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Questo sito non è un server di elenchi pubblici" +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religione" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Sesso" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Home page" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Interessi" -#: ../../mod/lostpass.php:85 ../../boot.php:1561 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../mod/profiles.php:447 ../../mod/admin.php:895 +msgid "Address" +msgstr "Indirizzo" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Reimposta" +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../mod/rate.php:146 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Nome del profilo:" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Titolo/descrizione:" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Vieni con noi su RedMatrix" +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Sesso:" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Compleanno:" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Località:" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "CAP:" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Nazione:" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Regione/stato:" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Stato sentimentale:" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Entra a far parte della mia comunità su RedMatrix." +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Dovrai fornire questo codice di invito:" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registrati su un qualsiasi sito RedMatrix (sono tutti interconnessi)" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "dal [data]:" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo RedMatrix nella barra di ricerca che compare nella pagina." +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Indirizzo home page:" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oppure visita " +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Orientamento religioso:" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Parole chiave, tag:" -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "L'indirizzo principale non può essere rimosso." +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Visibile nell'elenco pubblico di canali" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Indirizzo" +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Contatti personali e i tuoi social network" -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Indirizzo primario" +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Elimina un indirizzo" +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "Televisione" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Amore" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Lavoro/impiego" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "Scuola/educazione" -#: ../../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 "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../mod/profiles.php:728 ../../mod/directory.php:192 +msgid "Age: " +msgstr "Età:" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Modifica/gestisci i profili" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Aggiungi oggetti interessanti al tuo profilo" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Sito web:" -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menù aggiornato." +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Descrizione:" -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menù creato." +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. L'autenticazione magica è avvenuta con successo." -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../mod/directory.php:198 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Gestione menù" +#: ../../mod/directory.php:210 +msgid "Gender: " +msgstr "Sesso:" -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Elimina" +#: ../../mod/directory.php:212 +msgid "Status: " +msgstr "Stato:" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../mod/directory.php:214 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Crea un nuovo menù" +#: ../../mod/directory.php:217 +msgid "Hometown: " +msgstr "Città dove vivo:" -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../mod/directory.php:219 +msgid "About: " +msgstr "Informazioni:" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../mod/directory.php:277 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../mod/directory.php:280 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Nuovo menù" +#: ../../mod/directory.php:335 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../mod/directory.php:340 +msgid "next page" +msgstr "pagina successiva" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../mod/directory.php:340 +msgid "previous page" +msgstr "pagina precedente" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../mod/directory.php:357 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your " +"content." +msgstr "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto." -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." +msgstr "Esporta i dati del canale e i contenuti in un file in formato JSON. E' un salvataggio dei tuoi contatti, dei dati del profilo e anche di tutti i contenuti. Questa non è la soluzione opportuna per importare il tuo canale su un nuovo server, visto che il file potrebbe avere dimensioni NOTEVOLI. Devi pazientare - ci vorranno alcuni minuti per raccogliere i dati prima che inizi lo scaricamento." -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menù eliminato." +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Modifica" +#: ../../mod/admin.php:97 ../../mod/admin.php:419 +msgid "Site" +msgstr "Sito" -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Account" -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "File non trovato." +#: ../../mod/admin.php:99 ../../mod/admin.php:887 +msgid "Channels" +msgstr "Canali" -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../mod/admin.php:100 ../../mod/admin.php:978 ../../mod/admin.php:1020 +msgid "Plugins" +msgstr "Plugin" -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../mod/admin.php:101 ../../mod/admin.php:1183 ../../mod/admin.php:1219 +msgid "Themes" +msgstr "Temi" -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../mod/admin.php:102 +msgid "Inspect queue" +msgstr "Dettagli della coda di attesa" -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../mod/admin.php:104 +msgid "Profile Config" +msgstr "Configurazione del profilo" -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un articolo" +#: ../../mod/admin.php:105 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../mod/admin.php:119 ../../mod/admin.php:126 ../../mod/admin.php:1306 +msgid "Logs" +msgstr "Log" -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Allega questo file a un nuovo articolo" +#: ../../mod/admin.php:125 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../mod/admin.php:127 +msgid "User registrations waiting for confirmation" +msgstr "Registrazioni in attesa" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Non mostrare nella cartella ciò che è stato condiviso con me" +#: ../../mod/admin.php:210 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contatto non trovato." +#: ../../mod/admin.php:215 ../../mod/admin.php:418 ../../mod/admin.php:520 +#: ../../mod/admin.php:750 ../../mod/admin.php:886 ../../mod/admin.php:977 +#: ../../mod/admin.php:1019 ../../mod/admin.php:1182 ../../mod/admin.php:1218 +#: ../../mod/admin.php:1305 +msgid "Administration" +msgstr "Amministrazione" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." +#: ../../mod/admin.php:216 +msgid "Summary" +msgstr "Riepilogo" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" +#: ../../mod/admin.php:218 +msgid "Registered users" +msgstr "Utenti registrati" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" +#: ../../mod/admin.php:220 ../../mod/admin.php:524 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server non trovato." +#: ../../mod/admin.php:221 +msgid "Version" +msgstr "Versione" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../mod/admin.php:223 ../../mod/admin.php:525 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Manda un poke, un prod o altro" +#: ../../mod/admin.php:334 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" +#: ../../mod/admin.php:371 ../../mod/settings.php:804 +msgid "mobile" +msgstr "mobile" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../mod/admin.php:373 +msgid "experimental" +msgstr "sperimentale" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendi privato questo articolo" +#: ../../mod/admin.php:375 +msgid "unsupported" +msgstr "non supportato" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../mod/admin.php:399 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../mod/admin.php:405 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../mod/admin.php:406 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visibile a" +#: ../../mod/admin.php:407 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../mod/admin.php:408 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../mod/admin.php:421 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrazione" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../mod/admin.php:422 +msgid "File upload" +msgstr "Caricamento file" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../mod/admin.php:423 +msgid "Policies" +msgstr "Politiche" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profilo-" +#: ../../mod/admin.php:428 +msgid "Site name" +msgstr "Nome del sito" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../mod/admin.php:429 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../mod/admin.php:430 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../mod/admin.php:430 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio ." +#: ../../mod/admin.php:431 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../mod/admin.php:432 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../mod/admin.php:432 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Mi piace" +#: ../../mod/admin.php:433 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../mod/admin.php:433 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../mod/admin.php:435 +msgid "Enable Diaspora Protocol" +msgstr "Abilita la comunicazione con Diaspora" -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religione" +#: ../../mod/admin.php:435 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Sperimentale - per comunicare con Diaspora e Friendica" -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../mod/admin.php:436 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Sesso" +#: ../../mod/admin.php:436 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../mod/admin.php:437 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Home page" +#: ../../mod/admin.php:437 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interessi" +#: ../../mod/admin.php:438 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 -msgid "Address" -msgstr "Indirizzo" +#: ../../mod/admin.php:439 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../mod/admin.php:440 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" +#: ../../mod/admin.php:440 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../mod/admin.php:441 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../mod/admin.php:441 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" +#: ../../mod/admin.php:442 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../mod/admin.php:442 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../mod/admin.php:443 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../mod/admin.php:443 +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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../mod/admin.php:444 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../mod/admin.php:444 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Nome del profilo:" +#: ../../mod/admin.php:445 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" +#: ../../mod/admin.php:445 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titolo/descrizione:" +#: ../../mod/admin.php:446 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Sesso:" +#: ../../mod/admin.php:446 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Compleanno:" +#: ../../mod/admin.php:447 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" +#: ../../mod/admin.php:447 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito." -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Località:" +#: ../../mod/admin.php:448 +msgid "Disable discovery tab" +msgstr "Disabilita la funzione 'scopri'" -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../mod/admin.php:448 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Nazione:" +#: ../../mod/admin.php:449 +msgid "No login on Homepage" +msgstr "Non mostrare il login sulla homepage" -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Regione/stato:" +#: ../../mod/admin.php:449 +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 "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato da un canale)." -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../mod/admin.php:451 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../mod/admin.php:452 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/admin.php:453 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "dal [data]:" +#: ../../mod/admin.php:453 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Indirizzo home page:" +#: ../../mod/admin.php:454 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../mod/admin.php:454 +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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Parole chiave, tag:" +#: ../../mod/admin.php:455 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../mod/admin.php:455 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Visibile nell'elenco pubblico di canali" +#: ../../mod/admin.php:456 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." +#: ../../mod/admin.php:456 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../mod/admin.php:512 +msgid "No server found" +msgstr "Server non trovato" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Contatti personali e i tuoi social network" +#: ../../mod/admin.php:519 ../../mod/admin.php:764 +msgid "ID" +msgstr "ID" -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../mod/admin.php:519 +msgid "for channel" +msgstr "per canale" -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../mod/admin.php:519 +msgid "on server" +msgstr "sul server" + +#: ../../mod/admin.php:519 +msgid "Status" +msgstr "Stato" -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../mod/admin.php:521 +msgid "Server" +msgstr "Server" -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Televisione" +#: ../../mod/admin.php:540 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" +#: ../../mod/admin.php:550 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Amore" +#: ../../mod/admin.php:553 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Lavoro/impiego" +#: ../../mod/admin.php:557 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Scuola/educazione" +#: ../../mod/admin.php:560 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../mod/admin.php:575 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Età:" +#: ../../mod/admin.php:579 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Modifica/gestisci i profili" +#: ../../mod/admin.php:581 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../mod/admin.php:582 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Aggiungi oggetti interessanti al tuo profilo" +#: ../../mod/admin.php:596 +msgid "Queue Statistics" +msgstr "Statistiche della coda di attesa" -#: ../../mod/ratings.php:68 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../mod/admin.php:599 +msgid "Total Entries" +msgstr "Totale elementi" -#: ../../mod/ratings.php:94 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../mod/admin.php:599 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../mod/ratings.php:95 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../mod/admin.php:628 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" -#: ../../mod/ratings.php:96 -msgid "Description: " -msgstr "Descrizione:" +#: ../../mod/admin.php:635 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Impossibile trovare delegati per questa pagina." +#: ../../mod/admin.php:664 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" +#: ../../mod/admin.php:684 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" -#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." +#: ../../mod/admin.php:684 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestori attuali della pagina" +#: ../../mod/admin.php:751 ../../mod/admin.php:763 +msgid "Users" +msgstr "Utenti" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati attuali della pagina" +#: ../../mod/admin.php:753 ../../mod/admin.php:889 +msgid "select all" +msgstr "seleziona tutti" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati potenziali" +#: ../../mod/admin.php:754 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" +#: ../../mod/admin.php:755 +msgid "Request date" +msgstr "Data richiesta" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun risultato." +#: ../../mod/admin.php:756 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../mod/directory.php:194 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../mod/admin.php:757 +msgid "Approve" +msgstr "Approva" -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Sesso:" +#: ../../mod/admin.php:758 +msgid "Deny" +msgstr "Nega" -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Stato:" +#: ../../mod/admin.php:764 +msgid "Register date" +msgstr "Data registrazione" -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../mod/admin.php:764 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Città dove vivo:" +#: ../../mod/admin.php:764 +msgid "Expires" +msgstr "Con scadenza" -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Informazioni:" +#: ../../mod/admin.php:764 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../mod/admin.php:766 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../mod/admin.php:767 +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 "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../mod/admin.php:800 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "pagina successiva" +#: ../../mod/admin.php:807 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "pagina precedente" +#: ../../mod/admin.php:826 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../mod/admin.php:837 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../mod/admin.php:848 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../mod/admin.php:848 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../mod/admin.php:891 +msgid "Censor" +msgstr "Applica una censura" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../mod/admin.php:892 +msgid "Uncensor" +msgstr "Rimuovi la censura" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../mod/admin.php:895 +msgid "UID" +msgstr "UID" -#: ../../mod/uexport.php:35 +#: ../../mod/admin.php:897 msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Esporta i contenuti" +"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 "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../mod/uexport.php:37 +#: ../../mod/admin.php:898 msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Esporta i dati del canale e i contenuti in un file in formato JSON. E' un salvataggio dei tuoi contatti, dei dati del profilo e anche di tutti i contenuti. Questa non è la soluzione opportuna per importare il tuo canale su un nuovo server, visto che il file potrebbe avere dimensioni NOTEVOLI. Devi pazientare - ci vorranno alcuni minuti per raccogliere i dati prima che inizi lo scaricamento." +"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 "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../mod/viewconnections.php:71 +#: ../../mod/admin.php:941 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +msgid "Disable" +msgstr "Disattiva" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../mod/admin.php:953 ../../mod/admin.php:1155 +msgid "Enable" +msgstr "Attiva" -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" -msgstr "Sito" +#: ../../mod/admin.php:979 ../../mod/admin.php:1184 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Account" +#: ../../mod/admin.php:987 ../../mod/admin.php:1194 +msgid "Author: " +msgstr "Autore:" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" -msgstr "Canali" +#: ../../mod/admin.php:988 ../../mod/admin.php:1195 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" -msgstr "Plugin" +#: ../../mod/admin.php:1117 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" -msgstr "Temi" +#: ../../mod/admin.php:1176 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" +#: ../../mod/admin.php:1224 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Configurazione del profilo" +#: ../../mod/admin.php:1225 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "Aggiornamenti al DB" +#: ../../mod/admin.php:1252 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" -msgstr "Log" +#: ../../mod/admin.php:1308 +msgid "Clear" +msgstr "Pulisci" -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plugin" +#: ../../mod/admin.php:1314 +msgid "Debugging" +msgstr "Debugging" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Registrazioni in attesa" +#: ../../mod/admin.php:1315 +msgid "Log file" +msgstr "File di log" -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../mod/admin.php:1315 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato RedMatrix." -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 -msgid "Administration" -msgstr "Amministrazione" +#: ../../mod/admin.php:1316 +msgid "Log level" +msgstr "Livello di log" -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Riepilogo" +#: ../../mod/admin.php:1363 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Utenti registrati" +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versione" +#: ../../mod/admin.php:1365 ../../mod/admin.php:1386 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../mod/admin.php:369 -msgid "experimental" -msgstr "sperimentale" +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../mod/admin.php:371 -msgid "unsupported" -msgstr "non supportato" +#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (opzionali)" -#: ../../mod/admin.php:395 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../mod/admin.php:1378 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../mod/admin.php:401 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../mod/admin.php:1384 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../mod/admin.php:402 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../mod/admin.php:403 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Inviato!" -#: ../../mod/admin.php:404 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../mod/admin.php:417 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrazione" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../mod/admin.php:418 -msgid "File upload" -msgstr "Caricamento file" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../mod/admin.php:419 -msgid "Policies" -msgstr "Politiche" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../mod/admin.php:424 -msgid "Site name" -msgstr "Nome del sito" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." -#: ../../mod/admin.php:425 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../mod/admin.php:426 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "La registrazione su questo sito è soggetta ad approvazione." -#: ../../mod/admin.php:426 +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrati su un altro server affiliato" + +#: ../../mod/register.php:174 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../mod/admin.php:427 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../mod/admin.php:428 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../mod/admin.php:428 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" -#: ../../mod/admin.php:429 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo sito è necessario un invito." -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" -msgstr "Abilita la comunicazione con Diaspora" +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Sperimentale - per comunicare con Diaspora e Friendica" +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../mod/admin.php:433 +#: ../../mod/removeaccount.php:58 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Questa operazione rimuoverà completamente il tuo account dalla rete, inclusi tutti i suoi canali. Una volta avviata la rimozione, sarà definitiva." -#: ../../mod/admin.php:434 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../mod/admin.php:435 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../mod/admin.php:436 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete." + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:710 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../mod/photos.php:119 ../../mod/photos.php:643 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../mod/photos.php:159 ../../mod/photos.php:924 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../mod/photos.php:440 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../mod/admin.php:439 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../mod/photos.php:484 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../mod/admin.php:439 -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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../mod/photos.php:523 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../mod/admin.php:440 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../mod/photos.php:526 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../mod/admin.php:440 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../mod/photos.php:550 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../mod/admin.php:441 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 +msgid "Enter a new album name" +msgstr "Inserisci il nome di un nuovo album" -#: ../../mod/admin.php:441 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../mod/admin.php:442 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../mod/photos.php:556 +msgid "Do not show a status post for this upload" +msgstr "Non creare un messaggio di stato per questo caricamento" -#: ../../mod/admin.php:442 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../mod/photos.php:584 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../mod/admin.php:443 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../mod/photos.php:625 ../../mod/photos.php:1149 +#: ../../mod/photos.php:1165 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../mod/admin.php:443 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito." +#: ../../mod/photos.php:649 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../mod/admin.php:444 -msgid "Disable discovery tab" -msgstr "Disabilita la funzione 'scopri'" +#: ../../mod/photos.php:651 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../mod/admin.php:444 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." +#: ../../mod/photos.php:675 ../../mod/photos.php:1197 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../mod/admin.php:445 -msgid "No login on Homepage" -msgstr "Non mostrare il login sulla homepage" +#: ../../mod/photos.php:704 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../mod/admin.php:445 -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 "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato da un canale)." +#: ../../mod/photos.php:749 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../mod/admin.php:447 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../mod/photos.php:751 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../mod/admin.php:448 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../mod/photos.php:809 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../mod/admin.php:449 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../mod/photos.php:816 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../mod/admin.php:449 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../mod/photos.php:831 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../mod/admin.php:450 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../mod/photos.php:903 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../mod/admin.php:450 -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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../mod/photos.php:905 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../mod/admin.php:451 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../mod/photos.php:906 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../mod/admin.php:451 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../mod/photos.php:913 +msgid "Caption" +msgstr "Titolo" -#: ../../mod/admin.php:452 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../mod/photos.php:915 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../mod/admin.php:452 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../mod/photos.php:919 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../mod/admin.php:508 -msgid "No server found" -msgstr "Server non trovato" +#: ../../mod/photos.php:922 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" -msgstr "ID" +#: ../../mod/photos.php:1114 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../mod/admin.php:515 -msgid "for channel" -msgstr "per canale" +#: ../../mod/photos.php:1203 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../mod/admin.php:515 -msgid "on server" -msgstr "sul server" +#: ../../mod/photos.php:1226 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../mod/admin.php:515 -msgid "Status" -msgstr "Stato" +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo." -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" +msgstr "Foto della bacheca" -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../mod/admin.php:553 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../mod/message.php:72 ../../mod/mail.php:336 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../mod/admin.php:556 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../mod/admin.php:571 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "L'elemento del menù è stato aggiornato." -#: ../../mod/admin.php:575 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Elemento aggiunto al menù." -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Gestione elementi del menù" -#: ../../mod/admin.php:611 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../mod/admin.php:640 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" -msgstr "Utenti" +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" -msgstr "seleziona tutti" +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Data richiesta" +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nuovo elemento del menù" -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Approva" +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Nega" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1071 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../mod/admin.php:740 -msgid "Register date" -msgstr "Data registrazione" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Testo del link" -#: ../../mod/admin.php:740 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "Indirizzo del link" -#: ../../mod/admin.php:740 -msgid "Expires" -msgstr "Con scadenza" +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Usa l'autenticazione magica di RedMatrix, se disponibile" -#: ../../mod/admin.php:740 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../mod/admin.php:742 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../mod/admin.php:743 -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 "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../mod/admin.php:776 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../mod/admin.php:783 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../mod/admin.php:802 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../mod/mood.php:131 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Voti totali" -#: ../../mod/admin.php:867 -msgid "Censor" -msgstr "Applica una censura" +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Valutazione media" -#: ../../mod/admin.php:868 -msgid "Uncensor" -msgstr "Rimuovi la censura" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../mod/admin.php:871 -msgid "UID" -msgstr "UID" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../mod/admin.php:873 +#: ../../mod/removeme.php:58 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 "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" -#: ../../mod/admin.php:874 +#: ../../mod/removeme.php:60 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 "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../mod/admin.php:913 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../mod/admin.php:917 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "La guida per questa funzionalità" -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 -msgid "Disable" -msgstr "Disattiva" +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 -msgid "Enable" -msgstr "Attiva" +#: ../../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 "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " -msgstr "Autore:" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Autenticazione a distanza" -#: ../../mod/admin.php:1093 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../mod/admin.php:1152 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Autenticazione" -#: ../../mod/admin.php:1200 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../mod/admin.php:1228 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../mod/admin.php:1284 -msgid "Clear" -msgstr "Pulisci" +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../mod/admin.php:1290 -msgid "Debugging" -msgstr "Debugging" +#: ../../mod/mail.php:139 +msgid "Message deleted." +msgstr "Messaggio eliminato." -#: ../../mod/admin.php:1291 -msgid "Log file" -msgstr "File di log" +#: ../../mod/mail.php:156 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../mod/admin.php:1291 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato RedMatrix." +#: ../../mod/mail.php:225 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../mod/admin.php:1292 -msgid "Log level" -msgstr "Livello di log" +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" +msgstr "A:" -#: ../../mod/admin.php:1339 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Invia" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../mod/mail.php:269 +msgid "Message not found." +msgstr "Messaggio non trovato." -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../mod/mail.php:312 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../mod/mail.php:313 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../mod/mail.php:315 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../mod/mail.php:332 +msgid "Private Conversation" +msgstr "Conversazione privata" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (opzionali)" +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../mod/mail.php:342 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Rifiuta" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Inviato!" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Aggiungi un canale" -#: ../../mod/post.php:229 +#: ../../mod/new_channel.php:110 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo." +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito." -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. L'autenticazione magica è avvenuta con successo." +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../mod/removeaccount.php:30 +#: ../../mod/new_channel.php:115 msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oppure importa un tuo canale esistente da un altro server/hub" -#: ../../mod/removeaccount.php:58 +#: ../../mod/new_channel.php:118 msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Questa operazione rimuoverà completamente il tuo account dalla rete, inclusi tutti i suoi canali. Una volta avviata la rimozione, sarà definitiva." +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. RedMatrix sceglierà per te i permessi più adatti." -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Tipo di canale" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete." +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installata" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "App non corretta" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Foto della bacheca" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Inserisci del codice" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Modifica app" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Crea una app" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Nome app" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "ID versione" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "L'elemento del menù è stato aggiornato." +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../mod/ping.php:263 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Elemento aggiunto al menù." +#: ../../mod/ping.php:314 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../mod/ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Gestione elementi del menù" +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Il nome è obbligatorio" -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../mod/settings.php:120 +msgid "Diaspora Policy Settings updated." +msgstr "Le regole per Diaspora sono state aggiornate." -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../mod/settings.php:228 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../mod/settings.php:232 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../mod/settings.php:246 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../mod/settings.php:248 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../mod/settings.php:262 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nuovo elemento del menù" +#: ../../mod/settings.php:265 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../mod/settings.php:274 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Testo del link" +#: ../../mod/settings.php:513 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "Indirizzo del link" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Usa l'autenticazione magica di RedMatrix, se disponibile" +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Nome dell'applicazione" -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Redirect" -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../mod/settings.php:588 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione." -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "Url icona" -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Opzionale" -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Voti totali" +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valutazione media" +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Nessun nome" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." +#: ../../mod/settings.php:663 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" +#: ../../mod/settings.php:676 +msgid "Feature Settings" +msgstr "Componenti aggiuntivi" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" +#: ../../mod/settings.php:679 +msgid "Diaspora Policy Settings" +msgstr "Regole per Diaspora" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../mod/settings.php:680 +msgid "Allow any Diaspora member to comment on your public posts." +msgstr "Permetti agli utenti di Diaspora di commentare i tuoi post pubblici." -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "La guida per questa funzionalità" +#: ../../mod/settings.php:681 +msgid "Submit Diaspora Policy Settings" +msgstr "Salva le regole per Diaspora" -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../mod/settings.php:704 +msgid "Account Settings" +msgstr "Il tuo account" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../mod/settings.php:705 +msgid "Password Settings" +msgstr "Impostazioni password" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../mod/settings.php:706 +msgid "New Password:" +msgstr "Nuova password:" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Per favore accedi con il tuo identificativo RedMatrix o registrati su RedMatrix per continuare." +#: ../../mod/settings.php:707 +msgid "Confirm:" +msgstr "Conferma:" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../mod/settings.php:707 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non cambiare la password" -#: ../../mod/like.php:143 -msgid "thing" -msgstr "oggetto" +#: ../../mod/settings.php:709 ../../mod/settings.php:1045 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../mod/settings.php:711 +msgid "Remove this account from this server including all its channels" +msgstr "Elimina l'account da questo server, inclusi tutti i canali" -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../mod/settings.php:712 ../../mod/settings.php:1126 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata." -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../mod/settings.php:728 +msgid "Off" +msgstr "Off" -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../mod/settings.php:728 +msgid "On" +msgstr "On" -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non ha dato un giudizio" +#: ../../mod/settings.php:735 +msgid "Additional Features" +msgstr "Funzionalità opzionali" -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../mod/settings.php:759 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../mod/settings.php:798 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../mod/like.php:397 +#: ../../mod/settings.php:801 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Comando completato." +#: ../../mod/settings.php:840 +msgid "Display Settings" +msgstr "Aspetto" -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Grazie." +#: ../../mod/settings.php:846 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../mod/settings.php:847 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../mod/settings.php:848 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../mod/settings.php:849 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../mod/settings.php:849 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Messaggio eliminato." +#: ../../mod/settings.php:850 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../mod/settings.php:850 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../mod/settings.php:851 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "A:" +#: ../../mod/settings.php:852 +msgid "Link post titles to source" +msgstr "Il link del titolo di un articolo porta al sito originale" -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../mod/settings.php:853 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Invia" +#: ../../mod/settings.php:856 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Messaggio non trovato." +#: ../../mod/settings.php:856 ../../mod/settings.php:857 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../mod/settings.php:857 +msgid "Use blog/list mode on matrix page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../mod/settings.php:858 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../mod/settings.php:858 ../../mod/settings.php:859 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare per mostrare i contenuti di dimensioni maggiori" -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversazione privata" +#: ../../mod/settings.php:859 +msgid "Matrix page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../mod/settings.php:893 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../mod/settings.php:894 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../mod/settings.php:895 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Rifiuta" +#: ../../mod/settings.php:896 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Aggiungi un canale" +#: ../../mod/settings.php:897 +msgid "Anybody on this website" +msgstr "Chiunque su questo sito" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito." +#: ../../mod/settings.php:898 +msgid "Anybody in this network" +msgstr "Chiunque su Red" -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../mod/settings.php:899 +msgid "Anybody authenticated" +msgstr "Chiunque sia autenticato" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../mod/settings.php:900 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." +#: ../../mod/settings.php:974 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oppure importa un tuo canale esistente da un altro server/hub" +#: ../../mod/settings.php:979 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. RedMatrix sceglierà per te i permessi più adatti." +#: ../../mod/settings.php:988 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Tipo di canale" +#: ../../mod/settings.php:1036 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../mod/settings.php:1043 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." +#: ../../mod/settings.php:1046 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../mod/settings.php:1047 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../mod/settings.php:1047 +msgid "Geographical location to display on your posts" +msgstr "Posizione geografica da mostrare sui tuoi post" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../mod/settings.php:1048 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../mod/settings.php:1050 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../mod/settings.php:1050 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../mod/settings.php:1052 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../mod/settings.php:1054 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../mod/settings.php:1056 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../mod/settings.php:1056 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evita che sul tuo profilo compaia la tua presenza online" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 -msgid "Enter a new album name" -msgstr "Inserisci il nome di un nuovo album" +#: ../../mod/settings.php:1058 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../mod/settings.php:1059 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Non creare un messaggio di stato per questo caricamento" +#: ../../mod/settings.php:1060 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../mod/settings.php:1061 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../mod/photos.php:625 ../../mod/photos.php:1133 -#: ../../mod/photos.php:1149 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../mod/settings.php:1062 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../mod/settings.php:1064 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi articoli" -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../mod/settings.php:1064 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../mod/photos.php:675 ../../mod/photos.php:1181 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../mod/settings.php:1066 +msgid "Advanced Privacy Settings" +msgstr "Impostazioni di privacy avanzate" -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../mod/settings.php:1068 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../mod/settings.php:1068 +msgid "0 or blank prevents expiration" +msgstr "Lascia vuoto oppure 0 per non impostare scadenze" -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../mod/settings.php:1069 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../mod/settings.php:1069 +msgid "May reduce spam activity" +msgstr "Serve e ridurre lo spam" -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../mod/settings.php:1070 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per gli articoli" -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../mod/settings.php:1075 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../mod/settings.php:1081 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../mod/settings.php:1081 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../mod/settings.php:1084 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Titolo" +#: ../../mod/settings.php:1085 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../mod/settings.php:1086 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../mod/settings.php:1087 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../mod/settings.php:1088 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../mod/photos.php:1099 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../mod/settings.php:1089 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../mod/photos.php:1187 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../mod/settings.php:1090 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../mod/photos.php:1210 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../mod/settings.php:1091 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../mod/settings.php:1092 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../mod/settings.php:1093 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo articolo" -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../mod/settings.php:1094 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../mod/settings.php:1095 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../mod/settings.php:1096 +msgid "You are tagged in a post" +msgstr "Sei taggato in un articolo" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../mod/settings.php:1097 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un articolo" -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../mod/settings.php:1100 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../mod/settings.php:1102 +msgid "Unseen matrix activity" +msgstr "Nuove attività nella rete" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../mod/settings.php:1103 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../mod/settings.php:1104 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +msgid "Recommended" +msgstr "Consigliato" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." +#: ../../mod/settings.php:1105 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../mod/settings.php:1106 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "La registrazione su questo sito è soggetta ad approvazione." +#: ../../mod/settings.php:1107 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrati su un altro server affiliato" +#: ../../mod/settings.php:1107 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +#: ../../mod/settings.php:1108 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../mod/settings.php:1109 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../mod/settings.php:1110 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" +#: ../../mod/settings.php:1111 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo sito è necessario un invito." +#: ../../mod/settings.php:1112 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../mod/settings.php:1113 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti" -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../mod/settings.php:1115 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../mod/settings.php:1115 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../mod/settings.php:1117 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../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 "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." +#: ../../mod/settings.php:1118 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" +#: ../../mod/settings.php:1121 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../mod/settings.php:1122 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Autenticazione a distanza" +#: ../../mod/settings.php:1124 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" +#: ../../mod/settings.php:1125 +msgid "Remove this channel" +msgstr "Elimina questo canale" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Autenticazione" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." #: ../../mod/poll.php:64 msgid "Poll" @@ -8660,41 +8740,41 @@ msgstr "Album con foto storte" msgid "Are you a clean desk or a messy desk person?" msgstr "La tua scrivania è sempre a posto? Sei una persona disordinata?" -#: ../../boot.php:1358 +#: ../../boot.php:1357 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1361 +#: ../../boot.php:1360 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1528 +#: ../../boot.php:1527 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Registrati per accedere ai servizi e alle applicazioni di RedMatrix" -#: ../../boot.php:1556 +#: ../../boot.php:1555 msgid "Password" msgstr "Password" -#: ../../boot.php:1557 +#: ../../boot.php:1556 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1560 +#: ../../boot.php:1559 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:1653 +#: ../../boot.php:1674 msgid "permission denied" msgstr "permesso negato" -#: ../../boot.php:1654 +#: ../../boot.php:1675 msgid "Got Zot?" msgstr "Hai Zot?" -#: ../../boot.php:2137 +#: ../../boot.php:2158 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" diff --git a/view/it/strings.php b/view/it/strings.php index 09e5b889f..7491ded1d 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -16,6 +16,80 @@ $a->strings["Photo Albums"] = "Album foto"; $a->strings["Upload New Photos"] = "Carica nuove foto"; $a->strings["created a new post"] = "Ha creato un nuovo articolo"; $a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; +$a->strings["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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; +$a->strings["All Channels"] = "Tutti i canali"; +$a->strings["edit"] = "modifica"; +$a->strings["Collections"] = "Insiemi di canali"; +$a->strings["Edit collection"] = "Modifica l'insieme di canali"; +$a->strings["Create a new collection"] = "Crea un nuovo insieme"; +$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; +$a->strings["add"] = "aggiungi"; +$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +$a->strings["Empty name"] = "Nome vuoto"; +$a->strings["Name too long"] = "Nome troppo lungo"; +$a->strings["No account identifier"] = "Account senza identificativo"; +$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +$a->strings["Default Profile"] = "Profilo predefinito"; +$a->strings["Friends"] = "Amici"; +$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +$a->strings["Connect"] = "Aggiungi"; +$a->strings["Change profile photo"] = "Cambia la foto del profilo"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Create New Profile"] = "Crea un nuovo profilo"; +$a->strings["Edit Profile"] = "Modifica il profilo"; +$a->strings["Profile Image"] = "Immagine del profilo"; +$a->strings["visible to everybody"] = "visibile a tutti"; +$a->strings["Edit visibility"] = "Cambia la visibilità"; +$a->strings["Location:"] = "Luogo:"; +$a->strings["Gender:"] = "Sesso:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Home page:"; +$a->strings["Online Now"] = "Online adesso"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["Like this channel"] = "Mi piace questo canale"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Hometown:"] = "Città dove vivo:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Hobbies/Interests:"] = "Interessi e hobby:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; +$a->strings["Contact information and Social Networks:"] = "Contatti e social network:"; +$a->strings["My other channels:"] = "I miei altri canali:"; +$a->strings["Musical interests:"] = "Gusti musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Like this thing"] = "Mi piace questo oggetto"; $a->strings["New Page"] = "Nuova pagina web"; $a->strings["Edit"] = "Modifica"; $a->strings["View"] = "Guarda"; @@ -31,7 +105,6 @@ $a->strings["System"] = "Sistema"; $a->strings["Personal"] = "Personali"; $a->strings["Create Personal App"] = "Crea una app personale"; $a->strings["Edit Personal App"] = "Modifica una app personale"; -$a->strings["Connect"] = "Aggiungi"; $a->strings["Ignore/Hide"] = "Ignora/nascondi"; $a->strings["Suggestions"] = "Suggerimenti"; $a->strings["See more..."] = "Altro..."; @@ -43,14 +116,12 @@ $a->strings["Notes"] = "Note"; $a->strings["Save"] = "Salva"; $a->strings["Remove term"] = "Rimuovi termine"; $a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["add"] = "aggiungi"; $a->strings["Saved Folders"] = "Cartelle salvate"; $a->strings["Everything"] = "Tutto"; $a->strings["Archives"] = "Archivi"; $a->strings["Refresh"] = "Aggiorna"; $a->strings["Me"] = "Io"; $a->strings["Best Friends"] = "Migliori amici"; -$a->strings["Friends"] = "Amici"; $a->strings["Co-workers"] = "Colleghi"; $a->strings["Former Friends"] = "Ex amici"; $a->strings["Acquaintances"] = "Conoscenti"; @@ -73,48 +144,9 @@ $a->strings["Chat Rooms"] = "Aree chat attive"; $a->strings["Bookmarked Chatrooms"] = "Aree chat nei segnalibri"; $a->strings["Suggested Chatrooms"] = "Aree chat suggerite"; $a->strings["photo/image"] = "foto/immagine"; -$a->strings["Rate Me"] = "Dai un giudizio"; -$a->strings["View Ratings"] = "Vedi i giudizi ricevuti"; -$a->strings["Red Matrix Notification"] = "Notifica di RedMatrix"; -$a->strings["redmatrix"] = "RedMatrix"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "L'amministratore di %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[RedMatrix] Nuovo messaggio su %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[RedMatrix] Nuovo commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[RedMatrix] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[RedMatrix] %s ti ha taggato"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[RedMatrix] %1\$s ti ha mandato un poke"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[RedMatrix] %s ha taggato il tuo articolo"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[RedMatrix] Hai una richiesta di amicizia"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[RedMatrix] Ti è stato suggerito un amico"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["[Red:Notify]"] = "[RedMatrix]"; +$a->strings["Rate Me"] = "Valutami"; +$a->strings["View Ratings"] = "Vedi le valutazioni ricevute"; +$a->strings["Public Hubs"] = "Hub pubblici"; $a->strings["prev"] = "prec"; $a->strings["first"] = "inizio"; $a->strings["last"] = "fine"; @@ -201,6 +233,20 @@ $a->strings["Menus"] = "Menù"; $a->strings["Layouts"] = "Layout"; $a->strings["Pages"] = "Pagine"; $a->strings["Collection"] = "Cartella"; +$a->strings["Item was not found."] = "Elemento non trovato."; +$a->strings["No source file."] = "Nessun file di origine."; +$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +$a->strings["Path not available."] = "Percorso non disponibile."; +$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; +$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +$a->strings["Path not found."] = "Percorso del file non trovato."; +$a->strings["mkdir failed."] = "mkdir fallito."; +$a->strings["database storage failed."] = "scrittura su database fallita."; $a->strings["Delete this item?"] = "Eliminare questo elemento?"; $a->strings["Comment"] = "Commento"; $a->strings["[+] show all"] = "[+] mostra tutto"; @@ -215,9 +261,9 @@ $a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; $a->strings["close all"] = "chiudi tutto"; $a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Rate This Channel (this is public)"] = "Dai un giudizio su questo canale (sarà pubblico)"; -$a->strings["Rating"] = "Giudizi ricevuti"; -$a->strings["Describe (optional)"] = "Descrizione (opzionale)"; +$a->strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; +$a->strings["Rating"] = "Valutazioni"; +$a->strings["Describe (optional)"] = "Descrizione (facoltativa)"; $a->strings["Submit"] = "Salva"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; $a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; @@ -268,24 +314,6 @@ $a->strings["like"] = "mi piace"; $a->strings["likes"] = "gli piace"; $a->strings["dislike"] = "non mi piace"; $a->strings["dislikes"] = "non gli piace"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -$a->strings["Item was not found."] = "Elemento non trovato."; -$a->strings["No source file."] = "Nessun file di origine."; -$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -$a->strings["Path not available."] = "Percorso non disponibile."; -$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; -$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -$a->strings["Path not found."] = "Percorso del file non trovato."; -$a->strings["mkdir failed."] = "mkdir fallito."; -$a->strings["database storage failed."] = "scrittura su database fallita."; $a->strings["General Features"] = "Funzionalità di base"; $a->strings["Content Expiration"] = "Scadenza"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -315,8 +343,8 @@ $a->strings["Include large (640px) photo thumbnails in posts. If not enabled, us $a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; $a->strings["Even More Encryption"] = "Crittografia addizionale"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta"; -$a->strings["Enable voting tools"] = "Abilita la possibilità di voto"; -$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di articoli dove sarà possibile votare"; +$a->strings["Enable voting tools"] = "Permetti i post con votazione"; +$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di articoli in cui sarà possibile votare"; $a->strings["Flag Adult Photos"] = "Marca le foto per adulti"; $a->strings["Provide photo edit option to hide adult photos from default album view"] = "Permette di marcare e nascondere negli album le foto per adulti"; $a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; @@ -345,9 +373,22 @@ $a->strings["Star Posts"] = "Articoli stella (preferiti)"; $a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per scegliere gli articoli preferiti"; $a->strings["Tag Cloud"] = "Nuvola di tag"; $a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["Failed authentication"] = "Autenticazione fallita"; -$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["(Unknown)"] = "(Sconosciuto)"; +$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +$a->strings["Visible to you only."] = "Visibile solo a te."; +$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +$a->strings["Visible to anybody on %s."] = "Visibile a tutti in %s."; +$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Collection not found."] = "Insieme di canali non trovato."; +$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; +$a->strings["Collection: %s"] = "Insieme: %s"; +$a->strings["Connection: %s"] = "Contatto: %s"; +$a->strings["Connection not found."] = "Contatto non trovato."; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Ogni ora"; $a->strings["Twice daily"] = "Due volte al giorno"; @@ -364,73 +405,6 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; -$a->strings["All Channels"] = "Tutti i canali"; -$a->strings["edit"] = "modifica"; -$a->strings["Collections"] = "Insiemi di canali"; -$a->strings["Edit collection"] = "Modifica l'insieme di canali"; -$a->strings["Create a new collection"] = "Crea un nuovo insieme"; -$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -$a->strings["Empty name"] = "Nome vuoto"; -$a->strings["Name too long"] = "Nome troppo lungo"; -$a->strings["No account identifier"] = "Account senza identificativo"; -$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -$a->strings["Default Profile"] = "Profilo predefinito"; -$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; -$a->strings["Change profile photo"] = "Cambia la foto del profilo"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Create New Profile"] = "Crea un nuovo profilo"; -$a->strings["Edit Profile"] = "Modifica il profilo"; -$a->strings["Profile Image"] = "Immagine del profilo"; -$a->strings["visible to everybody"] = "visibile a tutti"; -$a->strings["Edit visibility"] = "Cambia la visibilità"; -$a->strings["Location:"] = "Luogo:"; -$a->strings["Gender:"] = "Sesso:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Home page:"; -$a->strings["Online Now"] = "Online adesso"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Like this channel"] = "Mi piace questo canale"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Hometown:"] = "Città dove vivo:"; -$a->strings["Tags:"] = "Tag:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Hobbies/Interests:"] = "Interessi e hobby:"; -$a->strings["Likes:"] = "Mi piace:"; -$a->strings["Dislikes:"] = "Non mi piace:"; -$a->strings["Contact information and Social Networks:"] = "Contatti e social network:"; -$a->strings["My other channels:"] = "I miei altri canali:"; -$a->strings["Musical interests:"] = "Gusti musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Like this thing"] = "Mi piace questo oggetto"; $a->strings["No recipient provided."] = "Devi scegliere un destinatario."; $a->strings["[no subject]"] = "[nessun titolo]"; $a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; @@ -466,11 +440,17 @@ $a->strings["seconds"] = "secondi"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; $a->strings["%1\$s's birthday"] = "Compleanno di %1\$s"; $a->strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +$a->strings["New window"] = "Nuova finestra"; +$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; $a->strings["Attachments:"] = "Allegati:"; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Redmatrix event notification:"] = "Notifica eventi RedMatrix:"; $a->strings["Starts:"] = "Inizio:"; $a->strings["Finishes:"] = "Fine:"; +$a->strings["Invalid data packet"] = "Dati non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; $a->strings["Missing room name"] = "Area chat senza nome"; $a->strings["Duplicate room name"] = "Il nome dell'area chat è duplicato"; $a->strings["Invalid room specifier."] = "Il nome dell'area chat non è valido."; @@ -538,21 +518,37 @@ $a->strings["Loading..."] = "Caricamento in corso..."; $a->strings["@name, #tag, content"] = "@nome, #tag, testo"; $a->strings["Please wait..."] = "Attendere..."; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Save to Folder"] = "Salva nella cartella"; -$a->strings["I will attend"] = "Parteciperò"; -$a->strings["I will not attend"] = "Non parteciperò"; -$a->strings["I might attend"] = "Forse parteciperò"; -$a->strings["I agree"] = "Sono d'accordo"; -$a->strings["I disagree"] = "Non sono d'accordo"; -$a->strings["I abstain"] = "Mi astengo"; -$a->strings["View all"] = "Vedi tutto"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -$a->strings["Add Star"] = "Aggiungi ai preferiti"; +$a->strings[" and "] = "e"; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +$a->strings["Directory Options"] = "Opzioni elenco pubblico"; +$a->strings["Alphabetic"] = "Alfabetico"; +$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; +$a->strings["Newest to Oldest"] = "Prima i più recenti"; +$a->strings["Oldest to Newest"] = "Prima i più vecchi"; +$a->strings["Public Forums Only"] = "Solo forum pubblici"; +$a->strings["Sort"] = "Ordinamento"; +$a->strings["Enable Safe Search"] = "Abilita SafeSearch"; +$a->strings["Disable Safe Search"] = "Disabilita SafeSearch"; +$a->strings["Safe Mode"] = "Modalità SafeSearch"; +$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Select"] = "Seleziona"; +$a->strings["Save to Folder"] = "Salva nella cartella"; +$a->strings["I will attend"] = "Parteciperò"; +$a->strings["I will not attend"] = "Non parteciperò"; +$a->strings["I might attend"] = "Forse parteciperò"; +$a->strings["I agree"] = "Sono d'accordo"; +$a->strings["I disagree"] = "Non sono d'accordo"; +$a->strings["I abstain"] = "Mi astengo"; +$a->strings["View all"] = "Vedi tutto"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["Add Star"] = "Aggiungi ai preferiti"; $a->strings["Remove Star"] = "Rimuovi dai preferiti"; $a->strings["Toggle Star Status"] = "Attiva/disattiva preferito"; $a->strings["starred"] = "preferito"; @@ -592,44 +588,7 @@ $a->strings["Image"] = "Immagine"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; $a->strings["Encrypt text"] = "Crittografia del testo"; -$a->strings[" and "] = "e"; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -$a->strings["Directory Options"] = "Opzioni elenco pubblico"; -$a->strings["Alphabetic"] = "Alfabetico"; -$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; -$a->strings["Newest to Oldest"] = "Prima i più recenti"; -$a->strings["Oldest to Newest"] = "Prima i più vecchi"; -$a->strings["Public Forums Only"] = "Solo forum pubblici"; -$a->strings["Sort"] = "Ordinamento"; -$a->strings["Enable Safe Search"] = "Abilita SafeSearch"; -$a->strings["Disable Safe Search"] = "Disabilita SafeSearch"; -$a->strings["Safe Mode"] = "Modalità SafeSearch"; -$a->strings["Invalid data packet"] = "Dati non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["(Unknown)"] = "(Sconosciuto)"; -$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -$a->strings["Visible to you only."] = "Visibile solo a te."; -$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -$a->strings["Visible to anybody on %s."] = "Visibile a tutti in %s."; -$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Collection not found."] = "Insieme di canali non trovato."; -$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; -$a->strings["Collection: %s"] = "Insieme: %s"; -$a->strings["Connection: %s"] = "Contatto: %s"; -$a->strings["Connection not found."] = "Contatto non trovato."; -$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -$a->strings["New window"] = "Nuova finestra"; -$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; +$a->strings["Public Timeline"] = "Diario pubblico"; $a->strings["view full size"] = "guarda nelle dimensioni reali"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; $a->strings["Image/photo"] = "Immagine"; @@ -638,9 +597,52 @@ $a->strings["Install design element: "] = "Installa il componente di design:"; $a->strings["QR code"] = "QR code"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "l'articolo"; -$a->strings["Different viewers will see this text differently"] = "A persone diverse questo testo potrebbe apparire in modo differente"; +$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; $a->strings["$1 spoiler"] = "$1 spoiler"; $a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Failed authentication"] = "Autenticazione fallita"; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Red Matrix Notification"] = "Notifica di RedMatrix"; +$a->strings["redmatrix"] = "RedMatrix"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "L'amministratore di %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[RedMatrix] Nuovo messaggio su %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[RedMatrix] Nuovo commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[RedMatrix] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[RedMatrix] %s ti ha taggato"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[RedMatrix] %1\$s ti ha mandato un poke"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[RedMatrix] %s ha taggato il tuo articolo"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[RedMatrix] Hai una richiesta di amicizia"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[RedMatrix] Ti è stato suggerito un amico"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +$a->strings["[Red:Notify]"] = "[RedMatrix]"; $a->strings["%d invitation available"] = array( 0 => "%d invito disponibile", 1 => "%d inviti disponibili", @@ -664,97 +666,6 @@ $a->strings["Visible to your default audience"] = "Visibile secondo le impostazi $a->strings["Show"] = "Mostra"; $a->strings["Don't show"] = "Non mostrare"; $a->strings["Permissions"] = "Permessi"; -$a->strings["Public Timeline"] = "Diario pubblico"; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Senza preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Feticista"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Da solo"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "Ha una cotta"; -$a->strings["Infatuated"] = "Infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends/Benefits"] = "Amici con qualcosa in più"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato/a"; -$a->strings["Imaginarily married"] = "Con matrimonio immaginario"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Convivente"; -$a->strings["Common law"] = "Matrimonio regolare"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non in cerca"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito/a"; -$a->strings["Separated"] = "Separato/a"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato/a"; -$a->strings["Imaginarily divorced"] = "Sogna il divorzio"; -$a->strings["Widowed"] = "Vedovo/a"; -$a->strings["Uncertain"] = "Incerto/a"; -$a->strings["It's complicated"] = "Relazione complicata"; -$a->strings["Don't care"] = "Chi se ne frega"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Site Admin"] = "Amministrazione sito"; -$a->strings["Address Book"] = "Rubrica"; -$a->strings["Mood"] = "Umore"; -$a->strings["Poke"] = "Poke"; -$a->strings["Probe"] = "Diagnostica"; -$a->strings["Suggest"] = "Suggerisci"; -$a->strings["Random Channel"] = "Canale casuale"; -$a->strings["Invite"] = "Invita"; -$a->strings["Features"] = "Funzionalità"; -$a->strings["Language"] = "Lingua"; -$a->strings["Post"] = "Articolo"; -$a->strings["Profile Photo"] = "Foto del profilo"; -$a->strings["Update"] = "Aggiorna"; -$a->strings["Install"] = "Installa"; -$a->strings["Purchase"] = "Acquista"; -$a->strings["Not a valid email address"] = "Email non valida"; -$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -$a->strings["An invitation is required."] = "È necessario un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -$a->strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["your registration password"] = "la password di registrazione"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; $a->strings["channel"] = "canale"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; @@ -762,9 +673,9 @@ $a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; $a->strings["__ctx:title__ Likes"] = "Mi piace"; $a->strings["__ctx:title__ Dislikes"] = "Non mi piace"; -$a->strings["__ctx:title__ Agree"] = "Sono d'accordo"; -$a->strings["__ctx:title__ Disagree"] = "Non sono d'accordo"; -$a->strings["__ctx:title__ Abstain"] = "Si astengono"; +$a->strings["__ctx:title__ Agree"] = "D'accordo"; +$a->strings["__ctx:title__ Disagree"] = "Non d'accordo"; +$a->strings["__ctx:title__ Abstain"] = "Astenuti"; $a->strings["__ctx:title__ Attending"] = "Partecipano"; $a->strings["__ctx:title__ Not attending"] = "Non partecipano"; $a->strings["__ctx:title__ Might attend"] = "Forse partecipano"; @@ -781,6 +692,7 @@ $a->strings["View Photos"] = "Guarda le foto"; $a->strings["Matrix Activity"] = "Attività nella tua rete"; $a->strings["Edit Contact"] = "Modifica il contatto"; $a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Poke"; $a->strings["%s likes this."] = "Piace a %s."; $a->strings["%s doesn't like this."] = "Non piace a %s."; $a->strings["%2\$d people like this."] = array( @@ -878,58 +790,156 @@ $a->strings["__ctx:noun__ Abstain"] = array( 0 => "Astenuto", 1 => "Astenuti", ); -$a->strings["Embedded content"] = "Contenuti incorporati"; -$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e articoli normali"; -$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; -$a->strings["Can view my photo albums"] = "Può vedere i miei album fotografici"; -$a->strings["Can view my connections"] = "Può vedere i miei contatti"; -$a->strings["Can view my file storage"] = "Può vedere i miei file condivisi"; -$a->strings["Can view my webpages"] = "Può vedere le mie pagine web"; -$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei articoli"; -$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; -$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\""; -$a->strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è articoli e commenti"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; -$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -$a->strings["Can write to my file storage"] = "Può scrivere sul mio archivio file"; -$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -$a->strings["Can source my public posts in derived channels"] = "Può usare i miei articoli pubblici per creare canali derivati"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -$a->strings["Social Networking"] = "Social network"; -$a->strings["Mostly Public"] = "Quasi sempre pubblico"; -$a->strings["Restricted"] = "Con restrizioni"; -$a->strings["Private"] = "Privato"; -$a->strings["Community Forum"] = "Forum di discussione"; -$a->strings["Feed Republish"] = "Aggregatore di feed esterni"; -$a->strings["Special Purpose"] = "Per finalità speciali"; -$a->strings["Celebrity/Soapbox"] = "Pagina per fan"; -$a->strings["Group Repository"] = "Repository di gruppo"; -$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; -$a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; -$a->strings["Item not found"] = "Elemento non trovato"; -$a->strings["Edit Block"] = "Modifica il riquadro"; -$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; -$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -$a->strings["Delete Block"] = "Elimina il riquadro"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -$a->strings["Create a new channel"] = "Crea un nuovo canale"; -$a->strings["Current Channel"] = "Canale attuale"; -$a->strings["Switch to one of your channels by selecting it."] = "Passa a un altro tuo canale selezionandolo."; -$a->strings["Default Channel"] = "Canale predefinito"; -$a->strings["Make Default"] = "Rendi predefinito"; -$a->strings["%d new messages"] = "%d nuovi messaggi"; -$a->strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -$a->strings["Xchan Lookup"] = "Ricerca canale"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Senza preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Feticista"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Da solo"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "Ha una cotta"; +$a->strings["Infatuated"] = "Infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici con qualcosa in più"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato/a"; +$a->strings["Imaginarily married"] = "Con matrimonio immaginario"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Convivente"; +$a->strings["Common law"] = "Matrimonio regolare"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non in cerca"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito/a"; +$a->strings["Separated"] = "Separato/a"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato/a"; +$a->strings["Imaginarily divorced"] = "Sogna il divorzio"; +$a->strings["Widowed"] = "Vedovo/a"; +$a->strings["Uncertain"] = "Incerto/a"; +$a->strings["It's complicated"] = "Relazione complicata"; +$a->strings["Don't care"] = "Chi se ne frega"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Site Admin"] = "Amministrazione sito"; +$a->strings["Address Book"] = "Rubrica"; +$a->strings["Mood"] = "Umore"; +$a->strings["Probe"] = "Diagnostica"; +$a->strings["Suggest"] = "Suggerisci"; +$a->strings["Random Channel"] = "Canale casuale"; +$a->strings["Invite"] = "Invita"; +$a->strings["Features"] = "Funzionalità"; +$a->strings["Language"] = "Lingua"; +$a->strings["Post"] = "Articolo"; +$a->strings["Profile Photo"] = "Foto del profilo"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Install"] = "Installa"; +$a->strings["Purchase"] = "Acquista"; +$a->strings["Not a valid email address"] = "Email non valida"; +$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +$a->strings["An invitation is required."] = "È necessario un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +$a->strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["your registration password"] = "la password di registrazione"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +$a->strings["Embedded content"] = "Contenuti incorporati"; +$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e articoli normali"; +$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; +$a->strings["Can view my photo albums"] = "Può vedere i miei album fotografici"; +$a->strings["Can view my connections"] = "Può vedere i miei contatti"; +$a->strings["Can view my file storage"] = "Può vedere i miei file condivisi"; +$a->strings["Can view my webpages"] = "Può vedere le mie pagine web"; +$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei articoli"; +$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; +$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\""; +$a->strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è articoli e commenti"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; +$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +$a->strings["Can write to my file storage"] = "Può scrivere sul mio archivio file"; +$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +$a->strings["Can source my public posts in derived channels"] = "Può usare i miei articoli pubblici per creare canali derivati"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +$a->strings["Social Networking"] = "Social network"; +$a->strings["Mostly Public"] = "Quasi sempre pubblico"; +$a->strings["Restricted"] = "Con restrizioni"; +$a->strings["Private"] = "Privato"; +$a->strings["Community Forum"] = "Forum di discussione"; +$a->strings["Feed Republish"] = "Aggregatore di feed esterni"; +$a->strings["Special Purpose"] = "Per finalità speciali"; +$a->strings["Celebrity/Soapbox"] = "Pagina per fan"; +$a->strings["Group Repository"] = "Repository di gruppo"; +$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; +$a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; +$a->strings["Item not found"] = "Elemento non trovato"; +$a->strings["Edit Block"] = "Modifica il riquadro"; +$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; +$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; +$a->strings["Delete Block"] = "Elimina il riquadro"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +$a->strings["Create a new channel"] = "Crea un nuovo canale"; +$a->strings["Current Channel"] = "Canale attuale"; +$a->strings["Switch to one of your channels by selecting it."] = "Per passare a un altro tuo canale selezionalo."; +$a->strings["Default Channel"] = "Canale predefinito"; +$a->strings["Make Default"] = "Rendi predefinito"; +$a->strings["%d new messages"] = "%d nuovi messaggi"; +$a->strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori attuali della pagina"; +$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; +$a->strings["Potential Delegates"] = "Delegati potenziali"; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun risultato."; +$a->strings["Xchan Lookup"] = "Ricerca canale"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; $a->strings["Not found."] = "Non trovato."; $a->strings["Authorize application connection"] = "Autorizza la app"; $a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; @@ -938,6 +948,104 @@ $a->strings["Do you want to authorize this application to access your posts and $a->strings["Yes"] = "Si"; $a->strings["No"] = "No"; $a->strings["Block Name"] = "Nome del riquadro"; +$a->strings["Channel added."] = "Canale aggiunto."; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Continue"] = "Continua"; +$a->strings["Premium Channel Setup"] = "Canale premium - installazione"; +$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +$a->strings["is interested in:"] = "interessi personali:"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +$a->strings["Red Matrix - "The Network""] = "RedMatrix - "La tua rete""; +$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +$a->strings["Photo not available."] = "Foto non disponibile."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +$a->strings["Done Editing"] = "Modifica terminata"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Channel not found."] = "Canale non trovato."; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Like/Dislike"] = "Mi piace/Non mi piace"; +$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Per favore accedi con il tuo identificativo RedMatrix o registrati su RedMatrix per continuare."; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["thing"] = "oggetto"; +$a->strings["Channel unavailable."] = "Canale non trovato."; +$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non ha preso una decisione"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +$a->strings["Action completed."] = "Comando completato."; +$a->strings["Thank you."] = "Grazie."; +$a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +$a->strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +$a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +$a->strings["Event not found."] = "Evento non trovato."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifica l'evento"; +$a->strings["Delete event"] = "Elimina l'evento"; +$a->strings["Create New Event"] = "Crea un nuovo evento"; +$a->strings["Previous"] = "Precendente"; +$a->strings["Next"] = "Successivo"; +$a->strings["Export"] = "Esporta"; +$a->strings["Event removed"] = "Evento eliminato"; +$a->strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +$a->strings["Event details"] = "Dettagli evento"; +$a->strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori."; +$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +$a->strings["Event Starts:"] = "Inizio:"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; +$a->strings["Event Finishes:"] = "Fine:"; +$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono in base all'orario di un luogo particolare."; +$a->strings["Description:"] = "Descrizione:"; +$a->strings["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Condividi questo evento"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Public Sites"] = "Siti pubblici"; +$a->strings["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."] = "Gli indirizzi elencati permettono la registrazione su RedMatrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito."; +$a->strings["Rate this hub"] = "Valuta questo hub"; +$a->strings["Site URL"] = "URL del sito"; +$a->strings["Access Type"] = "Tipo di accesso"; +$a->strings["Registration Policy"] = "Politica di registrazione"; +$a->strings["Location"] = "Posizione geografica"; +$a->strings["View hub ratings"] = "Vedi le valutazioni del hub"; +$a->strings["Rate"] = "Valuta"; +$a->strings["View ratings"] = "Vedi le valutazioni"; +$a->strings["No such group"] = "Impossibile trovare l'insieme"; +$a->strings["Search Results For:"] = "Cerca risultati con:"; +$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; +$a->strings["Collection: "] = "Insieme:"; +$a->strings["Connection: "] = "Contatto:"; +$a->strings["Invalid connection."] = "Contatto non valido."; $a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; $a->strings["Connection updated."] = "Contatto aggiornato."; @@ -967,7 +1075,7 @@ $a->strings["Block"] = "Blocca"; $a->strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; $a->strings["Unignore"] = "Non ignorare"; $a->strings["Ignore"] = "Ignora"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo canale (abilita/disabilita)"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; $a->strings["Unarchive"] = "Non archiviare"; $a->strings["Archive"] = "Archivia"; $a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; @@ -982,8 +1090,8 @@ $a->strings["Apply these permissions automatically"] = "Applica automaticamente $a->strings["Apply the permissions indicated on this page to all new connections."] = "Applica i permessi indicati su questa pagina a tutti i nuovi contatti."; $a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; $a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (visibile a tutti)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Su questa pagina puoi verificare le impostazioni e fare i cambiamenti che preferisci. I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi ancora definiti)."; +$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi impostati). Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Puoi verificare le impostazioni e fare i cambiamenti che preferisci prima di salvare. "; $a->strings["inherited"] = "derivato"; $a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!"; $a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate."; @@ -1017,219 +1125,7 @@ $a->strings["Currently blocked"] = "Attualmente bloccato"; $a->strings["Currently ignored"] = "Attualmente ignorato"; $a->strings["Currently archived"] = "Attualmente archiviato"; $a->strings["Currently pending"] = "Attualmente da approvare"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix - "La tua rete""; -$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; -$a->strings["Continue"] = "Continua"; -$a->strings["Premium Channel Setup"] = "Canale premium - installazione"; -$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; -$a->strings["Item is not editable"] = "L'elemento non è modificabile"; -$a->strings["Edit post"] = "Modifica articolo"; -$a->strings["Delete item?"] = "Eliminare questo elemento?"; -$a->strings["Item not available."] = "Elemento non disponibile."; -$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; $a->strings["RedMatrix channel"] = "Canale RedMatrix"; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -$a->strings["Photo not available."] = "Foto non disponibile."; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -$a->strings["Done Editing"] = "Modifica terminata"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Channel not found."] = "Canale non trovato."; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["No such group"] = "Impossibile trovare l'insieme"; -$a->strings["Search Results For:"] = "Cerca risultati con:"; -$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; -$a->strings["Collection: "] = "Insieme:"; -$a->strings["Connection: "] = "Contatto:"; -$a->strings["Invalid connection."] = "Contatto non valido."; -$a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -$a->strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -$a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -$a->strings["Event not found."] = "Evento non trovato."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifica l'evento"; -$a->strings["Create New Event"] = "Crea un nuovo evento"; -$a->strings["Previous"] = "Precendente"; -$a->strings["Next"] = "Successivo"; -$a->strings["Export"] = "Esporta"; -$a->strings["Event details"] = "Dettagli evento"; -$a->strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori."; -$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -$a->strings["Event Starts:"] = "Inizio:"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; -$a->strings["Event Finishes:"] = "Fine:"; -$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono in un luogo particolare. Non è utile per festività generali."; -$a->strings["Description:"] = "Descrizione:"; -$a->strings["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Public Sites"] = "Siti pubblici"; -$a->strings["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."] = "Gli indirizzi elencati permettono la registrazione su RedMatrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito."; -$a->strings["Site URL"] = "URL del sito"; -$a->strings["Access Type"] = "Tipo di accesso"; -$a->strings["Registration Policy"] = "Politica di registrazione"; -$a->strings["Location"] = "Posizione geografica"; -$a->strings["Name is required"] = "Il nome è obbligatorio"; -$a->strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -$a->strings["Password changed."] = "Password cambiata."; -$a->strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -$a->strings["Not valid email."] = "Email non valida."; -$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; -$a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; -$a->strings["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["Add application"] = "Aggiungi una app"; -$a->strings["Name of application"] = "Nome dell'applicazione"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Redirect"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."; -$a->strings["Icon url"] = "Url icona"; -$a->strings["Optional"] = "Opzionale"; -$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -$a->strings["Connected Apps"] = "App connesse"; -$a->strings["Client key starts with"] = "La client key inizia con"; -$a->strings["No name"] = "Nessun nome"; -$a->strings["Remove authorization"] = "Revoca l'autorizzazione"; -$a->strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -$a->strings["Feature Settings"] = "Componenti aggiuntivi"; -$a->strings["Account Settings"] = "Il tuo account"; -$a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password"; -$a->strings["Email Address:"] = "Indirizzo email:"; -$a->strings["Remove Account"] = "Elimina l'account"; -$a->strings["Remove this account from this server including all its channels"] = "Elimina l'account da questo server, inclusi tutti i canali"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attenzione: questa azione è permanente e non potrà più essere annullata."; -$a->strings["Off"] = "Off"; -$a->strings["On"] = "On"; -$a->strings["Additional Features"] = "Funzionalità opzionali"; -$a->strings["Connector Settings"] = "Impostazioni del connettore"; -$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; -$a->strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -$a->strings["mobile"] = "mobile"; -$a->strings["Display Settings"] = "Aspetto"; -$a->strings["Display Theme:"] = "Tema per schermi medio grandi:"; -$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; -$a->strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; -$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; -$a->strings["Maximum of 100 items"] = "Massimo 100"; -$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; -$a->strings["Link post titles to source"] = "Il link del titolo di un articolo porta al sito originale"; -$a->strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; -$a->strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; -$a->strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; -$a->strings["Use blog/list mode on matrix page"] = "Mostra la tua rete in modalità blog"; -$a->strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -$a->strings["click to expand content exceeding this height"] = "dovrai cliccare per mostrare i contenuti di dimensioni maggiori"; -$a->strings["Matrix page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; -$a->strings["Nobody except yourself"] = "Nessuno tranne te"; -$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; -$a->strings["Approved connections"] = "Contatti approvati"; -$a->strings["Any connections"] = "Tutti i contatti"; -$a->strings["Anybody on this website"] = "Chiunque su questo sito"; -$a->strings["Anybody in this network"] = "Chiunque su Red"; -$a->strings["Anybody authenticated"] = "Chiunque sia autenticato"; -$a->strings["Anybody on the internet"] = "Chiunque su internet"; -$a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è"; -$a->strings["Channel Settings"] = "Impostazioni del canale"; -$a->strings["Basic Settings"] = "Impostazioni di base"; -$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; -$a->strings["Default Post Location:"] = "Località predefinita:"; -$a->strings["Geographical location to display on your posts"] = "Posizione geografica da mostrare sui tuoi post"; -$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -$a->strings["Adult Content"] = "Contenuto per adulti"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; -$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; -$a->strings["Hide my online presence"] = "Non mostrare la mia presenza online"; -$a->strings["Prevents displaying in your profile that you are online"] = "Non mostra sul tuo profilo che sei online"; -$a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; -$a->strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; -$a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi articoli"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -$a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; -$a->strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; -$a->strings["0 or blank prevents expiration"] = "Lascia vuoto oppure 0 per non impostare scadenze"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; -$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; -$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; -$a->strings["Notification Settings"] = "Impostazioni di notifica"; -$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; -$a->strings["accepting a friend request"] = "accetto una nuova amicizia"; -$a->strings["joining a forum/community"] = "entro a far parte di un forum"; -$a->strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; -$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:"; -$a->strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; -$a->strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo"; -$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -$a->strings["You are tagged in a post"] = "Sei taggato in un articolo"; -$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo"; -$a->strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; -$a->strings["Unseen matrix activity"] = "Nuove attività nella rete"; -$a->strings["Unseen channel activity"] = "Novità nei canali"; -$a->strings["Unseen private messages"] = "Nuovi messaggi privati"; -$a->strings["Recommended"] = "Consigliato"; -$a->strings["Upcoming events"] = "Prossimi eventi"; -$a->strings["Events today"] = "Eventi di oggi"; -$a->strings["Upcoming birthdays"] = "Prossimi compleanni"; -$a->strings["Not available in all themes"] = "Non disponibile in tutti i temi"; -$a->strings["System (personal) notifications"] = "Notifiche personali dal sistema"; -$a->strings["System info messages"] = "Notifiche di sistema"; -$a->strings["System critical alerts"] = "Avvisi critici di sistema"; -$a->strings["New connections"] = "Nuovi contatti"; -$a->strings["System Registrations"] = "Registrazioni"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti"; -$a->strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; -$a->strings["Must be greater than 0"] = "Maggiore di 0"; -$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; -$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; -$a->strings["Miscellaneous Settings"] = "Impostazioni varie"; -$a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -$a->strings["Remove this channel"] = "Elimina questo canale"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. {Inserisci l'email con cui sei registrato e la password.}"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; $a->strings["Collection created."] = "L'insieme di canali è stato creato."; $a->strings["Could not create collection."] = "Impossibile creare l'insieme."; $a->strings["Collection updated."] = "Insieme aggiornato."; @@ -1338,7 +1234,9 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t $a->strings["No channel."] = "Nessun canale."; $a->strings["Common connections"] = "Contatti in comune"; $a->strings["No connections in common."] = "Nessun contatto in comune."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; +$a->strings["Item is not editable"] = "L'elemento non è modificabile"; +$a->strings["Edit post"] = "Modifica articolo"; +$a->strings["Delete item?"] = "Eliminare questo elemento?"; $a->strings["Blocked"] = "Bloccati"; $a->strings["Ignored"] = "Ignorati"; $a->strings["Hidden"] = "Nascosti"; @@ -1364,6 +1262,7 @@ $a->strings["block"] = "riquadro"; $a->strings["layout"] = "layout"; $a->strings["%s element installed"] = "%s elemento installato"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. {Inserisci l'email con cui sei registrato e la password.}"; $a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; $a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; $a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; @@ -1387,7 +1286,11 @@ $a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine del $a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; $a->strings["Away"] = "Assente"; $a->strings["Online"] = "Online"; -$a->strings["Channel added."] = "Canale aggiunto."; +$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; +$a->strings["Save Bookmark"] = "Salva segnalibro"; +$a->strings["URL of bookmark"] = "URL del segnalibro"; +$a->strings["Description"] = "Descrizione"; +$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; $a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; $a->strings["System Notifications"] = "Notifiche di sistema"; $a->strings["network"] = "rete"; @@ -1397,19 +1300,6 @@ $a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; $a->strings["Layout not found."] = "Layout non trovato."; $a->strings["Module Name:"] = "Nome del modulo:"; $a->strings["Layout Help"] = "Guida al layout"; -$a->strings["App installed."] = "App installata"; -$a->strings["Malformed app."] = "App non corretta"; -$a->strings["Embed code"] = "Inserisci del codice"; -$a->strings["Edit App"] = "Modifica app"; -$a->strings["Create App"] = "Crea una app"; -$a->strings["Name of app"] = "Nome app"; -$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -$a->strings["Description"] = "Descrizione"; -$a->strings["Photo icon URL"] = "URL icona"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -$a->strings["Version ID"] = "ID versione"; -$a->strings["Price of app"] = "Prezzo app"; -$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; $a->strings["- select -"] = "- scegli -"; $a->strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; $a->strings["Nothing to import."] = "Non c'è niente da importare."; @@ -1448,6 +1338,7 @@ $a->strings["Edit Webpage"] = "Modifica la pagina web"; $a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; $a->strings["Delete Webpage"] = "Elimina la pagina web"; $a->strings["This site is not a directory server"] = "Questo sito non è un server di elenchi pubblici"; +$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; $a->strings["No valid account found."] = "Nessun account valido trovato."; $a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; $a->strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1464,7 +1355,9 @@ $a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; $a->strings["Email Address"] = "Indirizzo email"; $a->strings["Reset"] = "Reimposta"; +$a->strings["Website:"] = "Sito web:"; $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +$a->strings["Please login."] = "Effettua l'accesso."; $a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; $a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; $a->strings["Please join us on Red"] = "Vieni con noi su RedMatrix"; @@ -1540,7 +1433,7 @@ $a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla qu $a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; $a->strings["Attach this file to a new post"] = "Allega questo file a un nuovo articolo"; $a->strings["Show URL to this file"] = "Mostra l'URL del file"; -$a->strings["Do not show in shared with me folder of your connections"] = "Non mostrare nella cartella ciò che è stato condiviso con me"; +$a->strings["Do not show in shared with me folder of your connections"] = "Non mostrare nella cartella dei file condivisi dei tuoi contatti"; $a->strings["Contact not found."] = "Contatto non trovato."; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; $a->strings["Suggest Friends"] = "Suggerisci amici"; @@ -1624,15 +1517,10 @@ $a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti int $a->strings["No ratings"] = "Nessuna valutazione"; $a->strings["Ratings"] = "Valutazioni"; $a->strings["Rating: "] = "Valutazione:"; +$a->strings["Website: "] = "Sito web:"; $a->strings["Description: "] = "Descrizione:"; -$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori attuali della pagina"; -$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; -$a->strings["Potential Delegates"] = "Delegati potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun risultato."; +$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; +$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'autenticazione magica è avvenuta con successo."; $a->strings["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -1648,10 +1536,6 @@ $a->strings["Finding:"] = "Ricerca:"; $a->strings["next page"] = "pagina successiva"; $a->strings["previous page"] = "pagina precedente"; $a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; -$a->strings["Save Bookmark"] = "Salva segnalibro"; -$a->strings["URL of bookmark"] = "URL del segnalibro"; -$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; $a->strings["Export Channel"] = "Esporta il canale"; $a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto."; $a->strings["Export Content"] = "Esporta i contenuti"; @@ -1665,7 +1549,7 @@ $a->strings["Accounts"] = "Account"; $a->strings["Channels"] = "Canali"; $a->strings["Plugins"] = "Plugin"; $a->strings["Themes"] = "Temi"; -$a->strings["Server"] = "Server"; +$a->strings["Inspect queue"] = "Dettagli della coda di attesa"; $a->strings["Profile Config"] = "Configurazione del profilo"; $a->strings["DB updates"] = "Aggiornamenti al DB"; $a->strings["Logs"] = "Log"; @@ -1679,6 +1563,7 @@ $a->strings["Pending registrations"] = "Registrazioni da approvare"; $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; +$a->strings["mobile"] = "mobile"; $a->strings["experimental"] = "sperimentale"; $a->strings["unsupported"] = "non supportato"; $a->strings["Yes - with approval"] = "Sì - con approvazione"; @@ -1741,6 +1626,7 @@ $a->strings["ID"] = "ID"; $a->strings["for channel"] = "per canale"; $a->strings["on server"] = "sul server"; $a->strings["Status"] = "Stato"; +$a->strings["Server"] = "Server"; $a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; $a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; $a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; @@ -1750,6 +1636,9 @@ $a->strings["No failed updates."] = "Nessun aggiornamento fallito."; $a->strings["Failed Updates"] = "Aggiornamenti falliti."; $a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; $a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +$a->strings["Queue Statistics"] = "Statistiche della coda di attesa"; +$a->strings["Total Entries"] = "Totale elementi"; +$a->strings["Destination URL"] = "URL di destinazione"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utente bloccato/sbloccato", 1 => "%s utenti bloccati/sbloccati", @@ -1820,21 +1709,66 @@ $a->strings["Field definition not found"] = "Impossibile trovare la definizione $a->strings["Edit Profile Field"] = "Modifica campo del profilo"; $a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; $a->strings["Post successful."] = "Inviato!"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo."; -$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'autenticazione magica è avvenuta con successo."; -$a->strings["Please login."] = "Effettua l'accesso."; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +$a->strings["Passwords do not match."] = "Le password non corrispondono."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; +$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["Terms of Service"] = "Condizioni d'Uso"; +$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; +$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +$a->strings["Your email address"] = "Il tuo indirizzo email"; +$a->strings["Choose a password"] = "Scegli una password"; +$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; $a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; $a->strings["Remove This Account"] = "Elimina questo account"; $a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Questa operazione rimuoverà completamente il tuo account dalla rete, inclusi tutti i suoi canali. Una volta avviata la rimozione, sarà definitiva."; $a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete."; +$a->strings["Remove Account"] = "Elimina l'account"; $a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -$a->strings["is interested in:"] = "interessi personali:"; -$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Elimina album"; +$a->strings["Delete Photo"] = "Elimina foto"; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +$a->strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["Enter a new album name"] = "Inserisci il nome di un nuovo album"; +$a->strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +$a->strings["Do not show a status post for this upload"] = "Non creare un messaggio di stato per questo caricamento"; +$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Show Newest First"] = "Prima i più recenti"; +$a->strings["Show Oldest First"] = "Prima i più vecchi"; +$a->strings["View Photo"] = "Guarda la foto"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["View Full Size"] = "Vedi nelle dimensioni originali"; +$a->strings["Edit photo"] = "Modifica la foto"; +$a->strings["Rotate CW (right)"] = "Ruota (senso orario)"; +$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +$a->strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +$a->strings["In This Photo:"] = "In questa foto:"; +$a->strings["View Album"] = "Guarda l'album"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo."; +$a->strings["Wall Photos"] = "Foto della bacheca"; $a->strings["Conversation removed."] = "Conversazione rimossa."; $a->strings["No messages."] = "Nessun messaggio."; $a->strings["Delete conversation"] = "Elimina la conversazione"; @@ -1854,6 +1788,7 @@ $a->strings["Delete this menu item"] = "Elimina questo elemento del menù"; $a->strings["Edit this menu item"] = "Modifica questo elemento del menù"; $a->strings["New Menu Element"] = "Nuovo elemento del menù"; $a->strings["Menu Item Permissions"] = "Permessi del menu"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; $a->strings["Link text"] = "Testo del link"; $a->strings["URL of link"] = "Indirizzo del link"; $a->strings["Use RedMatrix magic-auth if available"] = "Usa l'autenticazione magica di RedMatrix, se disponibile"; @@ -1875,21 +1810,12 @@ $a->strings["By default only the instance of the channel located on this hub wil $a->strings["Remove Channel"] = "Elimina questo canale"; $a->strings["Help with this feature"] = "La guida per questa funzionalità"; $a->strings["Layout Name"] = "Nome layout"; -$a->strings["Like/Dislike"] = "Mi piace/Non mi piace"; -$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Per favore accedi con il tuo identificativo RedMatrix o registrati su RedMatrix per continuare."; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["thing"] = "oggetto"; -$a->strings["Channel unavailable."] = "Canale non trovato."; -$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non ha dato un giudizio"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -$a->strings["Action completed."] = "Comando completato."; -$a->strings["Thank you."] = "Grazie."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; +$a->strings["Authentication failed."] = "Autenticazione fallita."; +$a->strings["Remote Authentication"] = "Autenticazione a distanza"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +$a->strings["Authenticate"] = "Autenticazione"; $a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; $a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; $a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; @@ -1918,40 +1844,18 @@ $a->strings["Or import an existing channel from another l $a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. RedMatrix sceglierà per te i permessi più adatti."; $a->strings["Channel Type"] = "Tipo di canale"; $a->strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Elimina album"; -$a->strings["Delete Photo"] = "Elimina foto"; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -$a->strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["Enter a new album name"] = "Inserisci il nome di un nuovo album"; -$a->strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -$a->strings["Do not show a status post for this upload"] = "Non creare un messaggio di stato per questo caricamento"; -$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Show Newest First"] = "Prima i più recenti"; -$a->strings["Show Oldest First"] = "Prima i più vecchi"; -$a->strings["View Photo"] = "Guarda la foto"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["View Full Size"] = "Vedi nelle dimensioni originali"; -$a->strings["Edit photo"] = "Modifica la foto"; -$a->strings["Rotate CW (right)"] = "Ruota (senso orario)"; -$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -$a->strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -$a->strings["In This Photo:"] = "In questa foto:"; -$a->strings["View Album"] = "Guarda l'album"; -$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["App installed."] = "App installata"; +$a->strings["Malformed app."] = "App non corretta"; +$a->strings["Embed code"] = "Inserisci del codice"; +$a->strings["Edit App"] = "Modifica app"; +$a->strings["Create App"] = "Crea una app"; +$a->strings["Name of app"] = "Nome app"; +$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +$a->strings["Photo icon URL"] = "URL icona"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +$a->strings["Version ID"] = "ID versione"; +$a->strings["Price of app"] = "Prezzo app"; +$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; $a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; $a->strings["added your channel"] = "ha aggiunto il tuo canale"; $a->strings["posted an event"] = "ha creato un evento"; @@ -1959,29 +1863,144 @@ $a->strings["Bookmark added"] = "Segnalibro aggiunto"; $a->strings["My Bookmarks"] = "I miei segnalibri"; $a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; $a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -$a->strings["Passwords do not match."] = "Le password non corrispondono."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; -$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["Terms of Service"] = "Condizioni d'Uso"; -$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; -$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -$a->strings["Your email address"] = "Il tuo indirizzo email"; -$a->strings["Choose a password"] = "Scegli una password"; -$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; -$a->strings["Authentication failed."] = "Autenticazione fallita."; -$a->strings["Remote Authentication"] = "Autenticazione a distanza"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -$a->strings["Authenticate"] = "Autenticazione"; +$a->strings["Name is required"] = "Il nome è obbligatorio"; +$a->strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +$a->strings["Diaspora Policy Settings updated."] = "Le regole per Diaspora sono state aggiornate."; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +$a->strings["Password changed."] = "Password cambiata."; +$a->strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; +$a->strings["Not valid email."] = "Email non valida."; +$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +$a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +$a->strings["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Add application"] = "Aggiungi una app"; +$a->strings["Name of application"] = "Nome dell'applicazione"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Redirect"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."; +$a->strings["Icon url"] = "Url icona"; +$a->strings["Optional"] = "Opzionale"; +$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; +$a->strings["Connected Apps"] = "App connesse"; +$a->strings["Client key starts with"] = "La client key inizia con"; +$a->strings["No name"] = "Nessun nome"; +$a->strings["Remove authorization"] = "Revoca l'autorizzazione"; +$a->strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +$a->strings["Feature Settings"] = "Componenti aggiuntivi"; +$a->strings["Diaspora Policy Settings"] = "Regole per Diaspora"; +$a->strings["Allow any Diaspora member to comment on your public posts."] = "Permetti agli utenti di Diaspora di commentare i tuoi post pubblici."; +$a->strings["Submit Diaspora Policy Settings"] = "Salva le regole per Diaspora"; +$a->strings["Account Settings"] = "Il tuo account"; +$a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password"; +$a->strings["Email Address:"] = "Indirizzo email:"; +$a->strings["Remove this account from this server including all its channels"] = "Elimina l'account da questo server, inclusi tutti i canali"; +$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attenzione: questa azione è permanente e non potrà più essere annullata."; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Additional Features"] = "Funzionalità opzionali"; +$a->strings["Connector Settings"] = "Impostazioni del connettore"; +$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; +$a->strings["%s - (Experimental)"] = "%s - (Sperimentale)"; +$a->strings["Display Settings"] = "Aspetto"; +$a->strings["Display Theme:"] = "Tema per schermi medio grandi:"; +$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; +$a->strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; +$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; +$a->strings["Maximum of 100 items"] = "Massimo 100"; +$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; +$a->strings["Link post titles to source"] = "Il link del titolo di un articolo porta al sito originale"; +$a->strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; +$a->strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; +$a->strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; +$a->strings["Use blog/list mode on matrix page"] = "Mostra la tua rete in modalità blog"; +$a->strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; +$a->strings["click to expand content exceeding this height"] = "dovrai cliccare per mostrare i contenuti di dimensioni maggiori"; +$a->strings["Matrix page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; +$a->strings["Nobody except yourself"] = "Nessuno tranne te"; +$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; +$a->strings["Approved connections"] = "Contatti approvati"; +$a->strings["Any connections"] = "Tutti i contatti"; +$a->strings["Anybody on this website"] = "Chiunque su questo sito"; +$a->strings["Anybody in this network"] = "Chiunque su Red"; +$a->strings["Anybody authenticated"] = "Chiunque sia autenticato"; +$a->strings["Anybody on the internet"] = "Chiunque su internet"; +$a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +$a->strings["Channel Settings"] = "Impostazioni del canale"; +$a->strings["Basic Settings"] = "Impostazioni di base"; +$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; +$a->strings["Default Post Location:"] = "Località predefinita:"; +$a->strings["Geographical location to display on your posts"] = "Posizione geografica da mostrare sui tuoi post"; +$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +$a->strings["Adult Content"] = "Contenuto per adulti"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; +$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; +$a->strings["Hide my online presence"] = "Nascondi la mia presenza online"; +$a->strings["Prevents displaying in your profile that you are online"] = "Evita che sul tuo profilo compaia la tua presenza online"; +$a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; +$a->strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; +$a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; +$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi articoli"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; +$a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; +$a->strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; +$a->strings["0 or blank prevents expiration"] = "Lascia vuoto oppure 0 per non impostare scadenze"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; +$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli"; +$a->strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; +$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; +$a->strings["Notification Settings"] = "Impostazioni di notifica"; +$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; +$a->strings["accepting a friend request"] = "accetto una nuova amicizia"; +$a->strings["joining a forum/community"] = "entro a far parte di un forum"; +$a->strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; +$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:"; +$a->strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; +$a->strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo"; +$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; +$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; +$a->strings["You are tagged in a post"] = "Sei taggato in un articolo"; +$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo"; +$a->strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; +$a->strings["Unseen matrix activity"] = "Nuove attività nella rete"; +$a->strings["Unseen channel activity"] = "Novità nei canali"; +$a->strings["Unseen private messages"] = "Nuovi messaggi privati"; +$a->strings["Recommended"] = "Consigliato"; +$a->strings["Upcoming events"] = "Prossimi eventi"; +$a->strings["Events today"] = "Eventi di oggi"; +$a->strings["Upcoming birthdays"] = "Prossimi compleanni"; +$a->strings["Not available in all themes"] = "Non disponibile in tutti i temi"; +$a->strings["System (personal) notifications"] = "Notifiche personali dal sistema"; +$a->strings["System info messages"] = "Notifiche di sistema"; +$a->strings["System critical alerts"] = "Avvisi critici di sistema"; +$a->strings["New connections"] = "Nuovi contatti"; +$a->strings["System Registrations"] = "Registrazioni"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti"; +$a->strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; +$a->strings["Must be greater than 0"] = "Maggiore di 0"; +$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; +$a->strings["Miscellaneous Settings"] = "Impostazioni varie"; +$a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; +$a->strings["Remove this channel"] = "Elimina questo canale"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; $a->strings["Poll"] = "Sondaggio"; $a->strings["View Results"] = "Guarda i risultati"; $a->strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -- cgit v1.2.3 From e4a2e353d8bc02f6a4e61d6cca999a098f34f593 Mon Sep 17 00:00:00 2001 From: zottel Date: Mon, 2 Mar 2015 11:05:03 +0100 Subject: make public delivery to contacts or any connections work again $hash wasn't defined in this case --- include/zot.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/zot.php b/include/zot.php index b09f65b7b..e1c780742 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1472,10 +1472,9 @@ function allowed_public_recips($msg) { return array(); } - if($scope === 'self') { - - $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); + $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); + if($scope === 'self') { foreach($recips as $r) if($r['hash'] === $hash) return array('hash' => $hash); -- cgit v1.2.3 From e6eee5ba92bc64ea0c9855831bddf66acccd9bee Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 2 Mar 2015 11:09:38 -0800 Subject: tagcloud tweaks --- include/taxonomy.php | 4 ++-- version.inc | 2 +- view/theme/redbasic/css/style.css | 20 ++++++++++---------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index 3d1ac7058..ef3639067 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -152,7 +152,7 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $ $range = max(.01, $max - $min) * 1.0001; for($x = 0; $x < count($tags); $x ++) { - $tags[$x][2] = 1 + floor(7 * ($tags[$x][1] - $min) / $range); + $tags[$x][2] = 1 + floor(9 * ($tags[$x][1] - $min) / $range); } return $tags; @@ -199,7 +199,7 @@ function dir_tagadelic($count = 0) { $range = max(.01, $max - $min) * 1.0001; for($x = 0; $x < count($tags); $x ++) { - $tags[$x][2] = 1 + floor(5 * ($tags[$x][1] - $min) / $range); + $tags[$x][2] = 1 + floor(9 * ($tags[$x][1] - $min) / $range); } return $tags; diff --git a/version.inc b/version.inc index 36fcceb22..baaf78090 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-01.958 +2015-03-02.959 diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8c4b8eb81..248c85592 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1459,50 +1459,50 @@ header { .shared_header img { margin-right: 10px; } .tag1 { - font-size : 1.0em !important; + font-size : 0.9em !important; } .tag2 { - font-size : 1.2em !important; + font-size : 1.0em !important; } .tag3 { - font-size : 1.4em !important; + font-size : 1.1em !important; } .tag4 { - font-size : 1.6em !important; + font-size : 1.2em !important; } .tag5 { - font-size : 1.8em !important; + font-size : 1.3em !important; } .tag6 { - font-size : 2.0em !important; + font-size : 1.4em !important; } .tag7 { - font-size : 2.2em !important; + font-size : 1.5em !important; } .tag8 { - font-size : 2.4em !important; + font-size : 1.6em !important; } .tag9 { - font-size : 2.6em !important; + font-size : 1.7em !important; } .tag10 { - font-size : 2.8em !important; + font-size : 1.8em !important; } -- cgit v1.2.3 From 6b467974a33a054d96b69c8c3b85b2807ffd5f29 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 2 Mar 2015 20:51:32 +0100 Subject: some more work on settings --- view/css/mod_settings.css | 57 +------------------------------------------ view/js/mod_settings.js | 5 ---- view/tpl/settings.tpl | 62 +++++++++++++++++++++++++---------------------- 3 files changed, 34 insertions(+), 90 deletions(-) diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index 58e13b54f..6af091c8f 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -1,58 +1,3 @@ - -ul#settings-privacy-macros { - list-style-type: none; - margin: 0 0 10px 0; - padding: 0; -} -#settings-privacy-macros li { - margin-top: 5px; -} - -#settings-permissions-wrapper { - margin-top: 15px; -} - -#settings-default-perms { - margin-top: 15px; -} - -#settings-perm-advanced { - margin-top: 15px; -} - -.settings-common-perms { - margin-top: 15px; -} - -.settings-submit-wrapper { - margin-bottom: 10px; -} - -#settings-remove-account-link { - margin-top: 15px; - margin-bottom: 45px; -} - -#settings-notify-desc, #settings-activity-desc, #settings-vnotify-desc { - font-weight: bold; - margin-bottom: 15px; -} - -#settings-menu-desc { - font-weight: bold; - float: left; - width: 350px; -} - -#settings-channel-menu-div select { - float: left; -} - -#settings-channel-menu-end { - clear: both; - margin-bottom: 15px; -} - #dspr-pubcomment-label { float: left; width: 350px; @@ -68,5 +13,5 @@ ul#settings-privacy-macros { } .group { - margin-left: 20px; + margin-left: 10px; } diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 0db0dd165..5e52d56ab 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -4,11 +4,6 @@ var ispublic = aStr['everybody'] ; $(document).ready(function() { $('form').areYouSure(); // Warn user about unsaved settings - $("a#settings-default-perms-menu").colorbox({ - 'inline' : true, - 'transition' : 'elastic' - }); - $("#id_permissions_role").change(function() { var role = $("#id_permissions_role").val(); if(role == 'custom') diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 3d13dc5de..02937e4b2 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -24,7 +24,7 @@ {{include file="field_checkbox.tpl" field=$allowloc}} {{include file="field_checkbox.tpl" field=$adult}}
        - +
        @@ -40,28 +40,34 @@
        {{include file="field_select_grouped.tpl" field=$role}} -
        - {{include file="field_checkbox.tpl" field=$hide_presence}} - - -
        - - {{foreach $permiss_arr as $permit}} - {{include file="field_select.tpl" field=$permit}} - {{/foreach}} -
        - -
        +
        +
        - -
        - - {{$aclselect}} -
        + +
        + + {{$aclselect}}
        -
        {{$group_select}} + {{include file="field_checkbox.tpl" field=$hide_presence}} {{$profile_in_dir}}
        @@ -70,7 +76,7 @@ {{include file="field_input.tpl" field=$expire}}
        - +
        @@ -86,14 +92,14 @@
        -
        {{$activity_options}}
        +

        {{$activity_options}}

        {{*not yet implemented *}} {{*include file="field_checkbox.tpl" field=$post_joingroup*}} {{include file="field_checkbox.tpl" field=$post_newfriend}} {{include file="field_checkbox.tpl" field=$post_profilechange}}
        -
        {{$lbl_not}}
        +

        {{$lbl_not}}

        {{include file="field_intcheckbox.tpl" field=$notify1}} {{include file="field_intcheckbox.tpl" field=$notify2}} @@ -104,7 +110,7 @@ {{include file="field_intcheckbox.tpl" field=$notify7}} {{include file="field_intcheckbox.tpl" field=$notify8}}
        -
        {{$lbl_vnot}}
        +

        {{$lbl_vnot}}

        {{include file="field_intcheckbox.tpl" field=$vnotify1}} {{include file="field_intcheckbox.tpl" field=$vnotify2}} @@ -118,13 +124,11 @@ {{include file="field_intcheckbox.tpl" field=$vnotify9}} {{include file="field_intcheckbox.tpl" field=$vnotify11}} {{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} - - {{*include file="field_intcheckbox.tpl" field=$vnotify11*}} + {{include file="field_input.tpl" field=$evdays}}
        - {{include file="field_input.tpl" field=$evdays}}
        - +
        @@ -143,9 +147,9 @@
        -- cgit v1.2.3 From 37384c0b27eee39d4a81a4f0dac3565375155082 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 2 Mar 2015 18:02:06 -0800 Subject: automated warning after a few days if poller is dead --- boot.php | 43 +++++++++++++++++++++++++++++++++++++++++++ index.php | 3 +++ view/en/cron_bad_eml.tpl | 17 +++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 view/en/cron_bad_eml.tpl diff --git a/boot.php b/boot.php index f0f982e03..06813099f 100755 --- a/boot.php +++ b/boot.php @@ -2296,4 +2296,47 @@ function cert_bad_email() { . 'Content-type: text/plain; charset=UTF-8' . "\n" . 'Content-transfer-encoding: 8bit' ); +} + + +// send warnings every 3-5 days if cron is not running. + + +function check_cron_broken() { + + $t = get_config('system','lastpollcheck'); + if(! $t) { + // never checked before. Start the timer. + set_config('system','lastpollcheck',datetime_convert()); + return; + } + if($t > datetime_convert('UTC','UTC','now - 3 days')) { + // Wait for 3 days before we do anything so as not to swamp the admin with messages + return; + } + + $d = get_config('system','lastpoll'); + if(($d) && ($d > datetime_convert('UTC','UTC','now - 3 days'))) { + // Scheduled tasks have run successfully in the last 3 days. + set_config('system','lastpollcheck',datetime_convert()); + return; + } + + $a = get_app(); + + $email_tpl = get_intltext_template("cron_bad_eml.tpl"); + $email_msg = replace_macros($email_tpl, array( + '$sitename' => $a->config['system']['sitename'], + '$siteurl' => $a->get_baseurl(), + '$error' => t('Cron/Scheduled tasks not running.'), + '$lastdate' => (($d)? $d : t('never')) + )); + + $subject = email_header_encode(sprintf(t('[red] Cron tasks not running on %s'), $a->get_hostname())); + mail($a->config['system']['admin_email'], $subject, $email_msg, + 'From: Administrator' . '@' . $a->get_hostname() . "\n" + . 'Content-type: text/plain; charset=UTF-8' . "\n" + . 'Content-transfer-encoding: 8bit' ); + set_config('system','lastpollcheck',datetime_convert()); + return; } \ No newline at end of file diff --git a/index.php b/index.php index 94d22e415..716c24fe6 100755 --- a/index.php +++ b/index.php @@ -396,6 +396,9 @@ if(stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) { call_hooks('page_end', $a->page['content']); +if(! $a->install) + check_cron_broken(); + construct_page($a); session_write_close(); diff --git a/view/en/cron_bad_eml.tpl b/view/en/cron_bad_eml.tpl new file mode 100644 index 000000000..ce30dae73 --- /dev/null +++ b/view/en/cron_bad_eml.tpl @@ -0,0 +1,17 @@ +This is the webserver at {{$sitename}}; + +A routine check indicates the scheduled maintenance tasks on this +website are not running. Please review your "cron" jobs or the +equivalent mechanism on your operating system and ensure these are +running. Please review the INSTALL instructions if you are seeing +this message for the first time. If these maintenance tasks have +been running normally until now, please check to see if anything +may have gone wrong to account for them not running currently. +This check is run approximately every three days. + +The error message is '{{$error}}'. + +The last successful execution was '{{$lastdate}}'. + +Apologies for the inconvenience, + your web server at {{$siteurl}} \ No newline at end of file -- cgit v1.2.3 From 74c1b6168938872303b3ff61e9bea1c9c86a29c5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 3 Mar 2015 09:18:04 +0100 Subject: make remove channel button work again --- view/theme/redbasic/css/style.css | 10 +++++++--- view/tpl/settings.tpl | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 248c85592..4853d3cc1 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -81,7 +81,11 @@ a.btn-default { color: #333; } -a.btn-success { +a.btn-success, +a.btn-danger, +a.btn-info, +a.btn-warning +a.btn-primary { color: #fff; } @@ -111,8 +115,8 @@ input[type="submit"] { padding: 6px 12px; } -button, input, optgroup, select, textarea { - color: #000; +input, optgroup, select, textarea { + color: #333; } pre code { diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 02937e4b2..6ad23b007 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -1,6 +1,6 @@
        - +  {{$removeme}}

        {{$ptitle}}

        -- cgit v1.2.3 From 7644a23de4992a90a9add006caeab496ad29a2ac Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 3 Mar 2015 09:52:35 +0100 Subject: typo --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4853d3cc1..fc32b8046 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -84,7 +84,7 @@ a.btn-default { a.btn-success, a.btn-danger, a.btn-info, -a.btn-warning +a.btn-warning, a.btn-primary { color: #fff; } -- cgit v1.2.3 From 6e0b5b742c5b11dc0e8f181926c401bb892aab3b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 3 Mar 2015 11:32:54 +0100 Subject: login adjustment --- boot.php | 4 ++-- view/theme/redbasic/css/style.css | 2 +- view/tpl/login.tpl | 22 ++++++---------------- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/boot.php b/boot.php index 06813099f..4ed5d34c4 100755 --- a/boot.php +++ b/boot.php @@ -1553,7 +1553,7 @@ function login($register = false, $form_id = 'main-login', $hiddens=false) { '$form_id' => $form_id, '$lname' => array('username', t('Email') , '', ''), '$lpassword' => array('password', t('Password'), '', ''), - '$remember' => array('remember', t('Remember me'), '', ''), + '$remember' => array('remember', t('Remember me'), '', '',array(t('No'),t('Yes'))), '$hiddens' => $hiddens, '$register' => $reg, '$lostpass' => t('Forgot your password?'), @@ -2339,4 +2339,4 @@ function check_cron_broken() { . 'Content-transfer-encoding: 8bit' ); set_config('system','lastpollcheck',datetime_convert()); return; -} \ No newline at end of file +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index fc32b8046..8a24f37ab 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -282,7 +282,7 @@ footer { } #login-main { - max-width: 300px; + max-width: 273px; margin-top: 50px; } diff --git a/view/tpl/login.tpl b/view/tpl/login.tpl index 7bde90c23..9472bd961 100755 --- a/view/tpl/login.tpl +++ b/view/tpl/login.tpl @@ -1,29 +1,19 @@
        -
        - {{include file="field_input.tpl" field=$lname}} - {{include file="field_password.tpl" field=$lpassword}} +
        + {{include file="field_input.tpl" field=$lname}} + {{include file="field_password.tpl" field=$lpassword}} + {{include file="field_checkbox.tpl" field=$remember}} +
        - -
        - - {{include file="field_checkbox.tpl" field=$remember}} - -
        - -
        - -
        - {{foreach $hiddens as $k=>$v}} {{/foreach}} - -- cgit v1.2.3 From 2d38e58adbf47a0c318100ffd08b7d90b827158f Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 3 Mar 2015 12:38:23 +0100 Subject: revert login max-width --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8a24f37ab..fc32b8046 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -282,7 +282,7 @@ footer { } #login-main { - max-width: 273px; + max-width: 300px; margin-top: 50px; } -- cgit v1.2.3 From e3a559128dc9565474b7db9068f6414f7ae6d4e2 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Tue, 3 Mar 2015 23:32:40 +0100 Subject: yes switch to bootstrap blue again (same as link colour in default light redbasic schema). using link_colour for yes switch didnt work on dark schemas (displayes as white on white). --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index fc32b8046..9307fdd5f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2336,5 +2336,5 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .field.checkbox > div > input:checked + label .onoffswitch-switch { right: 0px; - background-color: $link_colour; + background-color: #337AB7; } -- cgit v1.2.3 From 44b714d0eb13263d5900bd8d51bf3995388f4bd0 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Mar 2015 14:38:34 -0800 Subject: group/collection edit page cleanup --- version.inc | 2 +- view/css/mod_group.css | 8 ++++---- view/theme/redbasic/css/style.css | 1 - view/tpl/group_drop.tpl | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/version.inc b/version.inc index baaf78090..8dd1bb24f 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-02.959 +2015-03-03.960 diff --git a/view/css/mod_group.css b/view/css/mod_group.css index 91d5b2136..b828e551d 100644 --- a/view/css/mod_group.css +++ b/view/css/mod_group.css @@ -2,7 +2,7 @@ #group-new-submit-wrapper { margin-top: 30px; } - +/* #group-edit-form > label { float: left; width: 300px; @@ -16,7 +16,7 @@ #group-edit-form .field { clear: both; } - +*/ #group-edit-submit-wrapper input { clear: both; width: 100px; @@ -25,7 +25,7 @@ #group-edit-select-end { clear: both; } - +/* #group-edit-name-label { float: left; width: 175px; @@ -44,7 +44,7 @@ } - +*/ #group_members_select_label { display: block; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 248c85592..a27de499f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -662,7 +662,6 @@ footer { .group-delete-wrapper { float: right; - margin-right: 50px; } .rconnect { diff --git a/view/tpl/group_drop.tpl b/view/tpl/group_drop.tpl index 850e7101f..34ee3e3fd 100755 --- a/view/tpl/group_drop.tpl +++ b/view/tpl/group_drop.tpl @@ -2,6 +2,6 @@ + class="group-delete-icon btn btn-default" title="{{$delete}}" >
        -- cgit v1.2.3 From 0d601563d02d7e9b7414586486f1623a93cf958b Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Wed, 4 Mar 2015 00:03:19 +0100 Subject: Some cleanups and documentation. Fixed some wrong variable names. Initialized some variables before using them. Removed some checks for STATUSNET_PRIVACY_COMPATIBILITY in include/security.php as it does not seem to be defined anywhere. --- include/bookmarks.php | 2 +- include/comanche.php | 54 +++++++++++----------- include/language.php | 15 ++++--- include/photos.php | 75 +++++++++++++++++++------------ include/security.php | 36 ++++++--------- include/socgraph.php | 46 +++++++------------ include/taxonomy.php | 121 ++++++++++++++++++++++++++------------------------ 7 files changed, 174 insertions(+), 175 deletions(-) diff --git a/include/bookmarks.php b/include/bookmarks.php index e70158476..c6e8e86f2 100644 --- a/include/bookmarks.php +++ b/include/bookmarks.php @@ -9,7 +9,7 @@ function bookmark_add($channel,$sender,$taxonomy,$private,$opts = null) { $ischat = false; if(is_array($opts)) { - $menu_id = ((x($opts,'menu_id')) ? intval($opt['menu_id']) : 0); + $menu_id = ((x($opts,'menu_id')) ? intval($opts['menu_id']) : 0); $menu_name = ((x($opts,'menu_name')) ? escape_tags($opts['menu_name']) : ''); $ischat = ((x($opts,'ischat')) ? intval($opts['ischat']) : 0); } diff --git a/include/comanche.php b/include/comanche.php index b181d415a..9db375c38 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -15,23 +15,22 @@ require_once('include/widgets.php'); // page layout from the given description -function pdl_selector($uid,$current="") { - +function pdl_selector($uid, $current="") { $o = ''; - $sql_extra = item_permissions_sql($uid); + //$sql_extra = item_permissions_sql($uid); $r = q("select item_id.*, mid from item_id left join item on iid = item.id where item_id.uid = %d and item_id.uid = item.uid and service = 'PDL' order by sid asc", - intval($owner) + intval($uid) ); $arr = array('channel_id' => $uid, 'current' => $current, 'entries' => $r); call_hooks('pdl_selector',$arr); $entries = $arr['entries']; - $current = $arr['current']; - - $o .= "'; $entries[] = array('title' => t('Default'), 'mid' => ''); foreach($entries as $selection) { $selected = (($selection == $current) ? ' selected="selected" ' : ''); @@ -40,16 +39,17 @@ function pdl_selector($uid,$current="") { $o .= ''; return $o; -} +} -function comanche_parser(&$a,$s) { +function comanche_parser(&$a, $s) { + $matches = array(); $cnt = preg_match_all("/\[comment\](.*?)\[\/comment\]/ism", $s, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { - $s = str_replace($mtch[0],'',$s); + $s = str_replace($mtch[0], '', $s); } } @@ -99,14 +99,14 @@ function comanche_parser(&$a,$s) { function comanche_menu($name,$class = '') { $channel_id = comanche_get_channel_id(); if($channel_id) { - $m = menu_fetch($name,$channel_id,get_observer_hash()); - return menu_render($m,$class); + $m = menu_fetch($name,$channel_id, get_observer_hash()); + return menu_render($m, $class); } } function comanche_replace_region($match) { $a = get_app(); - if(array_key_exists($match[1],$a->page)) { + if(array_key_exists($match[1], $a->page)) { return $a->page[$match[1]]; } } @@ -121,15 +121,15 @@ function comanche_get_channel_id() { $channel_id = ((is_array(get_app()->profile)) ? get_app()->profile['profile_uid'] : 0); if((! $channel_id) && (local_channel())) $channel_id = local_channel(); + return $channel_id; } function comanche_block($name) { - + $o = ''; $channel_id = comanche_get_channel_id(); - + if($channel_id) { - $o = ''; $r = q("select * from item inner join item_id on iid = item.id and item_id.uid = item.uid and item.uid = %d and service = 'BUILDBLOCK' and sid = '%s' limit 1", intval($channel_id), dbesc($name) @@ -138,11 +138,12 @@ function comanche_block($name) { $o = '
        '; if($r[0]['title']) $o .= '

        ' . $r[0]['title'] . '

        '; - $o .= prepare_text($r[0]['body'],$r[0]['mimetype']); - $o .= '
        '; + $o .= prepare_text($r[0]['body'], $r[0]['mimetype']); + $o .= '
        '; } } + return $o; } @@ -154,8 +155,9 @@ function comanche_block($name) { // of what template and webpage options we might desire. function comanche_webpage(&$a,$s) { - $ret = array(); + $matches = array(); + $cnt = preg_match_all("/\[authored\](.*?)\[\/authored\]/ism", $s, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { @@ -170,9 +172,10 @@ function comanche_webpage(&$a,$s) { // the global app environment, or config storage until we implement argument passing -function comanche_widget($name,$text) { - $a = get_app(); +function comanche_widget($name, $text) { $vars = array(); + $matches = array(); + $cnt = preg_match_all("/\[var=(.*?)\](.*?)\[\/var\]/ism", $text, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { @@ -186,12 +189,13 @@ function comanche_widget($name,$text) { } -function comanche_region(&$a,$s) { +function comanche_region(&$a, $s) { + $matches = array(); $cnt = preg_match_all("/\[menu\](.*?)\[\/menu\]/ism", $s, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { - $s = str_replace($mtch[0],comanche_menu(trim($mtch[1])),$s); + $s = str_replace($mtch[0], comanche_menu(trim($mtch[1])), $s); } } @@ -244,7 +248,3 @@ function register_page_template($arr) { get_app()->page_layouts[$arr['template']] = array($arr['variant']); return; } - - - - diff --git a/include/language.php b/include/language.php index f5ee3471e..ec5fa84fa 100644 --- a/include/language.php +++ b/include/language.php @@ -24,6 +24,7 @@ */ function get_browser_language() { $langs = array(); + $lang_parse = array(); if (x($_SERVER,'HTTP_ACCEPT_LANGUAGE')) { // break up string into pieces (languages and q factors) @@ -33,7 +34,7 @@ function get_browser_language() { if (count($lang_parse[1])) { // create a list like "en" => 0.8 $langs = array_combine($lang_parse[1], $lang_parse[4]); - + // set default to 1 for any without q factor foreach ($langs as $lang => $val) { if ($val === '') $langs[$lang] = 1; @@ -144,16 +145,16 @@ function load_translation_table($lang, $install = false) { /** * @brief translate string if translation exists. * - * @param $s string that should get translated - * @param $ctx optional context to appear in po file + * @param string $s string that should get translated + * @param string $ctx optional context to appear in po file * @return translated string if exists, otherwise return $s * */ -function t($s,$ctx = '') { +function t($s, $ctx = '') { global $a; - $cs = $ctx?"__ctx:".$ctx."__ ".$s:$s; - if(x($a->strings,$cs)) { + $cs = $ctx ? '__ctx:' . $ctx . '__ ' . $s : $s; + if(x($a->strings, $cs)) { $t = $a->strings[$cs]; return is_array($t) ? $t[0] : $t; } @@ -218,7 +219,7 @@ function detect_language($s) { // strip off bbcode $naked_body = preg_replace('/\[(.+?)\]/', '', $naked_body); if(mb_strlen($naked_body) < intval($min_length)) { - logger('detect language: string length less than ' . intval($min_length), LOGGER_DATA); + logger('string length less than ' . intval($min_length), LOGGER_DATA); return ''; } diff --git a/include/photos.php b/include/photos.php index ee94bac60..794ff7748 100644 --- a/include/photos.php +++ b/include/photos.php @@ -53,7 +53,7 @@ function photo_upload($channel, $observer, $args) { $visible = 1; else $visible = 0; - + if(intval($args['not_visible']) || $args['not_visible'] === 'true') $visible = 0; @@ -98,7 +98,6 @@ function photo_upload($channel, $observer, $args) { logger('photo_upload: received file: ' . $filename . ' as ' . $src . ' ('. $type . ') ' . $filesize . ' bytes', LOGGER_DEBUG); - $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { @@ -133,7 +132,6 @@ function photo_upload($channel, $observer, $args) { call_hooks('photo_post_end',$ret); return $ret; } - $ph = photo_factory($imagedata, $type); @@ -185,7 +183,7 @@ function photo_upload($channel, $observer, $args) { $r1 = $ph->save($p); if(! $r1) $errors = true; - + if(($width > 640 || $height > 640) && (! $errors)) { $ph->scaleImage(640); $p['scale'] = 1; @@ -204,7 +202,6 @@ function photo_upload($channel, $observer, $args) { $errors = true; } - if($errors) { q("delete from photo where resource_id = '%s' and uid = %d", dbesc($photo_hash), @@ -220,16 +217,15 @@ function photo_upload($channel, $observer, $args) { $width_x_height = $ph->getWidth() . 'x' . $ph->getHeight(); - $basename = basename($filename); $mid = item_message_id(); // Create item container $item_flags = ITEM_WALL|ITEM_ORIGIN|ITEM_THREAD_TOP; - $item_restrict = (($visible) ? ITEM_VISIBLE : ITEM_HIDDEN); + $item_restrict = (($visible) ? ITEM_VISIBLE : ITEM_HIDDEN); $title = ''; $mid = item_message_id(); - + $arr = array(); $arr['aid'] = $account_id; @@ -254,7 +250,7 @@ function photo_upload($channel, $observer, $args) { // We should also put a width_x_height on large photos. Left as an exercise for // devs looking fo simple stuff to fix. - $larger = feature_enabled($channel['channel_id'],'large_photos'); + $larger = feature_enabled($channel['channel_id'], 'large_photos'); if($larger) { $tag = '[zmg]'; if($r2) @@ -273,7 +269,7 @@ function photo_upload($channel, $observer, $args) { $arr['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' . $tag . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]' . '[/zrl]'; - + $result = item_store($arr); $item_id = $result['item_id']; @@ -291,15 +287,23 @@ function photo_upload($channel, $observer, $args) { return $ret; } - - - -function photos_albums_list($channel,$observer) { +/** + * @brief Returns a list with all photo albums observer is allowed to see. + * + * Returns an associative array with all albums where observer has permissions. + * + * @param array $channel + * @param array $observer + * @return bool|array false if no view_photos permission or an array + * * success (bool) + * * albums (array) + */ +function photos_albums_list($channel, $observer) { $channel_id = $channel['channel_id']; $observer_xchan = (($observer) ? $observer['xchan_hash'] : ''); - if(! perm_is_allowed($channel_id,$observer_xchan,'view_photos')) + if(! perm_is_allowed($channel_id, $observer_xchan, 'view_photos')) return false; // FIXME - create a permissions SQL which works on arbitrary observers and channels, regardless of login or web status @@ -310,7 +314,6 @@ function photos_albums_list($channel,$observer) { intval($channel_id), intval(PHOTO_NORMAL), intval(PHOTO_PROFILE) - ); // add various encodings to the array so we can just loop through and pick them out in a template @@ -330,8 +333,8 @@ function photos_albums_list($channel,$observer) { $ret['albums'][] = $entry; } } - return $ret; + return $ret; } function photos_album_widget($channelx,$observer,$albums = null) { @@ -395,17 +398,32 @@ function photos_list_photos($channel,$observer,$album = '') { return $ret; } - - -function photos_album_exists($channel_id,$album) { - $r = q("SELECT id from photo where album = '%s' and uid = %d limit 1", +/** + * @brief Check if given photo album exists in channel. + * + * @param int $channel_id id of the channel + * @param string $album name of the album + * @return boolean + */ +function photos_album_exists($channel_id, $album) { + $r = q("SELECT id FROM photo WHERE album = '%s' AND uid = %d limit 1", dbesc($album), intval($channel_id) ); + return (($r) ? true : false); } -function photos_album_rename($channel_id,$oldname,$newname) { +/** + * @brief Renames a photo album in a channel. + * + * @todo Do we need to check if new album name already exists? + * @param int $channel_id id of the channel + * @param string $oldname The name of the album to rename + * @param string $newname The new name of the album + * @return bool|array + */ +function photos_album_rename($channel_id, $oldname, $newname) { return q("UPDATE photo SET album = '%s' WHERE album = '%s' AND uid = %d", dbesc($newname), dbesc($oldname), @@ -437,8 +455,8 @@ function photos_album_get_db_idstr($channel_id,$album,$remote_xchan = '') { $str = implode(',',$arr); return $str; } - return false; + return false; } function photos_create_item($channel, $creator_hash, $photo, $visible = false) { @@ -446,11 +464,10 @@ function photos_create_item($channel, $creator_hash, $photo, $visible = false) { // Create item container $item_flags = ITEM_WALL|ITEM_ORIGIN|ITEM_THREAD_TOP; - $item_restrict = (($visible) ? ITEM_VISIBLE : ITEM_HIDDEN); + $item_restrict = (($visible) ? ITEM_VISIBLE : ITEM_HIDDEN); - $title = ''; $mid = item_message_id(); - + $arr = array(); $arr['aid'] = $channel['channel_account_id']; @@ -470,13 +487,13 @@ function photos_create_item($channel, $creator_hash, $photo, $visible = false) { $arr['deny_gid'] = $photo['deny_gid']; $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $arr['mid']; - + $arr['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo['resource_id'] . ']' . '[zmg]' . z_root() . '/photo/' . $photo['resource_id'] . '-' . $photo['scale'] . '[/zmg]' . '[/zrl]'; - + $result = item_store($arr); $item_id = $result['item_id']; - return $item_id; + return $item_id; } diff --git a/include/security.php b/include/security.php index 216299099..e9b41dcf9 100644 --- a/include/security.php +++ b/include/security.php @@ -22,7 +22,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive $a->account = $user_record; $_SESSION['account_id'] = $user_record['account_id']; $_SESSION['authenticated'] = 1; - + if($login_initial || $update_lastlog) { q("update account set account_lastlog = '%s' where account_id = %d", dbesc(datetime_convert()), @@ -150,11 +150,7 @@ function change_channel($change_channel) { */ function permissions_sql($owner_id, $remote_verified = false, $groups = null) { - if(defined('STATUSNET_PRIVACY_COMPATIBILITY')) - return ''; - $local_channel = local_channel(); - $remote_channel = remote_channel(); /** * Construct permissions @@ -173,7 +169,7 @@ function permissions_sql($owner_id, $remote_verified = false, $groups = null) { */ if(($local_channel) && ($local_channel == $owner_id)) { - $sql = ''; + $sql = ''; } /** @@ -194,7 +190,7 @@ function permissions_sql($owner_id, $remote_verified = false, $groups = null) { if(is_array($groups) && count($groups)) { foreach($groups as $g) $gs .= '|<' . $g . '>'; - } + } $regexop = db_getfunc('REGEXP'); $sql = sprintf( " AND ( NOT (deny_cid like '%s' OR deny_gid $regexop '%s') @@ -223,11 +219,7 @@ function permissions_sql($owner_id, $remote_verified = false, $groups = null) { */ function item_permissions_sql($owner_id, $remote_verified = false, $groups = null) { - if(defined('STATUSNET_PRIVACY_COMPATIBILITY')) - return ''; - $local_channel = local_channel(); - $remote_channel = remote_channel(); /** * Construct permissions @@ -246,7 +238,7 @@ function item_permissions_sql($owner_id, $remote_verified = false, $groups = nul } /** - * Authenticated visitor. Unless pre-verified, + * Authenticated visitor. Unless pre-verified, * check that the contact belongs to this $owner_id * and load the groups the visitor belongs to. * If pre-verified, the caller is expected to have already @@ -330,7 +322,7 @@ function public_permissions_sql($observer_hash) { */ function get_form_security_token($typename = '') { $a = get_app(); - + $timestamp = time(); $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename); @@ -340,16 +332,16 @@ function get_form_security_token($typename = '') { function check_form_security_token($typename = '', $formname = 'form_security_token') { if (!x($_REQUEST, $formname)) return false; $hash = $_REQUEST[$formname]; - + $max_livetime = 10800; // 3 hours - + $a = get_app(); - + $x = explode('.', $hash); if (time() > (IntVal($x[0]) + $max_livetime)) return false; - + $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename); - + return ($sec_hash == $x[1]); } @@ -417,7 +409,7 @@ function stream_perms_api_uids($perms = NULL ) { if($r) { foreach($r as $rr) if(! in_array($rr['channel_id'], $ret)) - $ret[] = $rr['channel_id']; + $ret[] = $rr['channel_id']; } $str = ''; @@ -425,7 +417,7 @@ function stream_perms_api_uids($perms = NULL ) { foreach($ret as $rr) { if($str) $str .= ','; - $str .= intval($rr); + $str .= intval($rr); } } logger('stream_perms_api_uids: ' . $str, LOGGER_DEBUG); @@ -447,7 +439,7 @@ function stream_perms_xchans($perms = NULL ) { if($r) { foreach($r as $rr) if(! in_array($rr['channel_hash'], $ret)) - $ret[] = $rr['channel_hash']; + $ret[] = $rr['channel_hash']; } $str = ''; @@ -455,7 +447,7 @@ function stream_perms_xchans($perms = NULL ) { foreach($ret as $rr) { if($str) $str .= ','; - $str .= "'" . dbesc($rr) . "'"; + $str .= "'" . dbesc($rr) . "'"; } } logger('stream_perms_xchans: ' . $str, LOGGER_DEBUG); diff --git a/include/socgraph.php b/include/socgraph.php index 59830ef1b..7f03f8696 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -3,7 +3,7 @@ require_once('include/dir_fns.php'); require_once('include/zot.php'); -/* +/** * poco_load * * xchan is your connection @@ -21,13 +21,10 @@ require_once('include/zot.php'); * the given uid, cid to the global contact entry. There can be many uid/cid combinations * pointing to the same global contact id. * + * @param string $xchan + * @param string $url */ - - - - -function poco_load($xchan = '',$url = null) { - $a = get_app(); +function poco_load($xchan = '', $url = null) { if($xchan && ! $url) { $r = q("select xchan_connurl from xchan where xchan_hash = '%s' limit 1", @@ -43,7 +40,6 @@ function poco_load($xchan = '',$url = null) { return; } - $url = $url . '?f=&fields=displayName,hash,urls,photos,rating' ; logger('poco_load: ' . $url, LOGGER_DEBUG); @@ -148,7 +144,7 @@ function poco_load($xchan = '',$url = null) { logger('poco_load: missing data'); continue; } - + $x = q("select xchan_hash from xchan where xchan_hash = '%s' limit 1", dbesc($hash) ); @@ -182,9 +178,8 @@ function poco_load($xchan = '',$url = null) { continue; } } - - $total ++; + $total ++; } logger("poco_load: loaded $total entries",LOGGER_DEBUG); @@ -193,7 +188,6 @@ function poco_load($xchan = '',$url = null) { db_utcnow(), db_quoteinterval('2 DAY') ); - } @@ -230,7 +224,6 @@ function common_friends($uid,$xchan,$start = 0,$limit=100000000,$shuffle = false ); return $r; - } @@ -246,8 +239,8 @@ function count_common_friends_zcid($uid,$zcid) { if(count($r)) return $r[0]['total']; - return 0; + return 0; } function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = false) { @@ -269,7 +262,6 @@ function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = fal ); return $r; - } @@ -284,8 +276,8 @@ function count_all_friends($uid,$cid) { if(count($r)) return $r[0]['total']; - return 0; + return 0; } @@ -358,9 +350,7 @@ function suggestion_query($uid, $myxchan, $start = 0, $limit = 80) { function update_suggestions() { - $a = get_app(); - - $dirmode = get_config('system','directory_mode'); + $dirmode = get_config('system', 'directory_mode'); if($dirmode === false) $dirmode = DIRECTORY_MODE_NORMAL; @@ -374,8 +364,6 @@ function update_suggestions() { if(! $url) return; - - $ret = z_fetch_url($url); if($ret['success']) { @@ -388,7 +376,6 @@ function update_suggestions() { db_utcnow(), db_quoteinterval('7 DAY') ); - $j = json_decode($ret['body'],true); if($j && $j['success']) { foreach($j['entries'] as $host) { @@ -422,7 +409,6 @@ function poco($a,$extended = false) { $system_mode = true; } - $format = (($_REQUEST['format']) ? $_REQUEST['format'] : 'json'); $justme = false; @@ -437,7 +423,7 @@ function poco($a,$extended = false) { } if(argc() > 4 && intval(argv(4)) && $justme == false) $cid = intval(argv(4)); - + if(! $system_mode) { $r = q("SELECT channel_id from channel where channel_address = '%s' limit 1", @@ -487,8 +473,8 @@ function poco($a,$extended = false) { $startIndex = intval($_GET['startIndex']); if(! $startIndex) $startIndex = 0; - $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults); + $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults); if($system_mode) { $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where ( abook_flags & " . ABOOK_FLAG_SELF . @@ -496,8 +482,7 @@ function poco($a,$extended = false) { intval($itemsPerPage), intval($startIndex) ); - } - else { + } else { $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d $sql_extra LIMIT %d OFFSET %d", intval($channel_id), @@ -525,8 +510,7 @@ function poco($a,$extended = false) { } } - $ret['entry'] = array(); - + $ret['entry'] = array(); $fields_ret = array( 'id' => false, @@ -540,10 +524,10 @@ function poco($a,$extended = false) { 'rating' => false ); - if((! x($_GET,'fields')) || ($_GET['fields'] === '@all')) + if((! x($_GET,'fields')) || ($_GET['fields'] === '@all')) { foreach($fields_ret as $k => $v) $fields_ret[$k] = true; - else { + } else { $fields_req = explode(',',$_GET['fields']); foreach($fields_req as $f) $fields_ret[trim($f)] = true; diff --git a/include/taxonomy.php b/include/taxonomy.php index ef3639067..4333cdf03 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -38,6 +38,7 @@ function term_query($table,$s,$type = TERM_UNKNOWN) { function store_item_tag($uid,$iid,$otype,$type,$term,$url = '') { if(! $term) return false; + $r = q("select * from term where uid = %d and oid = %d and otype = %d and type = %d and term = '%s' and url = '%s' ", @@ -50,6 +51,7 @@ function store_item_tag($uid,$iid,$otype,$type,$term,$url = '') { ); if($r) return false; + $r = q("insert into term (uid, oid, otype, type, term, url) values( %d, %d, %d, %d, '%s', '%s') ", intval($uid), @@ -59,9 +61,11 @@ function store_item_tag($uid,$iid,$otype,$type,$term,$url = '') { dbesc($term), dbesc($url) ); + return $r; } - + + function get_terms_oftype($arr,$type) { $ret = array(); if(! (is_array($arr) && count($arr))) @@ -74,6 +78,7 @@ function get_terms_oftype($arr,$type) { foreach($arr as $x) if($x['type'] == $t) $ret[] = $x; + return $ret; } @@ -99,7 +104,7 @@ function format_term_for_display($term) { function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $type = TERM_HASHTAG) { require_once('include/security.php'); - + if(! perm_is_allowed($uid,get_observer_hash(),'view_stream')) return array(); @@ -112,6 +117,7 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $ if($authors) { if(! is_array($authors)) $authors = array($authors); + stringify_array_elms($authors,true); $sql_options .= " and author_xchan in (" . implode(',',$authors) . ") "; } @@ -131,8 +137,8 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $ if(! $r) return array(); - - // Find minimum and maximum log-count. + + // Find minimum and maximum log-count. $tags = array(); $min = 1e9; $max = -1e9; @@ -158,16 +164,17 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $ return $tags; } + function tags_sort($a,$b) { - if(strtolower($a[0]) == strtolower($b[0])) - return 0; - return((strtolower($a[0]) < strtolower($b[0])) ? -1 : 1); + if(strtolower($a[0]) == strtolower($b[0])) + return 0; + + return((strtolower($a[0]) < strtolower($b[0])) ? -1 : 1); } function dir_tagadelic($count = 0) { - $sql_options = ''; $count = intval($count); // Fetch tags @@ -178,8 +185,8 @@ function dir_tagadelic($count = 0) { if(! $r) return array(); - - // Find minimum and maximum log-count. + + // Find minimum and maximum log-count. $tags = array(); $min = 1e9; $max = -1e9; @@ -207,65 +214,66 @@ function dir_tagadelic($count = 0) { function tagblock($link,$uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$type = TERM_HASHTAG) { - $o = ''; - $tab = 0; - $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); - - if($r) { - $o = '

        ' . t('Tags') . '

        '; - foreach($r as $rr) { - $o .= '#'.$rr[0].' ' . "\r\n"; + $o = ''; + + $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); + + if($r) { + $o = '

        ' . t('Tags') . '

        '; + foreach($r as $rr) { + $o .= '#'.$rr[0].' ' . "\r\n"; + } + $o .= '
        '; } - $o .= '
        '; - } + return $o; } + function wtagblock($uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$type = TERM_HASHTAG) { - $o = ''; - $tab = 0; - $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); + $o = ''; - if($r) { - $c = q("select channel_address from channel where channel_id = %d limit 1", - intval($uid) - ); + $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); - $o = '

        ' . t('Tags') . '

        '; - foreach($r as $rr) { - $o .= '#'.$rr[0].' ' . "\r\n"; + if($r) { + $c = q("select channel_address from channel where channel_id = %d limit 1", + intval($uid) + ); + + $o = '

        ' . t('Tags') . '

        '; + foreach($r as $rr) { + $o .= '#'.$rr[0].' ' . "\r\n"; + } + $o .= '
        '; } - $o .= '
        '; - } + return $o; } function catblock($uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$type = TERM_CATEGORY) { - $o = ''; - $tab = 0; + $o = ''; - $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); + $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); - if($r) { - $c = q("select channel_address from channel where channel_id = %d limit 1", - intval($uid) - ); - - $o = '

        ' . t('Categories') . '

        '; - foreach($r as $rr) { - $o .= ''.$rr[0].' ' . "\r\n"; + if($r) { + $c = q("select channel_address from channel where channel_id = %d limit 1", + intval($uid) + ); + + $o = '

        ' . t('Categories') . '

        '; + foreach($r as $rr) { + $o .= ''.$rr[0].' ' . "\r\n"; + } + $o .= '
        '; } - $o .= '
        '; - } + return $o; } - function dir_tagblock($link,$r) { $o = ''; - $tab = 0; if(! $r) $r = get_app()->data['directory_keywords']; @@ -277,14 +285,12 @@ function dir_tagblock($link,$r) { } $o .= '
        '; } + return $o; } - - - /** * verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person singular, e.g. "Bill wants" * We use the first person form when creating an activity, but the third person for use in activities @@ -292,8 +298,6 @@ function dir_tagblock($link,$r) { * require obj_verbs() to provide full conjugations and specify which form to use in the $_REQUEST params to this module. */ - - function obj_verbs() { $verbs = array( 'has' => array( t('have'), t('has')), @@ -304,26 +308,27 @@ function obj_verbs() { $arr = array('verbs' => $verbs); call_hooks('obj_verbs', $arr); + return $arr['verbs']; } function obj_verb_selector($current = '') { $verbs = obj_verbs(); - $o .= ''; foreach($verbs as $k => $v) { $selected = (($k == $current) ? ' selected="selected" ' : ''); $o .= ''; } $o .= ''; - return $o; + return $o; } function get_things($profile_hash,$uid) { $sql_extra = (($profile_hash) ? " and obj_page = '" . $profile_hash . "' " : ''); - + $r = q("select * from obj left join term on obj_obj = term_hash where term_hash != '' and uid = %d and obj_type = %d $sql_extra order by obj_verb, term", intval($uid), intval(TERM_OBJ_THING) @@ -379,11 +384,11 @@ function get_things($profile_hash,$uid) { for($x = 0; $x < count($l); $x ++) $l[$x]['xchan_url'] = zid($l[$x]['xchan_url']); - + if(! $things[$rr['obj_verb']]) $things[$rr['obj_verb']] = array(); - $things[$rr['obj_verb']][] = array('term' => $rr['term'],'url' => $rr['url'],'img' => $rr['imgurl'], 'profile' => $rr['profile_name'],'term_hash' => $rr['term_hash'], 'likes' => $l,'like_count' => count($l),'like_label' => tt('Like','Likes',count($l),'noun')); + $things[$rr['obj_verb']][] = array('term' => $rr['term'],'url' => $rr['url'],'img' => $rr['imgurl'], 'profile' => $rr['profile_name'],'term_hash' => $rr['term_hash'], 'likes' => $l,'like_count' => count($l),'like_label' => tt('Like','Likes',count($l),'noun')); } $sorted_things = array(); if($things) { @@ -395,6 +400,6 @@ function get_things($profile_hash,$uid) { } } //logger('things: ' . print_r($sorted_things,true)); - return $sorted_things; + return $sorted_things; } \ No newline at end of file -- cgit v1.2.3 From 85f79990af13a2c71aa9c053761de6dbf8f37841 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Mar 2015 15:22:24 -0800 Subject: don't let a zot-finger bring a dead hub back to life unless it's the site we're currently talking to. --- include/zot.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/include/zot.php b/include/zot.php index e1c780742..29513b8c5 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2036,7 +2036,7 @@ function sync_locations($sender,$arr,$absolute = false) { $ret = array(); if($arr['locations']) { - + $xisting = q("select hubloc_id, hubloc_url, hubloc_sitekey from hubloc where hubloc_hash = '%s'", dbesc($sender['hash']) ); @@ -2100,19 +2100,21 @@ function sync_locations($sender,$arr,$absolute = false) { // update connection timestamp if this is the site we're talking to // This only happens when called from import_xchan + $current_site = false; + if(array_key_exists('site',$arr) && $location['url'] == $arr['site']['url']) { q("update hubloc set hubloc_connected = '%s', hubloc_updated = '%s' where hubloc_id = %d", dbesc(datetime_convert()), dbesc(datetime_convert()), intval($r[0]['hubloc_id']) ); + $current_site = true; } - // if it's marked offline/dead, bring it back - // Should we do this? It's basically saying that the channel knows better than - // the directory server if the site is alive. + // If it is the site we're currently talking to, and it's marked offline, + // either we have some bad information - or the thing came back to life. - if($r[0]['hubloc_status'] & HUBLOC_OFFLINE) { + if(($current_site) && ($r[0]['hubloc_status'] & HUBLOC_OFFLINE)) { q("update hubloc set hubloc_status = (hubloc_status & ~%d) where hubloc_id = %d", intval(HUBLOC_OFFLINE), intval($r[0]['hubloc_id']) -- cgit v1.2.3 From 99e4d2362c3e02f7ef593208a365d81254c25156 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Mar 2015 15:54:38 -0800 Subject: I'm going to use the site_update timestamp to indicate whenever we successfully connect with a site. This way we can mark hubs dead on non-directory servers; but we have to wait before implementing this until we have a history of site_update being updated. --- include/zot.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/zot.php b/include/zot.php index 29513b8c5..670583929 100644 --- a/include/zot.php +++ b/include/zot.php @@ -984,6 +984,14 @@ function zot_process_response($hub,$arr,$outq) { logger('zot_process_response: headers: ' . print_r($arr['header'],true), LOGGER_DATA); } + // update the timestamp for this site + + $r = q("update site set site_update = '%s' where site_url = '%s'", + dbesc(datetime_convert()), + dbesc(dirname($hub)) + ); + + // synchronous message types are handled immediately // async messages remain in the queue until processed. @@ -2585,6 +2593,13 @@ function import_site($arr,$pubkey) { logger('import_site: update failed. ' . print_r($arr,true)); } } + else { + // update the timestamp to indicate we communicated with this site + q("update site set site_update = '%s' where site_url = '%s'", + dbesc(datetime_convert()), + dbesc($url) + ); + } } else { $update = true; -- cgit v1.2.3 From 6d92ac7e58cc3fc65b5452c962c1af12d82a1b13 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Mar 2015 16:00:24 -0800 Subject: enable sql_extra on pdl_selector --- include/comanche.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/comanche.php b/include/comanche.php index 9db375c38..e8d3ca5a1 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -18,9 +18,9 @@ require_once('include/widgets.php'); function pdl_selector($uid, $current="") { $o = ''; - //$sql_extra = item_permissions_sql($uid); + $sql_extra = item_permissions_sql($uid); - $r = q("select item_id.*, mid from item_id left join item on iid = item.id where item_id.uid = %d and item_id.uid = item.uid and service = 'PDL' order by sid asc", + $r = q("select item_id.*, mid from item_id left join item on iid = item.id where item_id.uid = %d and item_id.uid = item.uid and service = 'PDL' $sql_extra order by sid asc", intval($uid) ); -- cgit v1.2.3 From df90677f900a1a6ed496628545a8e109700e168b Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Mar 2015 17:43:13 -0800 Subject: add the tag hijacking preference to Diaspora settings --- mod/settings.php | 8 +++++++- view/css/mod_settings.css | 4 ++-- view/tpl/settings_addons.tpl | 9 ++++++++- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 3205797bb..71ca38d91 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -117,6 +117,7 @@ function settings_post(&$a) { if($_POST['dspr-submit']) { set_pconfig(local_channel(),'system','diaspora_public_comments',intval($_POST['dspr_pubcomment'])); + set_pconfig(local_channel(),'system','prevent_tag_hijacking',intval($_POST['dspr_hijack'])); info( t('Diaspora Policy Settings updated.') . EOL); } @@ -666,6 +667,9 @@ function settings_content(&$a) { $pubcomments = get_pconfig(local_channel(),'system','diaspora_public_comments'); if($pubcomments === false) $pubcomments = 1; + $hijacking = get_pconfig(local_channel(),'system','prevent_tag_hijacking'); + + } call_hooks('feature_settings', $settings_addons); @@ -673,11 +677,13 @@ function settings_content(&$a) { $tpl = get_markup_template("settings_addons.tpl"); $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_featured"), - '$title' => t('Feature Settings'), + '$title' => t('Feature/Addon Settings'), '$diaspora_enabled' => $diaspora_enabled, '$pubcomments' => $pubcomments, '$dsprtitle' => t('Diaspora Policy Settings'), '$dsprhelp' => t('Allow any Diaspora member to comment on your public posts.'), + '$dsprhijack' => t('Prevent hashtags from being redirected to other sites'), + '$hijacking' => $hijacking, '$dsprsubmit' => t('Submit Diaspora Policy Settings'), '$settings_addons' => $settings_addons )); diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index 6af091c8f..2dcd7d2d8 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -1,10 +1,10 @@ -#dspr-pubcomment-label { +#dspr-pubcomment-label, #dspr-hijack-label { float: left; width: 350px; margin-bottom: 25px; } -#dspr-pubcomment-checkbox { +#dspr-pubcomment-checkbox, #dspr-hijack-checkbox { float: left; } diff --git a/view/tpl/settings_addons.tpl b/view/tpl/settings_addons.tpl index a18f57658..a41f4802b 100755 --- a/view/tpl/settings_addons.tpl +++ b/view/tpl/settings_addons.tpl @@ -11,7 +11,14 @@
        -
        +
        + + +
        +
        + + +
        {{/if}} {{$settings_addons}} -- cgit v1.2.3 From 6d30abe4bf4a92961f103f1ae899a2ef49a6d607 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 09:54:33 +0100 Subject: Accordionize feature settings --- view/theme/redbasic/css/style.css | 2 ++ view/tpl/settings_features.tpl | 49 +++++++++++++++++++++++---------------- 2 files changed, 31 insertions(+), 20 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 787deb6ea..87e12a9b3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1938,6 +1938,8 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ color: #31708f; background-color: #d9edf7; margin-bottom: 3px; + border-radius: $radiuspx; + text-align: center; } .section-content-wrapper { padding: 7px 10px; diff --git a/view/tpl/settings_features.tpl b/view/tpl/settings_features.tpl index 3ede4c76d..75eb34fb9 100755 --- a/view/tpl/settings_features.tpl +++ b/view/tpl/settings_features.tpl @@ -1,21 +1,30 @@ -
        -

        {{$title}}

        - - -
        - - -{{foreach $features as $f}} -

        {{$f.0}}

        - -{{foreach $f.1 as $fcat}} - {{include file="field_checkbox.tpl" field=$fcat}} -{{/foreach}} -{{/foreach}} - -
        - -
        - -
        +
        +
        +

        {{$title}}

        +
        +
        + +
        + {{foreach $features as $g => $f}} +
        + +
        +
        + {{foreach $f.1 as $fcat}} + {{include file="field_checkbox.tpl" field=$fcat}} + {{/foreach}} +
        + +
        +
        +
        +
        + {{/foreach}} +
        -- cgit v1.2.3 From 4b08ccd873a02dcbcd8603f4b8681de47776e31f Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 10:11:48 +0100 Subject: clean up account settings --- mod/settings.php | 5 ++--- view/tpl/settings_account.tpl | 44 ++++++++++++++++++------------------------- 2 files changed, 20 insertions(+), 29 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 71ca38d91..a40a1deca 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -708,9 +708,8 @@ function settings_content(&$a) { $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_account"), '$title' => t('Account Settings'), - '$h_pass' => t('Password Settings'), - '$password1'=> array('npassword', t('New Password:'), '', ''), - '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')), + '$password1'=> array('npassword', t('Enter New Password:'), '', ''), + '$password2'=> array('confirm', t('Confirm New Password:'), '', t('Leave password fields blank unless changing')), '$submit' => t('Submit'), '$email' => array('email', t('Email Address:'), $email, ''), '$removeme' => t('Remove Account'), diff --git a/view/tpl/settings_account.tpl b/view/tpl/settings_account.tpl index 36bb494d8..5f1f9c9b1 100755 --- a/view/tpl/settings_account.tpl +++ b/view/tpl/settings_account.tpl @@ -1,28 +1,20 @@ -
        -

        {{$title}}

        - - - - - -{{include file="field_input.tpl" field=$email}} - - -

        {{$h_pass}}

        - -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} - - -
        - +
        +
        +  {{$removeme}} +

        {{$title}}

        +
        +
        + + +
        + {{include file="field_input.tpl" field=$email}} + {{include file="field_password.tpl" field=$password1}} + {{include file="field_password.tpl" field=$password2}} +
        + +
        + {{$account_settings}} +
        +
        -{{$account_settings}} - - -
        -- cgit v1.2.3 From 64e7c8b20f241f7f63ad78c23fdf872f3422d561 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 01:26:02 -0800 Subject: notes on what's needed to fix the queueing algorithms. --- include/queue.php | 8 ++++++++ version.inc | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/include/queue.php b/include/queue.php index b6a540ef9..8e97b4a1a 100644 --- a/include/queue.php +++ b/include/queue.php @@ -39,6 +39,14 @@ function queue_run($argv, $argc){ // so that we don't start off a thousand deliveries for a couple of dead hubs. // The zot driver will deliver everything destined for a single hub once contact is made (*if* contact is made). // Other drivers will have to do something different here and may need their own query. + + // Note: this requires some tweaking as new posts to long dead hubs once a day will keep them in the + // "every 15 minutes" category. We probably need to prioritise them when inserted into the queue + // or just prior to this query based on recent and long-term delivery history. If we have good reason to believe + // the site is permanently down, there's no reason to attempt delivery at all, or at most not more than once + // or twice a day. + + if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { $prefix = 'DISTINCT ON (outq_posturl)'; $suffix = 'ORDER BY outq_posturl'; diff --git a/version.inc b/version.inc index 8dd1bb24f..2bdb6992f 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-03.960 +2015-03-04.961 -- cgit v1.2.3 From eceafd5777c2b2c15d5db93e0a11bbeb328142e2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 10:26:25 +0100 Subject: fix wording --- mod/settings.php | 7 +++---- view/tpl/settings.tpl | 2 +- view/tpl/settings_account.tpl | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index a40a1deca..6b1e5ab0a 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -713,8 +713,7 @@ function settings_content(&$a) { '$submit' => t('Submit'), '$email' => array('email', t('Email Address:'), $email, ''), '$removeme' => t('Remove Account'), - '$removeaccount' => t('Remove this account from this server including all its channels'), - '$permanent' => t('Warning: This action is permanent and cannot be reversed.'), + '$removeaccount' => t('Remove this account including all its channels'), '$account_settings' => $account_settings )); return $o; @@ -1129,8 +1128,8 @@ function settings_content(&$a) { '$lbl_misc' => t('Miscellaneous Settings'), '$menus' => $menu, '$menu_desc' => t('Personal menu to display in your channel pages'), - '$removeme' => t('Remove this channel'), - '$permanent' => t('Warning: This action is permanent and cannot be reversed.'), + '$removeme' => t('Remove Channel'), + '$removechannel' => t('Remove this channel.'), )); call_hooks('settings_form',$o); diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 6ad23b007..eb497bbb5 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -1,6 +1,6 @@
        diff --git a/view/tpl/settings_account.tpl b/view/tpl/settings_account.tpl index 5f1f9c9b1..9f550fe4a 100755 --- a/view/tpl/settings_account.tpl +++ b/view/tpl/settings_account.tpl @@ -1,6 +1,6 @@
        -- cgit v1.2.3 From 431a462d60af173592cf6a046dc2280a07484402 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 11:01:16 +0100 Subject: cleanup removeme --- mod/removeme.php | 8 +++++--- view/theme/redbasic/css/style.css | 10 ++++++++++ view/tpl/removeme.tpl | 38 ++++++++++++++++++-------------------- 3 files changed, 33 insertions(+), 23 deletions(-) diff --git a/mod/removeme.php b/mod/removeme.php index 492738b77..52145d639 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -9,6 +9,7 @@ function removeme_post(&$a) { return; if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) + notice( t('Password not correct.') . EOL); return; if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) @@ -21,6 +22,7 @@ function removeme_post(&$a) { $account = $a->get_account(); if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) + notice( t('Password not correct.') . EOL); return; if($account['account_password_changed'] != NULL_DATE) { @@ -55,12 +57,12 @@ function removeme_content(&$a) { '$basedir' => $a->get_baseurl(), '$hash' => $hash, '$title' => t('Remove This Channel'), - '$desc' => t('This will completely remove this channel from the network. Once this has been done it is not recoverable.'), + '$desc' => array(t('WARNING: '), t('This channel will be completely removed from the network. '), t('This action is permanent and can not be undone!')), '$passwd' => t('Please enter your password for verification:'), - '$global' => array('global', t('Remove this channel and all its clones from the network'), false, t('By default only the instance of the channel located on this hub will be removed from the network')), + '$global' => array('global', t('Remove this channel and all its clones from the network'), false, t('By default only the instance of the channel located on this hub will be removed from the network'), array(t('No'),t('Yes'))), '$submit' => t('Remove Channel') )); return $o; -} \ No newline at end of file +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 87e12a9b3..e00fee521 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1941,6 +1941,16 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ border-radius: $radiuspx; text-align: center; } + +.section-content-danger-wrapper { + padding: 21px 10px; + color: #a94442; + background-color: #f2dede; + margin-bottom: 3px; + border-radius: $radiuspx; + text-align: center; +} + .section-content-wrapper { padding: 7px 10px; background-color: $comment_item_colour; diff --git a/view/tpl/removeme.tpl b/view/tpl/removeme.tpl index c42eaf0e1..5b329dd6d 100755 --- a/view/tpl/removeme.tpl +++ b/view/tpl/removeme.tpl @@ -1,22 +1,20 @@ -

        {{$title}}

        - -
        - -
        {{$desc}}
        - -
        - - -
        - - -
        -
        - -{{include file="field_checkbox.tpl" field=$global}} - - - -
        +
        +
        +

        {{$title}}

        +
        +
        + {{$desc.0}}{{$desc.1}}{{$desc.2}} +
        +
        +
        + +
        + + +
        + {{include file="field_checkbox.tpl" field=$global}} + +
        +
        -- cgit v1.2.3 From e5e96dfbffd48b3d6b527e539e300a5091e7a19c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 11:11:36 +0100 Subject: cleanup removeaccount --- mod/removeaccount.php | 6 ++++-- view/tpl/removeaccount.tpl | 38 ++++++++++++++++++-------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/mod/removeaccount.php b/mod/removeaccount.php index 18aaa2517..4505bbea0 100644 --- a/mod/removeaccount.php +++ b/mod/removeaccount.php @@ -9,6 +9,7 @@ function removeaccount_post(&$a) { return; if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) + notice( t('Password not correct.') . EOL); return; if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) @@ -22,6 +23,7 @@ function removeaccount_post(&$a) { $account_id = get_account_id(); if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) + notice( t('Password not correct.') . EOL); return; if($account['account_password_changed'] != NULL_DATE) { @@ -55,7 +57,7 @@ function removeaccount_content(&$a) { '$basedir' => $a->get_baseurl(), '$hash' => $hash, '$title' => t('Remove This Account'), - '$desc' => t('This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable.'), + '$desc' => array(t('WARNING: '), t('This account and all its channels will be completely removed from the network. '), t('This action is permanent and can not be undone!')), '$passwd' => t('Please enter your password for verification:'), '$global' => array('global', t('Remove this account, all its channels and all its channel clones from the network'), false, t('By default only the instances of the channels located on this hub will be removed from the network')), '$submit' => t('Remove Account') @@ -63,4 +65,4 @@ function removeaccount_content(&$a) { return $o; -} \ No newline at end of file +} diff --git a/view/tpl/removeaccount.tpl b/view/tpl/removeaccount.tpl index b7378806b..aefcd51a8 100644 --- a/view/tpl/removeaccount.tpl +++ b/view/tpl/removeaccount.tpl @@ -1,22 +1,20 @@ -

        {{$title}}

        - -
        - -
        {{$desc}}
        - -
        - - -
        - - -
        -
        - -{{include file="field_checkbox.tpl" field=$global}} - - - -
        +
        +
        +

        {{$title}}

        +
        +
        + {{$desc.0}}{{$desc.1}}{{$desc.2}} +
        +
        +
        + +
        + + +
        + {{include file="field_checkbox.tpl" field=$global}} + +
        +
        -- cgit v1.2.3 From fb0f823be7142b715285ed8a2d18b98c240a630b Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 02:32:59 -0800 Subject: provide a list of potential addons and what they do for members who can't see the descriptions on the admin/plugins page Not all of these are in red-addons repository, please add any that haven't been listed. We should probably provide a list of addon repositories at the end. --- doc/addons.bb | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- mod/settings.php | 3 ++- 2 files changed, 59 insertions(+), 2 deletions(-) diff --git a/doc/addons.bb b/doc/addons.bb index 726b437ed..542d0075c 100644 --- a/doc/addons.bb +++ b/doc/addons.bb @@ -1,4 +1,60 @@ -* [zrl=[baseurl]/help/addons_gnusocial]Posting To Gnu Social[/zrl] +[h3]Plugins/Addons[/h3] +[list=1] +[*] abcjsplugin - Create musical scores in your posts +[*] bbmath - use complex math expressions in your posts +[*] bookmarker - replace #^ with bookmark link in posts +[*] buglink - provide a bug reporting icon in the lower-left corner of every page +[*] calc - a scientific calculator +[*] chords - generate fingering charts and alternatives for every known guitar chord +[*] custom_home - set a custom page as the hub start page +[*] diaspora - crosspost to a Diaspora account (different from the built-in Diaspora emulator) +[*] dirstats - show some interesting statistics generated by the driectory server +[*] donate - provides a project donation page +[*] dwpost - crosspost to Dreamwidth +[*] embedly - use the embedly (formerly ooehmbed) service to embed media from many providers +[*] extcron - use an external cron service to run your hub's scheduled tasks +[*] flattr - provides a "Flattr Us" button +[*] fortunate - displays random quote (fortune cookie). Requires setting up a fortune server. +[*] frphotos - import photo albums from Friendica +[*] hexit - headecimal conversion tool +[*] ijpost - crosspost to Insanejournal +[*] irc - connect to IRC chatrooms +[*] jappixmini - XMPP chat +[*] libertree - crosspost to Libertree +[*] likebanner - create a "like us on red#matrix" banner image +[*] ljpost - crosspost to LiveJournal +[*] mahjongg - Chinese puzzle game +[*] mailhost - when using multiple channel clones, select one to receive email notifications +[*] mayan_places - set location field to a random city in the Mayan world +[*] morechoice - additional gender/sexual-preference choices for profiles (not safe for work) +[*] moremoods - Additional mood options +[*] morepokes - additional poke options (not safe for work) +[*] nsabait - add random terrorism related hashtags to your posts +[*] nsfw - Highly recommended plugin to collpase posts with inappropriate content +[*] openclipatar - choose a profile photo from hundreds of royalty free images +[*] openstreetmap - render locations and maps using OpenStreetMap +[*] piwik - open source website analytics +[*] planets - set location field to a random planet from Star Wars +[*] pumpio - crosspost to Pump.io +[*] qrator - generate QR code images +[*] rainbowtag - display your tag and category clouds in colours +[*] randpost - post/reply bot based on and requires fortunate +[*] redred - Crosspost to another Redmatrix channel +[*] rtof - Crosspost to Friendica +[*] smiley_pack - extend the built-in smilie (emoticon) support +[*] smileybutton - provides a smiley selector on the post window +[*] startpage - set a personal preferred page to redirect after logging in. +[*] statusnet - GNU-social and StatusNet crosspost [zrl=[baseurl]/help/addons_gnusocial]Posting To Gnu Social[/zrl] +[*] superblock - Highly recommended - completely block an offensive channel from your stream +[*] tictac - 3D tic-tac-toe +[*] torch - flashlight app +[*] tour - feature tour for new red#matrix members +[*] twitter - crosspost to Twitter +[*] upload_limits - discover what server setting (there are a few) may be causing large photo uploads to fail +[*] visage - show visitors to your channel +[*] webRTC - use an external server (mayfirst.org) to negotiate webRTC hookups +[*] wppost - crosspost to WordPress (or other wordpress XMLRPC service) +[/list] #include doc/macros/main_footer.bb; diff --git a/mod/settings.php b/mod/settings.php index 6b1e5ab0a..7ee2dba9e 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -679,10 +679,11 @@ function settings_content(&$a) { '$form_security_token' => get_form_security_token("settings_featured"), '$title' => t('Feature/Addon Settings'), '$diaspora_enabled' => $diaspora_enabled, + '$dsprdesc' => t('Settings for the built-in Diaspora emulator'), '$pubcomments' => $pubcomments, '$dsprtitle' => t('Diaspora Policy Settings'), '$dsprhelp' => t('Allow any Diaspora member to comment on your public posts.'), - '$dsprhijack' => t('Prevent hashtags from being redirected to other sites'), + '$dsprhijack' => t('Prevent your hashtags from being redirected to other sites'), '$hijacking' => $hijacking, '$dsprsubmit' => t('Submit Diaspora Policy Settings'), '$settings_addons' => $settings_addons -- cgit v1.2.3 From da6eecd03111660ae12221265986ba4b10b155dd Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Wed, 4 Mar 2015 10:15:16 +0100 Subject: remove Doxygen API Documentation from repository. This removes around 14MB and can get easily generate locally by doxygen util/Doxyfile when needed. Restructured .gitignore a bit and some additions like zotshrc, etc. Fixed a typo in doc/main.bb --- .gitignore | 88 +- doc/html/BS-Default_8php.html | 112 - doc/html/BaseObject_8php.html | 120 - doc/html/Contact_8php.html | 532 -- doc/html/Contact_8php.js | 19 - doc/html/ConversationObject_8php.html | 120 - doc/html/ITemplateEngine_8php.html | 120 - doc/html/Importer_8php.html | 129 - doc/html/ItemObject_8php.html | 120 - doc/html/ProtoDriver_8php.html | 122 - doc/html/README_8md.html | 112 - doc/html/RedBasicAuth_8php.html | 127 - doc/html/RedBrowser_8php.html | 127 - doc/html/RedDirectory_8php.html | 127 - doc/html/RedFile_8php.html | 127 - doc/html/Scrape_8php.html | 171 - doc/html/Scrape_8php.js | 5 - doc/html/____init_____8py.html | 126 - doc/html/____init_____8py.js | 4 - doc/html/____version_____8py.html | 126 - doc/html/____version_____8py.js | 4 - doc/html/__well__known_8php.html | 137 - doc/html/__well__known_8php.js | 4 - doc/html/account_8php.html | 579 -- doc/html/account_8php.js | 23 - doc/html/achievements_8php.html | 137 - doc/html/achievements_8php.js | 4 - doc/html/acl_8php.html | 157 - doc/html/acl_8php.js | 5 - doc/html/acl__selectors_8php.html | 279 - doc/html/acl__selectors_8php.js | 7 - doc/html/activities_8php.html | 149 - doc/html/activities_8php.js | 4 - doc/html/admin_8php.html | 704 --- doc/html/admin_8php.js | 25 - doc/html/allfriends_8php.html | 137 - doc/html/allfriends_8php.js | 4 - doc/html/annotated.html | 162 - doc/html/annotated.js | 32 - doc/html/appman_8php.html | 155 - doc/html/appman_8php.js | 5 - doc/html/apps_8php.html | 137 - doc/html/apps_8php.js | 4 - doc/html/apw_2README_8md.html | 112 - doc/html/apw_2php_2style_8php.html | 281 - doc/html/apw_2php_2style_8php.js | 14 - doc/html/apw_2php_2theme_8php.html | 137 - doc/html/apw_2php_2theme_8php.js | 4 - doc/html/auth_8php.html | 287 - doc/html/auth_8php.js | 8 - doc/html/bb2diaspora_8php.html | 476 -- doc/html/bb2diaspora_8php.js | 18 - doc/html/bbcode_8php.html | 511 -- doc/html/bbcode_8php.js | 23 - doc/html/bc_s.png | Bin 676 -> 0 bytes doc/html/bdwn.png | Bin 147 -> 0 bytes doc/html/block_8php.html | 155 - doc/html/block_8php.js | 5 - doc/html/blocks_8php.html | 155 - doc/html/blocks_8php.js | 5 - doc/html/blogga_2php_2README_8md.html | 112 - doc/html/blogga_2php_2theme_8php.html | 138 - doc/html/blogga_2php_2theme_8php.js | 4 - .../blogga_2view_2theme_2blog_2theme_8php.html | 220 - doc/html/blogga_2view_2theme_2blog_2theme_8php.js | 8 - doc/html/boot_8php.html | 5745 -------------------- doc/html/boot_8php.js | 332 -- doc/html/boxy_8php.html | 112 - doc/html/cache_8php.html | 120 - doc/html/chanman_8php.html | 137 - doc/html/chanman_8php.js | 4 - doc/html/channel_8php.html | 175 - doc/html/channel_8php.js | 5 - doc/html/chanview_8php.html | 137 - doc/html/chanview_8php.js | 4 - doc/html/chatsvc_8php.html | 173 - doc/html/chatsvc_8php.js | 6 - doc/html/choklet_8php.html | 112 - doc/html/classApp-members.html | 204 - doc/html/classApp.html | 1654 ------ doc/html/classApp.js | 90 - doc/html/classBaseObject-members.html | 120 - doc/html/classBaseObject.html | 221 - doc/html/classBaseObject.js | 4 - doc/html/classBaseObject.png | Bin 625 -> 0 bytes doc/html/classCache-members.html | 120 - doc/html/classCache.html | 218 - doc/html/classConversation-members.html | 141 - doc/html/classConversation.html | 646 --- doc/html/classConversation.js | 25 - doc/html/classConversation.png | Bin 436 -> 0 bytes doc/html/classFKOAuth1-members.html | 119 - doc/html/classFKOAuth1.html | 169 - doc/html/classFKOAuth1.js | 5 - doc/html/classFKOAuth1.png | Bin 433 -> 0 bytes doc/html/classFKOAuthDataStore-members.html | 123 - doc/html/classFKOAuthDataStore.html | 306 -- doc/html/classFKOAuthDataStore.js | 9 - doc/html/classFKOAuthDataStore.png | Bin 560 -> 0 bytes doc/html/classFriendicaSmarty-members.html | 120 - doc/html/classFriendicaSmarty.html | 188 - doc/html/classFriendicaSmarty.js | 6 - doc/html/classFriendicaSmarty.png | Bin 487 -> 0 bytes doc/html/classFriendicaSmartyEngine-members.html | 122 - doc/html/classFriendicaSmartyEngine.html | 267 - doc/html/classFriendicaSmartyEngine.js | 7 - doc/html/classFriendicaSmartyEngine.png | Bin 647 -> 0 bytes doc/html/classItem-members.html | 169 - doc/html/classItem.html | 1330 ----- doc/html/classItem.js | 53 - doc/html/classItem.png | Bin 391 -> 0 bytes doc/html/classPhoto-members.html | 145 - doc/html/classPhoto.html | 826 --- doc/html/classPhoto.js | 30 - doc/html/classProtoDriver-members.html | 124 - doc/html/classProtoDriver.html | 410 -- doc/html/classProtoDriver.js | 10 - doc/html/classProtoDriver.png | Bin 428 -> 0 bytes doc/html/classRedBasicAuth-members.html | 133 - doc/html/classRedBasicAuth.html | 516 -- doc/html/classRedBasicAuth.js | 19 - doc/html/classRedBasicAuth.png | Bin 485 -> 0 bytes doc/html/classRedBrowser-members.html | 126 - doc/html/classRedBrowser.html | 395 -- doc/html/classRedBrowser.js | 12 - doc/html/classRedBrowser.png | Bin 418 -> 0 bytes doc/html/classRedDirectory-members.html | 135 - doc/html/classRedDirectory.html | 641 --- doc/html/classRedDirectory.js | 21 - doc/html/classRedDirectory.png | Bin 1136 -> 0 bytes doc/html/classRedFile-members.html | 130 - doc/html/classRedFile.html | 474 -- doc/html/classRedFile.js | 16 - doc/html/classRedFile.png | Bin 457 -> 0 bytes doc/html/classRedInode-members.html | 123 - doc/html/classRedInode.html | 251 - doc/html/classRedInode.js | 9 - doc/html/classRedInode.png | Bin 354 -> 0 bytes ...classRedMatrix_1_1Import_1_1Import-members.html | 132 - doc/html/classRedMatrix_1_1Import_1_1Import.html | 447 -- doc/html/classRedMatrix_1_1Import_1_1Import.js | 18 - ...edMatrix_1_1RedDAV_1_1RedBasicAuth-members.html | 133 - .../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html | 519 -- .../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.js | 19 - .../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.png | Bin 957 -> 0 bytes ...sRedMatrix_1_1RedDAV_1_1RedBrowser-members.html | 125 - .../classRedMatrix_1_1RedDAV_1_1RedBrowser.html | 421 -- doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js | 11 - .../classRedMatrix_1_1RedDAV_1_1RedBrowser.png | Bin 876 -> 0 bytes ...edMatrix_1_1RedDAV_1_1RedDirectory-members.html | 135 - .../classRedMatrix_1_1RedDAV_1_1RedDirectory.html | 642 --- .../classRedMatrix_1_1RedDAV_1_1RedDirectory.js | 21 - .../classRedMatrix_1_1RedDAV_1_1RedDirectory.png | Bin 1601 -> 0 bytes ...lassRedMatrix_1_1RedDAV_1_1RedFile-members.html | 130 - doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.html | 479 -- doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.js | 16 - doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.png | Bin 1155 -> 0 bytes doc/html/classRedmatrix_1_1Import_1_1Import.html | 446 -- doc/html/classTemplate-members.html | 142 - doc/html/classTemplate.html | 742 --- doc/html/classTemplate.js | 27 - doc/html/classTemplate.png | Bin 489 -> 0 bytes doc/html/classZotDriver-members.html | 124 - doc/html/classZotDriver.html | 425 -- doc/html/classZotDriver.js | 10 - doc/html/classZotDriver.png | Bin 420 -> 0 bytes doc/html/classdba-members.html | 128 - doc/html/classdba.html | 363 -- doc/html/classdba.js | 14 - doc/html/classdba__driver-members.html | 141 - doc/html/classdba__driver.html | 764 --- doc/html/classdba__driver.js | 27 - doc/html/classdba__driver.png | Bin 823 -> 0 bytes doc/html/classdba__mysql-members.html | 141 - doc/html/classdba__mysql.html | 310 -- doc/html/classdba__mysql.js | 8 - doc/html/classdba__mysql.png | Bin 443 -> 0 bytes doc/html/classdba__mysqli-members.html | 141 - doc/html/classdba__mysqli.html | 310 -- doc/html/classdba__mysqli.js | 8 - doc/html/classdba__mysqli.png | Bin 441 -> 0 bytes doc/html/classdba__postgres-members.html | 142 - doc/html/classdba__postgres.html | 477 -- doc/html/classdba__postgres.js | 17 - doc/html/classdba__postgres.png | Bin 460 -> 0 bytes ...lasseasywebdav_1_1client_1_1Client-members.html | 134 - doc/html/classeasywebdav_1_1client_1_1Client.html | 737 --- doc/html/classeasywebdav_1_1client_1_1Client.js | 20 - doc/html/classeasywebdav_1_1client_1_1Client.png | Bin 559 -> 0 bytes ...sseasywebdav_1_1client_1_1ConnectionFailed.html | 126 - ...asseasywebdav_1_1client_1_1ConnectionFailed.png | Bin 1063 -> 0 bytes ...ebdav_1_1client_1_1OperationFailed-members.html | 124 - ...asseasywebdav_1_1client_1_1OperationFailed.html | 289 - ...classeasywebdav_1_1client_1_1OperationFailed.js | 9 - ...lasseasywebdav_1_1client_1_1OperationFailed.png | Bin 1073 -> 0 bytes ...asseasywebdav_1_1client_1_1WebdavException.html | 127 - ...lasseasywebdav_1_1client_1_1WebdavException.png | Bin 1518 -> 0 bytes doc/html/classenotify-members.html | 118 - doc/html/classenotify.html | 167 - doc/html/classes.html | 146 - doc/html/classphoto__driver-members.html | 147 - doc/html/classphoto__driver.html | 945 ---- doc/html/classphoto__driver.js | 33 - doc/html/classphoto__driver.png | Bin 652 -> 0 bytes doc/html/classphoto__gd-members.html | 147 - doc/html/classphoto__gd.html | 434 -- doc/html/classphoto__gd.js | 13 - doc/html/classphoto__gd.png | Bin 431 -> 0 bytes doc/html/classphoto__imagick-members.html | 148 - doc/html/classphoto__imagick.html | 461 -- doc/html/classphoto__imagick.js | 14 - doc/html/classphoto__imagick.png | Bin 483 -> 0 bytes doc/html/classzotsh_1_1CommandNotFound.html | 125 - doc/html/classzotsh_1_1CommandNotFound.png | Bin 584 -> 0 bytes doc/html/classzotsh_1_1ZotSH-members.html | 151 - doc/html/classzotsh_1_1ZotSH.html | 1005 ---- doc/html/classzotsh_1_1ZotSH.js | 36 - doc/html/classzotsh_1_1ZotSH.png | Bin 418 -> 0 bytes doc/html/cli__startup_8php.html | 138 - doc/html/cli__startup_8php.js | 4 - doc/html/cli__suggest_8php.html | 147 - doc/html/cli__suggest_8php.js | 4 - doc/html/client_8py.html | 150 - doc/html/client_8py.js | 12 - doc/html/closed.png | Bin 132 -> 0 bytes doc/html/cloud_8php.html | 154 - doc/html/cloud_8php.js | 4 - doc/html/comanche_8php.html | 373 -- doc/html/comanche_8php.js | 13 - doc/html/common_8php.html | 155 - doc/html/common_8php.js | 5 - doc/html/community_8php.html | 167 - doc/html/community_8php.js | 5 - doc/html/config_8md.html | 112 - doc/html/connect_8php.html | 173 - doc/html/connect_8php.js | 6 - doc/html/connections_8php.html | 193 - doc/html/connections_8php.js | 7 - doc/html/connedit_8php.html | 193 - doc/html/connedit_8php.js | 7 - doc/html/contact__selectors_8php.html | 189 - doc/html/contact__selectors_8php.js | 6 - doc/html/contact__widgets_8php.html | 216 - doc/html/contact__widgets_8php.js | 7 - doc/html/contactgroup_8php.html | 137 - doc/html/contactgroup_8php.js | 4 - doc/html/conversation_8php.html | 849 --- doc/html/conversation_8php.js | 29 - doc/html/crepair_8php.html | 173 - doc/html/crepair_8php.js | 6 - doc/html/cronhooks_8php.html | 147 - doc/html/cronhooks_8php.js | 4 - doc/html/crypto_8php.html | 823 --- doc/html/crypto_8php.js | 27 - doc/html/dark_8php.html | 112 - doc/html/darkness_8php.html | 112 - doc/html/darknessleftaside_8php.html | 112 - doc/html/darknessrightaside_8php.html | 112 - doc/html/datetime_8php.html | 653 --- doc/html/datetime_8php.js | 17 - doc/html/dav_8php.html | 154 - doc/html/dav_8php.js | 4 - doc/html/db__update_8php.html | 120 - doc/html/db__update_8php.js | 7 - doc/html/dba_8php.html | 112 - doc/html/dba_8php.js | 11 - doc/html/dba__driver_8php.html | 584 -- doc/html/dba__driver_8php.js | 21 - doc/html/dba__mysql_8php.html | 120 - doc/html/dba__mysqli_8php.html | 120 - doc/html/dba__postgres_8php.html | 120 - doc/html/default_8php.html | 133 - doc/html/default_8php.js | 4 - doc/html/delegate_8php.html | 137 - doc/html/delegate_8php.js | 4 - doc/html/deliver_8php.html | 147 - doc/html/deliver_8php.js | 4 - doc/html/deprecated.html | 112 - doc/html/diaspora_8php.html | 1277 ----- doc/html/diaspora_8php.js | 37 - doc/html/dimport_8php.html | 136 - doc/html/dimport_8php.js | 4 - doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html | 112 - doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js | 4 - doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html | 118 - doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js | 7 - doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html | 132 - doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js | 14 - doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html | 112 - doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js | 4 - doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html | 112 - doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js | 4 - doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.html | 112 - doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.js | 4 - doc/html/dir_172e021ddcd8632dc2b797c4a4961924.html | 114 - doc/html/dir_172e021ddcd8632dc2b797c4a4961924.js | 5 - doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html | 119 - doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js | 13 - doc/html/dir_2222f31d7a61e527af3624100548cf57.html | 112 - doc/html/dir_2222f31d7a61e527af3624100548cf57.js | 4 - doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html | 137 - doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js | 15 - doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.html | 112 - doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.js | 4 - doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.html | 112 - doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.js | 4 - doc/html/dir_2b01166339035d109f34f44565eac444.html | 112 - doc/html/dir_2b01166339035d109f34f44565eac444.js | 4 - doc/html/dir_3b9797c0babe758cd341aa12c993dd83.html | 114 - doc/html/dir_3b9797c0babe758cd341aa12c993dd83.js | 5 - doc/html/dir_3ce0e055da4865b813ea0aa230224599.html | 114 - doc/html/dir_3ce0e055da4865b813ea0aa230224599.js | 5 - doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html | 124 - doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js | 10 - doc/html/dir_3de62e6fc7b5905e890806571f832581.html | 112 - doc/html/dir_3de62e6fc7b5905e890806571f832581.js | 4 - doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.html | 114 - doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.js | 5 - doc/html/dir_4acb285a1960a920438b718da0958cf4.html | 112 - doc/html/dir_4acb285a1960a920438b718da0958cf4.js | 4 - doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html | 114 - doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js | 5 - doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.html | 114 - doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.js | 5 - doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.html | 112 - doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.js | 4 - doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html | 114 - doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js | 5 - doc/html/dir_6b44a0e797e2f12381093380e3e54763.html | 120 - doc/html/dir_6b44a0e797e2f12381093380e3e54763.js | 8 - doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html | 112 - doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.js | 4 - doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html | 112 - doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js | 4 - doc/html/dir_720432dea4a717197ae070dbc42b8f20.html | 112 - doc/html/dir_720432dea4a717197ae070dbc42b8f20.js | 4 - doc/html/dir_73186942b3defcab180a242f911ab570.html | 112 - doc/html/dir_73186942b3defcab180a242f911ab570.js | 4 - doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html | 114 - doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.js | 5 - doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html | 114 - doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js | 7 - doc/html/dir_80b621040c90c64e1a3ba8df441fb198.html | 114 - doc/html/dir_80b621040c90c64e1a3ba8df441fb198.js | 5 - doc/html/dir_817f6d302394b98e59575acdb59998bc.html | 126 - doc/html/dir_817f6d302394b98e59575acdb59998bc.js | 11 - doc/html/dir_84d42485a570ed49b44a03b64f62adcc.html | 112 - doc/html/dir_84d42485a570ed49b44a03b64f62adcc.js | 4 - doc/html/dir_8543001e5d25368a6edede3e63efb554.html | 116 - doc/html/dir_8543001e5d25368a6edede3e63efb554.js | 6 - doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.html | 112 - doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.js | 4 - doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.html | 116 - doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.js | 6 - doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html | 122 - doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js | 4 - doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.html | 112 - doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.js | 4 - doc/html/dir_922c77e958c99a98db92d38a3a349bf2.html | 114 - doc/html/dir_922c77e958c99a98db92d38a3a349bf2.js | 5 - doc/html/dir_92d6b429199666aa3765c8a934db5e14.html | 112 - doc/html/dir_92d6b429199666aa3765c8a934db5e14.js | 4 - doc/html/dir_94ce3c0aa655f52cbce858751688d328.html | 114 - doc/html/dir_94ce3c0aa655f52cbce858751688d328.js | 5 - doc/html/dir_955ae6074e6c84afe72925e364242b14.html | 122 - doc/html/dir_955ae6074e6c84afe72925e364242b14.js | 4 - doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html | 114 - doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js | 5 - doc/html/dir__fns_8php.html | 286 - doc/html/dir__fns_8php.js | 10 - doc/html/dir_a8a0005c2b8590c535262d232c22afab.html | 116 - doc/html/dir_a8a0005c2b8590c535262d232c22afab.js | 6 - doc/html/dir_aae29906d7bfc07d076125f669c8352e.html | 116 - doc/html/dir_aae29906d7bfc07d076125f669c8352e.js | 10 - doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html | 114 - doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js | 5 - doc/html/dir_b1008ce0b02657da707945523382e0f8.html | 112 - doc/html/dir_b1008ce0b02657da707945523382e0f8.js | 4 - doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html | 114 - doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js | 5 - doc/html/dir_b6f208674a96d24af8106c998c637d76.html | 116 - doc/html/dir_b6f208674a96d24af8106c998c637d76.js | 6 - doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.html | 112 - doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.js | 4 - doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html | 126 - doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js | 11 - doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.html | 118 - doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.js | 7 - doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html | 120 - doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js | 8 - doc/html/dir_d41ce877eb409a4791b288730010abe2.html | 420 -- doc/html/dir_d41ce877eb409a4791b288730010abe2.js | 157 - doc/html/dir_d44c64559bbebec7f509842c48db8b23.html | 288 - doc/html/dir_d44c64559bbebec7f509842c48db8b23.js | 103 - doc/html/dir_d520c5cf583201d9437764f209363c22.html | 116 - doc/html/dir_d520c5cf583201d9437764f209363c22.js | 6 - doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.html | 112 - doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.js | 4 - doc/html/dir_d795dfe8933002397556cc7aa16eca15.html | 112 - doc/html/dir_d795dfe8933002397556cc7aa16eca15.js | 4 - doc/html/dir_da7dee9003bbd0df28447261834d7815.html | 114 - doc/html/dir_da7dee9003bbd0df28447261834d7815.js | 5 - doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html | 112 - doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.js | 4 - doc/html/dir_e7f045be8bb383d8447c6a6b84145083.html | 118 - doc/html/dir_e7f045be8bb383d8447c6a6b84145083.js | 15 - doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html | 112 - doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js | 4 - doc/html/dir_f20b1a70c98162efa33fce7214fb9665.html | 114 - doc/html/dir_f20b1a70c98162efa33fce7214fb9665.js | 5 - doc/html/dir_f6607f4f29fa266cde007631e2b0eade.html | 114 - doc/html/dir_f6607f4f29fa266cde007631e2b0eade.js | 5 - doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.html | 117 - doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.js | 5 - doc/html/dirfind_8php.html | 155 - doc/html/dirfind_8php.js | 5 - doc/html/dirprofile_8php.html | 137 - doc/html/dirprofile_8php.js | 4 - doc/html/dirsearch_8php.html | 272 - doc/html/dirsearch_8php.js | 9 - doc/html/display_8php.html | 155 - doc/html/display_8php.js | 4 - doc/html/docblox__errorchecker_8php.html | 314 -- doc/html/docblox__errorchecker_8php.js | 14 - doc/html/doxygen.css | 1184 ---- doc/html/doxygen.png | Bin 3779 -> 0 bytes doc/html/dynsections.js | 97 - doc/html/editblock_8php.html | 155 - doc/html/editblock_8php.js | 5 - doc/html/editlayout_8php.html | 155 - doc/html/editlayout_8php.js | 5 - doc/html/editpost_8php.html | 137 - doc/html/editpost_8php.js | 4 - doc/html/editwebpage_8php.html | 155 - doc/html/editwebpage_8php.js | 5 - doc/html/enotify_8php.html | 145 - doc/html/enotify_8php.js | 5 - doc/html/event_8php.html | 385 -- doc/html/event_8php.js | 15 - doc/html/events_8php.html | 155 - doc/html/events_8php.js | 5 - doc/html/expire_8php.html | 147 - doc/html/expire_8php.js | 4 - ...e_2deadsuperhero_2hivenet_2php_2style_8php.html | 112 - ...e_2deadsuperhero_2hivenet_2php_2theme_8php.html | 144 - ...eme_2deadsuperhero_2hivenet_2php_2theme_8php.js | 4 - ...me_2deadsuperhero_2minded_2php_2style_8php.html | 112 - ...me_2deadsuperhero_2minded_2php_2theme_8php.html | 144 - ...heme_2deadsuperhero_2minded_2php_2theme_8php.js | 4 - ..._2deadsuperhero_2occupant_2php_2style_8php.html | 112 - ..._2deadsuperhero_2occupant_2php_2theme_8php.html | 144 - ...me_2deadsuperhero_2occupant_2php_2theme_8php.js | 4 - ..._2deadsuperhero_2sporadic_2php_2style_8php.html | 112 - ..._2deadsuperhero_2sporadic_2php_2theme_8php.html | 144 - ...me_2deadsuperhero_2sporadic_2php_2theme_8php.js | 4 - ...e_2deadsuperhero_2stumble_2php_2style_8php.html | 112 - ...e_2deadsuperhero_2stumble_2php_2theme_8php.html | 144 - ...eme_2deadsuperhero_2stumble_2php_2theme_8php.js | 4 - ...deadsuperhero_2suckerberg_2php_2style_8php.html | 112 - ...deadsuperhero_2suckerberg_2php_2theme_8php.html | 144 - ..._2deadsuperhero_2suckerberg_2php_2theme_8php.js | 4 - ...e_2deadsuperhero_2sunbeam_2php_2style_8php.html | 112 - ...e_2deadsuperhero_2sunbeam_2php_2theme_8php.html | 144 - ...eme_2deadsuperhero_2sunbeam_2php_2theme_8php.js | 4 - ...heme_2deadsuperhero_2yolo_2php_2style_8php.html | 112 - ...heme_2deadsuperhero_2yolo_2php_2theme_8php.html | 144 - ...2theme_2deadsuperhero_2yolo_2php_2theme_8php.js | 4 - doc/html/externals_8php.html | 147 - doc/html/externals_8php.js | 4 - doc/html/extract_8php.html | 181 - doc/html/extract_8php.js | 7 - doc/html/fbrowser_8php.html | 149 - doc/html/fbrowser_8php.js | 4 - doc/html/fcontact_8php.html | 187 - doc/html/fcontact_8php.js | 5 - doc/html/features_8php.html | 188 - doc/html/features_8php.js | 6 - doc/html/feed_8php.html | 137 - doc/html/feed_8php.js | 4 - doc/html/filer_8php.html | 137 - doc/html/filer_8php.js | 4 - doc/html/filerm_8php.html | 137 - doc/html/filerm_8php.js | 4 - doc/html/files.html | 475 -- doc/html/files.js | 9 - doc/html/filestorage_8php.html | 161 - doc/html/filestorage_8php.js | 5 - doc/html/fixd_8php.html | 181 - doc/html/fixd_8php.js | 7 - doc/html/fpostit_8php.html | 172 - doc/html/fpostit_8php.js | 5 - doc/html/fred-48.png | Bin 1706 -> 0 bytes doc/html/fresh_8md.html | 112 - doc/html/friendica-to-smarty-tpl_8py.html | 158 - doc/html/friendica-to-smarty-tpl_8py.js | 18 - doc/html/friendica__smarty_8php.html | 122 - doc/html/frphotohelper_8php.html | 486 -- doc/html/frphotohelper_8php.js | 27 - doc/html/frphotos_8php.html | 155 - doc/html/frphotos_8php.js | 5 - doc/html/fsuggest_8php.html | 155 - doc/html/fsuggest_8php.js | 5 - doc/html/ftv2blank.png | Bin 86 -> 0 bytes doc/html/ftv2cl.png | Bin 453 -> 0 bytes doc/html/ftv2doc.png | Bin 746 -> 0 bytes doc/html/ftv2folderclosed.png | Bin 616 -> 0 bytes doc/html/ftv2folderopen.png | Bin 597 -> 0 bytes doc/html/ftv2lastnode.png | Bin 86 -> 0 bytes doc/html/ftv2link.png | Bin 746 -> 0 bytes doc/html/ftv2mlastnode.png | Bin 246 -> 0 bytes doc/html/ftv2mnode.png | Bin 246 -> 0 bytes doc/html/ftv2mo.png | Bin 403 -> 0 bytes doc/html/ftv2node.png | Bin 86 -> 0 bytes doc/html/ftv2ns.png | Bin 388 -> 0 bytes doc/html/ftv2plastnode.png | Bin 229 -> 0 bytes doc/html/ftv2pnode.png | Bin 229 -> 0 bytes doc/html/ftv2splitbar.png | Bin 314 -> 0 bytes doc/html/ftv2vertline.png | Bin 86 -> 0 bytes doc/html/full_8php.html | 133 - doc/html/full_8php.js | 4 - doc/html/functions.html | 499 -- doc/html/functions_0x5f.html | 226 - doc/html/functions_0x61.html | 160 - doc/html/functions_0x62.html | 153 - doc/html/functions_0x63.html | 264 - doc/html/functions_0x64.html | 185 - doc/html/functions_0x65.html | 166 - doc/html/functions_0x66.html | 158 - doc/html/functions_0x67.html | 358 -- doc/html/functions_0x68.html | 162 - doc/html/functions_0x69.html | 184 - doc/html/functions_0x6c.html | 171 - doc/html/functions_0x6d.html | 156 - doc/html/functions_0x6e.html | 157 - doc/html/functions_0x6f.html | 154 - doc/html/functions_0x70.html | 159 - doc/html/functions_0x71.html | 157 - doc/html/functions_0x72.html | 178 - doc/html/functions_0x73.html | 271 - doc/html/functions_0x74.html | 150 - doc/html/functions_0x75.html | 161 - doc/html/functions_0x76.html | 153 - doc/html/functions_8php.html | 137 - doc/html/functions_8php.js | 4 - doc/html/functions_dup.js | 25 - doc/html/functions_func.html | 213 - doc/html/functions_func.js | 24 - doc/html/functions_func_0x61.html | 156 - doc/html/functions_func_0x62.html | 149 - doc/html/functions_func_0x63.html | 257 - doc/html/functions_func_0x64.html | 181 - doc/html/functions_func_0x65.html | 162 - doc/html/functions_func_0x66.html | 157 - doc/html/functions_func_0x67.html | 357 -- doc/html/functions_func_0x68.html | 161 - doc/html/functions_func_0x69.html | 179 - doc/html/functions_func_0x6c.html | 170 - doc/html/functions_func_0x6d.html | 152 - doc/html/functions_func_0x6e.html | 152 - doc/html/functions_func_0x6f.html | 153 - doc/html/functions_func_0x70.html | 155 - doc/html/functions_func_0x71.html | 156 - doc/html/functions_func_0x72.html | 174 - doc/html/functions_func_0x73.html | 266 - doc/html/functions_func_0x74.html | 149 - doc/html/functions_func_0x75.html | 156 - doc/html/functions_func_0x76.html | 152 - doc/html/functions_vars.html | 612 --- doc/html/globals.html | 288 - doc/html/globals_0x5f.html | 154 - doc/html/globals_0x61.html | 736 --- doc/html/globals_0x62.html | 265 - doc/html/globals_0x63.html | 508 -- doc/html/globals_0x64.html | 460 -- doc/html/globals_0x65.html | 247 - doc/html/globals_0x66.html | 310 -- doc/html/globals_0x67.html | 439 -- doc/html/globals_0x68.html | 256 - doc/html/globals_0x69.html | 408 -- doc/html/globals_0x6a.html | 163 - doc/html/globals_0x6b.html | 157 - doc/html/globals_0x6c.html | 283 - doc/html/globals_0x6d.html | 322 -- doc/html/globals_0x6e.html | 370 -- doc/html/globals_0x6f.html | 217 - doc/html/globals_0x70.html | 643 --- doc/html/globals_0x71.html | 163 - doc/html/globals_0x72.html | 430 -- doc/html/globals_0x73.html | 400 -- doc/html/globals_0x74.html | 304 -- doc/html/globals_0x75.html | 271 - doc/html/globals_0x76.html | 226 - doc/html/globals_0x77.html | 289 - doc/html/globals_0x78.html | 211 - doc/html/globals_0x79.html | 154 - doc/html/globals_0x7a.html | 256 - doc/html/globals_dup.js | 31 - doc/html/globals_func.html | 153 - doc/html/globals_func.js | 30 - doc/html/globals_func_0x61.html | 555 -- doc/html/globals_func_0x62.html | 264 - doc/html/globals_func_0x63.html | 489 -- doc/html/globals_func_0x64.html | 417 -- doc/html/globals_func_0x65.html | 234 - doc/html/globals_func_0x66.html | 306 -- doc/html/globals_func_0x67.html | 429 -- doc/html/globals_func_0x68.html | 228 - doc/html/globals_func_0x69.html | 312 -- doc/html/globals_func_0x6a.html | 159 - doc/html/globals_func_0x6b.html | 153 - doc/html/globals_func_0x6c.html | 261 - doc/html/globals_func_0x6d.html | 282 - doc/html/globals_func_0x6e.html | 246 - doc/html/globals_func_0x6f.html | 216 - doc/html/globals_func_0x70.html | 498 -- doc/html/globals_func_0x71.html | 162 - doc/html/globals_func_0x72.html | 384 -- doc/html/globals_func_0x73.html | 387 -- doc/html/globals_func_0x74.html | 252 - doc/html/globals_func_0x75.html | 255 - doc/html/globals_func_0x76.html | 192 - doc/html/globals_func_0x77.html | 285 - doc/html/globals_func_0x78.html | 186 - doc/html/globals_func_0x79.html | 153 - doc/html/globals_func_0x7a.html | 249 - doc/html/globals_vars.html | 283 - doc/html/globals_vars.js | 26 - doc/html/globals_vars_0x61.html | 326 -- doc/html/globals_vars_0x63.html | 164 - doc/html/globals_vars_0x64.html | 188 - doc/html/globals_vars_0x65.html | 158 - doc/html/globals_vars_0x66.html | 149 - doc/html/globals_vars_0x67.html | 155 - doc/html/globals_vars_0x68.html | 173 - doc/html/globals_vars_0x69.html | 241 - doc/html/globals_vars_0x6a.html | 149 - doc/html/globals_vars_0x6b.html | 149 - doc/html/globals_vars_0x6c.html | 167 - doc/html/globals_vars_0x6d.html | 185 - doc/html/globals_vars_0x6e.html | 269 - doc/html/globals_vars_0x70.html | 290 - doc/html/globals_vars_0x72.html | 191 - doc/html/globals_vars_0x73.html | 158 - doc/html/globals_vars_0x74.html | 197 - doc/html/globals_vars_0x75.html | 161 - doc/html/globals_vars_0x76.html | 179 - doc/html/globals_vars_0x77.html | 149 - doc/html/globals_vars_0x78.html | 170 - doc/html/globals_vars_0x7a.html | 152 - doc/html/gprobe_8php.html | 147 - doc/html/gprobe_8php.js | 4 - doc/html/greenthumbnails_8php.html | 112 - doc/html/hcard_8php.html | 155 - doc/html/hcard_8php.js | 5 - doc/html/help_8php.html | 158 - doc/html/help_8php.js | 5 - doc/html/hierarchy.html | 172 - doc/html/hierarchy.js | 75 - doc/html/hivenet_2php_2style_8php.html | 112 - doc/html/hivenet_2php_2theme_8php.html | 144 - doc/html/hivenet_2php_2theme_8php.js | 4 - doc/html/home_8php.html | 173 - doc/html/home_8php.js | 5 - doc/html/hostxrd_8php.html | 139 - doc/html/hostxrd_8php.js | 4 - doc/html/html2bbcode_8php.html | 265 - doc/html/html2bbcode_8php.js | 7 - doc/html/html2plain_8php.html | 241 - doc/html/html2plain_8php.js | 7 - doc/html/hubloc_8php.html | 237 - doc/html/hubloc_8php.js | 9 - doc/html/identity_8php.html | 949 ---- doc/html/identity_8php.js | 36 - doc/html/impel_8php.html | 137 - doc/html/impel_8php.js | 4 - doc/html/import_8php.html | 155 - doc/html/import_8php.js | 5 - doc/html/importelm_8php.html | 137 - doc/html/importelm_8php.js | 4 - doc/html/include_2api_8php.html | 1709 ------ doc/html/include_2api_8php.js | 59 - doc/html/include_2apps_8php.html | 458 -- doc/html/include_2apps_8php.js | 17 - doc/html/include_2attach_8php.html | 1015 ---- doc/html/include_2attach_8php.js | 22 - doc/html/include_2bookmarks_8php.html | 187 - doc/html/include_2bookmarks_8php.js | 5 - doc/html/include_2chanman_8php.html | 137 - doc/html/include_2chanman_8php.js | 4 - doc/html/include_2chat_8php.html | 338 -- doc/html/include_2chat_8php.js | 10 - doc/html/include_2config_8php.html | 725 --- doc/html/include_2config_8php.js | 16 - doc/html/include_2directory_8php.html | 147 - doc/html/include_2directory_8php.js | 4 - doc/html/include_2follow_8php.html | 168 - doc/html/include_2follow_8php.js | 4 - doc/html/include_2group_8php.html | 493 -- doc/html/include_2group_8php.js | 15 - doc/html/include_2menu_8php.html | 500 -- doc/html/include_2menu_8php.js | 15 - doc/html/include_2message_8php.html | 322 -- doc/html/include_2message_8php.js | 8 - doc/html/include_2network_8php.html | 875 --- doc/html/include_2network_8php.js | 30 - doc/html/include_2notify_8php.html | 139 - doc/html/include_2notify_8php.js | 4 - doc/html/include_2oembed_8php.html | 306 -- doc/html/include_2oembed_8php.js | 11 - doc/html/include_2photos_8php.html | 403 -- doc/html/include_2photos_8php.js | 11 - doc/html/include_2probe_8php.html | 284 - doc/html/include_2probe_8php.js | 12 - doc/html/include_2settings_8php.html | 150 - doc/html/include_2settings_8php.js | 4 - doc/html/index.html | 106 - doc/html/index.php | 15 + doc/html/interfaceITemplateEngine-members.html | 119 - doc/html/interfaceITemplateEngine.html | 197 - doc/html/interfaceITemplateEngine.js | 5 - doc/html/interfaceITemplateEngine.png | Bin 893 -> 0 bytes doc/html/intro_8php.html | 173 - doc/html/intro_8php.js | 6 - doc/html/invite_8php.html | 157 - doc/html/invite_8php.js | 5 - doc/html/iquery_8php.html | 147 - doc/html/iquery_8php.js | 4 - doc/html/item_8php.html | 321 -- doc/html/item_8php.js | 8 - doc/html/items_8php.html | 2269 -------- doc/html/items_8php.js | 78 - doc/html/jquery.js | 77 - doc/html/lang_8php.html | 137 - doc/html/lang_8php.js | 4 - doc/html/language_8php.html | 409 -- doc/html/language_8php.js | 13 - doc/html/lastpost_8php.html | 190 - doc/html/lastpost_8php.js | 6 - doc/html/layouts_8php.html | 155 - doc/html/layouts_8php.js | 5 - doc/html/like_8php.html | 137 - doc/html/like_8php.js | 4 - doc/html/lockview_8php.html | 137 - doc/html/lockview_8php.js | 4 - doc/html/locs_8php.html | 155 - doc/html/locs_8php.js | 5 - doc/html/login_8php.html | 137 - doc/html/login_8php.js | 4 - doc/html/lostpass_8php.html | 155 - doc/html/lostpass_8php.js | 5 - doc/html/magic_8php.html | 137 - doc/html/magic_8php.js | 4 - doc/html/mail_8php.html | 155 - doc/html/mail_8php.js | 5 - doc/html/manage_8php.html | 137 - doc/html/manage_8php.js | 4 - doc/html/match_8php.html | 137 - doc/html/match_8php.js | 4 - doc/html/md_README.html | 110 - doc/html/md_config.html | 112 - doc/html/md_fresh.html | 124 - doc/html/minimal_8php.html | 112 - doc/html/minimalisticdarkness_8php.html | 215 - doc/html/minimalisticdarkness_8php.js | 9 - doc/html/mitem_8php.html | 173 - doc/html/mitem_8php.js | 6 - doc/html/mod_2api_8php.html | 175 - doc/html/mod_2api_8php.js | 6 - doc/html/mod_2apps_8php.html | 137 - doc/html/mod_2apps_8php.js | 4 - doc/html/mod_2attach_8php.html | 137 - doc/html/mod_2attach_8php.js | 4 - doc/html/mod_2bookmarks_8php.html | 155 - doc/html/mod_2bookmarks_8php.js | 5 - doc/html/mod_2chanman_8php.html | 112 - doc/html/mod_2chat_8php.html | 173 - doc/html/mod_2chat_8php.js | 6 - doc/html/mod_2directory_8php.html | 155 - doc/html/mod_2directory_8php.js | 5 - doc/html/mod_2follow_8php.html | 155 - doc/html/mod_2follow_8php.js | 5 - doc/html/mod_2group_8php.html | 155 - doc/html/mod_2group_8php.js | 5 - doc/html/mod_2menu_8php.html | 155 - doc/html/mod_2menu_8php.js | 5 - doc/html/mod_2message_8php.html | 137 - doc/html/mod_2message_8php.js | 4 - doc/html/mod_2network_8php.html | 174 - doc/html/mod_2network_8php.js | 5 - doc/html/mod_2notify_8php.html | 155 - doc/html/mod_2notify_8php.js | 5 - doc/html/mod_2oembed_8php.html | 137 - doc/html/mod_2oembed_8php.js | 4 - doc/html/mod_2photos_8php.html | 176 - doc/html/mod_2photos_8php.js | 6 - doc/html/mod_2probe_8php.html | 137 - doc/html/mod_2probe_8php.js | 4 - doc/html/mod_2settings_8php.html | 193 - doc/html/mod_2settings_8php.js | 7 - doc/html/mod__chanview_8php.html | 112 - doc/html/mod__filestorage_8php.html | 112 - doc/html/mod__import_8php.html | 135 - doc/html/mod__import_8php.js | 4 - doc/html/mod__new__channel_8php.html | 133 - doc/html/mod__new__channel_8php.js | 4 - doc/html/mod__register_8php.html | 133 - doc/html/mod__register_8php.js | 4 - doc/html/mood_8php.html | 155 - doc/html/mood_8php.js | 5 - doc/html/msearch_8php.html | 137 - doc/html/msearch_8php.js | 4 - doc/html/mytheme_2php_2style_8php.html | 112 - doc/html/mytheme_2php_2theme_8php.html | 144 - doc/html/mytheme_2php_2theme_8php.js | 4 - doc/html/namespaceFriendica.html | 115 - doc/html/namespaceRedMatrix.html | 127 - doc/html/namespaceRedMatrix.js | 5 - doc/html/namespaceRedMatrix_1_1Import.html | 120 - doc/html/namespaceRedMatrix_1_1Import.js | 4 - doc/html/namespaceRedMatrix_1_1RedDAV.html | 130 - doc/html/namespaceRedMatrix_1_1RedDAV.js | 7 - doc/html/namespaceacl__selectors.html | 112 - doc/html/namespaceeasywebdav.html | 155 - doc/html/namespaceeasywebdav.js | 5 - .../namespaceeasywebdav_1_1____version____.html | 133 - doc/html/namespaceeasywebdav_1_1client.html | 240 - doc/html/namespaceeasywebdav_1_1client.js | 7 - doc/html/namespacefriendica-to-smarty-tpl.html | 376 -- doc/html/namespacemembers.html | 298 - doc/html/namespacemembers_func.html | 148 - doc/html/namespacemembers_vars.html | 185 - doc/html/namespaces.html | 128 - doc/html/namespaces.js | 11 - doc/html/namespaceupdatetpl.html | 212 - doc/html/namespaceutil.html | 144 - doc/html/namespacezotsh.html | 238 - doc/html/namespacezotsh.js | 5 - doc/html/nav_8php.html | 166 - doc/html/nav_8php.js | 5 - doc/html/nav_f.png | Bin 153 -> 0 bytes doc/html/nav_g.png | Bin 95 -> 0 bytes doc/html/nav_h.png | Bin 98 -> 0 bytes doc/html/navtree.css | 143 - doc/html/navtree.js | 547 -- doc/html/navtreeindex0.js | 253 - doc/html/navtreeindex1.js | 253 - doc/html/navtreeindex10.js | 112 - doc/html/navtreeindex2.js | 253 - doc/html/navtreeindex3.js | 253 - doc/html/navtreeindex4.js | 253 - doc/html/navtreeindex5.js | 253 - doc/html/navtreeindex6.js | 253 - doc/html/navtreeindex7.js | 253 - doc/html/navtreeindex8.js | 253 - doc/html/navtreeindex9.js | 253 - doc/html/netgrowth_8php.html | 137 - doc/html/netgrowth_8php.js | 4 - doc/html/new__channel_8php.html | 173 - doc/html/new__channel_8php.js | 6 - doc/html/nogroup_8php.html | 155 - doc/html/nogroup_8php.js | 5 - doc/html/none_8php.html | 112 - doc/html/notes_8php.html | 137 - doc/html/notes_8php.js | 4 - doc/html/notifications_8php.html | 155 - doc/html/notifications_8php.js | 5 - doc/html/notifier_8php.html | 148 - doc/html/notifier_8php.js | 4 - doc/html/notred_8php.html | 112 - doc/html/oauth_8php.html | 160 - doc/html/oauth_8php.js | 7 - doc/html/oexchange_8php.html | 155 - doc/html/oexchange_8php.js | 5 - doc/html/olddefault_8php.html | 112 - doc/html/onedirsync_8php.html | 147 - doc/html/onedirsync_8php.js | 4 - doc/html/onepoll_8php.html | 147 - doc/html/onepoll_8php.js | 4 - doc/html/online_8php.html | 137 - doc/html/online_8php.js | 4 - doc/html/open.png | Bin 123 -> 0 bytes doc/html/openid_8php.html | 137 - doc/html/openid_8php.js | 4 - doc/html/opensearch_8php.html | 137 - doc/html/opensearch_8php.js | 4 - doc/html/p_8php.html | 137 - doc/html/p_8php.js | 4 - doc/html/page_8php.html | 155 - doc/html/page_8php.js | 5 - doc/html/page__widgets_8php.html | 177 - doc/html/page__widgets_8php.js | 5 - doc/html/pages.html | 115 - doc/html/parse__url_8php.html | 215 - doc/html/parse__url_8php.js | 7 - doc/html/passion_8php.html | 112 - doc/html/passionwide_8php.html | 112 - doc/html/pdledit_8php.html | 155 - doc/html/pdledit_8php.js | 5 - doc/html/permissions_8php.html | 353 -- doc/html/permissions_8php.js | 10 - doc/html/photo_8php.html | 139 - doc/html/photo_8php.js | 4 - doc/html/photo__driver_8php.html | 269 - doc/html/photo__driver_8php.js | 8 - doc/html/photo__gd_8php.html | 120 - doc/html/photo__imagick_8php.html | 120 - doc/html/php2po_8php.html | 245 - doc/html/php2po_8php.js | 11 - doc/html/php_2default_8php.html | 133 - doc/html/php_2default_8php.js | 4 - doc/html/php_2theme__init_8php.html | 136 - doc/html/php_2theme__init_8php.js | 4 - doc/html/php_8php.html | 137 - doc/html/php_8php.js | 4 - doc/html/pine_8php.html | 112 - doc/html/ping_8php.html | 156 - doc/html/ping_8php.js | 4 - doc/html/plugin_8php.html | 882 --- doc/html/plugin_8php.js | 30 - doc/html/po2php_8php.html | 167 - doc/html/po2php_8php.js | 5 - doc/html/poco_8php.html | 137 - doc/html/poco_8php.js | 4 - doc/html/poke_8php.html | 157 - doc/html/poke_8php.js | 5 - doc/html/poll_8php.html | 173 - doc/html/poll_8php.js | 6 - doc/html/poller_8php.html | 153 - doc/html/poller_8php.js | 4 - doc/html/post_8php.html | 200 - doc/html/post_8php.js | 5 - doc/html/post__to__red_8php.html | 549 -- doc/html/post__to__red_8php.js | 26 - doc/html/prate_8php.html | 155 - doc/html/prate_8php.js | 5 - doc/html/prep_8php.html | 155 - doc/html/prep_8php.js | 5 - doc/html/pretheme_8php.html | 137 - doc/html/pretheme_8php.js | 4 - doc/html/probe_8php.html | 137 - doc/html/probe_8php.js | 4 - doc/html/profile_8php.html | 165 - doc/html/profile_8php.js | 5 - doc/html/profile__advanced_8php.html | 139 - doc/html/profile__advanced_8php.js | 4 - doc/html/profile__photo_8php.html | 175 - doc/html/profile__photo_8php.js | 6 - doc/html/profile__selectors_8php.html | 299 - doc/html/profile__selectors_8php.js | 9 - doc/html/profiles_8php.html | 173 - doc/html/profiles_8php.js | 6 - doc/html/profperm_8php.html | 155 - doc/html/profperm_8php.js | 5 - doc/html/pubsites_8php.html | 139 - doc/html/pubsites_8php.js | 4 - doc/html/pubsub_8php.html | 204 - doc/html/pubsub_8php.js | 7 - doc/html/pubsubhubbub_8php.html | 157 - doc/html/pubsubhubbub_8php.js | 5 - doc/html/qsearch_8php.html | 137 - doc/html/qsearch_8php.js | 4 - doc/html/queue_8php.html | 147 - doc/html/queue_8php.js | 4 - doc/html/queue__fn_8php.html | 155 - doc/html/queue__fn_8php.js | 5 - doc/html/r!-64.png | Bin 2945 -> 0 bytes doc/html/randprof_8php.html | 137 - doc/html/randprof_8php.js | 4 - doc/html/rate_8php.html | 173 - doc/html/rate_8php.js | 6 - doc/html/ratenotif_8php.html | 147 - doc/html/ratenotif_8php.js | 4 - doc/html/ratings_8php.html | 155 - doc/html/ratings_8php.js | 5 - doc/html/ratingsearch_8php.html | 137 - doc/html/ratingsearch_8php.js | 4 - doc/html/rbmark_8php.html | 159 - doc/html/rbmark_8php.js | 5 - doc/html/receive_8php.html | 138 - doc/html/receive_8php.js | 4 - doc/html/redable_8php.html | 133 - doc/html/redable_8php.js | 4 - doc/html/redbasic_2php_2style_8php.html | 149 - doc/html/redbasic_2php_2style_8php.js | 5 - doc/html/redbasic_2php_2theme_8php.html | 145 - doc/html/redbasic_2php_2theme_8php.js | 4 - doc/html/redbasic_8php.html | 112 - doc/html/reddav_8php.html | 265 - doc/html/reddav_8php.js | 6 - doc/html/redir_8php.html | 137 - doc/html/redir_8php.js | 4 - doc/html/redstrap_2php_2style_8php.html | 377 -- doc/html/redstrap_2php_2style_8php.js | 20 - doc/html/redstrap_2php_2theme_8php.html | 137 - doc/html/redstrap_2php_2theme_8php.js | 4 - doc/html/refimport_8php.html | 381 -- doc/html/refimport_8php.js | 16 - doc/html/regdir_8php.html | 139 - doc/html/regdir_8php.js | 4 - doc/html/register_8php.html | 173 - doc/html/register_8php.js | 6 - doc/html/regmod_8php.html | 137 - doc/html/regmod_8php.js | 4 - doc/html/regver_8php.html | 137 - doc/html/regver_8php.js | 4 - doc/html/removeaccount_8php.html | 155 - doc/html/removeaccount_8php.js | 5 - doc/html/removeme_8php.html | 155 - doc/html/removeme_8php.js | 5 - doc/html/resize.js | 93 - doc/html/rhash-64.png | Bin 3115 -> 0 bytes doc/html/rm-64.png | Bin 1897 -> 0 bytes doc/html/rmagic_8php.html | 173 - doc/html/rmagic_8php.js | 6 - doc/html/rpost_8php.html | 141 - doc/html/rpost_8php.js | 4 - doc/html/rsd__xml_8php.html | 137 - doc/html/rsd__xml_8php.js | 4 - doc/html/search/all_24.html | 26 - doc/html/search/all_24.js | 159 - doc/html/search/all_5f.html | 26 - doc/html/search/all_5f.js | 30 - doc/html/search/all_61.html | 26 - doc/html/search/all_61.js | 219 - doc/html/search/all_62.html | 26 - doc/html/search/all_62.js | 54 - doc/html/search/all_63.html | 26 - doc/html/search/all_63.js | 191 - doc/html/search/all_64.html | 26 - doc/html/search/all_64.js | 143 - doc/html/search/all_65.html | 26 - doc/html/search/all_65.js | 56 - doc/html/search/all_66.html | 26 - doc/html/search/all_66.js | 87 - doc/html/search/all_67.html | 26 - doc/html/search/all_67.js | 165 - doc/html/search/all_68.html | 26 - doc/html/search/all_68.js | 49 - doc/html/search/all_69.html | 26 - doc/html/search/all_69.js | 111 - doc/html/search/all_6a.html | 26 - doc/html/search/all_6a.js | 7 - doc/html/search/all_6b.html | 26 - doc/html/search/all_6b.js | 5 - doc/html/search/all_6c.html | 26 - doc/html/search/all_6c.js | 64 - doc/html/search/all_6d.html | 26 - doc/html/search/all_6d.js | 78 - doc/html/search/all_6e.html | 26 - doc/html/search/all_6e.js | 93 - doc/html/search/all_6f.html | 26 - doc/html/search/all_6f.js | 40 - doc/html/search/all_70.html | 26 - doc/html/search/all_70.js | 216 - doc/html/search/all_71.html | 26 - doc/html/search/all_71.js | 10 - doc/html/search/all_72.html | 26 - doc/html/search/all_72.js | 137 - doc/html/search/all_73.html | 26 - doc/html/search/all_73.js | 162 - doc/html/search/all_74.html | 26 - doc/html/search/all_74.js | 83 - doc/html/search/all_75.html | 26 - doc/html/search/all_75.js | 57 - doc/html/search/all_76.html | 26 - doc/html/search/all_76.js | 35 - doc/html/search/all_77.html | 26 - doc/html/search/all_77.js | 57 - doc/html/search/all_78.html | 26 - doc/html/search/all_78.js | 27 - doc/html/search/all_79.html | 26 - doc/html/search/all_79.js | 4 - doc/html/search/all_7a.html | 26 - doc/html/search/all_7a.js | 46 - doc/html/search/classes_61.html | 26 - doc/html/search/classes_61.js | 4 - doc/html/search/classes_62.html | 26 - doc/html/search/classes_62.js | 4 - doc/html/search/classes_63.html | 26 - doc/html/search/classes_63.js | 8 - doc/html/search/classes_64.html | 26 - doc/html/search/classes_64.js | 7 - doc/html/search/classes_65.html | 26 - doc/html/search/classes_65.js | 4 - doc/html/search/classes_66.html | 26 - doc/html/search/classes_66.js | 7 - doc/html/search/classes_69.html | 26 - doc/html/search/classes_69.js | 6 - doc/html/search/classes_6f.html | 26 - doc/html/search/classes_6f.js | 4 - doc/html/search/classes_70.html | 26 - doc/html/search/classes_70.js | 7 - doc/html/search/classes_72.html | 26 - doc/html/search/classes_72.js | 7 - doc/html/search/classes_74.html | 26 - doc/html/search/classes_74.js | 4 - doc/html/search/classes_77.html | 26 - doc/html/search/classes_77.js | 4 - doc/html/search/classes_7a.html | 26 - doc/html/search/classes_7a.js | 5 - doc/html/search/close.png | Bin 273 -> 0 bytes doc/html/search/files_5f.html | 26 - doc/html/search/files_5f.js | 6 - doc/html/search/files_61.html | 26 - doc/html/search/files_61.js | 17 - doc/html/search/files_62.html | 26 - doc/html/search/files_62.js | 13 - doc/html/search/files_63.html | 26 - doc/html/search/files_63.js | 31 - doc/html/search/files_64.html | 26 - doc/html/search/files_64.js | 26 - doc/html/search/files_65.html | 26 - doc/html/search/files_65.js | 13 - doc/html/search/files_66.html | 26 - doc/html/search/files_66.js | 17 - doc/html/search/files_67.html | 26 - doc/html/search/files_67.js | 7 - doc/html/search/files_68.html | 26 - doc/html/search/files_68.js | 10 - doc/html/search/files_69.html | 26 - doc/html/search/files_69.js | 13 - doc/html/search/files_6c.html | 26 - doc/html/search/files_6c.js | 11 - doc/html/search/files_6d.html | 26 - doc/html/search/files_6d.js | 18 - doc/html/search/files_6e.html | 26 - doc/html/search/files_6e.js | 15 - doc/html/search/files_6f.html | 26 - doc/html/search/files_6f.js | 13 - doc/html/search/files_70.html | 26 - doc/html/search/files_70.js | 41 - doc/html/search/files_71.html | 26 - doc/html/search/files_71.js | 5 - doc/html/search/files_72.html | 26 - doc/html/search/files_72.js | 28 - doc/html/search/files_73.html | 26 - doc/html/search/files_73.js | 39 - doc/html/search/files_74.html | 26 - doc/html/search/files_74.js | 28 - doc/html/search/files_75.html | 26 - doc/html/search/files_75.js | 10 - doc/html/search/files_76.html | 26 - doc/html/search/files_76.js | 7 - doc/html/search/files_77.html | 26 - doc/html/search/files_77.js | 10 - doc/html/search/files_78.html | 26 - doc/html/search/files_78.js | 7 - doc/html/search/files_7a.html | 26 - doc/html/search/files_7a.js | 8 - doc/html/search/functions_5f.html | 26 - doc/html/search/functions_5f.js | 22 - doc/html/search/functions_61.html | 26 - doc/html/search/functions_61.js | 141 - doc/html/search/functions_62.html | 26 - doc/html/search/functions_62.js | 42 - doc/html/search/functions_63.html | 26 - doc/html/search/functions_63.js | 150 - doc/html/search/functions_64.html | 26 - doc/html/search/functions_64.js | 100 - doc/html/search/functions_65.html | 26 - doc/html/search/functions_65.js | 36 - doc/html/search/functions_66.html | 26 - doc/html/search/functions_66.js | 60 - doc/html/search/functions_67.html | 26 - doc/html/search/functions_67.js | 158 - doc/html/search/functions_68.html | 26 - doc/html/search/functions_68.js | 33 - doc/html/search/functions_69.html | 26 - doc/html/search/functions_69.js | 67 - doc/html/search/functions_6a.html | 26 - doc/html/search/functions_6a.js | 6 - doc/html/search/functions_6b.html | 26 - doc/html/search/functions_6b.js | 4 - doc/html/search/functions_6c.html | 26 - doc/html/search/functions_6c.js | 48 - doc/html/search/functions_6d.html | 26 - doc/html/search/functions_6d.js | 49 - doc/html/search/functions_6e.html | 26 - doc/html/search/functions_6e.js | 37 - doc/html/search/functions_6f.html | 26 - doc/html/search/functions_6f.js | 27 - doc/html/search/functions_70.html | 26 - doc/html/search/functions_70.js | 123 - doc/html/search/functions_71.html | 26 - doc/html/search/functions_71.js | 8 - doc/html/search/functions_72.html | 26 - doc/html/search/functions_72.js | 88 - doc/html/search/functions_73.html | 26 - doc/html/search/functions_73.js | 120 - doc/html/search/functions_74.html | 26 - doc/html/search/functions_74.js | 38 - doc/html/search/functions_75.html | 26 - doc/html/search/functions_75.js | 41 - doc/html/search/functions_76.html | 26 - doc/html/search/functions_76.js | 19 - doc/html/search/functions_77.html | 26 - doc/html/search/functions_77.js | 48 - doc/html/search/functions_78.html | 26 - doc/html/search/functions_78.js | 15 - doc/html/search/functions_79.html | 26 - doc/html/search/functions_79.js | 4 - doc/html/search/functions_7a.html | 26 - doc/html/search/functions_7a.js | 37 - doc/html/search/mag_sel.png | Bin 563 -> 0 bytes doc/html/search/namespaces_61.html | 26 - doc/html/search/namespaces_61.js | 4 - doc/html/search/namespaces_65.html | 26 - doc/html/search/namespaces_65.js | 6 - doc/html/search/namespaces_66.html | 26 - doc/html/search/namespaces_66.js | 5 - doc/html/search/namespaces_72.html | 26 - doc/html/search/namespaces_72.js | 6 - doc/html/search/namespaces_75.html | 26 - doc/html/search/namespaces_75.js | 5 - doc/html/search/namespaces_7a.html | 26 - doc/html/search/namespaces_7a.js | 4 - doc/html/search/nomatches.html | 12 - doc/html/search/pages_61.html | 26 - doc/html/search/pages_61.js | 4 - doc/html/search/pages_63.html | 26 - doc/html/search/pages_63.js | 4 - doc/html/search/pages_64.html | 26 - doc/html/search/pages_64.js | 4 - doc/html/search/pages_66.html | 26 - doc/html/search/pages_66.js | 4 - doc/html/search/pages_72.html | 26 - doc/html/search/pages_72.js | 4 - doc/html/search/pages_74.html | 26 - doc/html/search/pages_74.js | 4 - doc/html/search/search.css | 271 - doc/html/search/search.js | 807 --- doc/html/search/search_l.png | Bin 604 -> 0 bytes doc/html/search/search_m.png | Bin 158 -> 0 bytes doc/html/search/search_r.png | Bin 612 -> 0 bytes doc/html/search/variables_24.html | 26 - doc/html/search/variables_24.js | 159 - doc/html/search/variables_5f.html | 26 - doc/html/search/variables_5f.js | 8 - doc/html/search/variables_61.html | 26 - doc/html/search/variables_61.js | 64 - doc/html/search/variables_62.html | 26 - doc/html/search/variables_62.js | 4 - doc/html/search/variables_63.html | 26 - doc/html/search/variables_63.js | 11 - doc/html/search/variables_64.html | 26 - doc/html/search/variables_64.js | 19 - doc/html/search/variables_65.html | 26 - doc/html/search/variables_65.js | 9 - doc/html/search/variables_66.html | 26 - doc/html/search/variables_66.js | 9 - doc/html/search/variables_67.html | 26 - doc/html/search/variables_67.js | 6 - doc/html/search/variables_68.html | 26 - doc/html/search/variables_68.js | 14 - doc/html/search/variables_69.html | 26 - doc/html/search/variables_69.js | 34 - doc/html/search/variables_6a.html | 26 - doc/html/search/variables_6a.js | 4 - doc/html/search/variables_6b.html | 26 - doc/html/search/variables_6b.js | 4 - doc/html/search/variables_6c.html | 26 - doc/html/search/variables_6c.js | 11 - doc/html/search/variables_6d.html | 26 - doc/html/search/variables_6d.js | 17 - doc/html/search/variables_6e.html | 26 - doc/html/search/variables_6e.js | 47 - doc/html/search/variables_6f.html | 26 - doc/html/search/variables_6f.js | 5 - doc/html/search/variables_70.html | 26 - doc/html/search/variables_70.js | 54 - doc/html/search/variables_72.html | 26 - doc/html/search/variables_72.js | 20 - doc/html/search/variables_73.html | 26 - doc/html/search/variables_73.js | 10 - doc/html/search/variables_74.html | 26 - doc/html/search/variables_74.js | 21 - doc/html/search/variables_75.html | 26 - doc/html/search/variables_75.js | 10 - doc/html/search/variables_76.html | 26 - doc/html/search/variables_76.js | 15 - doc/html/search/variables_77.html | 26 - doc/html/search/variables_77.js | 4 - doc/html/search/variables_78.html | 26 - doc/html/search/variables_78.js | 11 - doc/html/search/variables_7a.html | 26 - doc/html/search/variables_7a.js | 5 - doc/html/search_8php.html | 173 - doc/html/search_8php.js | 5 - doc/html/search__ac_8php.html | 137 - doc/html/search__ac_8php.js | 4 - doc/html/security_8php.html | 515 -- doc/html/security_8php.js | 15 - doc/html/service__limits_8php.html | 137 - doc/html/service__limits_8php.js | 4 - doc/html/session_8php.html | 317 -- doc/html/session_8php.js | 13 - doc/html/settings_8php.html | 175 - doc/html/settings_8php.js | 6 - doc/html/setup_8php.html | 497 -- doc/html/setup_8php.js | 20 - doc/html/share_8php.html | 137 - doc/html/share_8php.js | 4 - doc/html/sharedwithme_8php.html | 137 - doc/html/sharedwithme_8php.js | 4 - doc/html/simple__black__on__white_8php.html | 112 - doc/html/simple__green__on__black_8php.html | 112 - doc/html/simple__white__on__black_8php.html | 112 - doc/html/siteinfo_8php.html | 155 - doc/html/siteinfo_8php.js | 5 - doc/html/sitelist_8php.html | 137 - doc/html/sitelist_8php.js | 4 - doc/html/smarty_8php.html | 122 - doc/html/smilies_8php.html | 137 - doc/html/smilies_8php.js | 4 - doc/html/socgraph_8php.html | 460 -- doc/html/socgraph_8php.js | 13 - doc/html/sources_8php.html | 155 - doc/html/sources_8php.js | 5 - doc/html/spam_8php.html | 165 - doc/html/spam_8php.js | 5 - doc/html/sporadic_2php_2style_8php.html | 112 - doc/html/sporadic_2php_2theme_8php.html | 144 - doc/html/sporadic_2php_2theme_8php.js | 4 - doc/html/sslify_8php.html | 137 - doc/html/sslify_8php.js | 4 - doc/html/starred_8php.html | 137 - doc/html/starred_8php.js | 4 - doc/html/statistics__fns_8php.html | 195 - doc/html/statistics__fns_8php.js | 7 - doc/html/stumble_2php_2style_8php.html | 112 - doc/html/stumble_2php_2theme_8php.html | 144 - doc/html/stumble_2php_2theme_8php.js | 4 - doc/html/style_8php.html | 378 -- doc/html/style_8php.js | 20 - doc/html/subthread_8php.html | 137 - doc/html/subthread_8php.js | 4 - doc/html/suckerberg_2php_2style_8php.html | 112 - doc/html/suckerberg_2php_2theme_8php.html | 144 - doc/html/suckerberg_2php_2theme_8php.js | 4 - doc/html/suggest_8php.html | 155 - doc/html/suggest_8php.js | 5 - doc/html/sunbeam_2php_2style_8php.html | 112 - doc/html/sunbeam_2php_2theme_8php.html | 144 - doc/html/sunbeam_2php_2theme_8php.js | 4 - doc/html/sync_off.png | Bin 853 -> 0 bytes doc/html/sync_on.png | Bin 845 -> 0 bytes doc/html/system__unavailable_8php.html | 138 - doc/html/system__unavailable_8php.js | 4 - doc/html/tab_a.png | Bin 142 -> 0 bytes doc/html/tab_b.png | Bin 169 -> 0 bytes doc/html/tab_h.png | Bin 177 -> 0 bytes doc/html/tab_s.png | Bin 184 -> 0 bytes doc/html/tabs.css | 60 - doc/html/tagger_8php.html | 137 - doc/html/tagger_8php.js | 4 - doc/html/tagrm_8php.html | 155 - doc/html/tagrm_8php.js | 5 - doc/html/taxonomy_8php.html | 697 --- doc/html/taxonomy_8php.js | 20 - doc/html/template__processor_8php.html | 184 - doc/html/template__processor_8php.js | 7 - doc/html/test_2php_2theme_8php.html | 166 - doc/html/test_2php_2theme_8php.js | 5 - doc/html/test_8php.html | 147 - doc/html/test_8php.js | 4 - doc/html/text_8php.html | 2676 --------- doc/html/text_8php.js | 104 - doc/html/theme_2apw_2php_2theme__init_8php.html | 134 - doc/html/theme_2apw_2php_2theme__init_8php.js | 4 - doc/html/theme_2apw_2schema_2default_8php.html | 112 - doc/html/theme_2blogga_2php_2default_8php.html | 165 - doc/html/theme_2blogga_2php_2default_8php.js | 6 - doc/html/theme_2blogga_2php_2theme__init_8php.html | 112 - ...e_2blogga_2view_2theme_2blog_2default_8php.html | 161 - ...eme_2blogga_2view_2theme_2blog_2default_8php.js | 6 - doc/html/theme_2mytheme_2php_2default_8php.html | 133 - doc/html/theme_2mytheme_2php_2default_8php.js | 4 - .../theme_2redbasic_2php_2theme__init_8php.html | 112 - doc/html/theme_2redstrap_2php_2default_8php.html | 133 - doc/html/theme_2redstrap_2php_2default_8php.js | 4 - .../theme_2redstrap_2php_2theme__init_8php.html | 112 - doc/html/theme_8php.html | 137 - doc/html/theme_8php.js | 4 - doc/html/theme__init_8php.html | 136 - doc/html/theme__init_8php.js | 4 - doc/html/thing_8php.html | 159 - doc/html/thing_8php.js | 5 - doc/html/todo.html | 126 - doc/html/toggle__mobile_8php.html | 137 - doc/html/toggle__mobile_8php.js | 4 - doc/html/toggle__safesearch_8php.html | 137 - doc/html/toggle__safesearch_8php.js | 4 - doc/html/tpldebug_8php.html | 174 - doc/html/tpldebug_8php.js | 6 - doc/html/typo_8php.html | 193 - doc/html/typo_8php.js | 8 - doc/html/typohelper_8php.html | 153 - doc/html/typohelper_8php.js | 5 - doc/html/uexport_8php.html | 155 - doc/html/uexport_8php.js | 5 - doc/html/update__channel_8php.html | 141 - doc/html/update__channel_8php.js | 4 - doc/html/update__community_8php.html | 137 - doc/html/update__community_8php.js | 4 - doc/html/update__display_8php.html | 137 - doc/html/update__display_8php.js | 4 - doc/html/update__home_8php.html | 137 - doc/html/update__home_8php.js | 4 - doc/html/update__network_8php.html | 137 - doc/html/update__network_8php.js | 4 - doc/html/update__search_8php.html | 141 - doc/html/update__search_8php.js | 4 - doc/html/updatetpl_8py.html | 140 - doc/html/updatetpl_8py.js | 9 - doc/html/view_2theme_2apw_2php_2config_8php.html | 368 -- doc/html/view_2theme_2apw_2php_2config_8php.js | 6 - doc/html/view_2theme_2apw_2php_2style_8php.html | 281 - doc/html/view_2theme_2apw_2php_2style_8php.js | 14 - doc/html/view_2theme_2apw_2php_2theme_8php.html | 137 - doc/html/view_2theme_2apw_2php_2theme_8php.js | 4 - .../view_2theme_2blogga_2php_2config_8php.html | 232 - doc/html/view_2theme_2blogga_2php_2config_8php.js | 8 - ...me_2blogga_2view_2theme_2blog_2config_8php.html | 226 - ...heme_2blogga_2view_2theme_2blog_2config_8php.js | 8 - .../view_2theme_2mytheme_2php_2style_8php.html | 112 - .../view_2theme_2mytheme_2php_2theme_8php.html | 144 - doc/html/view_2theme_2mytheme_2php_2theme_8php.js | 4 - .../view_2theme_2redbasic_2php_2config_8php.html | 185 - .../view_2theme_2redbasic_2php_2config_8php.js | 6 - .../view_2theme_2redbasic_2php_2style_8php.html | 149 - doc/html/view_2theme_2redbasic_2php_2style_8php.js | 5 - .../view_2theme_2redbasic_2php_2theme_8php.html | 145 - doc/html/view_2theme_2redbasic_2php_2theme_8php.js | 4 - .../view_2theme_2redstrap_2php_2config_8php.html | 238 - .../view_2theme_2redstrap_2php_2config_8php.js | 6 - doc/html/view_8php.html | 138 - doc/html/view_8php.js | 4 - doc/html/viewconnections_8php.html | 155 - doc/html/viewconnections_8php.js | 5 - doc/html/viewsrc_8php.html | 137 - doc/html/viewsrc_8php.js | 4 - doc/html/vote_8php.html | 173 - doc/html/vote_8php.js | 6 - doc/html/wall__attach_8php.html | 137 - doc/html/wall__attach_8php.js | 4 - doc/html/wall__upload_8php.html | 139 - doc/html/wall__upload_8php.js | 4 - doc/html/webfinger_8php.html | 137 - doc/html/webfinger_8php.js | 4 - doc/html/webpages_8php.html | 155 - doc/html/webpages_8php.js | 5 - doc/html/wfinger_8php.html | 139 - doc/html/wfinger_8php.js | 4 - doc/html/widedarkness_8php.html | 112 - doc/html/widgets_8php.html | 766 --- doc/html/widgets_8php.js | 38 - doc/html/xchan_8php.html | 137 - doc/html/xchan_8php.js | 4 - doc/html/xpoco_8php.html | 137 - doc/html/xpoco_8php.js | 4 - doc/html/xrd_8php.html | 137 - doc/html/xrd_8php.js | 4 - doc/html/xref_8php.html | 137 - doc/html/xref_8php.js | 4 - doc/html/yolo_2php_2style_8php.html | 112 - doc/html/yolo_2php_2theme_8php.html | 144 - doc/html/yolo_2php_2theme_8php.js | 4 - doc/html/zfinger_8php.html | 141 - doc/html/zfinger_8php.js | 4 - doc/html/zot_8php.html | 1321 ----- doc/html/zot_8php.js | 37 - doc/html/zotfeed_8php.html | 137 - doc/html/zotfeed_8php.js | 4 - doc/html/zotsh_8py.html | 150 - doc/html/zotsh_8py.js | 12 - doc/html/zperms_8php.html | 138 - doc/html/zperms_8php.js | 4 - doc/html/zping_8php.html | 137 - doc/html/zping_8php.js | 4 - doc/main.bb | 4 +- util/Doxyfile | 8 +- 1481 files changed, 66 insertions(+), 173508 deletions(-) delete mode 100644 doc/html/BS-Default_8php.html delete mode 100644 doc/html/BaseObject_8php.html delete mode 100644 doc/html/Contact_8php.html delete mode 100644 doc/html/Contact_8php.js delete mode 100644 doc/html/ConversationObject_8php.html delete mode 100644 doc/html/ITemplateEngine_8php.html delete mode 100644 doc/html/Importer_8php.html delete mode 100644 doc/html/ItemObject_8php.html delete mode 100644 doc/html/ProtoDriver_8php.html delete mode 100644 doc/html/README_8md.html delete mode 100644 doc/html/RedBasicAuth_8php.html delete mode 100644 doc/html/RedBrowser_8php.html delete mode 100644 doc/html/RedDirectory_8php.html delete mode 100644 doc/html/RedFile_8php.html delete mode 100644 doc/html/Scrape_8php.html delete mode 100644 doc/html/Scrape_8php.js delete mode 100644 doc/html/____init_____8py.html delete mode 100644 doc/html/____init_____8py.js delete mode 100644 doc/html/____version_____8py.html delete mode 100644 doc/html/____version_____8py.js delete mode 100644 doc/html/__well__known_8php.html delete mode 100644 doc/html/__well__known_8php.js delete mode 100644 doc/html/account_8php.html delete mode 100644 doc/html/account_8php.js delete mode 100644 doc/html/achievements_8php.html delete mode 100644 doc/html/achievements_8php.js delete mode 100644 doc/html/acl_8php.html delete mode 100644 doc/html/acl_8php.js delete mode 100644 doc/html/acl__selectors_8php.html delete mode 100644 doc/html/acl__selectors_8php.js delete mode 100644 doc/html/activities_8php.html delete mode 100644 doc/html/activities_8php.js delete mode 100644 doc/html/admin_8php.html delete mode 100644 doc/html/admin_8php.js delete mode 100644 doc/html/allfriends_8php.html delete mode 100644 doc/html/allfriends_8php.js delete mode 100644 doc/html/annotated.html delete mode 100644 doc/html/annotated.js delete mode 100644 doc/html/appman_8php.html delete mode 100644 doc/html/appman_8php.js delete mode 100644 doc/html/apps_8php.html delete mode 100644 doc/html/apps_8php.js delete mode 100644 doc/html/apw_2README_8md.html delete mode 100644 doc/html/apw_2php_2style_8php.html delete mode 100644 doc/html/apw_2php_2style_8php.js delete mode 100644 doc/html/apw_2php_2theme_8php.html delete mode 100644 doc/html/apw_2php_2theme_8php.js delete mode 100644 doc/html/auth_8php.html delete mode 100644 doc/html/auth_8php.js delete mode 100644 doc/html/bb2diaspora_8php.html delete mode 100644 doc/html/bb2diaspora_8php.js delete mode 100644 doc/html/bbcode_8php.html delete mode 100644 doc/html/bbcode_8php.js delete mode 100644 doc/html/bc_s.png delete mode 100644 doc/html/bdwn.png delete mode 100644 doc/html/block_8php.html delete mode 100644 doc/html/block_8php.js delete mode 100644 doc/html/blocks_8php.html delete mode 100644 doc/html/blocks_8php.js delete mode 100644 doc/html/blogga_2php_2README_8md.html delete mode 100644 doc/html/blogga_2php_2theme_8php.html delete mode 100644 doc/html/blogga_2php_2theme_8php.js delete mode 100644 doc/html/blogga_2view_2theme_2blog_2theme_8php.html delete mode 100644 doc/html/blogga_2view_2theme_2blog_2theme_8php.js delete mode 100644 doc/html/boot_8php.html delete mode 100644 doc/html/boot_8php.js delete mode 100644 doc/html/boxy_8php.html delete mode 100644 doc/html/cache_8php.html delete mode 100644 doc/html/chanman_8php.html delete mode 100644 doc/html/chanman_8php.js delete mode 100644 doc/html/channel_8php.html delete mode 100644 doc/html/channel_8php.js delete mode 100644 doc/html/chanview_8php.html delete mode 100644 doc/html/chanview_8php.js delete mode 100644 doc/html/chatsvc_8php.html delete mode 100644 doc/html/chatsvc_8php.js delete mode 100644 doc/html/choklet_8php.html delete mode 100644 doc/html/classApp-members.html delete mode 100644 doc/html/classApp.html delete mode 100644 doc/html/classApp.js delete mode 100644 doc/html/classBaseObject-members.html delete mode 100644 doc/html/classBaseObject.html delete mode 100644 doc/html/classBaseObject.js delete mode 100644 doc/html/classBaseObject.png delete mode 100644 doc/html/classCache-members.html delete mode 100644 doc/html/classCache.html delete mode 100644 doc/html/classConversation-members.html delete mode 100644 doc/html/classConversation.html delete mode 100644 doc/html/classConversation.js delete mode 100644 doc/html/classConversation.png delete mode 100644 doc/html/classFKOAuth1-members.html delete mode 100644 doc/html/classFKOAuth1.html delete mode 100644 doc/html/classFKOAuth1.js delete mode 100644 doc/html/classFKOAuth1.png delete mode 100644 doc/html/classFKOAuthDataStore-members.html delete mode 100644 doc/html/classFKOAuthDataStore.html delete mode 100644 doc/html/classFKOAuthDataStore.js delete mode 100644 doc/html/classFKOAuthDataStore.png delete mode 100644 doc/html/classFriendicaSmarty-members.html delete mode 100644 doc/html/classFriendicaSmarty.html delete mode 100644 doc/html/classFriendicaSmarty.js delete mode 100644 doc/html/classFriendicaSmarty.png delete mode 100644 doc/html/classFriendicaSmartyEngine-members.html delete mode 100644 doc/html/classFriendicaSmartyEngine.html delete mode 100644 doc/html/classFriendicaSmartyEngine.js delete mode 100644 doc/html/classFriendicaSmartyEngine.png delete mode 100644 doc/html/classItem-members.html delete mode 100644 doc/html/classItem.html delete mode 100644 doc/html/classItem.js delete mode 100644 doc/html/classItem.png delete mode 100644 doc/html/classPhoto-members.html delete mode 100644 doc/html/classPhoto.html delete mode 100644 doc/html/classPhoto.js delete mode 100644 doc/html/classProtoDriver-members.html delete mode 100644 doc/html/classProtoDriver.html delete mode 100644 doc/html/classProtoDriver.js delete mode 100644 doc/html/classProtoDriver.png delete mode 100644 doc/html/classRedBasicAuth-members.html delete mode 100644 doc/html/classRedBasicAuth.html delete mode 100644 doc/html/classRedBasicAuth.js delete mode 100644 doc/html/classRedBasicAuth.png delete mode 100644 doc/html/classRedBrowser-members.html delete mode 100644 doc/html/classRedBrowser.html delete mode 100644 doc/html/classRedBrowser.js delete mode 100644 doc/html/classRedBrowser.png delete mode 100644 doc/html/classRedDirectory-members.html delete mode 100644 doc/html/classRedDirectory.html delete mode 100644 doc/html/classRedDirectory.js delete mode 100644 doc/html/classRedDirectory.png delete mode 100644 doc/html/classRedFile-members.html delete mode 100644 doc/html/classRedFile.html delete mode 100644 doc/html/classRedFile.js delete mode 100644 doc/html/classRedFile.png delete mode 100644 doc/html/classRedInode-members.html delete mode 100644 doc/html/classRedInode.html delete mode 100644 doc/html/classRedInode.js delete mode 100644 doc/html/classRedInode.png delete mode 100644 doc/html/classRedMatrix_1_1Import_1_1Import-members.html delete mode 100644 doc/html/classRedMatrix_1_1Import_1_1Import.html delete mode 100644 doc/html/classRedMatrix_1_1Import_1_1Import.js delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth-members.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.js delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.png delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.png delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory-members.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.js delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.png delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedFile-members.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.html delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.js delete mode 100644 doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.png delete mode 100644 doc/html/classRedmatrix_1_1Import_1_1Import.html delete mode 100644 doc/html/classTemplate-members.html delete mode 100644 doc/html/classTemplate.html delete mode 100644 doc/html/classTemplate.js delete mode 100644 doc/html/classTemplate.png delete mode 100644 doc/html/classZotDriver-members.html delete mode 100644 doc/html/classZotDriver.html delete mode 100644 doc/html/classZotDriver.js delete mode 100644 doc/html/classZotDriver.png delete mode 100644 doc/html/classdba-members.html delete mode 100644 doc/html/classdba.html delete mode 100644 doc/html/classdba.js delete mode 100644 doc/html/classdba__driver-members.html delete mode 100644 doc/html/classdba__driver.html delete mode 100644 doc/html/classdba__driver.js delete mode 100644 doc/html/classdba__driver.png delete mode 100644 doc/html/classdba__mysql-members.html delete mode 100644 doc/html/classdba__mysql.html delete mode 100644 doc/html/classdba__mysql.js delete mode 100644 doc/html/classdba__mysql.png delete mode 100644 doc/html/classdba__mysqli-members.html delete mode 100644 doc/html/classdba__mysqli.html delete mode 100644 doc/html/classdba__mysqli.js delete mode 100644 doc/html/classdba__mysqli.png delete mode 100644 doc/html/classdba__postgres-members.html delete mode 100644 doc/html/classdba__postgres.html delete mode 100644 doc/html/classdba__postgres.js delete mode 100644 doc/html/classdba__postgres.png delete mode 100644 doc/html/classeasywebdav_1_1client_1_1Client-members.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1Client.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1Client.js delete mode 100644 doc/html/classeasywebdav_1_1client_1_1Client.png delete mode 100644 doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.png delete mode 100644 doc/html/classeasywebdav_1_1client_1_1OperationFailed-members.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1OperationFailed.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1OperationFailed.js delete mode 100644 doc/html/classeasywebdav_1_1client_1_1OperationFailed.png delete mode 100644 doc/html/classeasywebdav_1_1client_1_1WebdavException.html delete mode 100644 doc/html/classeasywebdav_1_1client_1_1WebdavException.png delete mode 100644 doc/html/classenotify-members.html delete mode 100644 doc/html/classenotify.html delete mode 100644 doc/html/classes.html delete mode 100644 doc/html/classphoto__driver-members.html delete mode 100644 doc/html/classphoto__driver.html delete mode 100644 doc/html/classphoto__driver.js delete mode 100644 doc/html/classphoto__driver.png delete mode 100644 doc/html/classphoto__gd-members.html delete mode 100644 doc/html/classphoto__gd.html delete mode 100644 doc/html/classphoto__gd.js delete mode 100644 doc/html/classphoto__gd.png delete mode 100644 doc/html/classphoto__imagick-members.html delete mode 100644 doc/html/classphoto__imagick.html delete mode 100644 doc/html/classphoto__imagick.js delete mode 100644 doc/html/classphoto__imagick.png delete mode 100644 doc/html/classzotsh_1_1CommandNotFound.html delete mode 100644 doc/html/classzotsh_1_1CommandNotFound.png delete mode 100644 doc/html/classzotsh_1_1ZotSH-members.html delete mode 100644 doc/html/classzotsh_1_1ZotSH.html delete mode 100644 doc/html/classzotsh_1_1ZotSH.js delete mode 100644 doc/html/classzotsh_1_1ZotSH.png delete mode 100644 doc/html/cli__startup_8php.html delete mode 100644 doc/html/cli__startup_8php.js delete mode 100644 doc/html/cli__suggest_8php.html delete mode 100644 doc/html/cli__suggest_8php.js delete mode 100644 doc/html/client_8py.html delete mode 100644 doc/html/client_8py.js delete mode 100644 doc/html/closed.png delete mode 100644 doc/html/cloud_8php.html delete mode 100644 doc/html/cloud_8php.js delete mode 100644 doc/html/comanche_8php.html delete mode 100644 doc/html/comanche_8php.js delete mode 100644 doc/html/common_8php.html delete mode 100644 doc/html/common_8php.js delete mode 100644 doc/html/community_8php.html delete mode 100644 doc/html/community_8php.js delete mode 100644 doc/html/config_8md.html delete mode 100644 doc/html/connect_8php.html delete mode 100644 doc/html/connect_8php.js delete mode 100644 doc/html/connections_8php.html delete mode 100644 doc/html/connections_8php.js delete mode 100644 doc/html/connedit_8php.html delete mode 100644 doc/html/connedit_8php.js delete mode 100644 doc/html/contact__selectors_8php.html delete mode 100644 doc/html/contact__selectors_8php.js delete mode 100644 doc/html/contact__widgets_8php.html delete mode 100644 doc/html/contact__widgets_8php.js delete mode 100644 doc/html/contactgroup_8php.html delete mode 100644 doc/html/contactgroup_8php.js delete mode 100644 doc/html/conversation_8php.html delete mode 100644 doc/html/conversation_8php.js delete mode 100644 doc/html/crepair_8php.html delete mode 100644 doc/html/crepair_8php.js delete mode 100644 doc/html/cronhooks_8php.html delete mode 100644 doc/html/cronhooks_8php.js delete mode 100644 doc/html/crypto_8php.html delete mode 100644 doc/html/crypto_8php.js delete mode 100644 doc/html/dark_8php.html delete mode 100644 doc/html/darkness_8php.html delete mode 100644 doc/html/darknessleftaside_8php.html delete mode 100644 doc/html/darknessrightaside_8php.html delete mode 100644 doc/html/datetime_8php.html delete mode 100644 doc/html/datetime_8php.js delete mode 100644 doc/html/dav_8php.html delete mode 100644 doc/html/dav_8php.js delete mode 100644 doc/html/db__update_8php.html delete mode 100644 doc/html/db__update_8php.js delete mode 100644 doc/html/dba_8php.html delete mode 100644 doc/html/dba_8php.js delete mode 100644 doc/html/dba__driver_8php.html delete mode 100644 doc/html/dba__driver_8php.js delete mode 100644 doc/html/dba__mysql_8php.html delete mode 100644 doc/html/dba__mysqli_8php.html delete mode 100644 doc/html/dba__postgres_8php.html delete mode 100644 doc/html/default_8php.html delete mode 100644 doc/html/default_8php.js delete mode 100644 doc/html/delegate_8php.html delete mode 100644 doc/html/delegate_8php.js delete mode 100644 doc/html/deliver_8php.html delete mode 100644 doc/html/deliver_8php.js delete mode 100644 doc/html/deprecated.html delete mode 100644 doc/html/diaspora_8php.html delete mode 100644 doc/html/diaspora_8php.js delete mode 100644 doc/html/dimport_8php.html delete mode 100644 doc/html/dimport_8php.js delete mode 100644 doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html delete mode 100644 doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js delete mode 100644 doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html delete mode 100644 doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js delete mode 100644 doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html delete mode 100644 doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js delete mode 100644 doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html delete mode 100644 doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js delete mode 100644 doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html delete mode 100644 doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js delete mode 100644 doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.html delete mode 100644 doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.js delete mode 100644 doc/html/dir_172e021ddcd8632dc2b797c4a4961924.html delete mode 100644 doc/html/dir_172e021ddcd8632dc2b797c4a4961924.js delete mode 100644 doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html delete mode 100644 doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js delete mode 100644 doc/html/dir_2222f31d7a61e527af3624100548cf57.html delete mode 100644 doc/html/dir_2222f31d7a61e527af3624100548cf57.js delete mode 100644 doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html delete mode 100644 doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js delete mode 100644 doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.html delete mode 100644 doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.js delete mode 100644 doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.html delete mode 100644 doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.js delete mode 100644 doc/html/dir_2b01166339035d109f34f44565eac444.html delete mode 100644 doc/html/dir_2b01166339035d109f34f44565eac444.js delete mode 100644 doc/html/dir_3b9797c0babe758cd341aa12c993dd83.html delete mode 100644 doc/html/dir_3b9797c0babe758cd341aa12c993dd83.js delete mode 100644 doc/html/dir_3ce0e055da4865b813ea0aa230224599.html delete mode 100644 doc/html/dir_3ce0e055da4865b813ea0aa230224599.js delete mode 100644 doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html delete mode 100644 doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js delete mode 100644 doc/html/dir_3de62e6fc7b5905e890806571f832581.html delete mode 100644 doc/html/dir_3de62e6fc7b5905e890806571f832581.js delete mode 100644 doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.html delete mode 100644 doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.js delete mode 100644 doc/html/dir_4acb285a1960a920438b718da0958cf4.html delete mode 100644 doc/html/dir_4acb285a1960a920438b718da0958cf4.js delete mode 100644 doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html delete mode 100644 doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js delete mode 100644 doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.html delete mode 100644 doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.js delete mode 100644 doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.html delete mode 100644 doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.js delete mode 100644 doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html delete mode 100644 doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js delete mode 100644 doc/html/dir_6b44a0e797e2f12381093380e3e54763.html delete mode 100644 doc/html/dir_6b44a0e797e2f12381093380e3e54763.js delete mode 100644 doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html delete mode 100644 doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.js delete mode 100644 doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html delete mode 100644 doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js delete mode 100644 doc/html/dir_720432dea4a717197ae070dbc42b8f20.html delete mode 100644 doc/html/dir_720432dea4a717197ae070dbc42b8f20.js delete mode 100644 doc/html/dir_73186942b3defcab180a242f911ab570.html delete mode 100644 doc/html/dir_73186942b3defcab180a242f911ab570.js delete mode 100644 doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html delete mode 100644 doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.js delete mode 100644 doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html delete mode 100644 doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js delete mode 100644 doc/html/dir_80b621040c90c64e1a3ba8df441fb198.html delete mode 100644 doc/html/dir_80b621040c90c64e1a3ba8df441fb198.js delete mode 100644 doc/html/dir_817f6d302394b98e59575acdb59998bc.html delete mode 100644 doc/html/dir_817f6d302394b98e59575acdb59998bc.js delete mode 100644 doc/html/dir_84d42485a570ed49b44a03b64f62adcc.html delete mode 100644 doc/html/dir_84d42485a570ed49b44a03b64f62adcc.js delete mode 100644 doc/html/dir_8543001e5d25368a6edede3e63efb554.html delete mode 100644 doc/html/dir_8543001e5d25368a6edede3e63efb554.js delete mode 100644 doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.html delete mode 100644 doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.js delete mode 100644 doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.html delete mode 100644 doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.js delete mode 100644 doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html delete mode 100644 doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js delete mode 100644 doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.html delete mode 100644 doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.js delete mode 100644 doc/html/dir_922c77e958c99a98db92d38a3a349bf2.html delete mode 100644 doc/html/dir_922c77e958c99a98db92d38a3a349bf2.js delete mode 100644 doc/html/dir_92d6b429199666aa3765c8a934db5e14.html delete mode 100644 doc/html/dir_92d6b429199666aa3765c8a934db5e14.js delete mode 100644 doc/html/dir_94ce3c0aa655f52cbce858751688d328.html delete mode 100644 doc/html/dir_94ce3c0aa655f52cbce858751688d328.js delete mode 100644 doc/html/dir_955ae6074e6c84afe72925e364242b14.html delete mode 100644 doc/html/dir_955ae6074e6c84afe72925e364242b14.js delete mode 100644 doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html delete mode 100644 doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js delete mode 100644 doc/html/dir__fns_8php.html delete mode 100644 doc/html/dir__fns_8php.js delete mode 100644 doc/html/dir_a8a0005c2b8590c535262d232c22afab.html delete mode 100644 doc/html/dir_a8a0005c2b8590c535262d232c22afab.js delete mode 100644 doc/html/dir_aae29906d7bfc07d076125f669c8352e.html delete mode 100644 doc/html/dir_aae29906d7bfc07d076125f669c8352e.js delete mode 100644 doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html delete mode 100644 doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js delete mode 100644 doc/html/dir_b1008ce0b02657da707945523382e0f8.html delete mode 100644 doc/html/dir_b1008ce0b02657da707945523382e0f8.js delete mode 100644 doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html delete mode 100644 doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js delete mode 100644 doc/html/dir_b6f208674a96d24af8106c998c637d76.html delete mode 100644 doc/html/dir_b6f208674a96d24af8106c998c637d76.js delete mode 100644 doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.html delete mode 100644 doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.js delete mode 100644 doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html delete mode 100644 doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js delete mode 100644 doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.html delete mode 100644 doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.js delete mode 100644 doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html delete mode 100644 doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js delete mode 100644 doc/html/dir_d41ce877eb409a4791b288730010abe2.html delete mode 100644 doc/html/dir_d41ce877eb409a4791b288730010abe2.js delete mode 100644 doc/html/dir_d44c64559bbebec7f509842c48db8b23.html delete mode 100644 doc/html/dir_d44c64559bbebec7f509842c48db8b23.js delete mode 100644 doc/html/dir_d520c5cf583201d9437764f209363c22.html delete mode 100644 doc/html/dir_d520c5cf583201d9437764f209363c22.js delete mode 100644 doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.html delete mode 100644 doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.js delete mode 100644 doc/html/dir_d795dfe8933002397556cc7aa16eca15.html delete mode 100644 doc/html/dir_d795dfe8933002397556cc7aa16eca15.js delete mode 100644 doc/html/dir_da7dee9003bbd0df28447261834d7815.html delete mode 100644 doc/html/dir_da7dee9003bbd0df28447261834d7815.js delete mode 100644 doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html delete mode 100644 doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.js delete mode 100644 doc/html/dir_e7f045be8bb383d8447c6a6b84145083.html delete mode 100644 doc/html/dir_e7f045be8bb383d8447c6a6b84145083.js delete mode 100644 doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html delete mode 100644 doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js delete mode 100644 doc/html/dir_f20b1a70c98162efa33fce7214fb9665.html delete mode 100644 doc/html/dir_f20b1a70c98162efa33fce7214fb9665.js delete mode 100644 doc/html/dir_f6607f4f29fa266cde007631e2b0eade.html delete mode 100644 doc/html/dir_f6607f4f29fa266cde007631e2b0eade.js delete mode 100644 doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.html delete mode 100644 doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.js delete mode 100644 doc/html/dirfind_8php.html delete mode 100644 doc/html/dirfind_8php.js delete mode 100644 doc/html/dirprofile_8php.html delete mode 100644 doc/html/dirprofile_8php.js delete mode 100644 doc/html/dirsearch_8php.html delete mode 100644 doc/html/dirsearch_8php.js delete mode 100644 doc/html/display_8php.html delete mode 100644 doc/html/display_8php.js delete mode 100644 doc/html/docblox__errorchecker_8php.html delete mode 100644 doc/html/docblox__errorchecker_8php.js delete mode 100644 doc/html/doxygen.css delete mode 100644 doc/html/doxygen.png delete mode 100644 doc/html/dynsections.js delete mode 100644 doc/html/editblock_8php.html delete mode 100644 doc/html/editblock_8php.js delete mode 100644 doc/html/editlayout_8php.html delete mode 100644 doc/html/editlayout_8php.js delete mode 100644 doc/html/editpost_8php.html delete mode 100644 doc/html/editpost_8php.js delete mode 100644 doc/html/editwebpage_8php.html delete mode 100644 doc/html/editwebpage_8php.js delete mode 100644 doc/html/enotify_8php.html delete mode 100644 doc/html/enotify_8php.js delete mode 100644 doc/html/event_8php.html delete mode 100644 doc/html/event_8php.js delete mode 100644 doc/html/events_8php.html delete mode 100644 doc/html/events_8php.js delete mode 100644 doc/html/expire_8php.html delete mode 100644 doc/html/expire_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.js delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html delete mode 100644 doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.js delete mode 100644 doc/html/externals_8php.html delete mode 100644 doc/html/externals_8php.js delete mode 100644 doc/html/extract_8php.html delete mode 100644 doc/html/extract_8php.js delete mode 100644 doc/html/fbrowser_8php.html delete mode 100644 doc/html/fbrowser_8php.js delete mode 100644 doc/html/fcontact_8php.html delete mode 100644 doc/html/fcontact_8php.js delete mode 100644 doc/html/features_8php.html delete mode 100644 doc/html/features_8php.js delete mode 100644 doc/html/feed_8php.html delete mode 100644 doc/html/feed_8php.js delete mode 100644 doc/html/filer_8php.html delete mode 100644 doc/html/filer_8php.js delete mode 100644 doc/html/filerm_8php.html delete mode 100644 doc/html/filerm_8php.js delete mode 100644 doc/html/files.html delete mode 100644 doc/html/files.js delete mode 100644 doc/html/filestorage_8php.html delete mode 100644 doc/html/filestorage_8php.js delete mode 100644 doc/html/fixd_8php.html delete mode 100644 doc/html/fixd_8php.js delete mode 100644 doc/html/fpostit_8php.html delete mode 100644 doc/html/fpostit_8php.js delete mode 100644 doc/html/fred-48.png delete mode 100644 doc/html/fresh_8md.html delete mode 100644 doc/html/friendica-to-smarty-tpl_8py.html delete mode 100644 doc/html/friendica-to-smarty-tpl_8py.js delete mode 100644 doc/html/friendica__smarty_8php.html delete mode 100644 doc/html/frphotohelper_8php.html delete mode 100644 doc/html/frphotohelper_8php.js delete mode 100644 doc/html/frphotos_8php.html delete mode 100644 doc/html/frphotos_8php.js delete mode 100644 doc/html/fsuggest_8php.html delete mode 100644 doc/html/fsuggest_8php.js delete mode 100644 doc/html/ftv2blank.png delete mode 100644 doc/html/ftv2cl.png delete mode 100644 doc/html/ftv2doc.png delete mode 100644 doc/html/ftv2folderclosed.png delete mode 100644 doc/html/ftv2folderopen.png delete mode 100644 doc/html/ftv2lastnode.png delete mode 100644 doc/html/ftv2link.png delete mode 100644 doc/html/ftv2mlastnode.png delete mode 100644 doc/html/ftv2mnode.png delete mode 100644 doc/html/ftv2mo.png delete mode 100644 doc/html/ftv2node.png delete mode 100644 doc/html/ftv2ns.png delete mode 100644 doc/html/ftv2plastnode.png delete mode 100644 doc/html/ftv2pnode.png delete mode 100644 doc/html/ftv2splitbar.png delete mode 100644 doc/html/ftv2vertline.png delete mode 100644 doc/html/full_8php.html delete mode 100644 doc/html/full_8php.js delete mode 100644 doc/html/functions.html delete mode 100644 doc/html/functions_0x5f.html delete mode 100644 doc/html/functions_0x61.html delete mode 100644 doc/html/functions_0x62.html delete mode 100644 doc/html/functions_0x63.html delete mode 100644 doc/html/functions_0x64.html delete mode 100644 doc/html/functions_0x65.html delete mode 100644 doc/html/functions_0x66.html delete mode 100644 doc/html/functions_0x67.html delete mode 100644 doc/html/functions_0x68.html delete mode 100644 doc/html/functions_0x69.html delete mode 100644 doc/html/functions_0x6c.html delete mode 100644 doc/html/functions_0x6d.html delete mode 100644 doc/html/functions_0x6e.html delete mode 100644 doc/html/functions_0x6f.html delete mode 100644 doc/html/functions_0x70.html delete mode 100644 doc/html/functions_0x71.html delete mode 100644 doc/html/functions_0x72.html delete mode 100644 doc/html/functions_0x73.html delete mode 100644 doc/html/functions_0x74.html delete mode 100644 doc/html/functions_0x75.html delete mode 100644 doc/html/functions_0x76.html delete mode 100644 doc/html/functions_8php.html delete mode 100644 doc/html/functions_8php.js delete mode 100644 doc/html/functions_dup.js delete mode 100644 doc/html/functions_func.html delete mode 100644 doc/html/functions_func.js delete mode 100644 doc/html/functions_func_0x61.html delete mode 100644 doc/html/functions_func_0x62.html delete mode 100644 doc/html/functions_func_0x63.html delete mode 100644 doc/html/functions_func_0x64.html delete mode 100644 doc/html/functions_func_0x65.html delete mode 100644 doc/html/functions_func_0x66.html delete mode 100644 doc/html/functions_func_0x67.html delete mode 100644 doc/html/functions_func_0x68.html delete mode 100644 doc/html/functions_func_0x69.html delete mode 100644 doc/html/functions_func_0x6c.html delete mode 100644 doc/html/functions_func_0x6d.html delete mode 100644 doc/html/functions_func_0x6e.html delete mode 100644 doc/html/functions_func_0x6f.html delete mode 100644 doc/html/functions_func_0x70.html delete mode 100644 doc/html/functions_func_0x71.html delete mode 100644 doc/html/functions_func_0x72.html delete mode 100644 doc/html/functions_func_0x73.html delete mode 100644 doc/html/functions_func_0x74.html delete mode 100644 doc/html/functions_func_0x75.html delete mode 100644 doc/html/functions_func_0x76.html delete mode 100644 doc/html/functions_vars.html delete mode 100644 doc/html/globals.html delete mode 100644 doc/html/globals_0x5f.html delete mode 100644 doc/html/globals_0x61.html delete mode 100644 doc/html/globals_0x62.html delete mode 100644 doc/html/globals_0x63.html delete mode 100644 doc/html/globals_0x64.html delete mode 100644 doc/html/globals_0x65.html delete mode 100644 doc/html/globals_0x66.html delete mode 100644 doc/html/globals_0x67.html delete mode 100644 doc/html/globals_0x68.html delete mode 100644 doc/html/globals_0x69.html delete mode 100644 doc/html/globals_0x6a.html delete mode 100644 doc/html/globals_0x6b.html delete mode 100644 doc/html/globals_0x6c.html delete mode 100644 doc/html/globals_0x6d.html delete mode 100644 doc/html/globals_0x6e.html delete mode 100644 doc/html/globals_0x6f.html delete mode 100644 doc/html/globals_0x70.html delete mode 100644 doc/html/globals_0x71.html delete mode 100644 doc/html/globals_0x72.html delete mode 100644 doc/html/globals_0x73.html delete mode 100644 doc/html/globals_0x74.html delete mode 100644 doc/html/globals_0x75.html delete mode 100644 doc/html/globals_0x76.html delete mode 100644 doc/html/globals_0x77.html delete mode 100644 doc/html/globals_0x78.html delete mode 100644 doc/html/globals_0x79.html delete mode 100644 doc/html/globals_0x7a.html delete mode 100644 doc/html/globals_dup.js delete mode 100644 doc/html/globals_func.html delete mode 100644 doc/html/globals_func.js delete mode 100644 doc/html/globals_func_0x61.html delete mode 100644 doc/html/globals_func_0x62.html delete mode 100644 doc/html/globals_func_0x63.html delete mode 100644 doc/html/globals_func_0x64.html delete mode 100644 doc/html/globals_func_0x65.html delete mode 100644 doc/html/globals_func_0x66.html delete mode 100644 doc/html/globals_func_0x67.html delete mode 100644 doc/html/globals_func_0x68.html delete mode 100644 doc/html/globals_func_0x69.html delete mode 100644 doc/html/globals_func_0x6a.html delete mode 100644 doc/html/globals_func_0x6b.html delete mode 100644 doc/html/globals_func_0x6c.html delete mode 100644 doc/html/globals_func_0x6d.html delete mode 100644 doc/html/globals_func_0x6e.html delete mode 100644 doc/html/globals_func_0x6f.html delete mode 100644 doc/html/globals_func_0x70.html delete mode 100644 doc/html/globals_func_0x71.html delete mode 100644 doc/html/globals_func_0x72.html delete mode 100644 doc/html/globals_func_0x73.html delete mode 100644 doc/html/globals_func_0x74.html delete mode 100644 doc/html/globals_func_0x75.html delete mode 100644 doc/html/globals_func_0x76.html delete mode 100644 doc/html/globals_func_0x77.html delete mode 100644 doc/html/globals_func_0x78.html delete mode 100644 doc/html/globals_func_0x79.html delete mode 100644 doc/html/globals_func_0x7a.html delete mode 100644 doc/html/globals_vars.html delete mode 100644 doc/html/globals_vars.js delete mode 100644 doc/html/globals_vars_0x61.html delete mode 100644 doc/html/globals_vars_0x63.html delete mode 100644 doc/html/globals_vars_0x64.html delete mode 100644 doc/html/globals_vars_0x65.html delete mode 100644 doc/html/globals_vars_0x66.html delete mode 100644 doc/html/globals_vars_0x67.html delete mode 100644 doc/html/globals_vars_0x68.html delete mode 100644 doc/html/globals_vars_0x69.html delete mode 100644 doc/html/globals_vars_0x6a.html delete mode 100644 doc/html/globals_vars_0x6b.html delete mode 100644 doc/html/globals_vars_0x6c.html delete mode 100644 doc/html/globals_vars_0x6d.html delete mode 100644 doc/html/globals_vars_0x6e.html delete mode 100644 doc/html/globals_vars_0x70.html delete mode 100644 doc/html/globals_vars_0x72.html delete mode 100644 doc/html/globals_vars_0x73.html delete mode 100644 doc/html/globals_vars_0x74.html delete mode 100644 doc/html/globals_vars_0x75.html delete mode 100644 doc/html/globals_vars_0x76.html delete mode 100644 doc/html/globals_vars_0x77.html delete mode 100644 doc/html/globals_vars_0x78.html delete mode 100644 doc/html/globals_vars_0x7a.html delete mode 100644 doc/html/gprobe_8php.html delete mode 100644 doc/html/gprobe_8php.js delete mode 100644 doc/html/greenthumbnails_8php.html delete mode 100644 doc/html/hcard_8php.html delete mode 100644 doc/html/hcard_8php.js delete mode 100644 doc/html/help_8php.html delete mode 100644 doc/html/help_8php.js delete mode 100644 doc/html/hierarchy.html delete mode 100644 doc/html/hierarchy.js delete mode 100644 doc/html/hivenet_2php_2style_8php.html delete mode 100644 doc/html/hivenet_2php_2theme_8php.html delete mode 100644 doc/html/hivenet_2php_2theme_8php.js delete mode 100644 doc/html/home_8php.html delete mode 100644 doc/html/home_8php.js delete mode 100644 doc/html/hostxrd_8php.html delete mode 100644 doc/html/hostxrd_8php.js delete mode 100644 doc/html/html2bbcode_8php.html delete mode 100644 doc/html/html2bbcode_8php.js delete mode 100644 doc/html/html2plain_8php.html delete mode 100644 doc/html/html2plain_8php.js delete mode 100644 doc/html/hubloc_8php.html delete mode 100644 doc/html/hubloc_8php.js delete mode 100644 doc/html/identity_8php.html delete mode 100644 doc/html/identity_8php.js delete mode 100644 doc/html/impel_8php.html delete mode 100644 doc/html/impel_8php.js delete mode 100644 doc/html/import_8php.html delete mode 100644 doc/html/import_8php.js delete mode 100644 doc/html/importelm_8php.html delete mode 100644 doc/html/importelm_8php.js delete mode 100644 doc/html/include_2api_8php.html delete mode 100644 doc/html/include_2api_8php.js delete mode 100644 doc/html/include_2apps_8php.html delete mode 100644 doc/html/include_2apps_8php.js delete mode 100644 doc/html/include_2attach_8php.html delete mode 100644 doc/html/include_2attach_8php.js delete mode 100644 doc/html/include_2bookmarks_8php.html delete mode 100644 doc/html/include_2bookmarks_8php.js delete mode 100644 doc/html/include_2chanman_8php.html delete mode 100644 doc/html/include_2chanman_8php.js delete mode 100644 doc/html/include_2chat_8php.html delete mode 100644 doc/html/include_2chat_8php.js delete mode 100644 doc/html/include_2config_8php.html delete mode 100644 doc/html/include_2config_8php.js delete mode 100644 doc/html/include_2directory_8php.html delete mode 100644 doc/html/include_2directory_8php.js delete mode 100644 doc/html/include_2follow_8php.html delete mode 100644 doc/html/include_2follow_8php.js delete mode 100644 doc/html/include_2group_8php.html delete mode 100644 doc/html/include_2group_8php.js delete mode 100644 doc/html/include_2menu_8php.html delete mode 100644 doc/html/include_2menu_8php.js delete mode 100644 doc/html/include_2message_8php.html delete mode 100644 doc/html/include_2message_8php.js delete mode 100644 doc/html/include_2network_8php.html delete mode 100644 doc/html/include_2network_8php.js delete mode 100644 doc/html/include_2notify_8php.html delete mode 100644 doc/html/include_2notify_8php.js delete mode 100644 doc/html/include_2oembed_8php.html delete mode 100644 doc/html/include_2oembed_8php.js delete mode 100644 doc/html/include_2photos_8php.html delete mode 100644 doc/html/include_2photos_8php.js delete mode 100644 doc/html/include_2probe_8php.html delete mode 100644 doc/html/include_2probe_8php.js delete mode 100644 doc/html/include_2settings_8php.html delete mode 100644 doc/html/include_2settings_8php.js delete mode 100644 doc/html/index.html create mode 100644 doc/html/index.php delete mode 100644 doc/html/interfaceITemplateEngine-members.html delete mode 100644 doc/html/interfaceITemplateEngine.html delete mode 100644 doc/html/interfaceITemplateEngine.js delete mode 100644 doc/html/interfaceITemplateEngine.png delete mode 100644 doc/html/intro_8php.html delete mode 100644 doc/html/intro_8php.js delete mode 100644 doc/html/invite_8php.html delete mode 100644 doc/html/invite_8php.js delete mode 100644 doc/html/iquery_8php.html delete mode 100644 doc/html/iquery_8php.js delete mode 100644 doc/html/item_8php.html delete mode 100644 doc/html/item_8php.js delete mode 100644 doc/html/items_8php.html delete mode 100644 doc/html/items_8php.js delete mode 100644 doc/html/jquery.js delete mode 100644 doc/html/lang_8php.html delete mode 100644 doc/html/lang_8php.js delete mode 100644 doc/html/language_8php.html delete mode 100644 doc/html/language_8php.js delete mode 100644 doc/html/lastpost_8php.html delete mode 100644 doc/html/lastpost_8php.js delete mode 100644 doc/html/layouts_8php.html delete mode 100644 doc/html/layouts_8php.js delete mode 100644 doc/html/like_8php.html delete mode 100644 doc/html/like_8php.js delete mode 100644 doc/html/lockview_8php.html delete mode 100644 doc/html/lockview_8php.js delete mode 100644 doc/html/locs_8php.html delete mode 100644 doc/html/locs_8php.js delete mode 100644 doc/html/login_8php.html delete mode 100644 doc/html/login_8php.js delete mode 100644 doc/html/lostpass_8php.html delete mode 100644 doc/html/lostpass_8php.js delete mode 100644 doc/html/magic_8php.html delete mode 100644 doc/html/magic_8php.js delete mode 100644 doc/html/mail_8php.html delete mode 100644 doc/html/mail_8php.js delete mode 100644 doc/html/manage_8php.html delete mode 100644 doc/html/manage_8php.js delete mode 100644 doc/html/match_8php.html delete mode 100644 doc/html/match_8php.js delete mode 100644 doc/html/md_README.html delete mode 100644 doc/html/md_config.html delete mode 100644 doc/html/md_fresh.html delete mode 100644 doc/html/minimal_8php.html delete mode 100644 doc/html/minimalisticdarkness_8php.html delete mode 100644 doc/html/minimalisticdarkness_8php.js delete mode 100644 doc/html/mitem_8php.html delete mode 100644 doc/html/mitem_8php.js delete mode 100644 doc/html/mod_2api_8php.html delete mode 100644 doc/html/mod_2api_8php.js delete mode 100644 doc/html/mod_2apps_8php.html delete mode 100644 doc/html/mod_2apps_8php.js delete mode 100644 doc/html/mod_2attach_8php.html delete mode 100644 doc/html/mod_2attach_8php.js delete mode 100644 doc/html/mod_2bookmarks_8php.html delete mode 100644 doc/html/mod_2bookmarks_8php.js delete mode 100644 doc/html/mod_2chanman_8php.html delete mode 100644 doc/html/mod_2chat_8php.html delete mode 100644 doc/html/mod_2chat_8php.js delete mode 100644 doc/html/mod_2directory_8php.html delete mode 100644 doc/html/mod_2directory_8php.js delete mode 100644 doc/html/mod_2follow_8php.html delete mode 100644 doc/html/mod_2follow_8php.js delete mode 100644 doc/html/mod_2group_8php.html delete mode 100644 doc/html/mod_2group_8php.js delete mode 100644 doc/html/mod_2menu_8php.html delete mode 100644 doc/html/mod_2menu_8php.js delete mode 100644 doc/html/mod_2message_8php.html delete mode 100644 doc/html/mod_2message_8php.js delete mode 100644 doc/html/mod_2network_8php.html delete mode 100644 doc/html/mod_2network_8php.js delete mode 100644 doc/html/mod_2notify_8php.html delete mode 100644 doc/html/mod_2notify_8php.js delete mode 100644 doc/html/mod_2oembed_8php.html delete mode 100644 doc/html/mod_2oembed_8php.js delete mode 100644 doc/html/mod_2photos_8php.html delete mode 100644 doc/html/mod_2photos_8php.js delete mode 100644 doc/html/mod_2probe_8php.html delete mode 100644 doc/html/mod_2probe_8php.js delete mode 100644 doc/html/mod_2settings_8php.html delete mode 100644 doc/html/mod_2settings_8php.js delete mode 100644 doc/html/mod__chanview_8php.html delete mode 100644 doc/html/mod__filestorage_8php.html delete mode 100644 doc/html/mod__import_8php.html delete mode 100644 doc/html/mod__import_8php.js delete mode 100644 doc/html/mod__new__channel_8php.html delete mode 100644 doc/html/mod__new__channel_8php.js delete mode 100644 doc/html/mod__register_8php.html delete mode 100644 doc/html/mod__register_8php.js delete mode 100644 doc/html/mood_8php.html delete mode 100644 doc/html/mood_8php.js delete mode 100644 doc/html/msearch_8php.html delete mode 100644 doc/html/msearch_8php.js delete mode 100644 doc/html/mytheme_2php_2style_8php.html delete mode 100644 doc/html/mytheme_2php_2theme_8php.html delete mode 100644 doc/html/mytheme_2php_2theme_8php.js delete mode 100644 doc/html/namespaceFriendica.html delete mode 100644 doc/html/namespaceRedMatrix.html delete mode 100644 doc/html/namespaceRedMatrix.js delete mode 100644 doc/html/namespaceRedMatrix_1_1Import.html delete mode 100644 doc/html/namespaceRedMatrix_1_1Import.js delete mode 100644 doc/html/namespaceRedMatrix_1_1RedDAV.html delete mode 100644 doc/html/namespaceRedMatrix_1_1RedDAV.js delete mode 100644 doc/html/namespaceacl__selectors.html delete mode 100644 doc/html/namespaceeasywebdav.html delete mode 100644 doc/html/namespaceeasywebdav.js delete mode 100644 doc/html/namespaceeasywebdav_1_1____version____.html delete mode 100644 doc/html/namespaceeasywebdav_1_1client.html delete mode 100644 doc/html/namespaceeasywebdav_1_1client.js delete mode 100644 doc/html/namespacefriendica-to-smarty-tpl.html delete mode 100644 doc/html/namespacemembers.html delete mode 100644 doc/html/namespacemembers_func.html delete mode 100644 doc/html/namespacemembers_vars.html delete mode 100644 doc/html/namespaces.html delete mode 100644 doc/html/namespaces.js delete mode 100644 doc/html/namespaceupdatetpl.html delete mode 100644 doc/html/namespaceutil.html delete mode 100644 doc/html/namespacezotsh.html delete mode 100644 doc/html/namespacezotsh.js delete mode 100644 doc/html/nav_8php.html delete mode 100644 doc/html/nav_8php.js delete mode 100644 doc/html/nav_f.png delete mode 100644 doc/html/nav_g.png delete mode 100644 doc/html/nav_h.png delete mode 100644 doc/html/navtree.css delete mode 100644 doc/html/navtree.js delete mode 100644 doc/html/navtreeindex0.js delete mode 100644 doc/html/navtreeindex1.js delete mode 100644 doc/html/navtreeindex10.js delete mode 100644 doc/html/navtreeindex2.js delete mode 100644 doc/html/navtreeindex3.js delete mode 100644 doc/html/navtreeindex4.js delete mode 100644 doc/html/navtreeindex5.js delete mode 100644 doc/html/navtreeindex6.js delete mode 100644 doc/html/navtreeindex7.js delete mode 100644 doc/html/navtreeindex8.js delete mode 100644 doc/html/navtreeindex9.js delete mode 100644 doc/html/netgrowth_8php.html delete mode 100644 doc/html/netgrowth_8php.js delete mode 100644 doc/html/new__channel_8php.html delete mode 100644 doc/html/new__channel_8php.js delete mode 100644 doc/html/nogroup_8php.html delete mode 100644 doc/html/nogroup_8php.js delete mode 100644 doc/html/none_8php.html delete mode 100644 doc/html/notes_8php.html delete mode 100644 doc/html/notes_8php.js delete mode 100644 doc/html/notifications_8php.html delete mode 100644 doc/html/notifications_8php.js delete mode 100644 doc/html/notifier_8php.html delete mode 100644 doc/html/notifier_8php.js delete mode 100644 doc/html/notred_8php.html delete mode 100644 doc/html/oauth_8php.html delete mode 100644 doc/html/oauth_8php.js delete mode 100644 doc/html/oexchange_8php.html delete mode 100644 doc/html/oexchange_8php.js delete mode 100644 doc/html/olddefault_8php.html delete mode 100644 doc/html/onedirsync_8php.html delete mode 100644 doc/html/onedirsync_8php.js delete mode 100644 doc/html/onepoll_8php.html delete mode 100644 doc/html/onepoll_8php.js delete mode 100644 doc/html/online_8php.html delete mode 100644 doc/html/online_8php.js delete mode 100644 doc/html/open.png delete mode 100644 doc/html/openid_8php.html delete mode 100644 doc/html/openid_8php.js delete mode 100644 doc/html/opensearch_8php.html delete mode 100644 doc/html/opensearch_8php.js delete mode 100644 doc/html/p_8php.html delete mode 100644 doc/html/p_8php.js delete mode 100644 doc/html/page_8php.html delete mode 100644 doc/html/page_8php.js delete mode 100644 doc/html/page__widgets_8php.html delete mode 100644 doc/html/page__widgets_8php.js delete mode 100644 doc/html/pages.html delete mode 100644 doc/html/parse__url_8php.html delete mode 100644 doc/html/parse__url_8php.js delete mode 100644 doc/html/passion_8php.html delete mode 100644 doc/html/passionwide_8php.html delete mode 100644 doc/html/pdledit_8php.html delete mode 100644 doc/html/pdledit_8php.js delete mode 100644 doc/html/permissions_8php.html delete mode 100644 doc/html/permissions_8php.js delete mode 100644 doc/html/photo_8php.html delete mode 100644 doc/html/photo_8php.js delete mode 100644 doc/html/photo__driver_8php.html delete mode 100644 doc/html/photo__driver_8php.js delete mode 100644 doc/html/photo__gd_8php.html delete mode 100644 doc/html/photo__imagick_8php.html delete mode 100644 doc/html/php2po_8php.html delete mode 100644 doc/html/php2po_8php.js delete mode 100644 doc/html/php_2default_8php.html delete mode 100644 doc/html/php_2default_8php.js delete mode 100644 doc/html/php_2theme__init_8php.html delete mode 100644 doc/html/php_2theme__init_8php.js delete mode 100644 doc/html/php_8php.html delete mode 100644 doc/html/php_8php.js delete mode 100644 doc/html/pine_8php.html delete mode 100644 doc/html/ping_8php.html delete mode 100644 doc/html/ping_8php.js delete mode 100644 doc/html/plugin_8php.html delete mode 100644 doc/html/plugin_8php.js delete mode 100644 doc/html/po2php_8php.html delete mode 100644 doc/html/po2php_8php.js delete mode 100644 doc/html/poco_8php.html delete mode 100644 doc/html/poco_8php.js delete mode 100644 doc/html/poke_8php.html delete mode 100644 doc/html/poke_8php.js delete mode 100644 doc/html/poll_8php.html delete mode 100644 doc/html/poll_8php.js delete mode 100644 doc/html/poller_8php.html delete mode 100644 doc/html/poller_8php.js delete mode 100644 doc/html/post_8php.html delete mode 100644 doc/html/post_8php.js delete mode 100644 doc/html/post__to__red_8php.html delete mode 100644 doc/html/post__to__red_8php.js delete mode 100644 doc/html/prate_8php.html delete mode 100644 doc/html/prate_8php.js delete mode 100644 doc/html/prep_8php.html delete mode 100644 doc/html/prep_8php.js delete mode 100644 doc/html/pretheme_8php.html delete mode 100644 doc/html/pretheme_8php.js delete mode 100644 doc/html/probe_8php.html delete mode 100644 doc/html/probe_8php.js delete mode 100644 doc/html/profile_8php.html delete mode 100644 doc/html/profile_8php.js delete mode 100644 doc/html/profile__advanced_8php.html delete mode 100644 doc/html/profile__advanced_8php.js delete mode 100644 doc/html/profile__photo_8php.html delete mode 100644 doc/html/profile__photo_8php.js delete mode 100644 doc/html/profile__selectors_8php.html delete mode 100644 doc/html/profile__selectors_8php.js delete mode 100644 doc/html/profiles_8php.html delete mode 100644 doc/html/profiles_8php.js delete mode 100644 doc/html/profperm_8php.html delete mode 100644 doc/html/profperm_8php.js delete mode 100644 doc/html/pubsites_8php.html delete mode 100644 doc/html/pubsites_8php.js delete mode 100644 doc/html/pubsub_8php.html delete mode 100644 doc/html/pubsub_8php.js delete mode 100644 doc/html/pubsubhubbub_8php.html delete mode 100644 doc/html/pubsubhubbub_8php.js delete mode 100644 doc/html/qsearch_8php.html delete mode 100644 doc/html/qsearch_8php.js delete mode 100644 doc/html/queue_8php.html delete mode 100644 doc/html/queue_8php.js delete mode 100644 doc/html/queue__fn_8php.html delete mode 100644 doc/html/queue__fn_8php.js delete mode 100644 doc/html/r!-64.png delete mode 100644 doc/html/randprof_8php.html delete mode 100644 doc/html/randprof_8php.js delete mode 100644 doc/html/rate_8php.html delete mode 100644 doc/html/rate_8php.js delete mode 100644 doc/html/ratenotif_8php.html delete mode 100644 doc/html/ratenotif_8php.js delete mode 100644 doc/html/ratings_8php.html delete mode 100644 doc/html/ratings_8php.js delete mode 100644 doc/html/ratingsearch_8php.html delete mode 100644 doc/html/ratingsearch_8php.js delete mode 100644 doc/html/rbmark_8php.html delete mode 100644 doc/html/rbmark_8php.js delete mode 100644 doc/html/receive_8php.html delete mode 100644 doc/html/receive_8php.js delete mode 100644 doc/html/redable_8php.html delete mode 100644 doc/html/redable_8php.js delete mode 100644 doc/html/redbasic_2php_2style_8php.html delete mode 100644 doc/html/redbasic_2php_2style_8php.js delete mode 100644 doc/html/redbasic_2php_2theme_8php.html delete mode 100644 doc/html/redbasic_2php_2theme_8php.js delete mode 100644 doc/html/redbasic_8php.html delete mode 100644 doc/html/reddav_8php.html delete mode 100644 doc/html/reddav_8php.js delete mode 100644 doc/html/redir_8php.html delete mode 100644 doc/html/redir_8php.js delete mode 100644 doc/html/redstrap_2php_2style_8php.html delete mode 100644 doc/html/redstrap_2php_2style_8php.js delete mode 100644 doc/html/redstrap_2php_2theme_8php.html delete mode 100644 doc/html/redstrap_2php_2theme_8php.js delete mode 100644 doc/html/refimport_8php.html delete mode 100644 doc/html/refimport_8php.js delete mode 100644 doc/html/regdir_8php.html delete mode 100644 doc/html/regdir_8php.js delete mode 100644 doc/html/register_8php.html delete mode 100644 doc/html/register_8php.js delete mode 100644 doc/html/regmod_8php.html delete mode 100644 doc/html/regmod_8php.js delete mode 100644 doc/html/regver_8php.html delete mode 100644 doc/html/regver_8php.js delete mode 100644 doc/html/removeaccount_8php.html delete mode 100644 doc/html/removeaccount_8php.js delete mode 100644 doc/html/removeme_8php.html delete mode 100644 doc/html/removeme_8php.js delete mode 100644 doc/html/resize.js delete mode 100644 doc/html/rhash-64.png delete mode 100644 doc/html/rm-64.png delete mode 100644 doc/html/rmagic_8php.html delete mode 100644 doc/html/rmagic_8php.js delete mode 100644 doc/html/rpost_8php.html delete mode 100644 doc/html/rpost_8php.js delete mode 100644 doc/html/rsd__xml_8php.html delete mode 100644 doc/html/rsd__xml_8php.js delete mode 100644 doc/html/search/all_24.html delete mode 100644 doc/html/search/all_24.js delete mode 100644 doc/html/search/all_5f.html delete mode 100644 doc/html/search/all_5f.js delete mode 100644 doc/html/search/all_61.html delete mode 100644 doc/html/search/all_61.js delete mode 100644 doc/html/search/all_62.html delete mode 100644 doc/html/search/all_62.js delete mode 100644 doc/html/search/all_63.html delete mode 100644 doc/html/search/all_63.js delete mode 100644 doc/html/search/all_64.html delete mode 100644 doc/html/search/all_64.js delete mode 100644 doc/html/search/all_65.html delete mode 100644 doc/html/search/all_65.js delete mode 100644 doc/html/search/all_66.html delete mode 100644 doc/html/search/all_66.js delete mode 100644 doc/html/search/all_67.html delete mode 100644 doc/html/search/all_67.js delete mode 100644 doc/html/search/all_68.html delete mode 100644 doc/html/search/all_68.js delete mode 100644 doc/html/search/all_69.html delete mode 100644 doc/html/search/all_69.js delete mode 100644 doc/html/search/all_6a.html delete mode 100644 doc/html/search/all_6a.js delete mode 100644 doc/html/search/all_6b.html delete mode 100644 doc/html/search/all_6b.js delete mode 100644 doc/html/search/all_6c.html delete mode 100644 doc/html/search/all_6c.js delete mode 100644 doc/html/search/all_6d.html delete mode 100644 doc/html/search/all_6d.js delete mode 100644 doc/html/search/all_6e.html delete mode 100644 doc/html/search/all_6e.js delete mode 100644 doc/html/search/all_6f.html delete mode 100644 doc/html/search/all_6f.js delete mode 100644 doc/html/search/all_70.html delete mode 100644 doc/html/search/all_70.js delete mode 100644 doc/html/search/all_71.html delete mode 100644 doc/html/search/all_71.js delete mode 100644 doc/html/search/all_72.html delete mode 100644 doc/html/search/all_72.js delete mode 100644 doc/html/search/all_73.html delete mode 100644 doc/html/search/all_73.js delete mode 100644 doc/html/search/all_74.html delete mode 100644 doc/html/search/all_74.js delete mode 100644 doc/html/search/all_75.html delete mode 100644 doc/html/search/all_75.js delete mode 100644 doc/html/search/all_76.html delete mode 100644 doc/html/search/all_76.js delete mode 100644 doc/html/search/all_77.html delete mode 100644 doc/html/search/all_77.js delete mode 100644 doc/html/search/all_78.html delete mode 100644 doc/html/search/all_78.js delete mode 100644 doc/html/search/all_79.html delete mode 100644 doc/html/search/all_79.js delete mode 100644 doc/html/search/all_7a.html delete mode 100644 doc/html/search/all_7a.js delete mode 100644 doc/html/search/classes_61.html delete mode 100644 doc/html/search/classes_61.js delete mode 100644 doc/html/search/classes_62.html delete mode 100644 doc/html/search/classes_62.js delete mode 100644 doc/html/search/classes_63.html delete mode 100644 doc/html/search/classes_63.js delete mode 100644 doc/html/search/classes_64.html delete mode 100644 doc/html/search/classes_64.js delete mode 100644 doc/html/search/classes_65.html delete mode 100644 doc/html/search/classes_65.js delete mode 100644 doc/html/search/classes_66.html delete mode 100644 doc/html/search/classes_66.js delete mode 100644 doc/html/search/classes_69.html delete mode 100644 doc/html/search/classes_69.js delete mode 100644 doc/html/search/classes_6f.html delete mode 100644 doc/html/search/classes_6f.js delete mode 100644 doc/html/search/classes_70.html delete mode 100644 doc/html/search/classes_70.js delete mode 100644 doc/html/search/classes_72.html delete mode 100644 doc/html/search/classes_72.js delete mode 100644 doc/html/search/classes_74.html delete mode 100644 doc/html/search/classes_74.js delete mode 100644 doc/html/search/classes_77.html delete mode 100644 doc/html/search/classes_77.js delete mode 100644 doc/html/search/classes_7a.html delete mode 100644 doc/html/search/classes_7a.js delete mode 100644 doc/html/search/close.png delete mode 100644 doc/html/search/files_5f.html delete mode 100644 doc/html/search/files_5f.js delete mode 100644 doc/html/search/files_61.html delete mode 100644 doc/html/search/files_61.js delete mode 100644 doc/html/search/files_62.html delete mode 100644 doc/html/search/files_62.js delete mode 100644 doc/html/search/files_63.html delete mode 100644 doc/html/search/files_63.js delete mode 100644 doc/html/search/files_64.html delete mode 100644 doc/html/search/files_64.js delete mode 100644 doc/html/search/files_65.html delete mode 100644 doc/html/search/files_65.js delete mode 100644 doc/html/search/files_66.html delete mode 100644 doc/html/search/files_66.js delete mode 100644 doc/html/search/files_67.html delete mode 100644 doc/html/search/files_67.js delete mode 100644 doc/html/search/files_68.html delete mode 100644 doc/html/search/files_68.js delete mode 100644 doc/html/search/files_69.html delete mode 100644 doc/html/search/files_69.js delete mode 100644 doc/html/search/files_6c.html delete mode 100644 doc/html/search/files_6c.js delete mode 100644 doc/html/search/files_6d.html delete mode 100644 doc/html/search/files_6d.js delete mode 100644 doc/html/search/files_6e.html delete mode 100644 doc/html/search/files_6e.js delete mode 100644 doc/html/search/files_6f.html delete mode 100644 doc/html/search/files_6f.js delete mode 100644 doc/html/search/files_70.html delete mode 100644 doc/html/search/files_70.js delete mode 100644 doc/html/search/files_71.html delete mode 100644 doc/html/search/files_71.js delete mode 100644 doc/html/search/files_72.html delete mode 100644 doc/html/search/files_72.js delete mode 100644 doc/html/search/files_73.html delete mode 100644 doc/html/search/files_73.js delete mode 100644 doc/html/search/files_74.html delete mode 100644 doc/html/search/files_74.js delete mode 100644 doc/html/search/files_75.html delete mode 100644 doc/html/search/files_75.js delete mode 100644 doc/html/search/files_76.html delete mode 100644 doc/html/search/files_76.js delete mode 100644 doc/html/search/files_77.html delete mode 100644 doc/html/search/files_77.js delete mode 100644 doc/html/search/files_78.html delete mode 100644 doc/html/search/files_78.js delete mode 100644 doc/html/search/files_7a.html delete mode 100644 doc/html/search/files_7a.js delete mode 100644 doc/html/search/functions_5f.html delete mode 100644 doc/html/search/functions_5f.js delete mode 100644 doc/html/search/functions_61.html delete mode 100644 doc/html/search/functions_61.js delete mode 100644 doc/html/search/functions_62.html delete mode 100644 doc/html/search/functions_62.js delete mode 100644 doc/html/search/functions_63.html delete mode 100644 doc/html/search/functions_63.js delete mode 100644 doc/html/search/functions_64.html delete mode 100644 doc/html/search/functions_64.js delete mode 100644 doc/html/search/functions_65.html delete mode 100644 doc/html/search/functions_65.js delete mode 100644 doc/html/search/functions_66.html delete mode 100644 doc/html/search/functions_66.js delete mode 100644 doc/html/search/functions_67.html delete mode 100644 doc/html/search/functions_67.js delete mode 100644 doc/html/search/functions_68.html delete mode 100644 doc/html/search/functions_68.js delete mode 100644 doc/html/search/functions_69.html delete mode 100644 doc/html/search/functions_69.js delete mode 100644 doc/html/search/functions_6a.html delete mode 100644 doc/html/search/functions_6a.js delete mode 100644 doc/html/search/functions_6b.html delete mode 100644 doc/html/search/functions_6b.js delete mode 100644 doc/html/search/functions_6c.html delete mode 100644 doc/html/search/functions_6c.js delete mode 100644 doc/html/search/functions_6d.html delete mode 100644 doc/html/search/functions_6d.js delete mode 100644 doc/html/search/functions_6e.html delete mode 100644 doc/html/search/functions_6e.js delete mode 100644 doc/html/search/functions_6f.html delete mode 100644 doc/html/search/functions_6f.js delete mode 100644 doc/html/search/functions_70.html delete mode 100644 doc/html/search/functions_70.js delete mode 100644 doc/html/search/functions_71.html delete mode 100644 doc/html/search/functions_71.js delete mode 100644 doc/html/search/functions_72.html delete mode 100644 doc/html/search/functions_72.js delete mode 100644 doc/html/search/functions_73.html delete mode 100644 doc/html/search/functions_73.js delete mode 100644 doc/html/search/functions_74.html delete mode 100644 doc/html/search/functions_74.js delete mode 100644 doc/html/search/functions_75.html delete mode 100644 doc/html/search/functions_75.js delete mode 100644 doc/html/search/functions_76.html delete mode 100644 doc/html/search/functions_76.js delete mode 100644 doc/html/search/functions_77.html delete mode 100644 doc/html/search/functions_77.js delete mode 100644 doc/html/search/functions_78.html delete mode 100644 doc/html/search/functions_78.js delete mode 100644 doc/html/search/functions_79.html delete mode 100644 doc/html/search/functions_79.js delete mode 100644 doc/html/search/functions_7a.html delete mode 100644 doc/html/search/functions_7a.js delete mode 100644 doc/html/search/mag_sel.png delete mode 100644 doc/html/search/namespaces_61.html delete mode 100644 doc/html/search/namespaces_61.js delete mode 100644 doc/html/search/namespaces_65.html delete mode 100644 doc/html/search/namespaces_65.js delete mode 100644 doc/html/search/namespaces_66.html delete mode 100644 doc/html/search/namespaces_66.js delete mode 100644 doc/html/search/namespaces_72.html delete mode 100644 doc/html/search/namespaces_72.js delete mode 100644 doc/html/search/namespaces_75.html delete mode 100644 doc/html/search/namespaces_75.js delete mode 100644 doc/html/search/namespaces_7a.html delete mode 100644 doc/html/search/namespaces_7a.js delete mode 100644 doc/html/search/nomatches.html delete mode 100644 doc/html/search/pages_61.html delete mode 100644 doc/html/search/pages_61.js delete mode 100644 doc/html/search/pages_63.html delete mode 100644 doc/html/search/pages_63.js delete mode 100644 doc/html/search/pages_64.html delete mode 100644 doc/html/search/pages_64.js delete mode 100644 doc/html/search/pages_66.html delete mode 100644 doc/html/search/pages_66.js delete mode 100644 doc/html/search/pages_72.html delete mode 100644 doc/html/search/pages_72.js delete mode 100644 doc/html/search/pages_74.html delete mode 100644 doc/html/search/pages_74.js delete mode 100644 doc/html/search/search.css delete mode 100644 doc/html/search/search.js delete mode 100644 doc/html/search/search_l.png delete mode 100644 doc/html/search/search_m.png delete mode 100644 doc/html/search/search_r.png delete mode 100644 doc/html/search/variables_24.html delete mode 100644 doc/html/search/variables_24.js delete mode 100644 doc/html/search/variables_5f.html delete mode 100644 doc/html/search/variables_5f.js delete mode 100644 doc/html/search/variables_61.html delete mode 100644 doc/html/search/variables_61.js delete mode 100644 doc/html/search/variables_62.html delete mode 100644 doc/html/search/variables_62.js delete mode 100644 doc/html/search/variables_63.html delete mode 100644 doc/html/search/variables_63.js delete mode 100644 doc/html/search/variables_64.html delete mode 100644 doc/html/search/variables_64.js delete mode 100644 doc/html/search/variables_65.html delete mode 100644 doc/html/search/variables_65.js delete mode 100644 doc/html/search/variables_66.html delete mode 100644 doc/html/search/variables_66.js delete mode 100644 doc/html/search/variables_67.html delete mode 100644 doc/html/search/variables_67.js delete mode 100644 doc/html/search/variables_68.html delete mode 100644 doc/html/search/variables_68.js delete mode 100644 doc/html/search/variables_69.html delete mode 100644 doc/html/search/variables_69.js delete mode 100644 doc/html/search/variables_6a.html delete mode 100644 doc/html/search/variables_6a.js delete mode 100644 doc/html/search/variables_6b.html delete mode 100644 doc/html/search/variables_6b.js delete mode 100644 doc/html/search/variables_6c.html delete mode 100644 doc/html/search/variables_6c.js delete mode 100644 doc/html/search/variables_6d.html delete mode 100644 doc/html/search/variables_6d.js delete mode 100644 doc/html/search/variables_6e.html delete mode 100644 doc/html/search/variables_6e.js delete mode 100644 doc/html/search/variables_6f.html delete mode 100644 doc/html/search/variables_6f.js delete mode 100644 doc/html/search/variables_70.html delete mode 100644 doc/html/search/variables_70.js delete mode 100644 doc/html/search/variables_72.html delete mode 100644 doc/html/search/variables_72.js delete mode 100644 doc/html/search/variables_73.html delete mode 100644 doc/html/search/variables_73.js delete mode 100644 doc/html/search/variables_74.html delete mode 100644 doc/html/search/variables_74.js delete mode 100644 doc/html/search/variables_75.html delete mode 100644 doc/html/search/variables_75.js delete mode 100644 doc/html/search/variables_76.html delete mode 100644 doc/html/search/variables_76.js delete mode 100644 doc/html/search/variables_77.html delete mode 100644 doc/html/search/variables_77.js delete mode 100644 doc/html/search/variables_78.html delete mode 100644 doc/html/search/variables_78.js delete mode 100644 doc/html/search/variables_7a.html delete mode 100644 doc/html/search/variables_7a.js delete mode 100644 doc/html/search_8php.html delete mode 100644 doc/html/search_8php.js delete mode 100644 doc/html/search__ac_8php.html delete mode 100644 doc/html/search__ac_8php.js delete mode 100644 doc/html/security_8php.html delete mode 100644 doc/html/security_8php.js delete mode 100644 doc/html/service__limits_8php.html delete mode 100644 doc/html/service__limits_8php.js delete mode 100644 doc/html/session_8php.html delete mode 100644 doc/html/session_8php.js delete mode 100644 doc/html/settings_8php.html delete mode 100644 doc/html/settings_8php.js delete mode 100644 doc/html/setup_8php.html delete mode 100644 doc/html/setup_8php.js delete mode 100644 doc/html/share_8php.html delete mode 100644 doc/html/share_8php.js delete mode 100644 doc/html/sharedwithme_8php.html delete mode 100644 doc/html/sharedwithme_8php.js delete mode 100644 doc/html/simple__black__on__white_8php.html delete mode 100644 doc/html/simple__green__on__black_8php.html delete mode 100644 doc/html/simple__white__on__black_8php.html delete mode 100644 doc/html/siteinfo_8php.html delete mode 100644 doc/html/siteinfo_8php.js delete mode 100644 doc/html/sitelist_8php.html delete mode 100644 doc/html/sitelist_8php.js delete mode 100644 doc/html/smarty_8php.html delete mode 100644 doc/html/smilies_8php.html delete mode 100644 doc/html/smilies_8php.js delete mode 100644 doc/html/socgraph_8php.html delete mode 100644 doc/html/socgraph_8php.js delete mode 100644 doc/html/sources_8php.html delete mode 100644 doc/html/sources_8php.js delete mode 100644 doc/html/spam_8php.html delete mode 100644 doc/html/spam_8php.js delete mode 100644 doc/html/sporadic_2php_2style_8php.html delete mode 100644 doc/html/sporadic_2php_2theme_8php.html delete mode 100644 doc/html/sporadic_2php_2theme_8php.js delete mode 100644 doc/html/sslify_8php.html delete mode 100644 doc/html/sslify_8php.js delete mode 100644 doc/html/starred_8php.html delete mode 100644 doc/html/starred_8php.js delete mode 100644 doc/html/statistics__fns_8php.html delete mode 100644 doc/html/statistics__fns_8php.js delete mode 100644 doc/html/stumble_2php_2style_8php.html delete mode 100644 doc/html/stumble_2php_2theme_8php.html delete mode 100644 doc/html/stumble_2php_2theme_8php.js delete mode 100644 doc/html/style_8php.html delete mode 100644 doc/html/style_8php.js delete mode 100644 doc/html/subthread_8php.html delete mode 100644 doc/html/subthread_8php.js delete mode 100644 doc/html/suckerberg_2php_2style_8php.html delete mode 100644 doc/html/suckerberg_2php_2theme_8php.html delete mode 100644 doc/html/suckerberg_2php_2theme_8php.js delete mode 100644 doc/html/suggest_8php.html delete mode 100644 doc/html/suggest_8php.js delete mode 100644 doc/html/sunbeam_2php_2style_8php.html delete mode 100644 doc/html/sunbeam_2php_2theme_8php.html delete mode 100644 doc/html/sunbeam_2php_2theme_8php.js delete mode 100644 doc/html/sync_off.png delete mode 100644 doc/html/sync_on.png delete mode 100644 doc/html/system__unavailable_8php.html delete mode 100644 doc/html/system__unavailable_8php.js delete mode 100644 doc/html/tab_a.png delete mode 100644 doc/html/tab_b.png delete mode 100644 doc/html/tab_h.png delete mode 100644 doc/html/tab_s.png delete mode 100644 doc/html/tabs.css delete mode 100644 doc/html/tagger_8php.html delete mode 100644 doc/html/tagger_8php.js delete mode 100644 doc/html/tagrm_8php.html delete mode 100644 doc/html/tagrm_8php.js delete mode 100644 doc/html/taxonomy_8php.html delete mode 100644 doc/html/taxonomy_8php.js delete mode 100644 doc/html/template__processor_8php.html delete mode 100644 doc/html/template__processor_8php.js delete mode 100644 doc/html/test_2php_2theme_8php.html delete mode 100644 doc/html/test_2php_2theme_8php.js delete mode 100644 doc/html/test_8php.html delete mode 100644 doc/html/test_8php.js delete mode 100644 doc/html/text_8php.html delete mode 100644 doc/html/text_8php.js delete mode 100644 doc/html/theme_2apw_2php_2theme__init_8php.html delete mode 100644 doc/html/theme_2apw_2php_2theme__init_8php.js delete mode 100644 doc/html/theme_2apw_2schema_2default_8php.html delete mode 100644 doc/html/theme_2blogga_2php_2default_8php.html delete mode 100644 doc/html/theme_2blogga_2php_2default_8php.js delete mode 100644 doc/html/theme_2blogga_2php_2theme__init_8php.html delete mode 100644 doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html delete mode 100644 doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.js delete mode 100644 doc/html/theme_2mytheme_2php_2default_8php.html delete mode 100644 doc/html/theme_2mytheme_2php_2default_8php.js delete mode 100644 doc/html/theme_2redbasic_2php_2theme__init_8php.html delete mode 100644 doc/html/theme_2redstrap_2php_2default_8php.html delete mode 100644 doc/html/theme_2redstrap_2php_2default_8php.js delete mode 100644 doc/html/theme_2redstrap_2php_2theme__init_8php.html delete mode 100644 doc/html/theme_8php.html delete mode 100644 doc/html/theme_8php.js delete mode 100644 doc/html/theme__init_8php.html delete mode 100644 doc/html/theme__init_8php.js delete mode 100644 doc/html/thing_8php.html delete mode 100644 doc/html/thing_8php.js delete mode 100644 doc/html/todo.html delete mode 100644 doc/html/toggle__mobile_8php.html delete mode 100644 doc/html/toggle__mobile_8php.js delete mode 100644 doc/html/toggle__safesearch_8php.html delete mode 100644 doc/html/toggle__safesearch_8php.js delete mode 100644 doc/html/tpldebug_8php.html delete mode 100644 doc/html/tpldebug_8php.js delete mode 100644 doc/html/typo_8php.html delete mode 100644 doc/html/typo_8php.js delete mode 100644 doc/html/typohelper_8php.html delete mode 100644 doc/html/typohelper_8php.js delete mode 100644 doc/html/uexport_8php.html delete mode 100644 doc/html/uexport_8php.js delete mode 100644 doc/html/update__channel_8php.html delete mode 100644 doc/html/update__channel_8php.js delete mode 100644 doc/html/update__community_8php.html delete mode 100644 doc/html/update__community_8php.js delete mode 100644 doc/html/update__display_8php.html delete mode 100644 doc/html/update__display_8php.js delete mode 100644 doc/html/update__home_8php.html delete mode 100644 doc/html/update__home_8php.js delete mode 100644 doc/html/update__network_8php.html delete mode 100644 doc/html/update__network_8php.js delete mode 100644 doc/html/update__search_8php.html delete mode 100644 doc/html/update__search_8php.js delete mode 100644 doc/html/updatetpl_8py.html delete mode 100644 doc/html/updatetpl_8py.js delete mode 100644 doc/html/view_2theme_2apw_2php_2config_8php.html delete mode 100644 doc/html/view_2theme_2apw_2php_2config_8php.js delete mode 100644 doc/html/view_2theme_2apw_2php_2style_8php.html delete mode 100644 doc/html/view_2theme_2apw_2php_2style_8php.js delete mode 100644 doc/html/view_2theme_2apw_2php_2theme_8php.html delete mode 100644 doc/html/view_2theme_2apw_2php_2theme_8php.js delete mode 100644 doc/html/view_2theme_2blogga_2php_2config_8php.html delete mode 100644 doc/html/view_2theme_2blogga_2php_2config_8php.js delete mode 100644 doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.html delete mode 100644 doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.js delete mode 100644 doc/html/view_2theme_2mytheme_2php_2style_8php.html delete mode 100644 doc/html/view_2theme_2mytheme_2php_2theme_8php.html delete mode 100644 doc/html/view_2theme_2mytheme_2php_2theme_8php.js delete mode 100644 doc/html/view_2theme_2redbasic_2php_2config_8php.html delete mode 100644 doc/html/view_2theme_2redbasic_2php_2config_8php.js delete mode 100644 doc/html/view_2theme_2redbasic_2php_2style_8php.html delete mode 100644 doc/html/view_2theme_2redbasic_2php_2style_8php.js delete mode 100644 doc/html/view_2theme_2redbasic_2php_2theme_8php.html delete mode 100644 doc/html/view_2theme_2redbasic_2php_2theme_8php.js delete mode 100644 doc/html/view_2theme_2redstrap_2php_2config_8php.html delete mode 100644 doc/html/view_2theme_2redstrap_2php_2config_8php.js delete mode 100644 doc/html/view_8php.html delete mode 100644 doc/html/view_8php.js delete mode 100644 doc/html/viewconnections_8php.html delete mode 100644 doc/html/viewconnections_8php.js delete mode 100644 doc/html/viewsrc_8php.html delete mode 100644 doc/html/viewsrc_8php.js delete mode 100644 doc/html/vote_8php.html delete mode 100644 doc/html/vote_8php.js delete mode 100644 doc/html/wall__attach_8php.html delete mode 100644 doc/html/wall__attach_8php.js delete mode 100644 doc/html/wall__upload_8php.html delete mode 100644 doc/html/wall__upload_8php.js delete mode 100644 doc/html/webfinger_8php.html delete mode 100644 doc/html/webfinger_8php.js delete mode 100644 doc/html/webpages_8php.html delete mode 100644 doc/html/webpages_8php.js delete mode 100644 doc/html/wfinger_8php.html delete mode 100644 doc/html/wfinger_8php.js delete mode 100644 doc/html/widedarkness_8php.html delete mode 100644 doc/html/widgets_8php.html delete mode 100644 doc/html/widgets_8php.js delete mode 100644 doc/html/xchan_8php.html delete mode 100644 doc/html/xchan_8php.js delete mode 100644 doc/html/xpoco_8php.html delete mode 100644 doc/html/xpoco_8php.js delete mode 100644 doc/html/xrd_8php.html delete mode 100644 doc/html/xrd_8php.js delete mode 100644 doc/html/xref_8php.html delete mode 100644 doc/html/xref_8php.js delete mode 100644 doc/html/yolo_2php_2style_8php.html delete mode 100644 doc/html/yolo_2php_2theme_8php.html delete mode 100644 doc/html/yolo_2php_2theme_8php.js delete mode 100644 doc/html/zfinger_8php.html delete mode 100644 doc/html/zfinger_8php.js delete mode 100644 doc/html/zot_8php.html delete mode 100644 doc/html/zot_8php.js delete mode 100644 doc/html/zotfeed_8php.html delete mode 100644 doc/html/zotfeed_8php.js delete mode 100644 doc/html/zotsh_8py.html delete mode 100644 doc/html/zotsh_8py.js delete mode 100644 doc/html/zperms_8php.html delete mode 100644 doc/html/zperms_8php.js delete mode 100644 doc/html/zping_8php.html delete mode 100644 doc/html/zping_8php.js diff --git a/.gitignore b/.gitignore index e6c628e74..4b192fa76 100755 --- a/.gitignore +++ b/.gitignore @@ -1,62 +1,66 @@ -favicon.* -.htconfig.php -\#* -include/jquery-1.4.2.min.js +## Ignore tmp, backup, logs and other junk files +*~ *.gz -*.log *.out -*.version* -home.html -addon -*~ -.*.swp -compiled/ -custom/ -/store/ - -# site apps -apps/ - +*.bak +*.swp +*.log +*.lock +*.kate-swp +#Ignore emacs tempfiles +.#* # patch attempts *.orig *.rej +# OSX .DS_Store files +.DS_Store +Thumbs.db + +## Ignore RedMatrix site specific files and folders +.htconfig.php +favicon.* +addon/ +custom/ +/store/ +# site apps +apps/ +# default startpage +home.html +# Ignore site TOS +doc/SiteTOS.md # themes except for redbasic view/theme/* ! view/theme/redbasic - +# site theme schemas +view/theme/redbasic/schema/default.php +# Doxygen API documentation, run 'doxygen util/Doxyfile' to generate it +doc/html/ +# zotsh configuration files +.zotshrc # external repositories for themes/addons extend/ -# composer files (for fetching sabre) -composer.* - -#ignore documentation, it should be newly built -doc/api - -#ignore reports, should be generted with every build -report/ -#ignore config files from eclipse, we don't want IDE files in our repository +## exclude IDE files +# config files and folders from Eclipse .project .buildpath .externalToolBuilders -.settings - -#ignore OSX .DS_Store files -.DS_Store - -#netbeans project folder -nbproject - -#Kdevelop project files +.settings/ +# NetBeans project folder +nbproject/ +# Kdevelop project files *.kdev4 +# PHPStorm +.idea/ -# Ignore site TOS -doc/SiteTOS.md -#Ingore site theme schemas -view/theme/redbasic/schema/default.php +# composer files (at the moment composer is not officially supported and only used to add SabreDAV, we should add these) +composer.* -#Ignore emacs tempfiles -.#* +# When we include composer we should exclude vendor/ +#vendor/ +# Exclude at least some vendor test files, examples, etc. +vendor/sabre/*/tests/ +vendor/sabre/*/examples/ \ No newline at end of file diff --git a/doc/html/BS-Default_8php.html b/doc/html/BS-Default_8php.html deleted file mode 100644 index 34f709684..000000000 --- a/doc/html/BS-Default_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/BS-Default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        BS-Default.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/BaseObject_8php.html b/doc/html/BaseObject_8php.html deleted file mode 100644 index b399ff36f..000000000 --- a/doc/html/BaseObject_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/BaseObject.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        BaseObject.php File Reference
        -
        -
        - - - - -

        -Classes

        class  BaseObject
         
        -
        -
        - diff --git a/doc/html/Contact_8php.html b/doc/html/Contact_8php.html deleted file mode 100644 index 403e2b3b7..000000000 --- a/doc/html/Contact_8php.html +++ /dev/null @@ -1,532 +0,0 @@ - - - - - - -The Red Matrix: include/Contact.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        Contact.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         rconnect_url ($channel_id, $xchan)
         
         abook_connections ($channel_id, $sql_conditions= '')
         
         abook_self ($channel_id)
         
         channelx_by_nick ($nick)
         
         channelx_by_hash ($hash)
         
         channelx_by_n ($id)
         
         vcard_from_xchan ($xchan, $observer=null, $mode= '')
         
         abook_toggle_flag ($abook, $flag)
         
         user_remove ($uid)
         
         account_remove ($account_id, $local=true, $unset_session=true)
         
         rrmdir ($path)
         
         channel_remove ($channel_id, $local=true, $unset_session=true)
         
         mark_orphan_hubsxchans ()
         
         remove_all_xchan_resources ($xchan, $channel_id=0)
         
         contact_remove ($channel_id, $abook_id)
         
         random_profile ()
         
        -

        Function Documentation

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

        Referenced by photos_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        abook_toggle_flag ( $abook,
         $flag 
        )
        -
        - -

        Referenced by connedit_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        account_remove ( $account_id,
         $local = true,
         $unset_session = true 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        channel_remove ( $channel_id,
         $local = true,
         $unset_session = true 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        channelx_by_hash ( $hash)
        -
        - -

        Referenced by ratenotif_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        channelx_by_n ( $id)
        -
        - -

        Referenced by handle_feed(), and widget_photo_albums().

        - -
        -
        - -
        -
        - - - - - - - - -
        channelx_by_nick ( $nick)
        -
        - -

        Referenced by photos_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        contact_remove ( $channel_id,
         $abook_id 
        )
        -
        -
        - -
        -
        - - - - - - - -
        mark_orphan_hubsxchans ()
        -
        -

        mark any hubs "offline" that haven't been heard from in more than 30 days Allow them to redeem themselves if they come back later. Then go through all those that are newly marked and see if any other hubs are attached to the controlling xchan that are still alive. If not, they're dead (although they could come back some day).

        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        random_profile ()
        -
        - -

        Referenced by randprof_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        rconnect_url ( $channel_id,
         $xchan 
        )
        -
        - -

        Referenced by profile_sidebar().

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

        Referenced by post_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        rrmdir ( $path)
        -
        - -

        Referenced by channel_remove().

        - -
        -
        - -
        -
        - - - - - - - - -
        user_remove ( $uid)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        vcard_from_xchan ( $xchan,
         $observer = null,
         $mode = '' 
        )
        -
        - -

        Referenced by widget_vcard().

        - -
        -
        -
        -
        - diff --git a/doc/html/Contact_8php.js b/doc/html/Contact_8php.js deleted file mode 100644 index 556236836..000000000 --- a/doc/html/Contact_8php.js +++ /dev/null @@ -1,19 +0,0 @@ -var Contact_8php = -[ - [ "abook_connections", "Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e", null ], - [ "abook_self", "Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5", null ], - [ "abook_toggle_flag", "Contact_8php.html#a024919623a830e8703ac4f23496dd66c", null ], - [ "account_remove", "Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33", null ], - [ "channel_remove", "Contact_8php.html#a4e8af0f0525161da74583c04b8b03097", null ], - [ "channelx_by_hash", "Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258", null ], - [ "channelx_by_n", "Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc", null ], - [ "channelx_by_nick", "Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e", null ], - [ "contact_remove", "Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6", null ], - [ "mark_orphan_hubsxchans", "Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8", null ], - [ "random_profile", "Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713", null ], - [ "rconnect_url", "Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91", null ], - [ "remove_all_xchan_resources", "Contact_8php.html#acc12cda999c88c4d6185cca967c15125", null ], - [ "rrmdir", "Contact_8php.html#ab5895b75a3b2abdddf1cb351a8c6b58b", null ], - [ "user_remove", "Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15", null ], - [ "vcard_from_xchan", "Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960", null ] -]; \ No newline at end of file diff --git a/doc/html/ConversationObject_8php.html b/doc/html/ConversationObject_8php.html deleted file mode 100644 index 02a09213b..000000000 --- a/doc/html/ConversationObject_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/ConversationObject.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ConversationObject.php File Reference
        -
        -
        - - - - -

        -Classes

        class  Conversation
         
        -
        -
        - diff --git a/doc/html/ITemplateEngine_8php.html b/doc/html/ITemplateEngine_8php.html deleted file mode 100644 index a2e4e9a43..000000000 --- a/doc/html/ITemplateEngine_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/ITemplateEngine.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ITemplateEngine.php File Reference
        -
        -
        - - - - -

        -Classes

        interface  ITemplateEngine
         
        -
        -
        - diff --git a/doc/html/Importer_8php.html b/doc/html/Importer_8php.html deleted file mode 100644 index 1983b152a..000000000 --- a/doc/html/Importer_8php.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - -The Red Matrix: include/Import/Importer.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        Importer.php File Reference
        -
        -
        - - - - -

        -Classes

        class  RedMatrix\Import\Import
         
        - - - - - - -

        -Namespaces

        namespace  RedMatrix\Import
         
        namespace  RedMatrix
         Class Import.
         
        -
        -
        - diff --git a/doc/html/ItemObject_8php.html b/doc/html/ItemObject_8php.html deleted file mode 100644 index 08b61619c..000000000 --- a/doc/html/ItemObject_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/ItemObject.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ItemObject.php File Reference
        -
        -
        - - - - -

        -Classes

        class  Item
         
        -
        -
        - diff --git a/doc/html/ProtoDriver_8php.html b/doc/html/ProtoDriver_8php.html deleted file mode 100644 index 6d918344a..000000000 --- a/doc/html/ProtoDriver_8php.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - -The Red Matrix: include/ProtoDriver.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ProtoDriver.php File Reference
        -
        -
        - - - - - - -

        -Classes

        class  ProtoDriver
         
        class  ZotDriver
         
        -
        -
        - diff --git a/doc/html/README_8md.html b/doc/html/README_8md.html deleted file mode 100644 index 0b5de21e2..000000000 --- a/doc/html/README_8md.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/README.md File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        view/theme/apw/README.md File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/RedBasicAuth_8php.html b/doc/html/RedBasicAuth_8php.html deleted file mode 100644 index 86984219c..000000000 --- a/doc/html/RedBasicAuth_8php.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: include/RedDAV/RedBasicAuth.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedBasicAuth.php File Reference
        -
        -
        - - - - - -

        -Classes

        class  RedMatrix\RedDAV\RedBasicAuth
         Authentication backend class for RedDAV. More...
         
        - - - -

        -Namespaces

        namespace  RedMatrix\RedDAV
         
        -
        -
        - diff --git a/doc/html/RedBrowser_8php.html b/doc/html/RedBrowser_8php.html deleted file mode 100644 index 7ee0e1d7e..000000000 --- a/doc/html/RedBrowser_8php.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: include/RedDAV/RedBrowser.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedBrowser.php File Reference
        -
        -
        - - - - - -

        -Classes

        class  RedMatrix\RedDAV\RedBrowser
         Provides a DAV frontend for the webbrowser. More...
         
        - - - -

        -Namespaces

        namespace  RedMatrix\RedDAV
         
        -
        -
        - diff --git a/doc/html/RedDirectory_8php.html b/doc/html/RedDirectory_8php.html deleted file mode 100644 index e0e081164..000000000 --- a/doc/html/RedDirectory_8php.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: include/RedDAV/RedDirectory.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedDirectory.php File Reference
        -
        -
        - - - - - -

        -Classes

        class  RedMatrix\RedDAV\RedDirectory
         RedDirectory class. More...
         
        - - - -

        -Namespaces

        namespace  RedMatrix\RedDAV
         
        -
        -
        - diff --git a/doc/html/RedFile_8php.html b/doc/html/RedFile_8php.html deleted file mode 100644 index 218102ecc..000000000 --- a/doc/html/RedFile_8php.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: include/RedDAV/RedFile.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedFile.php File Reference
        -
        -
        - - - - - -

        -Classes

        class  RedMatrix\RedDAV\RedFile
         This class represents a file in DAV. More...
         
        - - - -

        -Namespaces

        namespace  RedMatrix\RedDAV
         
        -
        -
        - diff --git a/doc/html/Scrape_8php.html b/doc/html/Scrape_8php.html deleted file mode 100644 index 59c15f35b..000000000 --- a/doc/html/Scrape_8php.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - -The Red Project: include/Scrape.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        Scrape.php File Reference
        -
        -
        - - - - -

        -Functions

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

        -Variables

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

        Function Documentation

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

        Variable Documentation

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

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

        -

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

        -

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

        - -

        Referenced by probe_url().

        - -
        -
        -
        -
        - diff --git a/doc/html/Scrape_8php.js b/doc/html/Scrape_8php.js deleted file mode 100644 index 6bdfb178d..000000000 --- a/doc/html/Scrape_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var Scrape_8php = -[ - [ "probe_url", "Scrape_8php.html#a32883beb7dbf311fc9bfa99200a7402c", null ], - [ "PROBE_NORMAL", "Scrape_8php.html#aa6b0bdcf6e8f9d44e699fd94d2207c98", null ] -]; \ No newline at end of file diff --git a/doc/html/____init_____8py.html b/doc/html/____init_____8py.html deleted file mode 100644 index b9fc9c0ce..000000000 --- a/doc/html/____init_____8py.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh/easywebdav/__init__.py File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        __init__.py File Reference
        -
        -
        - - - - -

        -Namespaces

        namespace  easywebdav
         
        - - - -

        -Functions

        def easywebdav.connect
         
        -
        -
        - diff --git a/doc/html/____init_____8py.js b/doc/html/____init_____8py.js deleted file mode 100644 index b92abbbfe..000000000 --- a/doc/html/____init_____8py.js +++ /dev/null @@ -1,4 +0,0 @@ -var ____init_____8py = -[ - [ "connect", "____init_____8py.html#a5c8aedf2077889acfc76e11d3cb0dc77", null ] -]; \ No newline at end of file diff --git a/doc/html/____version_____8py.html b/doc/html/____version_____8py.html deleted file mode 100644 index 5cd882f55..000000000 --- a/doc/html/____version_____8py.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh/easywebdav/__version__.py File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        __version__.py File Reference
        -
        -
        - - - - -

        -Namespaces

        namespace  easywebdav.__version__
         
        - - - -

        -Variables

        string easywebdav.__version__.__version__ = "1.2.0"
         
        -
        -
        - diff --git a/doc/html/____version_____8py.js b/doc/html/____version_____8py.js deleted file mode 100644 index 93b7ae83d..000000000 --- a/doc/html/____version_____8py.js +++ /dev/null @@ -1,4 +0,0 @@ -var ____version_____8py = -[ - [ "__version__", "____version_____8py.html#a79e00ae40b23fd17c38e3fb7a0feeddb", null ] -]; \ No newline at end of file diff --git a/doc/html/__well__known_8php.html b/doc/html/__well__known_8php.html deleted file mode 100644 index 96032186d..000000000 --- a/doc/html/__well__known_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/_well_known.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        _well_known.php File Reference
        -
        -
        - - - - -

        -Functions

         _well_known_init (&$a)
         
        -

        Function Documentation

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

        -Functions

         check_account_email ($email)
         
         check_account_password ($password)
         
         check_account_invite ($invite_code)
         
         check_account_admin ($arr)
         
         account_total ()
         
         create_account ($arr)
         
         verify_email_address ($arr)
         
         send_reg_approval_email ($arr)
         
         send_verification_email ($email, $password)
         
         user_allow ($hash)
         
         user_deny ($hash)
         
         user_approve ($hash)
         
         downgrade_accounts ()
         
         service_class_allows ($uid, $property, $usage=false)
         
         account_service_class_allows ($aid, $property, $usage=false)
         
         service_class_fetch ($uid, $property)
         
         account_service_class_fetch ($aid, $property)
         
         upgrade_link ($bbcode=false)
         
         upgrade_message ($bbcode=false)
         
         upgrade_bool_message ($bbcode=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        account_service_class_allows ( $aid,
         $property,
         $usage = false 
        )
        -
        - -

        Referenced by identity_check_service_class().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        account_service_class_fetch ( $aid,
         $property 
        )
        -
        -
        - -
        -
        - - - - - - - -
        account_total ()
        -
        - -

        Referenced by create_account(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_account_admin ( $arr)
        -
        - -

        Referenced by create_account().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_account_email ( $email)
        -
        - -

        Referenced by create_account(), and register_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_account_invite ( $invite_code)
        -
        - -

        Referenced by create_account(), and register_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_account_password ( $password)
        -
        - -

        Referenced by create_account(), and register_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        create_account ( $arr)
        -
        - -

        Referenced by register_post().

        - -
        -
        - -
        -
        - - - - - - - -
        downgrade_accounts ()
        -
        -

        downgrade_accounts() Checks for accounts that have past their expiration date. If the account has a service class which is not the site default, the service class is reset to the site default and expiration reset to never. If the account has no service class it is expired and subsequently disabled. called from include/poller.php as a scheduled task.

        -

        Reclaiming resources which are no longer within the service class limits is not the job of this function, but this can be implemented by plugin if desired. Default behaviour is to stop allowing additional resources to be consumed.

        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        send_reg_approval_email ( $arr)
        -
        - -

        Referenced by register_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        send_verification_email ( $email,
         $password 
        )
        -
        - -

        Referenced by register_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        service_class_allows ( $uid,
         $property,
         $usage = false 
        )
        -
        - -

        Referenced by item_check_service_class(), and new_contact().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        upgrade_bool_message ( $bbcode = false)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        upgrade_link ( $bbcode = false)
        -
        - -

        Referenced by upgrade_bool_message(), and upgrade_message().

        - -
        -
        - -
        -
        - - - - - - - - -
        upgrade_message ( $bbcode = false)
        -
        -
        - -
        -
        - - - - - - - - -
        user_allow ( $hash)
        -
        - -

        Referenced by admin_page_users_post(), and regmod_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        user_approve ( $hash)
        -
        - -

        Referenced by regver_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        user_deny ( $hash)
        -
        -
        - -
        -
        - - - - - - - - -
        verify_email_address ( $arr)
        -
        - -

        Referenced by register_post().

        - -
        -
        -
        -
        - diff --git a/doc/html/account_8php.js b/doc/html/account_8php.js deleted file mode 100644 index 51e0efde2..000000000 --- a/doc/html/account_8php.js +++ /dev/null @@ -1,23 +0,0 @@ -var account_8php = -[ - [ "account_service_class_allows", "account_8php.html#ac70e1d198246b029a3cedb7d6f7868bd", null ], - [ "account_service_class_fetch", "account_8php.html#a4328c40ee4b3d68630cf1ebb7b9d4d89", null ], - [ "account_total", "account_8php.html#a43e3042b2723d76915a030bac3c668b6", null ], - [ "check_account_admin", "account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f", null ], - [ "check_account_email", "account_8php.html#ae052bd5558847bd38e89c213561a9771", null ], - [ "check_account_invite", "account_8php.html#aaff7720423417a4333697894ffd9ddeb", null ], - [ "check_account_password", "account_8php.html#a144b4891022567668375b58ea61cfff0", null ], - [ "create_account", "account_8php.html#a141fe579c351c78209d425473f978eb5", null ], - [ "downgrade_accounts", "account_8php.html#a0d183a3cb4c67a0f5e906811df7a1fc9", null ], - [ "send_reg_approval_email", "account_8php.html#a014de2d5d5c9785de5bf547a485822fa", null ], - [ "send_verification_email", "account_8php.html#aa9c29c497c17d8f9344dce8631ad8761", null ], - [ "service_class_allows", "account_8php.html#a030cec6793b909c439c0336ba39b1571", null ], - [ "service_class_fetch", "account_8php.html#a905b54e10704b283ac64680a8abc0971", null ], - [ "upgrade_bool_message", "account_8php.html#a754d7f53b3abc557b753c057dc4e021d", null ], - [ "upgrade_link", "account_8php.html#a4fc13e528367f510fcb6d8bbfc559040", null ], - [ "upgrade_message", "account_8php.html#a901657dd078e070516cf97285e0bada7", null ], - [ "user_allow", "account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1", null ], - [ "user_approve", "account_8php.html#ad07be417ac7eda939768804106ddea3d", null ], - [ "user_deny", "account_8php.html#ac1653efba62493b9d87513e1b6c04c83", null ], - [ "verify_email_address", "account_8php.html#acd6b8d2124ba5ea4f4794d2c58ae8bf5", null ] -]; \ No newline at end of file diff --git a/doc/html/achievements_8php.html b/doc/html/achievements_8php.html deleted file mode 100644 index 894abb4a4..000000000 --- a/doc/html/achievements_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/achievements.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        achievements.php File Reference
        -
        -
        - - - - -

        -Functions

         achievements_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        achievements_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/achievements_8php.js b/doc/html/achievements_8php.js deleted file mode 100644 index 319ac33da..000000000 --- a/doc/html/achievements_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var achievements_8php = -[ - [ "achievements_content", "achievements_8php.html#a35ae04ada0e227d19671f289a32fb30e", null ] -]; \ No newline at end of file diff --git a/doc/html/acl_8php.html b/doc/html/acl_8php.html deleted file mode 100644 index fa0fe0018..000000000 --- a/doc/html/acl_8php.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -The Red Matrix: mod/acl.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        acl.php File Reference
        -
        -
        - - - - - - -

        -Functions

         acl_init (&$a)
         
         navbar_complete (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        acl_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        navbar_complete ($a)
        -
        - -

        Referenced by acl_init().

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

        -Namespaces

        namespace  acl_selectors
         
        - - - - - - - - - -

        -Functions

         group_select ($selname, $selclass, $preselected=false, $size=4)
         
         contact_select ($selname, $selclass, $preselected=false, $size=4, $privmail=false, $celeb=false, $privatenet=false, $tabindex=null)
         
         fixacl (&$item)
         
         populate_acl ($defaults=null, $show_jotnets=true)
         
        -

        Function Documentation

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

        Referenced by mail_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        fixacl ($item)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        group_select ( $selname,
         $selclass,
         $preselected = false,
         $size = 4 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        populate_acl ( $defaults = null,
         $show_jotnets = true 
        )
        -
        -
        -
        -
        - diff --git a/doc/html/acl__selectors_8php.js b/doc/html/acl__selectors_8php.js deleted file mode 100644 index 782d82d06..000000000 --- a/doc/html/acl__selectors_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var acl__selectors_8php = -[ - [ "contact_select", "acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91", null ], - [ "fixacl", "acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e", null ], - [ "group_select", "acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0", null ], - [ "populate_acl", "acl__selectors_8php.html#ad25bba63a51a2b0b5b463efae50df528", null ] -]; \ No newline at end of file diff --git a/doc/html/activities_8php.html b/doc/html/activities_8php.html deleted file mode 100644 index 86428ecc8..000000000 --- a/doc/html/activities_8php.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: include/activities.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        activities.php File Reference
        -
        -
        - - - - -

        -Functions

         profile_activity ($changed, $value)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        profile_activity ( $changed,
         $value 
        )
        -
        - -

        Referenced by profiles_post().

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

        -Functions

         admin_post (&$a)
         
         admin_content (&$a)
         
         admin_page_summary (&$a)
         
         admin_page_site_post (&$a)
         
         admin_page_site (&$a)
         
         admin_page_hubloc_post (&$a)
         
         admin_page_hubloc (&$a)
         
         admin_page_dbsync (&$a)
         
         admin_page_queue ($a)
         
         admin_page_users_post (&$a)
         
         admin_page_users (&$a)
         
         admin_page_channels_post (&$a)
         
         admin_page_channels (&$a)
         
         admin_page_plugins (&$a)
         
         toggle_theme (&$themes, $th, &$result)
         
         theme_status ($themes, $th)
         
         rebuild_theme_table ($themes)
         
         admin_page_themes (&$a)
         
         admin_page_logs_post (&$a)
         
         admin_page_logs (&$a)
         
         admin_page_profs_post (&$a)
         
         admin_page_profs (&$a)
         
        -

        Function Documentation

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

        Side bar links

        -

        Page content

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_channels ($a)
        -
        -
        Parameters
        - - -
        App$a
        -
        -
        -
        Returns
        string
        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_channels_post ($a)
        -
        -

        Channels admin page

        -
        Parameters
        - - -
        App$a
        -
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_dbsync ($a)
        -
        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_hubloc ($a)
        -
        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_hubloc_post ($a)
        -
        - -

        Referenced by admin_post().

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

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_logs_post ($a)
        -
        -

        Logs admin page

        -
        Parameters
        - - -
        App$a
        -
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_plugins ($a)
        -
        -

        Plugins admin page

        -
        Parameters
        - - -
        App$a
        -
        -
        -
        Returns
        string
        -

        Single plugin

        -

        List plugins

        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_profs ($a)
        -
        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_profs_post ($a)
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_queue ( $a)
        -
        - -

        Referenced by admin_content().

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

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_site_post ($a)
        -
        -

        Admin Site Page

        -
        Parameters
        - - -
        App$a
        -
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_summary ($a)
        -
        -

        Admin Summary Page

        -
        Parameters
        - - -
        App$a
        -
        -
        -
        Returns
        string
        - -

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_themes ($a)
        -
        -

        Themes admin page

        -
        Parameters
        - - -
        App$a
        -
        -
        -
        Returns
        string
        -

        Single theme

        -

        List themes

        - -

        Referenced by admin_content().

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

        Referenced by admin_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_page_users_post ($a)
        -
        -

        Users admin page

        -
        Parameters
        - - -
        App$a
        -
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        admin_post ($a)
        -
        -

        Red admin

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

        Referenced by admin_page_themes().

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

        Referenced by admin_page_themes().

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

        Referenced by admin_page_themes().

        - -
        -
        -
        -
        - diff --git a/doc/html/admin_8php.js b/doc/html/admin_8php.js deleted file mode 100644 index 90a01355f..000000000 --- a/doc/html/admin_8php.js +++ /dev/null @@ -1,25 +0,0 @@ -var admin_8php = -[ - [ "admin_content", "admin_8php.html#afef415e4011607fbb665610441595015", null ], - [ "admin_page_channels", "admin_8php.html#ad6f87a764fd35f522c7b4c351d7878ec", null ], - [ "admin_page_channels_post", "admin_8php.html#a42e628f367c168add8013352ac74d33f", null ], - [ "admin_page_dbsync", "admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade", null ], - [ "admin_page_hubloc", "admin_8php.html#a6943543f3138f6ee182cb701f415d1cc", null ], - [ "admin_page_hubloc_post", "admin_8php.html#a60ba9783ad14545814919970bc3fb725", null ], - [ "admin_page_logs", "admin_8php.html#a1d1362698af14d209aa3a0fb655551dd", null ], - [ "admin_page_logs_post", "admin_8php.html#a233b7c8c31776b7020532003c6e44e1c", null ], - [ "admin_page_plugins", "admin_8php.html#a54128076986ba80c4a103de3fc3e19a8", null ], - [ "admin_page_profs", "admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a", null ], - [ "admin_page_profs_post", "admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057", null ], - [ "admin_page_queue", "admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89", null ], - [ "admin_page_site", "admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e", null ], - [ "admin_page_site_post", "admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f", null ], - [ "admin_page_summary", "admin_8php.html#ac6e95b920b5abd030cc522964987087a", null ], - [ "admin_page_themes", "admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb", null ], - [ "admin_page_users", "admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2", null ], - [ "admin_page_users_post", "admin_8php.html#a5a696706a3869800e65fb365214241b7", null ], - [ "admin_post", "admin_8php.html#acf51f5837a7427832144c2bf7308ada3", null ], - [ "rebuild_theme_table", "admin_8php.html#ae46311a3fefc21abc838a26e91789de6", null ], - [ "theme_status", "admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4", null ], - [ "toggle_theme", "admin_8php.html#af81f081851791cd15e49e8ff6722dc27", null ] -]; \ No newline at end of file diff --git a/doc/html/allfriends_8php.html b/doc/html/allfriends_8php.html deleted file mode 100644 index eb1568786..000000000 --- a/doc/html/allfriends_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/allfriends.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        allfriends.php File Reference
        -
        -
        - - - - -

        -Functions

         allfriends_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        allfriends_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/allfriends_8php.js b/doc/html/allfriends_8php.js deleted file mode 100644 index 906fc42b8..000000000 --- a/doc/html/allfriends_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var allfriends_8php = -[ - [ "allfriends_content", "allfriends_8php.html#aad992ddbb5f20e81c5cf2259718aec83", null ] -]; \ No newline at end of file diff --git a/doc/html/annotated.html b/doc/html/annotated.html deleted file mode 100644 index 7d778e83b..000000000 --- a/doc/html/annotated.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -The Red Matrix: Class List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Class List
        -
        -
        -
        Here are the classes, structs, unions and interfaces with brief descriptions:
        -
        [detail level 123]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        oNacl_selectors
        oNeasywebdav
        |oN__version__
        |\Nclient
        | oCWebdavException
        | oCConnectionFailed
        | oCOperationFailed
        | \CClient
        oNFriendica
        oNfriendica-to-smarty-tpl
        oNRedMatrixClass Import
        |oNImport
        ||\CImport
        |\NRedDAV
        | oCRedBasicAuthAuthentication backend class for RedDAV
        | oCRedBrowserProvides a DAV frontend for the webbrowser
        | oCRedDirectoryRedDirectory class
        | \CRedFileThis class represents a file in DAV
        oNupdatetpl
        oNutil
        oNzotsh
        |oCCommandNotFound
        |\CZotSH
        oCAppOur main application structure for the life of this page
        oCBaseObject
        oCCache
        oCConversation
        oCdba_driverAbstract database driver class
        oCdba_mysql
        oCdba_mysqli
        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 deleted file mode 100644 index a3b34f605..000000000 --- a/doc/html/annotated.js +++ /dev/null @@ -1,32 +0,0 @@ -var annotated = -[ - [ "acl_selectors", "namespaceacl__selectors.html", null ], - [ "easywebdav", "namespaceeasywebdav.html", "namespaceeasywebdav" ], - [ "Friendica", "namespaceFriendica.html", null ], - [ "friendica-to-smarty-tpl", "namespacefriendica-to-smarty-tpl.html", null ], - [ "RedMatrix", "namespaceRedMatrix.html", "namespaceRedMatrix" ], - [ "updatetpl", "namespaceupdatetpl.html", null ], - [ "util", "namespaceutil.html", null ], - [ "zotsh", "namespacezotsh.html", "namespacezotsh" ], - [ "App", "classApp.html", "classApp" ], - [ "BaseObject", "classBaseObject.html", "classBaseObject" ], - [ "Cache", "classCache.html", null ], - [ "Conversation", "classConversation.html", "classConversation" ], - [ "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" ], - [ "FriendicaSmarty", "classFriendicaSmarty.html", "classFriendicaSmarty" ], - [ "FriendicaSmartyEngine", "classFriendicaSmartyEngine.html", "classFriendicaSmartyEngine" ], - [ "Item", "classItem.html", "classItem" ], - [ "ITemplateEngine", "interfaceITemplateEngine.html", "interfaceITemplateEngine" ], - [ "photo_driver", "classphoto__driver.html", "classphoto__driver" ], - [ "photo_gd", "classphoto__gd.html", "classphoto__gd" ], - [ "photo_imagick", "classphoto__imagick.html", "classphoto__imagick" ], - [ "ProtoDriver", "classProtoDriver.html", "classProtoDriver" ], - [ "Template", "classTemplate.html", "classTemplate" ], - [ "ZotDriver", "classZotDriver.html", "classZotDriver" ] -]; \ No newline at end of file diff --git a/doc/html/appman_8php.html b/doc/html/appman_8php.html deleted file mode 100644 index a2a12d708..000000000 --- a/doc/html/appman_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/appman.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        appman.php File Reference
        -
        -
        - - - - - - -

        -Functions

         appman_post (&$a)
         
         appman_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        appman_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        appman_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/appman_8php.js b/doc/html/appman_8php.js deleted file mode 100644 index b5e384400..000000000 --- a/doc/html/appman_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var appman_8php = -[ - [ "appman_content", "appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f", null ], - [ "appman_post", "appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39", null ] -]; \ No newline at end of file diff --git a/doc/html/apps_8php.html b/doc/html/apps_8php.html deleted file mode 100644 index 47a49270a..000000000 --- a/doc/html/apps_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/apps.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        apps.php File Reference
        -
        -
        - - - - -

        -Functions

         apps_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        apps_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/apps_8php.js b/doc/html/apps_8php.js deleted file mode 100644 index a2ca0a3d7..000000000 --- a/doc/html/apps_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var apps_8php = -[ - [ "apps_content", "apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c", null ] -]; \ No newline at end of file diff --git a/doc/html/apw_2README_8md.html b/doc/html/apw_2README_8md.html deleted file mode 100644 index 815c86f05..000000000 --- a/doc/html/apw_2README_8md.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/README.md File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        view/theme/apw/README.md File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html deleted file mode 100644 index 7e8c90e21..000000000 --- a/doc/html/apw_2php_2style_8php.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

         $uid = get_theme_uid()
         
         if ($uid) load_pconfig($uid
         
         $x = splitFilename($font)
         
         $fname = $x[0]
         
         $fext = $x[1]
         
        if(file_exists('view/theme/apw/font/'.$fname.
        -'i.'.$fext)) if(file_exists('view/theme/apw/font/'.$fname.
        -'b.'.$fext)) 
        $strongmacro = ''
         
         $obliquemacro = ''
         
        if($nav$sectiontop = "28px"
         
         $iconsize = "16px"
         
         $navheight = "27px"
         
         $showlock = "block"
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $fext = $x[1]
        -
        - -
        -
        - -
        -
        - - - - -
        $fname = $x[0]
        -
        -
        - -
        -
        - - - - -
        $iconsize = "16px"
        -
        - -
        -
        - -
        -
        - - - - -
        $navheight = "27px"
        -
        - -
        -
        - -
        -
        - - - - -
        $obliquemacro = ''
        -
        - -
        -
        - -
        -
        - - - - -
        if ($nav) $sectiontop = "28px"
        -
        - -
        -
        - -
        -
        - - - - -
        $showlock = "block"
        -
        - -
        -
        - -
        -
        - - - - -
        if (file_exists('view/theme/apw/font/'.$fname. 'i.'.$fext)) if (file_exists('view/theme/apw/font/'.$fname. 'b.'.$fext)) $strongmacro = ''
        -
        - -
        -
        - -
        -
        - - - - -
        $uid = get_theme_uid()
        -
        - -

        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(), linkify_tags(), 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(), wtagblock(), and zot_feed().

        - -
        -
        - -
        -
        - - - - -
        $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_upstream_directory(), 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(), dav_init(), 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_primary(), get_directory_realm(), get_file_activity_object(), 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(), help_content(), 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(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), randprof_init(), ratenotif_run(), ratings_init(), recursive_activity_recipients(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), regdir_init(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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().

        - -
        -
        - -
        -
        - - - - -
        if (($schema)&&($schema!= '---')) if(!$schema||($schema== '---'))
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/apw_2php_2style_8php.js b/doc/html/apw_2php_2style_8php.js deleted file mode 100644 index bfb5568d9..000000000 --- a/doc/html/apw_2php_2style_8php.js +++ /dev/null @@ -1,14 +0,0 @@ -var apw_2php_2style_8php = -[ - [ "$fext", "apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9", null ], - [ "$fname", "apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc", null ], - [ "$iconsize", "apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30", null ], - [ "$navheight", "apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872", null ], - [ "$obliquemacro", "apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0", null ], - [ "$sectiontop", "apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a", null ], - [ "$showlock", "apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425", null ], - [ "$strongmacro", "apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea", null ], - [ "$uid", "apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a", null ], - [ "$x", "apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7", null ], - [ "if", "apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d", null ] -]; \ No newline at end of file diff --git a/doc/html/apw_2php_2theme_8php.html b/doc/html/apw_2php_2theme_8php.html deleted file mode 100644 index 10f7b089c..000000000 --- a/doc/html/apw_2php_2theme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         apw_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        apw_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/apw_2php_2theme_8php.js b/doc/html/apw_2php_2theme_8php.js deleted file mode 100644 index 1cf9ba117..000000000 --- a/doc/html/apw_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var apw_2php_2theme_8php = -[ - [ "apw_init", "apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89", null ] -]; \ No newline at end of file diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html deleted file mode 100644 index 9145b5ef3..000000000 --- a/doc/html/auth_8php.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - -The Red Matrix: include/auth.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        auth.php File Reference
        -
        -
        - -

        Functions and inline functionality for authentication. -More...

        - - - - - - - - - - - - - - -

        -Functions

         nuke_session ()
         Resets the current session. More...
         
         account_verify_password ($email, $pass)
         Verify login credentials. More...
         
         log_failed_login ($errormsg)
         Log failed logins to a separate auth log. More...
         
        if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
        -'login') 
        match_openid ($authid)
         Returns the channel_id for a given openid_identity. More...
         
        - - - -

        -Variables

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

        Detailed Description

        -

        Functions and inline functionality for authentication.

        -

        This file provides some functions for authentication handling and inline functionality. Look for auth parameters or re-validate an existing session also handles logout. Also provides a function for OpenID identiy matching.

        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        account_verify_password ( $email,
         $pass 
        )
        -
        - -

        Verify login credentials.

        -

        If system authlog is set a log entry will be added for failed login attempts.

        -
        Parameters
        - - - -
        string$emailThe email address to verify.
        string$passThe provided password to verify.
        -
        -
        -
        Returns
        array|null Returns account record on success, null on failure.
        - -

        Referenced by api_login(), removeaccount_post(), removeme_post(), and RedMatrix\RedDAV\RedBasicAuth\validateUserPass().

        - -
        -
        - -
        -
        - - - - - - - - -
        log_failed_login ( $errormsg)
        -
        - -

        Log failed logins to a separate auth log.

        -

        Can be used to reduce overhead for server side intrusion prevention, like parse the authlog file with something like fail2ban, OSSEC, etc.

        -
        Parameters
        - - -
        string$errormsgError message to display for failed login.
        -
        -
        -

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

        - -

        Referenced by account_verify_password(), and RedMatrix\RedDAV\RedBasicAuth\validateUserPass().

        - -
        -
        - -
        -
        - - - - - - - - -
        if ((x($_POST, 'auth-params'))&&$_POST['auth-params']=== 'login') match_openid ( $authid)
        -
        - -

        Returns the channel_id for a given openid_identity.

        -

        Queries the values from pconfig configuration for the given openid_identity and returns the corresponding channel_id.

        -

        How do we prevent that an OpenID identity is used more than once?

        -
        Parameters
        - - -
        string$authidThe given openid_identity
        -
        -
        -
        Returns
        int|bool Return channel_id from pconfig or false.
        - -

        Referenced by openid_content().

        - -
        -
        - -
        -
        - - - - - - - -
        nuke_session ()
        -
        - -

        Resets the current session.

        -
        Returns
        void
        - -

        Referenced by api_account_logout().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        if ((isset($_SESSION))&&(x($_SESSION, 'authenticated'))&&((!(x($_POST, 'auth-params')))||($_POST['auth-params']!== 'login'))) else
        -
        -Initial value:
        {
        -
        -
        if(isset($_SESSION)) {
        - -
        }
        -
        -
        -
        -
        if((x($_POST, 'password')) && strlen($_POST['password']))
        -
        $encrypted = hash('whirlpool', trim($_POST['password']))
        -

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

        - -
        -
        -
        -
        - diff --git a/doc/html/auth_8php.js b/doc/html/auth_8php.js deleted file mode 100644 index b4ab0b9b1..000000000 --- a/doc/html/auth_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var auth_8php = -[ - [ "account_verify_password", "auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee", null ], - [ "log_failed_login", "auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1", null ], - [ "match_openid", "auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2", null ], - [ "nuke_session", "auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a", null ], - [ "else", "auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f", null ] -]; \ No newline at end of file diff --git a/doc/html/bb2diaspora_8php.html b/doc/html/bb2diaspora_8php.html deleted file mode 100644 index b3efd66e6..000000000 --- a/doc/html/bb2diaspora_8php.html +++ /dev/null @@ -1,476 +0,0 @@ - - - - - - -The Red Matrix: include/bb2diaspora.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        bb2diaspora.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         get_bb_tag_pos ($s, $name, $occurance=1)
         
         bb_tag_preg_replace ($pattern, $replace, $name, $s)
         
         share_shield ($m)
         
         share_unshield ($m)
         
         diaspora_mention_callback ($matches)
         
         diaspora2bb ($s, $use_zrl=false)
         
         stripdcode_br_cb ($s)
         
         diaspora_ul ($s)
         
         diaspora_ol ($s)
         
         bb2dmention_callback ($match)
         
         bb2diaspora_itemwallwall (&$item)
         
         bb2diaspora_itembody ($item, $force_update=false)
         
         bb2diaspora ($Text, $preserve_nl=false, $fordiaspora=true)
         
         unescape_underscores_in_links ($m)
         
         format_event_diaspora ($ev)
         
        -

        Function Documentation

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

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

        - -

        Referenced by bb2diaspora_itembody(), diaspora_send_mail(), and format_event_diaspora().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        bb2diaspora_itembody ( $item,
         $force_update = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        bb2diaspora_itemwallwall ($item)
        -
        - -

        Referenced by bb2diaspora_itembody().

        - -
        -
        - -
        -
        - - - - - - - - -
        bb2dmention_callback ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        bb_tag_preg_replace ( $pattern,
         $replace,
         $name,
         $s 
        )
        -
        - -

        Referenced by diaspora2bb().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora2bb ( $s,
         $use_zrl = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        diaspora_mention_callback ( $matches)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        diaspora_ol ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        diaspora_ul ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        format_event_diaspora ( $ev)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_bb_tag_pos ( $s,
         $name,
         $occurance = 1 
        )
        -
        - -

        Referenced by bb_tag_preg_replace().

        - -
        -
        - -
        -
        - - - - - - - - -
        share_shield ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        share_unshield ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        stripdcode_br_cb ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        unescape_underscores_in_links ( $m)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/bb2diaspora_8php.js b/doc/html/bb2diaspora_8php.js deleted file mode 100644 index 2f70d373c..000000000 --- a/doc/html/bb2diaspora_8php.js +++ /dev/null @@ -1,18 +0,0 @@ -var bb2diaspora_8php = -[ - [ "bb2diaspora", "bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c", null ], - [ "bb2diaspora_itembody", "bb2diaspora_8php.html#ab27761069ea1275f0fc4c543099c5519", null ], - [ "bb2diaspora_itemwallwall", "bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083", null ], - [ "bb2dmention_callback", "bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34", null ], - [ "bb_tag_preg_replace", "bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba", null ], - [ "diaspora2bb", "bb2diaspora_8php.html#ac9061ee10fcfcdac69566b649614e625", null ], - [ "diaspora_mention_callback", "bb2diaspora_8php.html#a4a27604f0745f1efda672966aaca9a3b", null ], - [ "diaspora_ol", "bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4", null ], - [ "diaspora_ul", "bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc", null ], - [ "format_event_diaspora", "bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863", null ], - [ "get_bb_tag_pos", "bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2", null ], - [ "share_shield", "bb2diaspora_8php.html#ad033be99e87a2aaa05e569c68f30792d", null ], - [ "share_unshield", "bb2diaspora_8php.html#ab61b4f8c065e97b151411858bb2f209a", null ], - [ "stripdcode_br_cb", "bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93", null ], - [ "unescape_underscores_in_links", "bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747", null ] -]; \ No newline at end of file diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html deleted file mode 100644 index dd3c85b59..000000000 --- a/doc/html/bbcode_8php.html +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - -The Red Matrix: include/bbcode.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        bbcode.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         tryoembed ($match)
         
         tryzrlaudio ($match)
         
         tryzrlvideo ($match)
         
         bb_spacefy ($st)
         
         bb_unspacefy_and_trim ($st)
         
         bb_extract_images ($body)
         
         bb_replace_images ($body, $images)
         
         bb_parse_crypt ($match)
         
         bb_parse_app ($match)
         
         bb_parse_element ($match)
         
         bb_qr ($match)
         
         bb_ShareAttributes ($match)
         
         bb_location ($match)
         
         bbiframe ($match)
         
         bb_ShareAttributesSimple ($match)
         
         rpost_callback ($match)
         
         bb_map_coords ($match)
         
         bb_map_location ($match)
         
         bb_sanitize_style ($input)
         
         bbcode ($Text, $preserve_nl=false, $tryoembed=true)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        bb_extract_images ( $body)
        -
        - -

        Referenced by bbcode().

        - -
        -
        - -
        -
        - - - - - - - - -
        bb_location ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_map_coords ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_map_location ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_parse_app ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_parse_crypt ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_parse_element ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_qr ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        bb_replace_images ( $body,
         $images 
        )
        -
        - -

        Referenced by bbcode().

        - -
        -
        - -
        -
        - - - - - - - - -
        bb_sanitize_style ( $input)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_ShareAttributes ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_ShareAttributesSimple ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_spacefy ( $st)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bb_unspacefy_and_trim ( $st)
        -
        - -
        -
        - - - -
        -
        - - - - - - - - -
        bbiframe ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rpost_callback ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        tryoembed ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        tryzrlaudio ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        tryzrlvideo ( $match)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/bbcode_8php.js b/doc/html/bbcode_8php.js deleted file mode 100644 index c6bad16de..000000000 --- a/doc/html/bbcode_8php.js +++ /dev/null @@ -1,23 +0,0 @@ -var bbcode_8php = -[ - [ "bb_extract_images", "bbcode_8php.html#a583bf904481db2623ead8cbd28f16d32", null ], - [ "bb_location", "bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd", null ], - [ "bb_map_coords", "bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24", null ], - [ "bb_map_location", "bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d", null ], - [ "bb_parse_app", "bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2", null ], - [ "bb_parse_crypt", "bbcode_8php.html#aaaae933e2563558db886b820075c93c8", null ], - [ "bb_parse_element", "bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9", null ], - [ "bb_qr", "bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c", null ], - [ "bb_replace_images", "bbcode_8php.html#a35f52b106a3d522f1c0783e78223f402", null ], - [ "bb_sanitize_style", "bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e", null ], - [ "bb_ShareAttributes", "bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a", null ], - [ "bb_ShareAttributesSimple", "bbcode_8php.html#a2be26414a367118143cc89e2d58e7377", null ], - [ "bb_spacefy", "bbcode_8php.html#a8911e027907820df3db03b4f76724b50", null ], - [ "bb_unspacefy_and_trim", "bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d", null ], - [ "bbcode", "bbcode_8php.html#a009f61aaf78771737ed0765c8463911b", null ], - [ "bbiframe", "bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7", null ], - [ "rpost_callback", "bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7", null ], - [ "tryoembed", "bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7", null ], - [ "tryzrlaudio", "bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322", null ], - [ "tryzrlvideo", "bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8", null ] -]; \ No newline at end of file diff --git a/doc/html/bc_s.png b/doc/html/bc_s.png deleted file mode 100644 index 224b29aa9..000000000 Binary files a/doc/html/bc_s.png and /dev/null differ diff --git a/doc/html/bdwn.png b/doc/html/bdwn.png deleted file mode 100644 index 940a0b950..000000000 Binary files a/doc/html/bdwn.png and /dev/null differ diff --git a/doc/html/block_8php.html b/doc/html/block_8php.html deleted file mode 100644 index ce74d6537..000000000 --- a/doc/html/block_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/block.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        block.php File Reference
        -
        -
        - - - - - - -

        -Functions

         block_init (&$a)
         
         block_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        block_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        block_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/block_8php.js b/doc/html/block_8php.js deleted file mode 100644 index 676af0f51..000000000 --- a/doc/html/block_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var block_8php = -[ - [ "block_content", "block_8php.html#a8a82a470acdfbc7a8e749509caeeea45", null ], - [ "block_init", "block_8php.html#a9b61c96044ed2a068f18c10370a78d5c", null ] -]; \ No newline at end of file diff --git a/doc/html/blocks_8php.html b/doc/html/blocks_8php.html deleted file mode 100644 index d6ab862e3..000000000 --- a/doc/html/blocks_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/blocks.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        blocks.php File Reference
        -
        -
        - - - - - - -

        -Functions

         blocks_init (&$a)
         
         blocks_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        blocks_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        blocks_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/blocks_8php.js b/doc/html/blocks_8php.js deleted file mode 100644 index c10da1ce2..000000000 --- a/doc/html/blocks_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var blocks_8php = -[ - [ "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/blogga_2php_2README_8md.html b/doc/html/blogga_2php_2README_8md.html deleted file mode 100644 index 77e6ad489..000000000 --- a/doc/html/blogga_2php_2README_8md.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php/README.md File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        view/theme/blogga/php/README.md File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/blogga_2php_2theme_8php.html b/doc/html/blogga_2php_2theme_8php.html deleted file mode 100644 index 7dec443c3..000000000 --- a/doc/html/blogga_2php_2theme_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         blog_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        blog_init ($a)
        -
        -

        Name: Blogga Version: 0.6 Description: Blog theme ported from Twenty Eleven wordpress theme, Licensed under GNU General Public License v2 or later Author: Fabio http://kirgroup.com/profile/fabrixxm Maintainer: Mike <zot:mike@.nosp@m.zoth.nosp@m.ub.co.nosp@m.m>

        - -
        -
        -
        -
        - diff --git a/doc/html/blogga_2php_2theme_8php.js b/doc/html/blogga_2php_2theme_8php.js deleted file mode 100644 index 6564e93f7..000000000 --- a/doc/html/blogga_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var blogga_2php_2theme_8php = -[ - [ "blog_init", "blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b", null ] -]; \ No newline at end of file diff --git a/doc/html/blogga_2view_2theme_2blog_2theme_8php.html b/doc/html/blogga_2view_2theme_2blog_2theme_8php.html deleted file mode 100644 index db3d2371d..000000000 --- a/doc/html/blogga_2view_2theme_2blog_2theme_8php.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view/theme/blog/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Functions

         blog_init (&$a)
         
         blog_install (&$a)
         
         blog_uninstall (&$a)
         
         blogtheme_imgurl ($headimg)
         
         blogtheme_display_item (&$a, &$data)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        blog_init ($a)
        -
        -

        Name: Blog Version: 0.6 Description: Blog theme ported from Twenty Eleven wordpress theme, Licensed under GNU General Public License v2 or later Author: Fabio http://kirgroup.com/profile/fabrixxm Maintainer: Fabio http://kirgroup.com/profile/fabrixxm

        - -
        -
        - -
        -
        - - - - - - - - -
        blog_install ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        blog_uninstall ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        blogtheme_display_item ($a,
        $data 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        blogtheme_imgurl ( $headimg)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/blogga_2view_2theme_2blog_2theme_8php.js b/doc/html/blogga_2view_2theme_2blog_2theme_8php.js deleted file mode 100644 index 2098cac8b..000000000 --- a/doc/html/blogga_2view_2theme_2blog_2theme_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var blogga_2view_2theme_2blog_2theme_8php = -[ - [ "blog_init", "blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b", null ], - [ "blog_install", "blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae", null ], - [ "blog_uninstall", "blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c", null ], - [ "blogtheme_display_item", "blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5", null ], - [ "blogtheme_imgurl", "blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec", null ] -]; \ No newline at end of file diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html deleted file mode 100644 index 47a982cc7..000000000 --- a/doc/html/boot_8php.html +++ /dev/null @@ -1,5745 +0,0 @@ - - - - - - -The Red Matrix: boot.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        boot.php File Reference
        -
        -
        - - - - - -

        -Classes

        class  App
         Our main application structure for the life of this page. More...
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         startup ()
         
         get_app ()
         Retrieve the App structure. More...
         
         x ($s, $k=null)
         Multi-purpose function to check variable state. More...
         
         system_unavailable ()
         
         clean_urls ()
         
         z_path ()
         
         z_root ()
         Returns the baseurl. More...
         
         absurl ($path)
         Return absolut URL for given $path. More...
         
         os_mkdir ($path, $mode=0777, $recursive=false)
         
         is_ajax ()
         Function to check if request was an AJAX (xmlhttprequest) request. More...
         
         check_config (&$a)
         
         fix_system_urls ($oldurl, $newurl)
         
         login ($register=false, $form_id= 'main-login', $hiddens=false)
         
         killme ()
         Used to end the current process, after saving session state. More...
         
         goaway ($s)
         Redirect to another URL and terminate this process. More...
         
         get_account_id ()
         Returns the entity id of locally logged in account or false. More...
         
         local_channel ()
         Returns the entity id (channel_id) of locally logged in channel or false. More...
         
         local_user ()
         
         remote_channel ()
         Returns a xchan_hash (visitor_id) of remote authenticated visitor or false. More...
         
         remote_user ()
         
         notice ($s)
         
         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)
         Return full URL to theme which is currently in effect. More...
         
         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)
         
         dba_timer ()
         
         get_observer_hash ()
         Returns xchan_hash from the observer. More...
         
         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 ()
         Returns RedMatrix's root directory. More...
         
         head_set_icon ($icon)
         Set a pageicon. More...
         
         head_get_icon ()
         Get the pageicon. More...
         
         get_directory_realm ()
         Return the Realm of the directory. More...
         
         get_directory_primary ()
         Return the primary directory server. More...
         
         get_poller_runtime ()
         return relative date of last completed poller execution More...
         
         z_get_upload_dir ()
         
         z_get_temp_dir ()
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

        const RED_PLATFORM 'redmatrix'
         
        const RED_VERSION trim(file_get_contents('version.inc')) . 'R'
         
        const ZOT_REVISION 1
         
        const DB_UPDATE_VERSION 1138
         
        const EOL '<br>' . "\r\n"
         
        const ATOM_TIME 'Y-m-d\TH:i:s\Z'
         
        const TEMPLATE_BUILD_PATH 'store/[data]/smarty3'
         
        const DIRECTORY_MODE_NORMAL 0x0000
         
        const DIRECTORY_MODE_PRIMARY 0x0001
         
        const DIRECTORY_MODE_SECONDARY 0x0002
         
        const DIRECTORY_MODE_STANDALONE 0x0100
         
        const DIRECTORY_REALM 'RED_GLOBAL'
         
        const DIRECTORY_FALLBACK_MASTER 'https://zothub.com'
         
         $DIRECTORY_FALLBACK_SERVERS
         
        const JPEG_QUALITY 100
         
        const PNG_QUALITY 8
         
        const LANGUAGE_DETECT_MIN_LENGTH 128
         
        const LANGUAGE_DETECT_MIN_CONFIDENCE 0.01
         
        const STORAGE_DEFAULT_PERMISSIONS 0770
         
        const MAX_IMAGE_LENGTH -1
         
        const DEFAULT_DB_ENGINE 'MyISAM'
         
        const SSL_POLICY_NONE 0
         
        const SSL_POLICY_FULL 1
         
        const SSL_POLICY_SELFSIGN 2
         
        const LOGGER_NORMAL 0
         
        const LOGGER_TRACE 1
         
        const LOGGER_DEBUG 2
         
        const LOGGER_DATA 3
         
        const LOGGER_ALL 4
         
        const REGISTER_CLOSED 0
         
        const REGISTER_APPROVE 1
         
        const REGISTER_OPEN 2
         
        const ACCESS_PRIVATE 0
         
        const ACCESS_PAID 1
         
        const ACCESS_FREE 2
         
        const ACCESS_TIERED 3
         
        const CONTACT_IS_FOLLOWER 1
         
        const CONTACT_IS_SHARING 2
         
        const CONTACT_IS_FRIEND 3
         
        const UPDATE_SUCCESS 0
         
        const UPDATE_FAILED 1
         
        const CLIENT_MODE_NORMAL 0x0000
         
        const CLIENT_MODE_LOAD 0x0001
         
        const CLIENT_MODE_UPDATE 0x0002
         
        const PAGE_NORMAL 0x0000
         
        const PAGE_HIDDEN 0x0001
         
        const PAGE_AUTOCONNECT 0x0002
         
        const PAGE_APPLICATION 0x0004
         
        const PAGE_ALLOWCODE 0x0008
         
        const PAGE_PREMIUM 0x0010
         
        const PAGE_ADULT 0x0020
         
        const PAGE_CENSORED 0x0040
         
        const PAGE_SYSTEM 0x1000
         
        const PAGE_HUBADMIN 0x2000
         
        const PAGE_REMOVED 0x8000
         
        const PHOTO_NORMAL 0x0000
         
        const PHOTO_PROFILE 0x0001
         
        const PHOTO_XCHAN 0x0002
         
        const PHOTO_THING 0x0004
         
        const PHOTO_ADULT 0x0008
         
        const PHOTO_FLAG_OS 0x4000
         
        const MENU_SYSTEM 0x0001
         
        const MENU_BOOKMARK 0x0002
         
        const NETWORK_DFRN 'dfrn'
         
        const NETWORK_ZOT 'zot!'
         
        const NETWORK_OSTATUS 'stat'
         
        const NETWORK_FEED 'feed'
         
        const NETWORK_DIASPORA 'dspr'
         
        const NETWORK_MAIL 'mail'
         
        const NETWORK_MAIL2 'mai2'
         
        const NETWORK_FACEBOOK 'face'
         
        const NETWORK_LINKEDIN 'lnkd'
         
        const NETWORK_XMPP 'xmpp'
         
        const NETWORK_MYSPACE 'mysp'
         
        const NETWORK_GPLUS 'goog'
         
        const NETWORK_PHANTOM 'unkn'
         
        const PERMS_R_STREAM 0x00001
         
        const PERMS_R_PROFILE 0x00002
         
        const PERMS_R_PHOTOS 0x00004
         
        const PERMS_R_ABOOK 0x00008
         
        const PERMS_W_STREAM 0x00010
         
        const PERMS_W_WALL 0x00020
         
        const PERMS_W_TAGWALL 0x00040
         
        const PERMS_W_COMMENT 0x00080
         
        const PERMS_W_MAIL 0x00100
         
        const PERMS_W_PHOTOS 0x00200
         
        const PERMS_W_CHAT 0x00400
         
        const PERMS_A_DELEGATE 0x00800
         
        const PERMS_R_STORAGE 0x01000
         
        const PERMS_W_STORAGE 0x02000
         
        const PERMS_R_PAGES 0x04000
         
        const PERMS_W_PAGES 0x08000
         
        const PERMS_A_REPUBLISH 0x10000
         
        const PERMS_W_LIKE 0x20000
         
        const PERMS_PUBLIC 0x0001
         
        const PERMS_NETWORK 0x0002
         
        const PERMS_SITE 0x0004
         
        const PERMS_CONTACTS 0x0008
         
        const PERMS_SPECIFIC 0x0080
         
        const PERMS_AUTHED 0x0100
         
        const PERMS_PENDING 0x0200
         
        const ABOOK_FLAG_BLOCKED 0x0001
         
        const ABOOK_FLAG_IGNORED 0x0002
         
        const ABOOK_FLAG_HIDDEN 0x0004
         
        const ABOOK_FLAG_ARCHIVED 0x0008
         
        const ABOOK_FLAG_PENDING 0x0010
         
        const ABOOK_FLAG_UNCONNECTED 0x0020
         
        const ABOOK_FLAG_SELF 0x0080
         
        const ABOOK_FLAG_FEED 0x0100
         
        const MAIL_DELETED 0x0001
         
        const MAIL_REPLIED 0x0002
         
        const MAIL_ISREPLY 0x0004
         
        const MAIL_SEEN 0x0008
         
        const MAIL_RECALLED 0x0010
         
        const MAIL_OBSCURED 0x0020
         
        const ATTACH_FLAG_DIR 0x0001
         
        const ATTACH_FLAG_OS 0x0002
         
        const MENU_ITEM_ZID 0x0001
         
        const MENU_ITEM_NEWWIN 0x0002
         
        const MENU_ITEM_CHATROOM 0x0004
         
        const POLL_SIMPLE_RATING 0x0001
         
        const POLL_TENSCALE 0x0002
         
        const POLL_MULTIPLE_CHOICE 0x0004
         
        const POLL_OVERWRITE 0x8000
         
        const UPDATE_FLAGS_UPDATED 0x0001
         
        const UPDATE_FLAGS_FORCED 0x0002
         
        const UPDATE_FLAGS_DELETED 0x1000
         
        const DROPITEM_NORMAL 0
         
        const DROPITEM_PHASE1 1
         
        const DROPITEM_PHASE2 2
         
        const MAX_LIKERS 10
         
        const ZCURL_TIMEOUT (-1)
         
        const NOTIFY_INTRO 0x0001
         
        const NOTIFY_CONFIRM 0x0002
         
        const NOTIFY_WALL 0x0004
         
        const NOTIFY_COMMENT 0x0008
         
        const NOTIFY_MAIL 0x0010
         
        const NOTIFY_SUGGEST 0x0020
         
        const NOTIFY_PROFILE 0x0040
         
        const NOTIFY_TAGSELF 0x0080
         
        const NOTIFY_TAGSHARE 0x0100
         
        const NOTIFY_POKE 0x0200
         
        const NOTIFY_SYSTEM 0x8000
         
        const VNOTIFY_NETWORK 0x0001
         
        const VNOTIFY_CHANNEL 0x0002
         
        const VNOTIFY_MAIL 0x0004
         
        const VNOTIFY_EVENT 0x0008
         
        const VNOTIFY_EVENTTODAY 0x0010
         
        const VNOTIFY_BIRTHDAY 0x0020
         
        const VNOTIFY_SYSTEM 0x0040
         
        const VNOTIFY_INFO 0x0080
         
        const VNOTIFY_ALERT 0x0100
         
        const VNOTIFY_INTRO 0x0200
         
        const VNOTIFY_REGISTER 0x0400
         
        const HUBLOC_FLAGS_PRIMARY 0x0001
         
        const HUBLOC_FLAGS_UNVERIFIED 0x0002
         
        const HUBLOC_FLAGS_ORPHANCHECK 0x0004
         
        const HUBLOC_FLAGS_DELETED 0x1000
         
        const XCHAN_FLAGS_NORMAL 0x0000
         
        const XCHAN_FLAGS_HIDDEN 0x0001
         
        const XCHAN_FLAGS_ORPHAN 0x0002
         
        const XCHAN_FLAGS_CENSORED 0x0004
         
        const XCHAN_FLAGS_SELFCENSORED 0x0008
         
        const XCHAN_FLAGS_SYSTEM 0x0010
         
        const XCHAN_FLAGS_PUBFORUM 0x0020
         
        const XCHAN_FLAGS_DELETED 0x1000
         
        const HUBLOC_NOTUSED 0x0000
         
        const HUBLOC_SEND_ERROR 0x0001
         
        const HUBLOC_RECEIVE_ERROR 0x0002
         
        const HUBLOC_WORKS 0x0004
         
        const HUBLOC_OFFLINE 0x0008
         
        const TERM_UNKNOWN 0
         
        const TERM_HASHTAG 1
         
        const TERM_MENTION 2
         
        const TERM_CATEGORY 3
         
        const TERM_PCATEGORY 4
         
        const TERM_FILE 5
         
        const TERM_SAVEDSEARCH 6
         
        const TERM_THING 7
         
        const TERM_BOOKMARK 8
         
        const TERM_OBJ_POST 1
         
        const TERM_OBJ_PHOTO 2
         
        const TERM_OBJ_PROFILE 3
         
        const TERM_OBJ_CHANNEL 4
         
        const TERM_OBJ_OBJECT 5
         
        const TERM_OBJ_THING 6
         
        const TERM_OBJ_APP 7
         
        const NAMESPACE_ZOT 'http://purl.org/zot'
         
        const NAMESPACE_DFRN 'http://purl.org/macgirvin/dfrn/1.0'
         
        const NAMESPACE_THREAD 'http://purl.org/syndication/thread/1.0'
         
        const NAMESPACE_TOMB 'http://purl.org/atompub/tombstones/1.0'
         
        const NAMESPACE_ACTIVITY 'http://activitystrea.ms/spec/1.0/'
         
        const NAMESPACE_ACTIVITY_SCHEMA 'http://activitystrea.ms/schema/1.0/'
         
        const NAMESPACE_MEDIA 'http://purl.org/syndication/atommedia'
         
        const NAMESPACE_SALMON_ME 'http://salmon-protocol.org/ns/magic-env'
         
        const NAMESPACE_OSTATUSSUB 'http://ostatus.org/schema/1.0/subscribe'
         
        const NAMESPACE_GEORSS 'http://www.georss.org/georss'
         
        const NAMESPACE_POCO 'http://portablecontacts.net/spec/1.0'
         
        const NAMESPACE_FEED 'http://schemas.google.com/g/2010#updates-from'
         
        const NAMESPACE_OSTATUS 'http://ostatus.org/schema/1.0'
         
        const NAMESPACE_STATUSNET 'http://status.net/schema/api/1/'
         
        const NAMESPACE_ATOM1 'http://www.w3.org/2005/Atom'
         
        const NAMESPACE_YMEDIA 'http://search.yahoo.com/mrss/'
         
        const ACTIVITY_LIKE NAMESPACE_ACTIVITY_SCHEMA . 'like'
         
        const ACTIVITY_DISLIKE NAMESPACE_ZOT . '/activity/dislike'
         
        const ACTIVITY_AGREE NAMESPACE_ZOT . '/activity/agree'
         
        const ACTIVITY_DISAGREE NAMESPACE_ZOT . '/activity/disagree'
         
        const ACTIVITY_ABSTAIN NAMESPACE_ZOT . '/activity/abstain'
         
        const ACTIVITY_ATTEND NAMESPACE_ZOT . '/activity/attendyes'
         
        const ACTIVITY_ATTENDNO NAMESPACE_ZOT . '/activity/attendno'
         
        const ACTIVITY_ATTENDMAYBE NAMESPACE_ZOT . '/activity/attendmaybe'
         
        const ACTIVITY_OBJ_HEART NAMESPACE_ZOT . '/activity/heart'
         
        const ACTIVITY_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'make-friend'
         
        const ACTIVITY_REQ_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'request-friend'
         
        const ACTIVITY_UNFRIEND NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend'
         
        const ACTIVITY_FOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'follow'
         
        const ACTIVITY_UNFOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'stop-following'
         
        const ACTIVITY_JOIN NAMESPACE_ACTIVITY_SCHEMA . 'join'
         
        const ACTIVITY_POST NAMESPACE_ACTIVITY_SCHEMA . 'post'
         
        const ACTIVITY_UPDATE NAMESPACE_ACTIVITY_SCHEMA . 'update'
         
        const ACTIVITY_TAG NAMESPACE_ACTIVITY_SCHEMA . 'tag'
         
        const ACTIVITY_FAVORITE NAMESPACE_ACTIVITY_SCHEMA . 'favorite'
         
        const ACTIVITY_POKE NAMESPACE_ZOT . '/activity/poke'
         
        const ACTIVITY_MOOD NAMESPACE_ZOT . '/activity/mood'
         
        const ACTIVITY_OBJ_COMMENT NAMESPACE_ACTIVITY_SCHEMA . 'comment'
         
        const ACTIVITY_OBJ_NOTE NAMESPACE_ACTIVITY_SCHEMA . 'note'
         
        const ACTIVITY_OBJ_PERSON NAMESPACE_ACTIVITY_SCHEMA . 'person'
         
        const ACTIVITY_OBJ_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'photo'
         
        const ACTIVITY_OBJ_P_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo'
         
        const ACTIVITY_OBJ_ALBUM NAMESPACE_ACTIVITY_SCHEMA . 'photo-album'
         
        const ACTIVITY_OBJ_EVENT NAMESPACE_ACTIVITY_SCHEMA . 'event'
         
        const ACTIVITY_OBJ_GROUP NAMESPACE_ACTIVITY_SCHEMA . 'group'
         
        const ACTIVITY_OBJ_TAGTERM NAMESPACE_ZOT . '/activity/tagterm'
         
        const ACTIVITY_OBJ_PROFILE NAMESPACE_ZOT . '/activity/profile'
         
        const ACTIVITY_OBJ_THING NAMESPACE_ZOT . '/activity/thing'
         
        const ACTIVITY_OBJ_LOCATION NAMESPACE_ZOT . '/activity/location'
         
        const ACTIVITY_OBJ_FILE NAMESPACE_ZOT . '/activity/file'
         
        const GRAVITY_PARENT 0
         
        const GRAVITY_LIKE 3
         
        const GRAVITY_COMMENT 6
         
        const ACCOUNT_OK 0x0000
         
        const ACCOUNT_UNVERIFIED 0x0001
         
        const ACCOUNT_BLOCKED 0x0002
         
        const ACCOUNT_EXPIRED 0x0004
         
        const ACCOUNT_REMOVED 0x0008
         
        const ACCOUNT_PENDING 0x0010
         
        const ACCOUNT_ROLE_ALLOWCODE 0x0001
         
        const ACCOUNT_ROLE_SYSTEM 0x0002
         
        const ACCOUNT_ROLE_DEVELOPER 0x0004
         
        const ACCOUNT_ROLE_ADMIN 0x1000
         
        const ITEM_VISIBLE 0x0000
         
        const ITEM_HIDDEN 0x0001
         
        const ITEM_BLOCKED 0x0002
         
        const ITEM_MODERATED 0x0004
         
        const ITEM_SPAM 0x0008
         
        const ITEM_DELETED 0x0010
         
        const ITEM_UNPUBLISHED 0x0020
         
        const ITEM_WEBPAGE 0x0040
         
        const ITEM_DELAYED_PUBLISH 0x0080
         
        const ITEM_BUILDBLOCK 0x0100
         
        const ITEM_PDL 0x0200
         
        const ITEM_BUG 0x0400
         
        const ITEM_PENDING_REMOVE 0x0800
         
        const ITEM_ORIGIN 0x0001
         
        const ITEM_UNSEEN 0x0002
         
        const ITEM_STARRED 0x0004
         
        const ITEM_UPLINK 0x0008
         
        const ITEM_CONSENSUS 0x0010
         
        const ITEM_WALL 0x0020
         
        const ITEM_THREAD_TOP 0x0040
         
        const ITEM_NOTSHOWN 0x0080
         
        const ITEM_NSFW 0x0100
         
        const ITEM_RELAY 0x0200
         
        const ITEM_MENTIONSME 0x0400
         
        const ITEM_NOCOMMENT 0x0800
         
        const ITEM_OBSCURED 0x1000
         
        const ITEM_VERIFIED 0x2000
         
        const ITEM_RETAINED 0x4000
         
        const ITEM_RSS 0x8000
         
        const DBTYPE_MYSQL 0
         
        const DBTYPE_POSTGRES 1
         
        -

        Detailed Description

        -

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

        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        absurl ( $path)
        -
        - -

        Return absolut URL for given $path.

        -
        Parameters
        - - -
        string$path
        -
        -
        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        appdirpath ()
        -
        - -

        Returns RedMatrix's root directory.

        -
        Returns
        string
        - -

        Referenced by get_capath().

        - -
        -
        - -
        -
        - - - - - - - -
        argc ()
        -
        - -

        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(), connedit_post(), contactgroup_content(), dav_init(), 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(), home_content(), home_init(), 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(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), ratings_init(), ratingsearch_init(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), xref_init(), and zotfeed_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        argv ( $x)
        -
        - -

        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(), dav_init(), 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(), home_content(), home_init(), 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(), prate_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), ratings_init(), ratingsearch_init(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_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().

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

        Returns querystring as string from a mapped array.

        -
        Parameters
        - - - -
        array$paramsmapped array with query parameters
        string$nameof parameter, default null
        -
        -
        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - - -
        check_config ($a)
        -
        -

        Synchronise plugins:

        -

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

        - -
        -
        - -
        -
        - - - - - - - -
        clean_urls ()
        -
        - -

        Referenced by z_path().

        - -
        -
        - -
        -
        - - - - - - - - -
        construct_page ($a)
        -
        - -

        build the page.

        -

        Build the page - now that we have all the components

        -
        Parameters
        - - -
        App&$aglobal application object
        -
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        curPageURL ()
        -
        -

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

        -

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

        - -

        Referenced by construct_page().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        current_theme_url ( $installing = false)
        -
        - -

        Return full URL to theme which is currently in effect.

        -

        Provide a sane default if nothing is chosen or the specified theme does not exist.

        -
        Parameters
        - - -
        bool$installingdefault false
        -
        -
        -
        Returns
        string
        - -

        Referenced by construct_page().

        - -
        -
        - -
        -
        - - - - - - - -
        dba_timer ()
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        fix_system_urls ( $oldurl,
         $newurl 
        )
        -
        - -

        Referenced by check_config().

        - -
        -
        - -
        -
        - - - - - - - -
        get_account_id ()
        -
        - -

        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(), file_activity(), 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().

        - -
        -
        - -
        -
        - - - - - - - -
        get_app ()
        -
        - -

        Retrieve the App structure.

        -

        Useful in functions which require it but don't get it passed to them

        -
        Returns
        App
        - -

        Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), RedMatrix\RedDAV\RedDirectory\__construct(), abook_toggle_flag(), account_remove(), account_service_class_allows(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), RedMatrix\RedDAV\RedDirectory\childExists(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), comment_local_origin(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), 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(), dir_tagblock(), dirsearch_content(), drop_item(), editpost_content(), event_store_item(), externals_run(), file_activity(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_theme_config_file(), get_theme_screenshot(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), ical_wrapper(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_public_profile(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), list_smilies(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), onedirsync_run(), onepoll_run(), page_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), ratenotif_run(), recursive_activity_recipients(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), siteinfo_init(), smilies(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), verify_email_address(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_random_block(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_custom_nav ($a,
         $navname 
        )
        -
        - -

        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().

        - -
        -
        - -
        -
        - - - - - - - -
        get_directory_primary ()
        -
        - -

        Return the primary directory server.

        -
        Returns
        string
        - -

        Referenced by poller_run(), ratenotif_run(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - -
        get_directory_realm ()
        -
        - -

        Return the Realm of the directory.

        -
        Returns
        string
        - -

        Referenced by import_xchan(), list_public_sites(), poller_run(), regdir_init(), sitelist_init(), sync_directories(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - -
        get_max_import_size ()
        -
        - -

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

        -
        Returns
        int
        - -

        Referenced by diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_reshare(), get_item_elements(), and limit_body_size().

        - -
        -
        - - - -
        -
        - - - - - - - -
        get_poller_runtime ()
        -
        - -

        return relative date of last completed poller execution

        - -

        Referenced by siteinfo_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        goaway ( $s)
        -
        - -

        Redirect to another URL and terminate this process.

        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        head_get_icon ()
        -
        - -

        Get the pageicon.

        -
        Returns
        string absolut path to pageicon
        - -
        -
        - -
        -
        - - - - - - - - -
        head_set_icon ( $icon)
        -
        - -

        Set a pageicon.

        -
        Parameters
        - - -
        string$icon
        -
        -
        - -

        Referenced by block_init(), connections_init(), connedit_init(), mail_content(), message_content(), network_init(), page_init(), photos_init(), and profile_sidebar().

        - -
        -
        - - - -
        -
        - - - - - - - -
        is_ajax ()
        -
        - -

        Function to check if request was an AJAX (xmlhttprequest) request.

        -
        Returns
        boolean
        - -

        Referenced by admin_content(), admin_post(), photos_post(), and viewsrc_content().

        - -
        -
        - -
        -
        - - - - - - - -
        is_developer ()
        -
        - -

        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().

        - -
        -
        - - - -
        -
        - - - - - - - -
        is_windows ()
        -
        - -

        Checks if we are running on M$ Windows.

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

        Referenced by check_php(), and proc_run().

        - -
        -
        - -
        -
        - - - - - - - -
        killme ()
        -
        - -

        Used to end the current process, after saving session state.

        - -

        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(), dav_init(), directory_content(), events_content(), events_post(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), filestorage_content(), goaway(), hostxrd_init(), http_status_exit(), hub_post_return(), hub_return(), 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(), poll_content(), poller_run(), prate_init(), pretheme_init(), profiles_init(), pubsubhubbub_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_home_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        load_contact_links ( $uid)
        -
        -
        - -
        -
        - - - - - - - - -
        load_pdl ($a)
        -
        - -

        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().

        - -
        -
        - -
        -
        - - - - - - - -
        local_channel ()
        -
        - -

        Returns the entity id (channel_id) of locally logged in channel or false.

        -

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

        -

        Before 2.1 this function was called local_user().

        -
        Since
        2.1
        -
        Returns
        int|bool channel_id or false
        - -

        Referenced by Conversation\__construct(), acl_init(), admin_page_site_post(), 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(), dav_init(), delegate_content(), directory_content(), directory_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), file_activity(), 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_content(), 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(), local_user(), 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(), poke_content(), poke_init(), post_init(), prate_init(), prate_post(), 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(), pubsites_content(), rate_content(), rate_init(), rate_post(), ratings_content(), ratings_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(), sharedwithme_content(), 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_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

        - -
        -
        - -
        -
        - - - - - - - -
        local_user ()
        -
        -

        local_user() got deprecated and replaced by local_channel().

        -
        Deprecated:
        since v2.1, use local_channel()
        -
        See Also
        local_channel()
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        login ( $register = false,
         $form_id = 'main-login',
         $hiddens = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        notice ( $s)
        -
        -

        Contents of $s are displayed prominently on the page the next time a page is loaded. Usually used for errors or alerts.

        -
        Parameters
        - - -
        string$sText to display
        -
        -
        - -

        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(), rate_content(), ratings_content(), ratings_init(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), sharedwithme_content(), 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().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        os_mkdir ( $path,
         $mode = 0777,
         $recursive = false 
        )
        -
        -
        - - - -
        -
        - - - - - - - -
        remote_channel ()
        -
        - -

        Returns a xchan_hash (visitor_id) of remote authenticated visitor or false.

        -

        Returns authenticated string hash of Red global identifier (xchan_hash), if authenticated via remote auth, or an empty string.

        -

        Before 2.1 this function was called remote_user().

        -
        Since
        2.1
        -
        Returns
        string|bool visitor_id or false
        - -

        Referenced by app_render(), channel_content(), directory_content(), display_content(), drop_items(), get_online_status(), home_content(), item_content(), item_permissions_sql(), item_post(), nav(), navbar_complete(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), ratings_content(), ratings_init(), remote_user(), rpost_content(), search_content(), share_init(), subthread_content(), tagger_content(), viewconnections_content(), viewconnections_init(), widget_fullprofile(), widget_profile(), widget_rating(), zid_init(), and zotfeed_init().

        - -
        -
        - -
        -
        - - - - - - - -
        remote_user ()
        -
        -

        remote_user() got deprecated and replaced by remote_channel().

        -
        Deprecated:
        since v2.1, use remote_channel()
        -
        See Also
        remote_channel()
        - -
        -
        - -
        -
        - - - - - - - -
        startup ()
        -
        -

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

        - -

        Referenced by App\__construct().

        - -
        -
        - -
        -
        - - - - - - - -
        system_unavailable ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        x ( $s,
         $k = null 
        )
        -
        - -

        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|int
        - -

        Referenced by FriendicaSmarty\__construct(), App\__construct(), account_service_class_allows(), 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(), dav_init(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), diaspora_asphoto(), diaspora_conversation(), diaspora_message(), dir_sort_links(), directory_content(), directory_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(), get_timezones(), 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_channel(), 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(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), post_var(), probe_content(), proc_run(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), pubsub_init(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_channel(), 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().

        - -
        -
        - -
        -
        - - - - - - - -
        z_get_temp_dir ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        z_get_upload_dir ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        z_path ()
        -
        - -

        Referenced by absurl().

        - -
        -
        - -
        -
        - - - - - - - -
        z_root ()
        -
        - -

        Returns the baseurl.

        -
        See Also
        App::get_baseurl()
        -
        Returns
        string
        - -

        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_like(), diaspora_request(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), events_content(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_directory_primary(), get_parent_cloudpath(), Item\get_template_data(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_content(), 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(), poller_run(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), ratenotif_run(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), regdir_init(), 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(), sharedwithme_content(), 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().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $DIRECTORY_FALLBACK_SERVERS
        -
        -Initial value:
        = array(
        -
        'https://zothub.com',
        -
        'https://zotid.net',
        -
        'https://red.zottel.red',
        -
        'https://redmatrix.info',
        -
        'https://my.federated.social',
        -
        'https://redmatrix.nl'
        -
        )
        -
        -

        Referenced by find_upstream_directory().

        - -
        -
        - - - - - -
        -
        - - - - -
        const ABOOK_FLAG_FEED 0x0100
        -
        -
        - -
        -
        - - - - -
        const ABOOK_FLAG_HIDDEN 0x0004
        -
        -
        - -
        -
        - - - - -
        const ABOOK_FLAG_IGNORED 0x0002
        -
        -
        - - - - - -
        -
        - - - - -
        const ABOOK_FLAG_UNCONNECTED 0x0020
        -
        - -

        Referenced by onepoll_run(), poller_run(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - -
        const ACCESS_FREE 2
        -
        -
        - -
        -
        - - - - -
        const ACCESS_PAID 1
        -
        -
        - -
        -
        - - - - -
        const ACCESS_PRIVATE 0
        -
        -

        site access policy

        - -

        Referenced by admin_page_site(), import_site(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - -
        const ACCESS_TIERED 3
        -
        -
        - -
        -
        - - - - -
        const ACCOUNT_BLOCKED 0x0002
        -
        -
        - -
        -
        - - - - -
        const ACCOUNT_EXPIRED 0x0004
        -
        -
        - - - -
        -
        - - - - -
        const ACCOUNT_PENDING 0x0010
        -
        -
        - -
        -
        - - - - -
        const ACCOUNT_REMOVED 0x0008
        -
        - -

        Referenced by account_verify_password().

        - -
        -
        - -
        -
        - - - - -
        const ACCOUNT_ROLE_ADMIN 0x1000
        -
        -
        - -
        -
        - - - - -
        const ACCOUNT_ROLE_ALLOWCODE 0x0001
        -
        -

        Account roles

        - -

        Referenced by impel_init(), item_post(), mimetype_select(), and z_input_filter().

        - -
        -
        - -
        -
        - - - - -
        const ACCOUNT_ROLE_DEVELOPER 0x0004
        -
        - -

        Referenced by is_developer().

        - -
        -
        - -
        -
        - - - - -
        const ACCOUNT_ROLE_SYSTEM 0x0002
        -
        - -
        -
        - - - -
        -
        - - - - -
        const ACTIVITY_ABSTAIN NAMESPACE_ZOT . '/activity/abstain'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_AGREE NAMESPACE_ZOT . '/activity/agree'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_ATTEND NAMESPACE_ZOT . '/activity/attendyes'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_ATTENDMAYBE NAMESPACE_ZOT . '/activity/attendmaybe'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_ATTENDNO NAMESPACE_ZOT . '/activity/attendno'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_DISAGREE NAMESPACE_ZOT . '/activity/disagree'
        -
        -
        - - - -
        -
        - - - - -
        const ACTIVITY_FAVORITE NAMESPACE_ACTIVITY_SCHEMA . 'favorite'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_FOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'follow'
        -
        - -

        Referenced by subthread_content().

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

        Referenced by connedit_post(), and localize_item().

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

        Referenced by localize_item(), and mood_init().

        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_ALBUM NAMESPACE_ACTIVITY_SCHEMA . 'photo-album'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_COMMENT NAMESPACE_ACTIVITY_SCHEMA . 'comment'
        -
        - -

        Referenced by item_post(), item_store(), and post_activity_item().

        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_EVENT NAMESPACE_ACTIVITY_SCHEMA . 'event'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_FILE NAMESPACE_ZOT . '/activity/file'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_GROUP NAMESPACE_ACTIVITY_SCHEMA . 'group'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_HEART NAMESPACE_ZOT . '/activity/heart'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_LOCATION NAMESPACE_ZOT . '/activity/location'
        -
        - -
        -
        - - - -
        -
        - - - - -
        const ACTIVITY_OBJ_P_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_PERSON NAMESPACE_ACTIVITY_SCHEMA . 'person'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'photo'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_PROFILE NAMESPACE_ZOT . '/activity/profile'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_TAGTERM NAMESPACE_ZOT . '/activity/tagterm'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_OBJ_THING NAMESPACE_ZOT . '/activity/thing'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_POKE NAMESPACE_ZOT . '/activity/poke'
        -
        - -

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

        - -
        -
        - - - -
        -
        - - - - -
        const ACTIVITY_REQ_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'request-friend'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_TAG NAMESPACE_ACTIVITY_SCHEMA . 'tag'
        -
        -
        - -
        -
        - - - - -
        const ACTIVITY_UNFOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'stop-following'
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_UNFRIEND NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend'
        -
        - -
        -
        - -
        -
        - - - - -
        const ACTIVITY_UPDATE NAMESPACE_ACTIVITY_SCHEMA . 'update'
        -
        -
        - -
        -
        - - - - -
        const ATOM_TIME 'Y-m-d\TH:i:s\Z'
        -
        -
        - - - - - -
        -
        - - - - -
        const CLIENT_MODE_LOAD 0x0001
        -
        - -

        Referenced by items_fetch().

        - -
        -
        - -
        -
        - - - - -
        const CLIENT_MODE_NORMAL 0x0000
        -
        - -

        Referenced by get_feed_for(), and items_fetch().

        - -
        -
        - -
        -
        - - - - -
        const CLIENT_MODE_UPDATE 0x0002
        -
        - -

        Referenced by items_fetch().

        - -
        -
        - -
        -
        - - - - -
        const CONTACT_IS_FOLLOWER 1
        -
        -

        relationship types

        - -

        Referenced by diaspora_message().

        - -
        -
        - -
        -
        - - - - -
        const CONTACT_IS_FRIEND 3
        -
        - -

        Referenced by pubsub_post().

        - -
        -
        - -
        -
        - - - - -
        const CONTACT_IS_SHARING 2
        -
        - -

        Referenced by pubsub_post().

        - -
        -
        - -
        -
        - - - - -
        const DB_UPDATE_VERSION 1138
        -
        -
        - -
        -
        - - - - -
        const DBTYPE_MYSQL 0
        -
        - -
        -
        - -
        -
        - - - - -
        const DBTYPE_POSTGRES 1
        -
        -
        - -
        -
        - - - - -
        const DEFAULT_DB_ENGINE 'MyISAM'
        -
        -

        Not yet used

        - -
        -
        - -
        -
        - - - - -
        const DIRECTORY_FALLBACK_MASTER 'https://zothub.com'
        -
        - -

        Referenced by get_directory_primary(), and sync_directories().

        - -
        -
        - - - - - -
        -
        - - - - -
        const DIRECTORY_MODE_SECONDARY 0x0002
        -
        -
        - - - -
        -
        - - - - -
        const DIRECTORY_REALM 'RED_GLOBAL'
        -
        -
        - -
        -
        - - - - -
        const DROPITEM_NORMAL 0
        -
        - -

        Referenced by delete_item_lowlevel(), and drop_item().

        - -
        -
        - - - -
        -
        - - - - -
        const DROPITEM_PHASE2 2
        -
        - -

        Referenced by delete_item_lowlevel(), drop_item(), and expire_run().

        - -
        -
        - -
        -
        - - - - -
        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(), 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(), rate_content(), ratings_content(), ratings_init(), refimport_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), setup_content(), sharedwithme_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().

        - -
        -
        - -
        -
        - - - - -
        const GRAVITY_COMMENT 6
        -
        - -
        -
        - -
        -
        - - - - -
        const GRAVITY_LIKE 3
        -
        - -

        Referenced by subthread_content().

        - -
        -
        - -
        -
        - - - - -
        const GRAVITY_PARENT 0
        -
        -

        item weight for query ordering

        - -
        -
        - - - -
        -
        - - - - -
        const HUBLOC_FLAGS_ORPHANCHECK 0x0004
        -
        -
        - - - -
        -
        - - - - -
        const HUBLOC_FLAGS_UNVERIFIED 0x0002
        -
        - -

        Referenced by zot_encode_locations().

        - -
        -
        - -
        -
        - - - - -
        const HUBLOC_NOTUSED 0x0000
        -
        - -
        -
        - -
        -
        - - - - -
        const HUBLOC_OFFLINE 0x0008
        -
        -
        - -
        -
        - - - - -
        const HUBLOC_RECEIVE_ERROR 0x0002
        -
        - -

        Referenced by post_init().

        - -
        -
        - -
        -
        - - - - -
        const HUBLOC_SEND_ERROR 0x0001
        -
        - -
        -
        - -
        -
        - - - - -
        const HUBLOC_WORKS 0x0004
        -
        - -

        Referenced by post_init().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_BLOCKED 0x0002
        -
        - -
        -
        - -
        -
        - - - - -
        const ITEM_BUG 0x0400
        -
        - -
        -
        - -
        -
        - - - - -
        const ITEM_BUILDBLOCK 0x0100
        -
        -
        - -
        -
        - - - - -
        const ITEM_CONSENSUS 0x0010
        -
        -
        - -
        -
        - - - - -
        const ITEM_DELAYED_PUBLISH 0x0080
        -
        - -

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

        - -
        -
        - - - - - -
        -
        - - - - -
        const ITEM_MENTIONSME 0x0400
        -
        - -

        Referenced by items_fetch(), network_content(), and tag_deliver().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_MODERATED 0x0004
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_NOCOMMENT 0x0800
        -
        -
        - -
        -
        - - - - -
        const ITEM_NOTSHOWN 0x0080
        -
        - -

        Referenced by like_content(), and subthread_content().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_NSFW 0x0100
        -
        - -

        Referenced by encode_item_flags().

        - -
        -
        - - - - - -
        -
        - - - - -
        const ITEM_PDL 0x0200
        -
        -
        - -
        -
        - - - - -
        const ITEM_PENDING_REMOVE 0x0800
        -
        - -

        Referenced by delete_item_lowlevel(), and expire_run().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_RELAY 0x0200
        -
        - -
        -
        - -
        -
        - - - - -
        const ITEM_RETAINED 0x4000
        -
        - -

        Referenced by filer_content(), item_expire(), and retain_item().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_RSS 0x8000
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_SPAM 0x0008
        -
        - -
        -
        - -
        -
        - - - - -
        const ITEM_STARRED 0x0004
        -
        -
        - - - -
        -
        - - - - -
        const ITEM_UNPUBLISHED 0x0020
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - -
        -
        - - - - -
        const ITEM_UNSEEN 0x0002
        -
        - -
        -
        - -
        -
        - - - - -
        const ITEM_UPLINK 0x0008
        -
        -
        - -
        -
        - - - - -
        const ITEM_VERIFIED 0x2000
        -
        -
        - -
        -
        - - - - -
        const ITEM_VISIBLE 0x0000
        -
        -

        Item visibility

        - -

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

        - -
        -
        - - - - - -
        -
        - - - - -
        const JPEG_QUALITY 100
        -
        -

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

        - -

        Referenced by photo_gd\imageString(), and photo_imagick\load().

        - -
        -
        - -
        -
        - - - - -
        const LANGUAGE_DETECT_MIN_CONFIDENCE 0.01
        -
        - -

        Referenced by detect_language().

        - -
        -
        - -
        -
        - - - - -
        const LANGUAGE_DETECT_MIN_LENGTH 128
        -
        -

        Language detection parameters

        - -

        Referenced by detect_language().

        - -
        -
        - -
        -
        - - - - -
        const LOGGER_ALL 4
        -
        - -

        Referenced by admin_page_logs().

        - -
        -
        - -
        -
        - - - - -
        const LOGGER_DATA 3
        -
        - -

        Referenced by admin_page_logs(), allowed_public_recips(), 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_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(), pubsub_init(), pubsub_post(), receive_post(), RedChannelList(), RedFileData(), set_linkified_perms(), 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().

        - -
        -
        - -
        -
        - - - - -
        const LOGGER_DEBUG 2
        -
        - -

        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(), contact_remove(), 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(), 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(), poco_load(), poke_init(), post_post(), process_delivery(), process_location_delivery(), process_profile_delivery(), profile_load(), RedMatrix\RedDAV\RedFile\put(), queue_run(), ratenotif_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().

        - -
        -
        - -
        -
        - - - - -
        const LOGGER_NORMAL 0
        -
        -

        log levels

        - -

        Referenced by admin_page_logs().

        - -
        -
        - -
        -
        - - - - -
        const LOGGER_TRACE 1
        -
        - -

        Referenced by admin_page_logs().

        - -
        -
        - -
        -
        - - - - -
        const MAIL_DELETED 0x0001
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const MAIL_ISREPLY 0x0004
        -
        - -
        -
        - - - -
        -
        - - - - -
        const MAIL_RECALLED 0x0010
        -
        -
        - -
        -
        - - - - -
        const MAIL_REPLIED 0x0002
        -
        - -
        -
        - - - -
        -
        - - - - -
        const MAX_IMAGE_LENGTH -1
        -
        -

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

        -

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

        -

        in .htconfig.php

        -

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

        - -

        Referenced by photo_upload().

        - -
        -
        - -
        -
        - - - - -
        const MAX_LIKERS 10
        -
        -

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

        - -

        Referenced by Item\get_template_data().

        - -
        -
        - -
        -
        - - - - -
        const MENU_BOOKMARK 0x0002
        -
        -
        - -
        -
        - - - - -
        const MENU_ITEM_CHATROOM 0x0004
        -
        - -

        Referenced by bookmark_add(), and poco().

        - -
        -
        - -
        -
        - - - - -
        const MENU_ITEM_NEWWIN 0x0002
        -
        - -

        Referenced by menu_render(), mitem_content(), and mitem_post().

        - -
        -
        - -
        -
        - - - - -
        const MENU_ITEM_ZID 0x0001
        -
        -
        - -
        -
        - - - - -
        const MENU_SYSTEM 0x0001
        -
        -

        Menu types

        - -

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

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

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_ACTIVITY_SCHEMA 'http://activitystrea.ms/schema/1.0/'
        -
        - -

        Referenced by activity_match().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_ATOM1 'http://www.w3.org/2005/Atom'
        -
        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_DFRN 'http://purl.org/macgirvin/dfrn/1.0'
        -
        - -

        Referenced by discover_by_webbie(), and get_atom_elements().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_FEED 'http://schemas.google.com/g/2010#updates-from'
        -
        - -

        Referenced by discover_by_webbie().

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

        Referenced by get_atom_elements().

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

        Referenced by encode_rel_links().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_OSTATUS 'http://ostatus.org/schema/1.0'
        -
        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_OSTATUSSUB 'http://ostatus.org/schema/1.0/subscribe'
        -
        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_POCO 'http://portablecontacts.net/spec/1.0'
        -
        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_SALMON_ME 'http://salmon-protocol.org/ns/magic-env'
        -
        - -

        Referenced by diaspora_decode().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_STATUSNET 'http://status.net/schema/api/1/'
        -
        - -

        Referenced by get_atom_elements().

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

        Referenced by consume_feed().

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

        Referenced by consume_feed().

        - -
        -
        - -
        -
        - - - - -
        const NAMESPACE_YMEDIA 'http://search.yahoo.com/mrss/'
        -
        - -

        Referenced by get_atom_elements().

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

        various namespaces we may need to parse

        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_DFRN 'dfrn'
        -
        -

        Network and protocol family types

        - -

        Referenced by best_link_url(), delegate_content(), get_birthdays(), and network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_DIASPORA 'dspr'
        -
        -
        - -
        -
        - - - - -
        const NETWORK_FACEBOOK 'face'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_FEED 'feed'
        -
        - -

        Referenced by network_to_name(), and pubsub_post().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_GPLUS 'goog'
        -
        - -
        -
        - -
        -
        - - - - -
        const NETWORK_LINKEDIN 'lnkd'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_MAIL 'mail'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_MAIL2 'mai2'
        -
        - -
        -
        - -
        -
        - - - - -
        const NETWORK_MYSPACE 'mysp'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_OSTATUS 'stat'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_PHANTOM 'unkn'
        -
        - -
        -
        - -
        -
        - - - - -
        const NETWORK_XMPP 'xmpp'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NETWORK_ZOT 'zot!'
        -
        - -

        Referenced by network_to_name().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_COMMENT 0x0008
        -
        -
        - -
        -
        - - - - -
        const NOTIFY_CONFIRM 0x0002
        -
        - -

        Referenced by notification().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_INTRO 0x0001
        -
        -

        email notification options

        - -

        Referenced by diaspora_request(), notification(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_MAIL 0x0010
        -
        - -

        Referenced by mail_store(), and notification().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_POKE 0x0200
        -
        - -

        Referenced by notification(), and tag_deliver().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_PROFILE 0x0040
        -
        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_SUGGEST 0x0020
        -
        - -

        Referenced by notification().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_SYSTEM 0x8000
        -
        - -

        Referenced by notification().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_TAGSELF 0x0080
        -
        - -

        Referenced by notification(), and tag_deliver().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_TAGSHARE 0x0100
        -
        - -

        Referenced by notification().

        - -
        -
        - -
        -
        - - - - -
        const NOTIFY_WALL 0x0004
        -
        - -

        Referenced by item_post(), and notification().

        - -
        -
        - -
        -
        - - - - -
        const PAGE_ADULT 0x0020
        -
        -
        - -
        -
        - - - - -
        const PAGE_ALLOWCODE 0x0008
        -
        -
        - -
        -
        - - - - -
        const PAGE_APPLICATION 0x0004
        -
        - -
        -
        - -
        -
        - - - - -
        const PAGE_AUTOCONNECT 0x0002
        -
        - -
        -
        - -
        -
        - - - - -
        const PAGE_CENSORED 0x0040
        -
        -
        - -
        -
        - - - - -
        const PAGE_HIDDEN 0x0001
        -
        - -

        Referenced by RedChannelList(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - -
        const PAGE_HUBADMIN 0x2000
        -
        - -

        Referenced by siteinfo_init().

        - -
        -
        - -
        -
        - - - - -
        const PAGE_NORMAL 0x0000
        -
        -

        Channel pageflags

        - -

        Referenced by create_identity().

        - -
        -
        - -
        -
        - - - - -
        const PAGE_PREMIUM 0x0010
        -
        -
        - - - - - -
        -
        - - - - -
        const PERMS_A_DELEGATE 0x00800
        -
        - -

        Referenced by get_perms().

        - -
        -
        - -
        -
        - - - - -
        const PERMS_A_REPUBLISH 0x10000
        -
        -
        - -
        -
        - - - - -
        const PERMS_AUTHED 0x0100
        -
        -
        - -
        -
        - - - - -
        const PERMS_CONTACTS 0x0008
        -
        -
        - - - -
        -
        - - - - -
        const PERMS_PENDING 0x0200
        -
        -
        - - - -
        -
        - - - - -
        const PERMS_R_ABOOK 0x00008
        -
        -
        - -
        -
        - - - - -
        const PERMS_R_PAGES 0x04000
        -
        -
        - -
        -
        - - - - -
        const PERMS_R_PHOTOS 0x00004
        -
        -
        - -
        -
        - - - - -
        const PERMS_R_PROFILE 0x00002
        -
        -
        - -
        -
        - - - - -
        const PERMS_R_STORAGE 0x01000
        -
        -
        - -
        -
        - - - - -
        const PERMS_R_STREAM 0x00001
        -
        -
        - -
        -
        - - - - -
        const PERMS_SITE 0x0004
        -
        -
        - -
        -
        - - - - -
        const PERMS_SPECIFIC 0x0080
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_CHAT 0x00400
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_COMMENT 0x00080
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_LIKE 0x20000
        -
        - -

        Referenced by create_identity(), get_perms(), and get_role_perms().

        - -
        -
        - -
        -
        - - - - -
        const PERMS_W_MAIL 0x00100
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_PAGES 0x08000
        -
        - -

        Referenced by get_perms().

        - -
        -
        - -
        -
        - - - - -
        const PERMS_W_PHOTOS 0x00200
        -
        - -

        Referenced by get_perms().

        - -
        -
        - -
        -
        - - - - -
        const PERMS_W_STORAGE 0x02000
        -
        - -

        Referenced by get_perms(), and get_role_perms().

        - -
        -
        - -
        -
        - - - - -
        const PERMS_W_STREAM 0x00010
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_TAGWALL 0x00040
        -
        -
        - -
        -
        - - - - -
        const PERMS_W_WALL 0x00020
        -
        - -

        Referenced by create_identity(), get_perms(), and get_role_perms().

        - -
        -
        - -
        -
        - - - - -
        const PHOTO_ADULT 0x0008
        -
        - -

        Referenced by photos_content(), and photos_post().

        - -
        -
        - -
        -
        - - - - -
        const PHOTO_FLAG_OS 0x4000
        -
        - -
        -
        - -
        -
        - - - - -
        const PHOTO_NORMAL 0x0000
        -
        -
        - -
        -
        - - - - -
        const PHOTO_PROFILE 0x0001
        -
        -
        - -
        -
        - - - - -
        const PHOTO_THING 0x0004
        -
        - -

        Referenced by import_profile_photo().

        - -
        -
        - -
        -
        - - - - -
        const PHOTO_XCHAN 0x0002
        -
        - -

        Referenced by import_profile_photo().

        - -
        -
        - -
        -
        - - - - -
        const PNG_QUALITY 8
        -
        -

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

        - -

        Referenced by photo_gd\imageString(), and photo_imagick\load().

        - -
        -
        - -
        -
        - - - - -
        const POLL_MULTIPLE_CHOICE 0x0004
        -
        - -
        -
        - -
        -
        - - - - -
        const POLL_OVERWRITE 0x8000
        -
        - -

        Referenced by vote_post().

        - -
        -
        - -
        -
        - - - - -
        const POLL_SIMPLE_RATING 0x0001
        -
        -

        Poll/Survey types

        - -

        Referenced by vote_content().

        - -
        -
        - -
        -
        - - - - -
        const POLL_TENSCALE 0x0002
        -
        - -
        -
        - -
        -
        - - - - -
        const RED_PLATFORM 'redmatrix'
        -
        -

        Red Matrix.

        -

        The Red Matrix (aka "Red") is an open source decentralised communications platform combined with a decentralised identity/authentication framework wrapped in an extensible content management system, providing website designers the ability to embed fully decentralised communications and social tools into many traditional website designs (blogs, forums, small business websites, charitable organisations, etc.). Red also provides DNS mobility and internet scale privacy/access control.

        -

        This allows any individual website to participate in a matrix of linked sites and people and media sharing which is far greater than the reach of an individual site.

        -

        If you are reading the source code and come across a function or code block which is not documented, but you have a good idea what it does, please add some descriptive comments and push it to the main project. Even if your description isn't perfect, it gives us a base which we can build on and correct - so that eventually everything is fully documented.

        - -

        Referenced by api_statusnet_config(), App\build_pagehead(), get_feed_for(), ical_wrapper(), identity_basic_export(), parse_url_content(), siteinfo_init(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - -
        const RED_VERSION trim(file_get_contents('version.inc')) . 'R'
        -
        -
        - -
        -
        - - - - -
        const REGISTER_APPROVE 1
        -
        -
        - -
        -
        - - - - -
        const REGISTER_CLOSED 0
        -
        -
        - - - -
        -
        - - - - -
        const SSL_POLICY_FULL 1
        -
        - -
        -
        - -
        -
        - - - - -
        const SSL_POLICY_NONE 0
        -
        -

        SSL redirection policies

        - -
        -
        - -
        -
        - - - - -
        const SSL_POLICY_SELFSIGN 2
        -
        - -
        -
        - -
        -
        - - - - -
        const STORAGE_DEFAULT_PERMISSIONS 0770
        -
        -

        Default permissions for file-based storage (webDAV, etc.) These files will be owned by the webserver who will need write access to the "storage" folder. Ideally you should make this 700, however some hosted platforms may not let you change ownership of this directory so we're defaulting to both owner-write and group-write privilege. This should work for most cases without modification. Over-ride this in your .htconfig.php if you need something either more or less restrictive.

        - -

        Referenced by attach_mkdir(), change_channel(), check_store(), cloud_init(), and dav_init().

        - -
        -
        - -
        -
        - - - - -
        const TEMPLATE_BUILD_PATH 'store/[data]/smarty3'
        -
        -
        - -
        -
        - - - - -
        const TERM_BOOKMARK 8
        -
        -
        - - - - - - - - - -
        -
        - - - - -
        const TERM_OBJ_APP 7
        -
        - -
        -
        - -
        -
        - - - - -
        const TERM_OBJ_CHANNEL 4
        -
        - -
        -
        - -
        -
        - - - - -
        const TERM_OBJ_OBJECT 5
        -
        - -
        -
        - -
        -
        - - - - -
        const TERM_OBJ_PHOTO 2
        -
        - -
        -
        - - - -
        -
        - - - - -
        const TERM_OBJ_PROFILE 3
        -
        - -
        -
        - -
        -
        - - - - -
        const TERM_OBJ_THING 6
        -
        -
        - -
        -
        - - - - -
        const TERM_PCATEGORY 4
        -
        - -

        Referenced by decode_tags().

        - -
        -
        - -
        -
        - - - - -
        const TERM_SAVEDSEARCH 6
        -
        - -

        Referenced by identity_basic_export(), and widget_savedsearch().

        - -
        -
        - -
        -
        - - - - -
        const TERM_THING 7
        -
        -
        - -
        -
        - - - - -
        const TERM_UNKNOWN 0
        -
        -

        Tag/term types

        - -

        Referenced by conversation(), decode_tags(), encode_item_terms(), and handle_tag().

        - -
        -
        - -
        -
        - - - - -
        const UPDATE_FAILED 1
        -
        - -

        Referenced by admin_page_dbsync().

        - -
        -
        - -
        -
        - - - - -
        const UPDATE_FLAGS_DELETED 0x1000
        -
        -
        - -
        -
        - - - - -
        const UPDATE_FLAGS_FORCED 0x0002
        -
        -
        - - - -
        -
        - - - - -
        const UPDATE_SUCCESS 0
        -
        -

        DB update return values

        - -

        Referenced by admin_page_dbsync().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_ALERT 0x0100
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_BIRTHDAY 0x0020
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_CHANNEL 0x0002
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_EVENT 0x0008
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_EVENTTODAY 0x0010
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_INFO 0x0080
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_INTRO 0x0200
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_MAIL 0x0004
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_NETWORK 0x0001
        -
        -

        visual notification options

        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_REGISTER 0x0400
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const VNOTIFY_SYSTEM 0x0040
        -
        - -

        Referenced by ping_init().

        - -
        -
        - -
        -
        - - - - -
        const XCHAN_FLAGS_CENSORED 0x0004
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        - - - -
        -
        - - - - -
        const XCHAN_FLAGS_HIDDEN 0x0001
        -
        -
        - -
        -
        - - - - -
        const XCHAN_FLAGS_NORMAL 0x0000
        -
        - -

        Referenced by create_identity().

        - -
        -
        - - - -
        -
        - - - - -
        const XCHAN_FLAGS_PUBFORUM 0x0020
        -
        - -

        Referenced by dirsearch_content(), and import_xchan().

        - -
        -
        - -
        -
        - - - - -
        const XCHAN_FLAGS_SELFCENSORED 0x0008
        -
        -
        - -
        -
        - - - - -
        const XCHAN_FLAGS_SYSTEM 0x0010
        -
        - -

        Referenced by create_sys_channel().

        - -
        -
        - -
        -
        - - - - -
        const ZCURL_TIMEOUT (-1)
        -
        -

        Communication timeout

        - -
        -
        - -
        -
        - - - - -
        const ZOT_REVISION 1
        -
        -
        -
        -
        - diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js deleted file mode 100644 index 63d4fb673..000000000 --- a/doc/html/boot_8php.js +++ /dev/null @@ -1,332 +0,0 @@ -var boot_8php = -[ - [ "App", "classApp.html", "classApp" ], - [ "absurl", "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85", null ], - [ "appdirpath", "boot_8php.html#a75a90b0eadd0df510f7e63210733634d", null ], - [ "argc", "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7", null ], - [ "argv", "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006", null ], - [ "build_querystring", "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e", null ], - [ "check_config", "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3", null ], - [ "clean_urls", "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63", null ], - [ "construct_page", "boot_8php.html#acc4e0c910af066148b810e5fde55fff1", null ], - [ "curPageURL", "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5", null ], - [ "current_theme", "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13", null ], - [ "current_theme_url", "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3", null ], - [ "dba_timer", "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4", null ], - [ "fix_system_urls", "boot_8php.html#aca5e42678e178c6b9034610d66666fd7", null ], - [ "get_account_id", "boot_8php.html#afe88b920aa285982edb817a0dd44eb37", null ], - [ "get_app", "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc", null ], - [ "get_custom_nav", "boot_8php.html#a899d24fd074594ceebbf72e1feff335f", null ], - [ "get_directory_primary", "boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9", null ], - [ "get_directory_realm", "boot_8php.html#a329400dcb29897cdaae3020109272285", null ], - [ "get_max_import_size", "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90", null ], - [ "get_observer_hash", "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7", null ], - [ "get_poller_runtime", "boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17", null ], - [ "goaway", "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1", null ], - [ "head_get_icon", "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77", null ], - [ "head_set_icon", "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84", null ], - [ "info", "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498", null ], - [ "is_ajax", "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c", null ], - [ "is_developer", "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46", null ], - [ "is_site_admin", "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e", null ], - [ "is_windows", "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08", null ], - [ "killme", "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c", null ], - [ "load_contact_links", "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6", null ], - [ "load_pdl", "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501", null ], - [ "local_channel", "boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb", null ], - [ "local_user", "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44", null ], - [ "login", "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4", null ], - [ "notice", "boot_8php.html#a9255af5ae9c887520091ea04763c1a88", null ], - [ "os_mkdir", "boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c", null ], - [ "proc_run", "boot_8php.html#ab346a2ece14993861f3e4206befa94f0", null ], - [ "remote_channel", "boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458", null ], - [ "remote_user", "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", null ], - [ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ], - [ "system_unavailable", "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0", null ], - [ "x", "boot_8php.html#ae97836b0547953be182a2334c9c91d3c", null ], - [ "z_get_temp_dir", "boot_8php.html#a59717d02602a4babf2a54da8b33d93a5", null ], - [ "z_get_upload_dir", "boot_8php.html#a476c499e15caf75972fed134a8f23b2e", null ], - [ "z_path", "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda", null ], - [ "z_root", "boot_8php.html#add517a0958ac684792c62142a3877f81", null ], - [ "$DIRECTORY_FALLBACK_SERVERS", "boot_8php.html#a107d53f96acf5319905a34b1870db09a", null ], - [ "ABOOK_FLAG_ARCHIVED", "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5", null ], - [ "ABOOK_FLAG_BLOCKED", "boot_8php.html#a52b599cd13e152ebc80d7e4413683195", null ], - [ "ABOOK_FLAG_FEED", "boot_8php.html#ae0d9527117cd87dcba11986047ae336e", null ], - [ "ABOOK_FLAG_HIDDEN", "boot_8php.html#a34c756469ebed32e2fc987bcde62d382", null ], - [ "ABOOK_FLAG_IGNORED", "boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6", null ], - [ "ABOOK_FLAG_PENDING", "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155", null ], - [ "ABOOK_FLAG_SELF", "boot_8php.html#a0450389f24c632906fbc24347700a543", null ], - [ "ABOOK_FLAG_UNCONNECTED", "boot_8php.html#a7eeb83e15968f7a6cc5937d493815773", null ], - [ "ACCESS_FREE", "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4", null ], - [ "ACCESS_PAID", "boot_8php.html#a9c80420e5a063a4a87ce4831f086134d", null ], - [ "ACCESS_PRIVATE", "boot_8php.html#a7f3474fec541e261fc8dff47313c4017", null ], - [ "ACCESS_TIERED", "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8", null ], - [ "ACCOUNT_BLOCKED", "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9", null ], - [ "ACCOUNT_EXPIRED", "boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a", null ], - [ "ACCOUNT_OK", "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8", null ], - [ "ACCOUNT_PENDING", "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8", null ], - [ "ACCOUNT_REMOVED", "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78", null ], - [ "ACCOUNT_ROLE_ADMIN", "boot_8php.html#ac8400313df2c831653f9036f71ebd86d", null ], - [ "ACCOUNT_ROLE_ALLOWCODE", "boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688", null ], - [ "ACCOUNT_ROLE_DEVELOPER", "boot_8php.html#a4f507a5996dbb3da148add0339a40d5a", null ], - [ "ACCOUNT_ROLE_SYSTEM", "boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b", null ], - [ "ACCOUNT_UNVERIFIED", "boot_8php.html#af3a4271630aabd8be592213f925d6a36", null ], - [ "ACTIVITY_ABSTAIN", "boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3", null ], - [ "ACTIVITY_AGREE", "boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c", null ], - [ "ACTIVITY_ATTEND", "boot_8php.html#a137f161c8ca8d51ef58f2e1b6781905b", null ], - [ "ACTIVITY_ATTENDMAYBE", "boot_8php.html#a3fff33eae4da657d433bafedc55cb2c5", null ], - [ "ACTIVITY_ATTENDNO", "boot_8php.html#a5d8d55cf192d1d50ad188411d58bd404", null ], - [ "ACTIVITY_DISAGREE", "boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb", null ], - [ "ACTIVITY_DISLIKE", "boot_8php.html#a0e57f846e6d47a308feced0f7274f178", null ], - [ "ACTIVITY_FAVORITE", "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e", null ], - [ "ACTIVITY_FOLLOW", "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434", null ], - [ "ACTIVITY_FRIEND", "boot_8php.html#a176664e78dcb9132e16be69418223eb2", null ], - [ "ACTIVITY_JOIN", "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3", null ], - [ "ACTIVITY_LIKE", "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0", null ], - [ "ACTIVITY_MOOD", "boot_8php.html#a7aa57438db03834aaa0b468bdce773a6", null ], - [ "ACTIVITY_OBJ_ALBUM", "boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14", null ], - [ "ACTIVITY_OBJ_COMMENT", "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562", null ], - [ "ACTIVITY_OBJ_EVENT", "boot_8php.html#a2e90096fede6acce16abf0da8cb2febe", null ], - [ "ACTIVITY_OBJ_FILE", "boot_8php.html#aa726114f13c1119ae77c3464d6afeaed", null ], - [ "ACTIVITY_OBJ_GROUP", "boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3", null ], - [ "ACTIVITY_OBJ_HEART", "boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f", null ], - [ "ACTIVITY_OBJ_LOCATION", "boot_8php.html#a9687c702656af105e9a09048c21aec4c", null ], - [ "ACTIVITY_OBJ_NOTE", "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f", null ], - [ "ACTIVITY_OBJ_P_PHOTO", "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab", null ], - [ "ACTIVITY_OBJ_PERSON", "boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab", null ], - [ "ACTIVITY_OBJ_PHOTO", "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966", null ], - [ "ACTIVITY_OBJ_PROFILE", "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5", null ], - [ "ACTIVITY_OBJ_TAGTERM", "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05", null ], - [ "ACTIVITY_OBJ_THING", "boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8", null ], - [ "ACTIVITY_POKE", "boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd", null ], - [ "ACTIVITY_POST", "boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4", null ], - [ "ACTIVITY_REQ_FRIEND", "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086", null ], - [ "ACTIVITY_TAG", "boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5", null ], - [ "ACTIVITY_UNFOLLOW", "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53", null ], - [ "ACTIVITY_UNFRIEND", "boot_8php.html#a29528a2544373cc19a378f350040c6a1", null ], - [ "ACTIVITY_UPDATE", "boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866", null ], - [ "ATOM_TIME", "boot_8php.html#ad34c1547020a305915bcc39707744690", null ], - [ "ATTACH_FLAG_DIR", "boot_8php.html#aa74438cf71e48e37bf7b440b94243985", null ], - [ "ATTACH_FLAG_OS", "boot_8php.html#a781916f83fcc8ff1035649afa45f0292", null ], - [ "CLIENT_MODE_LOAD", "boot_8php.html#af6f6f6f40139f12fc09ec47373b30919", null ], - [ "CLIENT_MODE_NORMAL", "boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731", null ], - [ "CLIENT_MODE_UPDATE", "boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77", null ], - [ "CONTACT_IS_FOLLOWER", "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29", null ], - [ "CONTACT_IS_FRIEND", "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f", null ], - [ "CONTACT_IS_SHARING", "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9", null ], - [ "DB_UPDATE_VERSION", "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03", null ], - [ "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 ], - [ "DIRECTORY_MODE_PRIMARY", "boot_8php.html#a8a60cc38bb567765fd926fef70205f16", null ], - [ "DIRECTORY_MODE_SECONDARY", "boot_8php.html#aedfb9501ed408278667995524e0d15cf", null ], - [ "DIRECTORY_MODE_STANDALONE", "boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8", null ], - [ "DIRECTORY_REALM", "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd", null ], - [ "DROPITEM_NORMAL", "boot_8php.html#a7037bcbca223395c06bc67f65024de7a", null ], - [ "DROPITEM_PHASE1", "boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06", null ], - [ "DROPITEM_PHASE2", "boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8", null ], - [ "EOL", "boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b", null ], - [ "GRAVITY_COMMENT", "boot_8php.html#a4a12ce5de39789b0361e308d89925a20", null ], - [ "GRAVITY_LIKE", "boot_8php.html#a1f5906598e90b5ea2b4245f682be4348", null ], - [ "GRAVITY_PARENT", "boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3", null ], - [ "HUBLOC_FLAGS_DELETED", "boot_8php.html#a7c286add8961fd2d79216314cd4aadd8", null ], - [ "HUBLOC_FLAGS_ORPHANCHECK", "boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673", null ], - [ "HUBLOC_FLAGS_PRIMARY", "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955", null ], - [ "HUBLOC_FLAGS_UNVERIFIED", "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764", null ], - [ "HUBLOC_NOTUSED", "boot_8php.html#aa589421267f0c2f0d643f727792cce35", null ], - [ "HUBLOC_OFFLINE", "boot_8php.html#a845891f82bf6edd7fa2d578b66703112", null ], - [ "HUBLOC_RECEIVE_ERROR", "boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1", null ], - [ "HUBLOC_SEND_ERROR", "boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456", null ], - [ "HUBLOC_WORKS", "boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c", null ], - [ "ITEM_BLOCKED", "boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f", null ], - [ "ITEM_BUG", "boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34", null ], - [ "ITEM_BUILDBLOCK", "boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf", null ], - [ "ITEM_CONSENSUS", "boot_8php.html#a670c35028dda5a20dfdb48bb863253a5", null ], - [ "ITEM_DELAYED_PUBLISH", "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20", null ], - [ "ITEM_DELETED", "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49", null ], - [ "ITEM_HIDDEN", "boot_8php.html#ac99fc4d040764eac1736bec6973556fe", null ], - [ "ITEM_MENTIONSME", "boot_8php.html#a8da836617174eed9fc2ac8054125354b", null ], - [ "ITEM_MODERATED", "boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450", null ], - [ "ITEM_NOCOMMENT", "boot_8php.html#a949116d9a295b214293006c060ca4848", null ], - [ "ITEM_NOTSHOWN", "boot_8php.html#a8663f32171568489dbb2a01dd00371f8", null ], - [ "ITEM_NSFW", "boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08", null ], - [ "ITEM_OBSCURED", "boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d", null ], - [ "ITEM_ORIGIN", "boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7", null ], - [ "ITEM_PDL", "boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d", null ], - [ "ITEM_PENDING_REMOVE", "boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb", null ], - [ "ITEM_RELAY", "boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221", null ], - [ "ITEM_RETAINED", "boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81", null ], - [ "ITEM_RSS", "boot_8php.html#ac4d1c93dabcace711ffb4931204c336b", null ], - [ "ITEM_SPAM", "boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb", null ], - [ "ITEM_STARRED", "boot_8php.html#a7af107fab8d62b9a73801713b774ed30", null ], - [ "ITEM_THREAD_TOP", "boot_8php.html#a749144d8dd9c1366596a0213c277d050", null ], - [ "ITEM_UNPUBLISHED", "boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272", null ], - [ "ITEM_UNSEEN", "boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0", null ], - [ "ITEM_UPLINK", "boot_8php.html#aefba06f1c0842036329033e7567ecf6d", null ], - [ "ITEM_VERIFIED", "boot_8php.html#a18a400fa45e5632811b33041d8c048bf", null ], - [ "ITEM_VISIBLE", "boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf", null ], - [ "ITEM_WALL", "boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322", null ], - [ "ITEM_WEBPAGE", "boot_8php.html#af489d0c3166551b93e63a79ff2c9be35", null ], - [ "JPEG_QUALITY", "boot_8php.html#a3475ff6c2e575f946ea0ee377e944173", null ], - [ "LANGUAGE_DETECT_MIN_CONFIDENCE", "boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11", null ], - [ "LANGUAGE_DETECT_MIN_LENGTH", "boot_8php.html#a17cf72338b040891781a4bcbdd9a8595", null ], - [ "LOGGER_ALL", "boot_8php.html#afe63ae69ba55299f813766e54df06ede", null ], - [ "LOGGER_DATA", "boot_8php.html#a6969947145a139ec374ce098224d8e81", null ], - [ "LOGGER_DEBUG", "boot_8php.html#a93823d15ae07548a4c49de88d325cd26", null ], - [ "LOGGER_NORMAL", "boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805", null ], - [ "LOGGER_TRACE", "boot_8php.html#a022cea669f9f13ef7c6268b63884c57f", null ], - [ "MAIL_DELETED", "boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8", null ], - [ "MAIL_ISREPLY", "boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2", null ], - [ "MAIL_OBSCURED", "boot_8php.html#a44ae1542a805ffd7f826fb511db07374", null ], - [ "MAIL_RECALLED", "boot_8php.html#ae4861de36017fe399c1839f778bad9f5", null ], - [ "MAIL_REPLIED", "boot_8php.html#aa3679df31c8dad1b71816b0322d5baff", null ], - [ "MAIL_SEEN", "boot_8php.html#a1fbb93cf030f07391f22cc2948744869", null ], - [ "MAX_IMAGE_LENGTH", "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", null ], - [ "MAX_LIKERS", "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd", null ], - [ "MENU_BOOKMARK", "boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e", null ], - [ "MENU_ITEM_CHATROOM", "boot_8php.html#af6b3de425e5849c73370a484c44607a3", null ], - [ "MENU_ITEM_NEWWIN", "boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5", null ], - [ "MENU_ITEM_ZID", "boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53", null ], - [ "MENU_SYSTEM", "boot_8php.html#a718a801b0be6cbaef5e519516da12721", null ], - [ "NAMESPACE_ACTIVITY", "boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2", null ], - [ "NAMESPACE_ACTIVITY_SCHEMA", "boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133", null ], - [ "NAMESPACE_ATOM1", "boot_8php.html#a444ce608ce34efb82ee11852f36e825f", null ], - [ "NAMESPACE_DFRN", "boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028", null ], - [ "NAMESPACE_FEED", "boot_8php.html#ac195fc9003298923ea81f144388e24b1", null ], - [ "NAMESPACE_GEORSS", "boot_8php.html#a03d19251c245587de7ed959300b87bdf", null ], - [ "NAMESPACE_MEDIA", "boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16", null ], - [ "NAMESPACE_OSTATUS", "boot_8php.html#acca19aae62e1a6951a856b945de20d67", null ], - [ "NAMESPACE_OSTATUSSUB", "boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd", null ], - [ "NAMESPACE_POCO", "boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a", null ], - [ "NAMESPACE_SALMON_ME", "boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67", null ], - [ "NAMESPACE_STATUSNET", "boot_8php.html#afaf93b7026f784b113b4f8921745891e", null ], - [ "NAMESPACE_THREAD", "boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86", null ], - [ "NAMESPACE_TOMB", "boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e", null ], - [ "NAMESPACE_YMEDIA", "boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0", null ], - [ "NAMESPACE_ZOT", "boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47", null ], - [ "NETWORK_DFRN", "boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e", null ], - [ "NETWORK_DIASPORA", "boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa", null ], - [ "NETWORK_FACEBOOK", "boot_8php.html#af3905ea8f8568d0236db13fca40514e3", null ], - [ "NETWORK_FEED", "boot_8php.html#ab4bddb41a0cf407178ec5278b950c393", null ], - [ "NETWORK_GPLUS", "boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701", null ], - [ "NETWORK_LINKEDIN", "boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa", null ], - [ "NETWORK_MAIL", "boot_8php.html#a7236b2cdcf59f02a42302e893a99013b", null ], - [ "NETWORK_MAIL2", "boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42", null ], - [ "NETWORK_MYSPACE", "boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95", null ], - [ "NETWORK_OSTATUS", "boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d", null ], - [ "NETWORK_PHANTOM", "boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f", null ], - [ "NETWORK_XMPP", "boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e", null ], - [ "NETWORK_ZOT", "boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0", null ], - [ "NOTIFY_COMMENT", "boot_8php.html#a20f0eed431d25870b624b8937a07a59f", null ], - [ "NOTIFY_CONFIRM", "boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d", null ], - [ "NOTIFY_INTRO", "boot_8php.html#a56fd673eaa7014150297ce1162502db5", null ], - [ "NOTIFY_MAIL", "boot_8php.html#a285732e7889fa7f333cbe431111e1029", null ], - [ "NOTIFY_POKE", "boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8", null ], - [ "NOTIFY_PROFILE", "boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b", null ], - [ "NOTIFY_SUGGEST", "boot_8php.html#a9d01ef178b72b145016cca1393415bc4", null ], - [ "NOTIFY_SYSTEM", "boot_8php.html#a14d44d4a00223dc3db4ea962325db192", null ], - [ "NOTIFY_TAGSELF", "boot_8php.html#ab724491497ab2618b23a01d5da60aec0", null ], - [ "NOTIFY_TAGSHARE", "boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461", null ], - [ "NOTIFY_WALL", "boot_8php.html#a505410c7edc5f5bb5fa227b98359793e", null ], - [ "PAGE_ADULT", "boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32", null ], - [ "PAGE_ALLOWCODE", "boot_8php.html#adb4c9bd011f9aaeb253742da18373b64", null ], - [ "PAGE_APPLICATION", "boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed", null ], - [ "PAGE_AUTOCONNECT", "boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9", null ], - [ "PAGE_CENSORED", "boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214", null ], - [ "PAGE_HIDDEN", "boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640", null ], - [ "PAGE_HUBADMIN", "boot_8php.html#afbb21ecccac9819aa65397e816868a5f", null ], - [ "PAGE_NORMAL", "boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3", null ], - [ "PAGE_PREMIUM", "boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8", null ], - [ "PAGE_REMOVED", "boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6", null ], - [ "PAGE_SYSTEM", "boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932", null ], - [ "PERMS_A_DELEGATE", "boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b", null ], - [ "PERMS_A_REPUBLISH", "boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead", null ], - [ "PERMS_AUTHED", "boot_8php.html#a852d4036a3bed66af1534d014c4ecde2", null ], - [ "PERMS_CONTACTS", "boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6", null ], - [ "PERMS_NETWORK", "boot_8php.html#a6df1102664f64b274810db85197c2755", null ], - [ "PERMS_PENDING", "boot_8php.html#a205d013103997adfa72953d2f20c01e1", null ], - [ "PERMS_PUBLIC", "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7", null ], - [ "PERMS_R_ABOOK", "boot_8php.html#a3d6d4fc5fafcc9156811669158541caf", null ], - [ "PERMS_R_PAGES", "boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e", null ], - [ "PERMS_R_PHOTOS", "boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62", null ], - [ "PERMS_R_PROFILE", "boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137", null ], - [ "PERMS_R_STORAGE", "boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc", null ], - [ "PERMS_R_STREAM", "boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4", null ], - [ "PERMS_SITE", "boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f", null ], - [ "PERMS_SPECIFIC", "boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964", null ], - [ "PERMS_W_CHAT", "boot_8php.html#acd877c405b06b348b37b6f7e62a211e9", null ], - [ "PERMS_W_COMMENT", "boot_8php.html#a32df13fec0e43281da5979e1f5579aa8", null ], - [ "PERMS_W_LIKE", "boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007", null ], - [ "PERMS_W_MAIL", "boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf", null ], - [ "PERMS_W_PAGES", "boot_8php.html#aa9244fc9cc221980c07a20cc534111be", null ], - [ "PERMS_W_PHOTOS", "boot_8php.html#a57eee7352714c004d36c26dda74af73e", null ], - [ "PERMS_W_STORAGE", "boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115", null ], - [ "PERMS_W_STREAM", "boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55", null ], - [ "PERMS_W_TAGWALL", "boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777", null ], - [ "PERMS_W_WALL", "boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2", null ], - [ "PHOTO_ADULT", "boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0", null ], - [ "PHOTO_FLAG_OS", "boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f", null ], - [ "PHOTO_NORMAL", "boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4", null ], - [ "PHOTO_PROFILE", "boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0", null ], - [ "PHOTO_THING", "boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383", null ], - [ "PHOTO_XCHAN", "boot_8php.html#ac43182e0d8bae7576a30b603774974f8", null ], - [ "PNG_QUALITY", "boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce", null ], - [ "POLL_MULTIPLE_CHOICE", "boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86", null ], - [ "POLL_OVERWRITE", "boot_8php.html#a2b525996e4426bdddbcec277778bde08", null ], - [ "POLL_SIMPLE_RATING", "boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5", null ], - [ "POLL_TENSCALE", "boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc", null ], - [ "RED_PLATFORM", "boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4", null ], - [ "RED_VERSION", "boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3", null ], - [ "REGISTER_APPROVE", "boot_8php.html#a7176c0f9f1c98421b97735d892cf6252", null ], - [ "REGISTER_CLOSED", "boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1", null ], - [ "REGISTER_OPEN", "boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63", null ], - [ "SSL_POLICY_FULL", "boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc", null ], - [ "SSL_POLICY_NONE", "boot_8php.html#af86c651547aa8f9e549ee40a09455549", null ], - [ "SSL_POLICY_SELFSIGN", "boot_8php.html#adca48aee78465ae3064ca4432c0d87b5", null ], - [ "STORAGE_DEFAULT_PERMISSIONS", "boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6", null ], - [ "TEMPLATE_BUILD_PATH", "boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1", null ], - [ "TERM_BOOKMARK", "boot_8php.html#a115faf8797718c3165498abbd6895843", null ], - [ "TERM_CATEGORY", "boot_8php.html#af33d1b2e98a1e21af672005525d46dfe", null ], - [ "TERM_FILE", "boot_8php.html#afb97615e985a013799839b68b99018d7", null ], - [ "TERM_HASHTAG", "boot_8php.html#a2750985ec445617d7e82ae3098c91e3f", null ], - [ "TERM_MENTION", "boot_8php.html#ae37444eaa42705185080ccf3e670cbc2", null ], - [ "TERM_OBJ_APP", "boot_8php.html#ace6d70ac290397ddd40e561fd0831858", null ], - [ "TERM_OBJ_CHANNEL", "boot_8php.html#a8892374789fd261eb32a7969d934a14a", null ], - [ "TERM_OBJ_OBJECT", "boot_8php.html#a882b666adfe21f035a0f8c02806066d6", null ], - [ "TERM_OBJ_PHOTO", "boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd", null ], - [ "TERM_OBJ_POST", "boot_8php.html#a9eeb8989272d5ff804a616898bb13659", null ], - [ "TERM_OBJ_PROFILE", "boot_8php.html#aead84fa27d7516b855220fe004964a45", null ], - [ "TERM_OBJ_THING", "boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe", null ], - [ "TERM_PCATEGORY", "boot_8php.html#a45b12aefab9675baffc7a07a09486db8", null ], - [ "TERM_SAVEDSEARCH", "boot_8php.html#abd7bb40da9cc073297e49736b338ca07", null ], - [ "TERM_THING", "boot_8php.html#a0d877df1e20bae765e1708be50f6b503", null ], - [ "TERM_UNKNOWN", "boot_8php.html#a0c59dde058efebbc66520d136cbd1631", null ], - [ "UPDATE_FAILED", "boot_8php.html#a75fc600186b13c3b25e661afefb5eac8", null ], - [ "UPDATE_FLAGS_DELETED", "boot_8php.html#aea392cb26ed617f3a8cde648385b5df0", null ], - [ "UPDATE_FLAGS_FORCED", "boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d", null ], - [ "UPDATE_FLAGS_UPDATED", "boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0", null ], - [ "UPDATE_SUCCESS", "boot_8php.html#ac86615ddc0763a00f5311c90e991730c", null ], - [ "VNOTIFY_ALERT", "boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f", null ], - [ "VNOTIFY_BIRTHDAY", "boot_8php.html#ac89396b9144391acd08d6d0f9b332220", null ], - [ "VNOTIFY_CHANNEL", "boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe", null ], - [ "VNOTIFY_EVENT", "boot_8php.html#ad94aca4c260b8a892397786201dc4664", null ], - [ "VNOTIFY_EVENTTODAY", "boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9", null ], - [ "VNOTIFY_INFO", "boot_8php.html#a37281c30bd92cecb499878d6778c570f", null ], - [ "VNOTIFY_INTRO", "boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71", null ], - [ "VNOTIFY_MAIL", "boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3", null ], - [ "VNOTIFY_NETWORK", "boot_8php.html#a997614f25e58f8313641e1eb0109fd10", null ], - [ "VNOTIFY_REGISTER", "boot_8php.html#ae09767b94688657978ff9366ec63684b", null ], - [ "VNOTIFY_SYSTEM", "boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1", null ], - [ "XCHAN_FLAGS_CENSORED", "boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e", null ], - [ "XCHAN_FLAGS_DELETED", "boot_8php.html#a9ea1290e00c6d40684892047f2c778a9", null ], - [ "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 ], - [ "ZOT_REVISION", "boot_8php.html#a36b31575f992a10b5927b76efba9362e", null ] -]; \ No newline at end of file diff --git a/doc/html/boxy_8php.html b/doc/html/boxy_8php.html deleted file mode 100644 index 0d83ebb53..000000000 --- a/doc/html/boxy_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/boxy.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        boxy.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/cache_8php.html b/doc/html/cache_8php.html deleted file mode 100644 index b7cbd6a1f..000000000 --- a/doc/html/cache_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/cache.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        cache.php File Reference
        -
        -
        - - - - -

        -Classes

        class  Cache
         
        -
        -
        - diff --git a/doc/html/chanman_8php.html b/doc/html/chanman_8php.html deleted file mode 100644 index de9e44539..000000000 --- a/doc/html/chanman_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: include/chanman.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chanman.php File Reference
        -
        -
        - - - - -

        -Functions

         chanman_remove_everything_from_network ($channel_id)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        chanman_remove_everything_from_network ( $channel_id)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/chanman_8php.js b/doc/html/chanman_8php.js deleted file mode 100644 index 803e97f0b..000000000 --- a/doc/html/chanman_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var chanman_8php = -[ - [ "chanman_remove_everything_from_network", "chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b", null ] -]; \ No newline at end of file diff --git a/doc/html/channel_8php.html b/doc/html/channel_8php.html deleted file mode 100644 index b9c52f43a..000000000 --- a/doc/html/channel_8php.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -The Red Matrix: mod/channel.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        channel.php File Reference
        -
        -
        - - - - - - -

        -Functions

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

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        channel_content ($a,
         $update = 0,
         $load = false 
        )
        -
        -

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

        -

        in "list mode", only mark the parent item and any like activities as "seen". We won't distinguish between comment likes and post likes. The important thing is that the number of unseen comments will be accurate. The SQL to separate the comment likes could also get somewhat hairy.

        - -

        Referenced by update_channel_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        channel_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/channel_8php.js b/doc/html/channel_8php.js deleted file mode 100644 index b76a435de..000000000 --- a/doc/html/channel_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var channel_8php = -[ - [ "channel_content", "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1", null ], - [ "channel_init", "channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc", null ] -]; \ No newline at end of file diff --git a/doc/html/chanview_8php.html b/doc/html/chanview_8php.html deleted file mode 100644 index 362affb17..000000000 --- a/doc/html/chanview_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/chanview.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chanview.php File Reference
        -
        -
        - - - - -

        -Functions

         chanview_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        chanview_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/chanview_8php.js b/doc/html/chanview_8php.js deleted file mode 100644 index cbf2b353b..000000000 --- a/doc/html/chanview_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var chanview_8php = -[ - [ "chanview_content", "chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b", null ] -]; \ No newline at end of file diff --git a/doc/html/chatsvc_8php.html b/doc/html/chatsvc_8php.html deleted file mode 100644 index 108ad1820..000000000 --- a/doc/html/chatsvc_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/chatsvc.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chatsvc.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         chatsvc_init (&$a)
         
         chatsvc_post (&$a)
         
         chatsvc_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        chatsvc_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        chatsvc_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        chatsvc_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/chatsvc_8php.js b/doc/html/chatsvc_8php.js deleted file mode 100644 index 65b3df3d1..000000000 --- a/doc/html/chatsvc_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var chatsvc_8php = -[ - [ "chatsvc_content", "chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9", null ], - [ "chatsvc_init", "chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116", null ], - [ "chatsvc_post", "chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03", null ] -]; \ No newline at end of file diff --git a/doc/html/choklet_8php.html b/doc/html/choklet_8php.html deleted file mode 100644 index 4e2aa5446..000000000 --- a/doc/html/choklet_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/php/choklet.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        choklet.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/classApp-members.html b/doc/html/classApp-members.html deleted file mode 100644 index 199120188..000000000 --- a/doc/html/classApp-members.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        App Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $accountApp
        $appsAppprivate
        $argcApp
        $argvApp
        $baseurlAppprivate
        $categoryApp
        $channelApp
        $cidApp
        $cmdApp
        $configApp
        $contactApp
        $contactsApp
        $contentApp
        $css_sourcesApp
        $dataApp
        $errorApp
        $force_max_itemsApp
        $groupsApp
        $hooksApp
        $hostnameAppprivate
        $identitiesApp
        $installApp
        $interactiveApp
        $is_sysApp
        $js_sourcesApp
        $languageApp
        $layoutApp
        $ldelimAppprivate
        $moduleApp
        $module_loadedApp
        $nav_selApp
        $observerApp
        $pageApp
        $pagerApp
        $pathAppprivate
        $permsAppprivate
        $pluginsApp
        $poiApp
        $profileApp
        $profile_uidApp
        $query_stringApp
        $rdelimAppprivate
        $schemeAppprivate
        $sourcenameApp
        $stringsApp
        $template_engine_instanceApp
        $template_enginesApp
        $themeAppprivate
        $theme_infoApp
        $theme_thread_allowApp
        $timezoneApp
        $userApp
        $videoheightApp
        $videowidthApp
        $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 deleted file mode 100644 index e3d0760b2..000000000 --- a/doc/html/classApp.html +++ /dev/null @@ -1,1654 +0,0 @@ - - - - - - -The Red Matrix: App Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        - -

        Our main application structure for the life of this page. - More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ()
         
         get_baseurl ($ssl=false)
         
         set_baseurl ($url)
         
         get_hostname ()
         
         set_hostname ($h)
         
         set_path ($p)
         
         get_path ()
         
         set_account ($acct)
         
         get_account ()
         
         set_channel ($channel)
         
         get_channel ()
         
         set_observer ($xchan)
         
         get_observer ()
         
         set_perms ($perms)
         
         get_perms ()
         
         get_apps ()
         
         set_apps ($arr)
         
         set_groups ($g)
         
         get_groups ()
         
         set_widget ($title, $html, $location= 'aside')
         
         get_widgets ($location= '')
         
         set_pager_total ($n)
         
         set_pager_itemspage ($n)
         
         build_pagehead ()
         
         register_template_engine ($class, $name= '')
         
         template_engine ($name= '')
         
         get_template_engine ()
         Returns the active template engine. More...
         
         set_template_engine ($engine= 'smarty3')
         
         get_template_ldelim ($engine= 'smarty3')
         
         get_template_rdelim ($engine= 'smarty3')
         
         head_set_icon ($icon)
         
         head_get_icon ()
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

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

        -Private Attributes

         $perms = null
         
         $widgets = array()
         
         $apps = array()
         
         $theme
         
         $ldelim
         
         $rdelim
         
         $scheme
         
         $hostname
         
         $baseurl
         
         $path
         
        -

        Detailed Description

        -

        Our main application structure for the life of this page.

        -

        class: App

        -

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

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - -
        App::__construct ()
        -
        -

        App constructor.

        -

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

        -

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

        -

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

        -

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

        -

        Detect mobile devices

        -

        register template engines

        - -
        -
        -

        Member Function Documentation

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

        Referenced by build_pagehead().

        - -
        -
        - -
        -
        - - - - - - - -
        App::get_channel ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_groups ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_hostname ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_observer ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_path ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_perms ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::get_template_engine ()
        -
        - -

        Returns the active template engine.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - - -
        App::get_template_ldelim ( $engine = 'smarty3')
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        App::get_template_rdelim ( $engine = 'smarty3')
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        App::get_widgets ( $location = '')
        -
        - -
        -
        - -
        -
        - - - - - - - -
        App::head_get_icon ()
        -
        - -

        Referenced by build_pagehead().

        - -
        -
        - -
        -
        - - - - - - - - -
        App::head_set_icon ( $icon)
        -
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        App::register_template_engine ( $class,
         $name = '' 
        )
        -
        -

        register template engine class if $name is "", is used class static property $class::$name

        -
        Parameters
        - - - -
        string$class
        string$name
        -
        -
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - - -
        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 = '')
        -
        -

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

        -
        Parameters
        - - -
        string$nameTemplate engine name
        -
        -
        -
        Returns
        object Template Engine instance
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        App::$account = null
        -
        - -

        Referenced by get_account().

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

        Referenced by get_apps().

        - -
        -
        - -
        -
        - - - - -
        App::$argc
        -
        - -
        -
        - -
        -
        - - - - -
        App::$argv
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$baseurl
        -
        -private
        -
        - -

        Referenced by get_baseurl().

        - -
        -
        - -
        -
        - - - - -
        App::$category
        -
        - -
        -
        - -
        -
        - - - - -
        App::$channel = null
        -
        - -

        Referenced by get_channel(), and set_channel().

        - -
        -
        - -
        -
        - - - - -
        App::$cid
        -
        - -
        -
        - -
        -
        - - - - -
        App::$cmd
        -
        - -
        -
        - -
        -
        - - - - -
        App::$config
        -
        - -
        -
        - -
        -
        - - - - -
        App::$contact
        -
        - -
        -
        - -
        -
        - - - - -
        App::$contacts
        -
        - -
        -
        - -
        -
        - - - - -
        App::$content
        -
        - -
        -
        - -
        -
        - - - - -
        App::$css_sources = array()
        -
        - -
        -
        - -
        -
        - - - - -
        App::$data = array()
        -
        - -
        -
        - -
        -
        - - - - -
        App::$error = false
        -
        - -
        -
        - -
        -
        - - - - -
        App::$force_max_items = 0
        -
        - -
        -
        - -
        -
        - - - - -
        App::$groups
        -
        - -

        Referenced by get_groups().

        - -
        -
        - -
        -
        - - - - -
        App::$hooks
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$hostname
        -
        -private
        -
        - -

        Referenced by get_hostname().

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

        Referenced by get_observer().

        - -
        -
        - -
        -
        - - - - -
        App::$page
        -
        - -
        -
        - -
        -
        - - - - -
        App::$pager
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$path
        -
        -private
        -
        - -

        Referenced by __construct(), and get_path().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$perms = null
        -
        -private
        -
        - -

        Referenced by get_perms(), and set_perms().

        - -
        -
        - -
        -
        - - - - -
        App::$plugins
        -
        - -
        -
        - -
        -
        - - - - -
        App::$poi = null
        -
        - -
        -
        - -
        -
        - - - - -
        App::$profile
        -
        - -
        -
        - -
        -
        - - - - -
        App::$profile_uid = 0
        -
        - -
        -
        - -
        -
        - - - - -
        App::$query_string
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$rdelim
        -
        -private
        -
        -Initial value:
        = array(
        -
        'internal' => '',
        -
        'smarty3' => '}}'
        -
        )
        -
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$scheme
        -
        -private
        -
        - -

        Referenced by get_baseurl().

        - -
        -
        - -
        -
        - - - - -
        App::$sourcename = ''
        -
        - -
        -
        - -
        -
        - - - - -
        App::$strings
        -
        - -
        -
        - -
        -
        - - - - -
        App::$template_engine_instance = array()
        -
        - -
        -
        - -
        -
        - - - - -
        App::$template_engines = array()
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$theme
        -
        -private
        -
        -Initial value:
        = array(
        -
        'sourcename' => '',
        -
        'videowidth' => 425,
        -
        'videoheight' => 350,
        -
        'force_max_items' => 0,
        -
        'thread_allow' => true,
        -
        'stylesheet' => '',
        -
        'template_engine' => 'smarty3',
        -
        )
        -
        -
        -
        - -
        -
        - - - - -
        App::$theme_info = array()
        -
        - -
        -
        - -
        -
        - - - - -
        App::$theme_thread_allow = true
        -
        - -
        -
        - -
        -
        - - - - -
        App::$timezone
        -
        - -
        -
        - -
        -
        - - - - -
        App::$user
        -
        - -
        -
        - -
        -
        - - - - -
        App::$videoheight = 350
        -
        - -
        -
        - -
        -
        - - - - -
        App::$videowidth = 425
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        App::$widgets = array()
        -
        -private
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classApp.js b/doc/html/classApp.js deleted file mode 100644 index 248861737..000000000 --- a/doc/html/classApp.js +++ /dev/null @@ -1,90 +0,0 @@ -var classApp = -[ - [ "__construct", "classApp.html#af6d39f63fb7116bbeb04e51696f99474", null ], - [ "build_pagehead", "classApp.html#a08f0537964d98958d218066364cff785", null ], - [ "get_account", "classApp.html#a08bc87aff64f39fbc084e9d6545cee4d", null ], - [ "get_apps", "classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad", null ], - [ "get_baseurl", "classApp.html#a604d659d6977a99de42a160343e5289a", null ], - [ "get_channel", "classApp.html#a084e03c77686d8c13390fef3f7428a2b", null ], - [ "get_groups", "classApp.html#a4659785d13e4bac0bed50dbb1b0d4299", null ], - [ "get_hostname", "classApp.html#a622eace13f8fc9f4b5672a68e2bc4396", null ], - [ "get_observer", "classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2", null ], - [ "get_path", "classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be", null ], - [ "get_perms", "classApp.html#adb5a4bb657881e553978ff390babd01f", null ], - [ "get_template_engine", "classApp.html#acb27e607fe4c82603444676e25c36b70", null ], - [ "get_template_ldelim", "classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a", null ], - [ "get_template_rdelim", "classApp.html#aab23c59172310fd30f2d60dc039d3eea", null ], - [ "get_widgets", "classApp.html#a871898becd0697d778f36d9336253ae8", null ], - [ "head_get_icon", "classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166", null ], - [ "head_set_icon", "classApp.html#a8863703a0305eaa45eb970dbd2046291", null ], - [ "register_template_engine", "classApp.html#abf46a653d8499e7c253cc1be894a6d83", null ], - [ "set_account", "classApp.html#aeb1fe1c8ad9aa639909bd183ce578536", null ], - [ "set_apps", "classApp.html#abea5a4f77dcd53c928dc4eed86616637", null ], - [ "set_baseurl", "classApp.html#a78788f6e9d8b713b138f81e457c5cd08", null ], - [ "set_channel", "classApp.html#a89e9feb2bfb5253883a9720beaffe876", null ], - [ "set_groups", "classApp.html#a3d84af5e42082098672531cd1a618853", null ], - [ "set_hostname", "classApp.html#a344d2b7dc2f276648d521aee4da1731c", null ], - [ "set_observer", "classApp.html#a4776d9322edea17fae56afa5d01a323e", null ], - [ "set_pager_itemspage", "classApp.html#a4bdd7bfed62f50515fce652127bf481b", null ], - [ "set_pager_total", "classApp.html#a560189f048d3db2f526841963cc43e97", null ], - [ "set_path", "classApp.html#adb060d5c7f35a521ec7ec0effbe08097", null ], - [ "set_perms", "classApp.html#a557d7b779d8259027f4724ebf7b248dc", null ], - [ "set_template_engine", "classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7", null ], - [ "set_widget", "classApp.html#a123b903dfe5d3488cc68db3471d36fd2", null ], - [ "template_engine", "classApp.html#a94a1ed2dc493c58612d17035b74ae736", null ], - [ "$account", "classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3", null ], - [ "$apps", "classApp.html#a230e975296cf164da2fee35ef720964f", null ], - [ "$argc", "classApp.html#af58db526040829b1c8bd95561b329262", null ], - [ "$argv", "classApp.html#ab3da757abe5cb45bf88f07cc51a73b58", null ], - [ "$baseurl", "classApp.html#ad5175536561021548ae8188e24c7b80c", null ], - [ "$category", "classApp.html#a5cfc098c061b7d765add58fd2ca97445", null ], - [ "$channel", "classApp.html#a050b0696118da47e8b30859ad1a2c149", null ], - [ "$cid", "classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0", null ], - [ "$cmd", "classApp.html#a495ec082c2719314e536070ca1ce073d", null ], - [ "$config", "classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88", null ], - [ "$contact", "classApp.html#a98ef4cfd36693a3457c879b76bc6d694", null ], - [ "$contacts", "classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2", null ], - [ "$content", "classApp.html#ac1d80a14492acc932715d54567d8a589", null ], - [ "$css_sources", "classApp.html#a6f55d087e1ff4710132c1b0863faa2ee", null ], - [ "$data", "classApp.html#a0ce85be198e46570366cb3344f3c55b8", null ], - [ "$error", "classApp.html#ac1a8b2cd40609b231a560201a08852ba", null ], - [ "$force_max_items", "classApp.html#ae3f47830543d0d902f66913def8db66b", null ], - [ "$groups", "classApp.html#ac6e6b1c7d6df408580ff79977fcfa656", null ], - [ "$hooks", "classApp.html#a3694aa1907aa103a2adbc71f926f0fa0", null ], - [ "$hostname", "classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3", null ], - [ "$identities", "classApp.html#a7954862f44f606b0ff83d4c74d15e792", null ], - [ "$install", "classApp.html#a576ecb1c5b4a283221e6f2f0ec248251", null ], - [ "$interactive", "classApp.html#a4c7cfc62d39508086cf300dc2e39c4df", null ], - [ "$is_sys", "classApp.html#a1f60d19d47021629faac7a0a6d917e94", null ], - [ "$js_sources", "classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d", null ], - [ "$language", "classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f", null ], - [ "$layout", "classApp.html#a58ac598544892ff7c32890291b72635e", null ], - [ "$ldelim", "classApp.html#a59dd4b665c70e7dbd80682c014ff7145", null ], - [ "$module", "classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d", null ], - [ "$module_loaded", "classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165", null ], - [ "$nav_sel", "classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c", null ], - [ "$observer", "classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f", null ], - [ "$page", "classApp.html#a4b67935096f66d1f14b657399a8461ac", null ], - [ "$pager", "classApp.html#a6bcb19cdc4907077da72864686d5a780", null ], - [ "$path", "classApp.html#acad5896b7a79ae31433ad8f89606c728", null ], - [ "$perms", "classApp.html#ab47de68fa39806d1fb0976407e188b77", null ], - [ "$plugins", "classApp.html#ae9f96338f32187d308b67b980eea0008", null ], - [ "$poi", "classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a", null ], - [ "$profile", "classApp.html#a57d041fcc003d08c127dfa99a02bc192", null ], - [ "$profile_uid", "classApp.html#a08c24d6a6fc52fcc784b0f765f13b820", null ], - [ "$query_string", "classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f", null ], - [ "$rdelim", "classApp.html#a244b2d53b21be269aad2269d23192f95", null ], - [ "$scheme", "classApp.html#ad082d63acc078e5bf23825a03bdd6a76", null ], - [ "$sourcename", "classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11", null ], - [ "$strings", "classApp.html#a5f64620473a9727a48ebe9cf6f335a98", null ], - [ "$template_engine_instance", "classApp.html#a6844aedad10e201b8c3d80cfc9e876d3", null ], - [ "$template_engines", "classApp.html#a6859a4848a5c0049b4134cc4b34228b6", null ], - [ "$theme", "classApp.html#a764cc6cd7578132c21d2b4545de9301c", null ], - [ "$theme_info", "classApp.html#aeca29fd4f7192ca07369b3c598c36e67", null ], - [ "$theme_thread_allow", "classApp.html#a487332f8de40414ca1a54a4265570b70", null ], - [ "$timezone", "classApp.html#ab35b01a366a2ea95725e97af278f87ab", null ], - [ "$user", "classApp.html#a91fd3c8b89016113b05f3be24805ccff", null ], - [ "$videoheight", "classApp.html#a56b1a432c96aef8b1971f779c9d93c8c", null ], - [ "$videowidth", "classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8", null ], - [ "$widgets", "classApp.html#aa5a87c46ab3fee21362c466bf78042ef", null ] -]; \ No newline at end of file diff --git a/doc/html/classBaseObject-members.html b/doc/html/classBaseObject-members.html deleted file mode 100644 index 6ea953349..000000000 --- a/doc/html/classBaseObject-members.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        BaseObject Member List
        -
        -
        - -

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

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

        -Public Member Functions

         get_app ()
         
        - - - -

        -Static Public Member Functions

        static set_app ($app)
         
        - - - -

        -Static Private Attributes

        static $app = null
         
        -

        Detailed Description

        -

        Basic object

        -

        Contains what is usefull to any object

        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        BaseObject::get_app ()
        -
        -

        Get the app

        -

        Same as get_app from boot.php

        - -

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

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

        Set the app

        - -

        Referenced by App\__construct().

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        BaseObject::$app = null
        -
        -staticprivate
        -
        - -

        Referenced by set_app().

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

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

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

        -Static Public Member Functions

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

        Detailed Description

        -

        cache api

        -

        Member Function Documentation

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

        Referenced by oembed_fetch_url().

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

        Referenced by oembed_fetch_url().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classConversation-members.html b/doc/html/classConversation-members.html deleted file mode 100644 index 9f400e5c4..000000000 --- a/doc/html/classConversation-members.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classConversation.html b/doc/html/classConversation.html deleted file mode 100644 index e862d50d6..000000000 --- a/doc/html/classConversation.html +++ /dev/null @@ -1,646 +0,0 @@ - - - - - - -The Red Matrix: Conversation Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        -
        -Inheritance diagram for Conversation:
        -
        -
        - - -BaseObject - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($mode, $preview, $prepared_item= '')
         
         get_mode ()
         
         is_writable ()
         
         is_commentable ()
         
         is_preview ()
         
         get_profile_owner ()
         
         set_profile_owner ($uid)
         
         get_observer ()
         
         get_cipher ()
         
         add_thread ($item)
         
         get_template_data ($conv_responses)
         
        - Public Member Functions inherited from BaseObject
         get_app ()
         
        - - - - - -

        -Private Member Functions

         set_mode ($mode)
         
         get_thread ($id)
         
        - - - - - - - - - - - - - - - - - - - -

        -Private Attributes

         $threads = array()
         
         $mode = null
         
         $observer = null
         
         $writable = false
         
         $commentable = false
         
         $profile_owner = 0
         
         $preview = false
         
         $prepared_item = ''
         
         $cipher = 'aes256'
         
        - - - - -

        -Additional Inherited Members

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

        Detailed Description

        -

        A list of threads

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        Conversation::__construct ( $mode,
         $preview,
         $prepared_item = '' 
        )
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        Conversation::add_thread ( $item)
        -
        -

        Add a thread to the conversation

        -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::get_cipher ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::get_mode ()
        -
        -

        Get mode

        - -

        Referenced by set_mode(), and set_profile_owner().

        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::get_observer ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::get_profile_owner ()
        -
        -

        Get profile owner

        - -
        -
        - -
        -
        - - - - - - - - -
        Conversation::get_template_data ( $conv_responses)
        -
        -

        Get data in a form usable by a conversation template

        -

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

        -

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

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

        Get a thread based on its item id

        -

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

        - -

        Referenced by add_thread().

        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::is_commentable ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::is_preview ()
        -
        -

        Check if page is a preview

        - -
        -
        - -
        -
        - - - - - - - -
        Conversation::is_writable ()
        -
        -

        Check if page is writable

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

        Set the mode we'll be displayed on

        - -

        Referenced by __construct(), and set_profile_owner().

        - -
        -
        - -
        -
        - - - - - - - - -
        Conversation::set_profile_owner ( $uid)
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        Conversation::$cipher = 'aes256'
        -
        -private
        -
        - -

        Referenced by get_cipher().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$commentable = false
        -
        -private
        -
        - -

        Referenced by is_commentable().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$mode = null
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$observer = null
        -
        -private
        -
        - -

        Referenced by add_thread(), get_observer(), and set_mode().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$prepared_item = ''
        -
        -private
        -
        - -

        Referenced by __construct(), and get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$preview = false
        -
        -private
        -
        - -

        Referenced by __construct(), and is_preview().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Conversation::$profile_owner = 0
        -
        -private
        -
        - -

        Referenced by get_profile_owner().

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

        Referenced by is_writable().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classConversation.js b/doc/html/classConversation.js deleted file mode 100644 index 4b709069f..000000000 --- a/doc/html/classConversation.js +++ /dev/null @@ -1,25 +0,0 @@ -var classConversation = -[ - [ "__construct", "classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09", null ], - [ "add_thread", "classConversation.html#a8335cdd43f1836e3c255638e61a09e16", null ], - [ "get_cipher", "classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901", null ], - [ "get_mode", "classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd", null ], - [ "get_observer", "classConversation.html#ae3d4190142e12b57051f11f2911f77a0", null ], - [ "get_profile_owner", "classConversation.html#a5effe8ad3007e01333df44b81432b813", null ], - [ "get_template_data", "classConversation.html#ac5900b46e6a1c93360bb8e58f8b3540b", null ], - [ "get_thread", "classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8", null ], - [ "is_commentable", "classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3", null ], - [ "is_preview", "classConversation.html#adf25ce023b69a166c63c6e84e02c136a", null ], - [ "is_writable", "classConversation.html#a5879199008b96bee7550b576d614e1c1", null ], - [ "set_mode", "classConversation.html#a66f121ca4026246f86a732e5faa0682c", null ], - [ "set_profile_owner", "classConversation.html#a8898bddc1e8990e81dab9a13a532cc93", null ], - [ "$cipher", "classConversation.html#aa95c1a62af38bdfba7add9549bec083b", null ], - [ "$commentable", "classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6", null ], - [ "$mode", "classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a", null ], - [ "$observer", "classConversation.html#a8748445aa26047ebed5141f3c3cbc244", null ], - [ "$prepared_item", "classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2", null ], - [ "$preview", "classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae", null ], - [ "$profile_owner", "classConversation.html#a2f12724ef0244e9049fe1bb9641b516d", null ], - [ "$threads", "classConversation.html#a41f4a549e6a99f98935c4742addd22c8", null ], - [ "$writable", "classConversation.html#ae81221251307e315f566a11f921ce0a9", null ] -]; \ No newline at end of file diff --git a/doc/html/classConversation.png b/doc/html/classConversation.png deleted file mode 100644 index c4ab9b0ed..000000000 Binary files a/doc/html/classConversation.png and /dev/null differ diff --git a/doc/html/classFKOAuth1-members.html b/doc/html/classFKOAuth1-members.html deleted file mode 100644 index a04cf959f..000000000 --- a/doc/html/classFKOAuth1-members.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        FKOAuth1 Member List
        -
        -
        - -

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

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

        -Public Member Functions

         __construct ()
         
         loginUser ($uid)
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - -
        FKOAuth1::__construct ()
        -
        - -
        -
        -

        Member Function Documentation

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

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

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

        -Public Member Functions

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

        Member Function Documentation

        - -
        -
        - - - - - - - -
        FKOAuthDataStore::gen_token ()
        -
        - -

        Referenced by new_access_token(), and new_request_token().

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

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

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

        -Public Member Functions

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

        -Public Attributes

         $filename
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - -
        FriendicaSmarty::__construct ()
        -
        - -
        -
        -

        Member Function Documentation

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

        Member Data Documentation

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

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

        - - - - - - -
        $nameFriendicaSmartyEnginestatic
        __construct()FriendicaSmartyEngine
        get_intltext_template($file, $root='')FriendicaSmartyEngine
        get_markup_template($file, $root='')FriendicaSmartyEngine
        replace_macros($s, $r)FriendicaSmartyEngine
        -
        - diff --git a/doc/html/classFriendicaSmartyEngine.html b/doc/html/classFriendicaSmartyEngine.html deleted file mode 100644 index 7fc1217af..000000000 --- a/doc/html/classFriendicaSmartyEngine.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - -The Red Matrix: FriendicaSmartyEngine Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        FriendicaSmartyEngine Class Reference
        -
        -
        -
        -Inheritance diagram for FriendicaSmartyEngine:
        -
        -
        - - -ITemplateEngine - -
        - - - - - - - - - - -

        -Public Member Functions

         __construct ()
         
         replace_macros ($s, $r)
         
         get_markup_template ($file, $root='')
         
         get_intltext_template ($file, $root='')
         
        - - - -

        -Static Public Attributes

        static $name ="smarty3"
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - -
        FriendicaSmartyEngine::__construct ()
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        FriendicaSmartyEngine::get_intltext_template ( $file,
         $root = '' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        FriendicaSmartyEngine::get_markup_template ( $file,
         $root = '' 
        )
        -
        - -

        Implements ITemplateEngine.

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        FriendicaSmartyEngine::replace_macros ( $s,
         $r 
        )
        -
        - -

        Implements ITemplateEngine.

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        FriendicaSmartyEngine::$name ="smarty3"
        -
        -static
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classFriendicaSmartyEngine.js b/doc/html/classFriendicaSmartyEngine.js deleted file mode 100644 index cabd197d1..000000000 --- a/doc/html/classFriendicaSmartyEngine.js +++ /dev/null @@ -1,7 +0,0 @@ -var classFriendicaSmartyEngine = -[ - [ "__construct", "classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6", null ], - [ "get_intltext_template", "classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118", null ], - [ "get_markup_template", "classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88", null ], - [ "replace_macros", "classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2", null ] -]; \ No newline at end of file diff --git a/doc/html/classFriendicaSmartyEngine.png b/doc/html/classFriendicaSmartyEngine.png deleted file mode 100644 index afe04a5fc..000000000 Binary files a/doc/html/classFriendicaSmartyEngine.png and /dev/null differ diff --git a/doc/html/classItem-members.html b/doc/html/classItem-members.html deleted file mode 100644 index 215bfb62f..000000000 --- a/doc/html/classItem-members.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Item Member List
        -
        - -
        - diff --git a/doc/html/classItem.html b/doc/html/classItem.html deleted file mode 100644 index 18646ec7c..000000000 --- a/doc/html/classItem.html +++ /dev/null @@ -1,1330 +0,0 @@ - - - - - - -The Red Matrix: Item Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        -
        -Inheritance diagram for Item:
        -
        -
        - - -BaseObject - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($data)
         
         get_template_data ($conv_responses, $thread_level=1)
         
         get_id ()
         
         get_display_mode ()
         
         set_display_mode ($mode)
         
         is_threaded ()
         
         set_commentable ($val)
         
         is_commentable ()
         
         add_child ($item)
         
         get_child ($id)
         
         get_children ()
         
         remove_child ($item)
         
         set_conversation ($conv)
         
         get_conversation ()
         
         get_data ()
         
         get_data_value ($name)
         
         get_template ()
         
         set_template ($t)
         
        - Public Member Functions inherited from BaseObject
         get_app ()
         
        - - - -

        -Public Attributes

         $data = array()
         
        - - - - - - - - - -

        -Protected Member Functions

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

        -Private Member Functions

         is_toplevel ()
         
         count_descendants ()
         
         count_unseen_descendants ()
         
         get_comment_box_template ()
         
         get_comment_box ($indent)
         
         get_redirect_url ()
         
         is_wall_to_wall ()
         
         get_owner_url ()
         
         get_owner_photo ()
         
         get_owner_name ()
         
         is_visiting ()
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Private Attributes

         $template = 'conv_item.tpl'
         
         $comment_box_template = 'comment_item.tpl'
         
         $commentable = false
         
         $toplevel = false
         
         $children = array()
         
         $parent = null
         
         $conversation = null
         
         $redirect_url = null
         
         $owner_url = ''
         
         $owner_photo = ''
         
         $owner_name = ''
         
         $wall_to_wall = false
         
         $threaded = false
         
         $visiting = false
         
         $channel = null
         
         $display_mode = 'normal'
         
        - - - - -

        -Additional Inherited Members

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

        Detailed Description

        -

        An item

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - -
        Item::__construct ( $data)
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        Item::add_child ( $item)
        -
        -

        Add a child item

        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::check_wall_to_wall ()
        -
        -protected
        -
        -

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

        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::count_descendants ()
        -
        -private
        -
        -

        Count the total of our descendants

        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::count_unseen_descendants ()
        -
        -private
        -
        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - -
        Item::get_child ( $id)
        -
        -

        Get a child by its ID

        - -

        Referenced by add_child().

        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_children ()
        -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        Item::get_comment_box ( $indent)
        -
        -private
        -
        -

        Get the comment box

        -

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

        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_comment_box_template ()
        -
        -private
        -
        -

        Get the template for the comment box

        - -

        Referenced by get_comment_box().

        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_conversation ()
        -
        -

        get conversation

        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_data ()
        -
        -

        Get raw data

        -

        We shouldn't need this

        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - -
        Item::get_data_value ( $name)
        -
        -

        Get a data value

        -

        Returns: _ value on success _ false on failure

        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_display_mode ()
        -
        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_id ()
        -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_owner_name ()
        -
        -private
        -
        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_owner_photo ()
        -
        -private
        -
        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_owner_url ()
        -
        -private
        -
        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_parent ()
        -
        -protected
        -
        -

        Get parent item

        - -

        Referenced by set_parent().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::get_redirect_url ()
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Item::get_template ()
        -
        -

        Get template

        - -

        Referenced by get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        Item::get_template_data ( $conv_responses,
         $thread_level = 1 
        )
        -
        -

        Get data in a form usable by a conversation template

        -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Item::is_commentable ()
        -
        - -

        Referenced by get_comment_box(), and get_template_data().

        - -
        -
        - -
        -
        - - - - - - - -
        Item::is_threaded ()
        -
        - -

        Referenced by get_comment_box(), and get_template_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::is_toplevel ()
        -
        -private
        -
        -

        Check if this is a toplevel post

        - -

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

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::is_visiting ()
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::is_wall_to_wall ()
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        Item::remove_child ( $item)
        -
        -

        Remove a child

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Item::remove_parent ()
        -
        -protected
        -
        -

        Remove our parent

        - -
        -
        - -
        -
        - - - - - - - - -
        Item::set_commentable ( $val)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        Item::set_conversation ( $conv)
        -
        -

        set conversation

        - -

        Referenced by set_parent().

        - -
        -
        - -
        -
        - - - - - - - - -
        Item::set_display_mode ( $mode)
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        Item::set_parent ( $item)
        -
        -protected
        -
        -

        Set our parent

        - -
        -
        - -
        -
        - - - - - - - - -
        Item::set_template ( $t)
        -
        - -
        -
        -

        Member Data Documentation

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

        Referenced by get_comment_box_template().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$commentable = false
        -
        -private
        -
        - -

        Referenced by is_commentable().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$conversation = null
        -
        -private
        -
        - -

        Referenced by get_conversation().

        - -
        -
        - -
        -
        - - - - -
        Item::$data = array()
        -
        - -

        Referenced by __construct(), and get_data().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$display_mode = 'normal'
        -
        -private
        -
        - -

        Referenced by get_display_mode().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$owner_name = ''
        -
        -private
        -
        - -

        Referenced by get_owner_name().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$owner_photo = ''
        -
        -private
        -
        - -

        Referenced by get_owner_photo().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$owner_url = ''
        -
        -private
        -
        - -

        Referenced by get_owner_url().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$parent = null
        -
        -private
        -
        - -

        Referenced by get_parent(), and set_parent().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$redirect_url = null
        -
        -private
        -
        - -

        Referenced by get_redirect_url().

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

        Referenced by get_comment_box(), and get_template().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$threaded = false
        -
        -private
        -
        - -

        Referenced by is_threaded().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$toplevel = false
        -
        -private
        -
        - -

        Referenced by is_toplevel().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$visiting = false
        -
        -private
        -
        - -

        Referenced by is_visiting().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Item::$wall_to_wall = false
        -
        -private
        -
        - -

        Referenced by is_wall_to_wall().

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

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

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

        -Public Member Functions

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

        -Static Public Member Functions

        static supportedTypes ()
         
        - - - - - - - - - - - - - - - -

        -Private Attributes

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

        Constructor & Destructor Documentation

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

        Setup the image to the format it will be saved to

        -

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

        -

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

        -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::__destruct ()
        -
        - -
        -
        -

        Member Function Documentation

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

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

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

        Referenced by orient().

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::get_FormatsMap ()
        -
        -

        Maps Mime types to Imagick formats

        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::getExt ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Photo::getHeight ()
        -
        - -

        Referenced by store().

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::getImage ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        Photo::getType ()
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::getWidth ()
        -
        - -

        Referenced by store().

        - -
        -
        - -
        -
        - - - - - - - -
        Photo::imageString ()
        -
        - -

        Referenced by saveImage(), and store().

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

        Referenced by orient().

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

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

        - -

        Referenced by cropImage(), and scaleImageUp().

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

        supported mimetypes and corresponding file extensions

        -

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

        - -

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

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        Photo::$height
        -
        -private
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$image
        -
        -private
        -
        - -

        Referenced by getImage().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$imagick
        -
        -private
        -
        -

        Put back gd stuff, not everybody have Imagick

        - -

        Referenced by is_imagick().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$type
        -
        -private
        -
        - -

        Referenced by __construct(), and getType().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$types
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$valid
        -
        -private
        -
        - -

        Referenced by is_valid().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Photo::$width
        -
        -private
        -
        - -

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

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

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

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

        -Protected Member Functions

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

        Member Function Documentation

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

        Authentication backend class for RedDAV. - More...

        -
        -Inheritance diagram for RedBasicAuth:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         setCurrentUser ($name)
         
         getCurrentUser ()
         
         setTimezone ($timezone)
         Sets the timezone from the channel in RedBasicAuth. More...
         
         getTimezone ()
         Returns the timezone. More...
         
         setBrowserPlugin ($browser)
         Set browser plugin for SabreDAV. More...
         
         log ()
         
        - - - - - - - - - - - - - -

        -Public Attributes

         $channel_id = 0
         
         $channel_hash = ''
         
         $observer = ''
         
         $browser
         
         $owner_id = 0
         
         $owner_nick = ''
         
        - - - - - - - -

        -Protected Member Functions

         validateUserPass ($username, $password)
         Validates a username and password. More...
         
         setAuthenticated ($r)
         Sets variables and session parameters after successfull authentication. More...
         
        - - - - - -

        -Protected Attributes

         $channel_name = null
         
         $timezone = ''
         
        -

        Detailed Description

        -

        Authentication backend class for RedDAV.

        -

        This class also contains some data which is not necessary for authentication like timezone settings.

        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        RedBasicAuth::getCurrentUser ()
        -
        -

        Returns information about the currently logged-in channel.

        -

        If nobody is currently logged in, this method should return null.

        -
        See Also
        DAV::getCurrentUser
        -
        Returns
        string|null
        - -
        -
        - -
        -
        - - - - - - - -
        RedBasicAuth::getTimezone ()
        -
        - -

        Returns the timezone.

        -
        Returns
        string Return the channel's timezone.
        - -
        -
        - -
        -
        - - - - - - - -
        RedBasicAuth::log ()
        -
        -

        Prints out all RedBasicAuth variables to logger().

        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedBasicAuth::setAuthenticated ( $r)
        -
        -protected
        -
        - -

        Sets variables and session parameters after successfull authentication.

        -
        Parameters
        - - -
        array$rArray with the values for the authenticated channel.
        -
        -
        -
        Returns
        bool
        - -

        Referenced by validateUserPass().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedBasicAuth::setBrowserPlugin ( $browser)
        -
        - -

        Set browser plugin for SabreDAV.

        -
        See Also
        RedBrowser::set_writeable()
        -
        Parameters
        - - -
        DAV\Browser\Plugin$browser
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedBasicAuth::setCurrentUser ( $name)
        -
        -

        Sets the channel_name from the currently logged-in channel.

        -
        Parameters
        - - -
        string$nameThe channel's name
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedBasicAuth::setTimezone ( $timezone)
        -
        - -

        Sets the timezone from the channel in RedBasicAuth.

        -

        Set in mod/cloud.php if the channel has a timezone set.

        -
        Parameters
        - - -
        string$timezoneThe channel's timezone.
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        RedBasicAuth::validateUserPass ( $username,
         $password 
        )
        -
        -protected
        -
        - -

        Validates a username and password.

        -

        Guest access is granted with the password "+++".

        -
        See Also
        DAV::validateUserPass
        -
        Parameters
        - - - -
        string$username
        string$password
        -
        -
        -
        Returns
        bool
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        RedBasicAuth::$browser
        -
        - -

        Referenced by setBrowserPlugin().

        - -
        -
        - -
        -
        - - - - -
        RedBasicAuth::$channel_hash = ''
        -
        - -
        -
        - -
        -
        - - - - -
        RedBasicAuth::$channel_id = 0
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedBasicAuth::$channel_name = null
        -
        -protected
        -
        - -

        Referenced by getCurrentUser().

        - -
        -
        - -
        -
        - - - - -
        RedBasicAuth::$observer = ''
        -
        - -
        -
        - -
        -
        - - - - -
        RedBasicAuth::$owner_id = 0
        -
        - -
        -
        - -
        -
        - - - - -
        RedBasicAuth::$owner_nick = ''
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedBasicAuth::$timezone = ''
        -
        -protected
        -
        - -

        Referenced by getTimezone(), and setTimezone().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedBasicAuth.js b/doc/html/classRedBasicAuth.js deleted file mode 100644 index 7b0a17424..000000000 --- a/doc/html/classRedBasicAuth.js +++ /dev/null @@ -1,19 +0,0 @@ -var classRedBasicAuth = -[ - [ "getCurrentUser", "classRedBasicAuth.html#a4a584de8eb31c786fabd8f6e1a6c8925", null ], - [ "getTimezone", "classRedBasicAuth.html#a9fdd4b890e3e7c7e1ae96ead2301418f", null ], - [ "log", "classRedBasicAuth.html#a2cc8b1eac9c5a799bfb53ea7f287f3f0", null ], - [ "setAuthenticated", "classRedBasicAuth.html#a3ef43177abe0ef72da140a25bc568333", null ], - [ "setBrowserPlugin", "classRedBasicAuth.html#a358ddad4abb5aa8c1382cf49a907adbc", null ], - [ "setCurrentUser", "classRedBasicAuth.html#a072e8244a9a7f191b32d3db5ac94f857", null ], - [ "setTimezone", "classRedBasicAuth.html#a2f5d4ef7040c65b79b2fdfdf1212395a", null ], - [ "validateUserPass", "classRedBasicAuth.html#a8dfd9a0953f8884723b421b7c1acf79b", null ], - [ "$browser", "classRedBasicAuth.html#af14337f1baad407f8a85d48205c0f30e", null ], - [ "$channel_hash", "classRedBasicAuth.html#ad5a3ea4dc4783b242d9dc6e76478b6ef", null ], - [ "$channel_id", "classRedBasicAuth.html#a2dab393650d1573e3515969a153e8354", null ], - [ "$channel_name", "classRedBasicAuth.html#a438ab125b6ef46581947e35d49cdebac", null ], - [ "$observer", "classRedBasicAuth.html#aa75dc43b59adc98e38a98517d3fd35d1", null ], - [ "$owner_id", "classRedBasicAuth.html#a09c1488a0b290f5a54dc15180c5690d7", null ], - [ "$owner_nick", "classRedBasicAuth.html#a8d09b8d784cc810a0b3be580d05106a7", null ], - [ "$timezone", "classRedBasicAuth.html#a2d0246ed446fd5e55c17938b4ce6ac47", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedBasicAuth.png b/doc/html/classRedBasicAuth.png deleted file mode 100644 index 01abbef69..000000000 Binary files a/doc/html/classRedBasicAuth.png and /dev/null differ diff --git a/doc/html/classRedBrowser-members.html b/doc/html/classRedBrowser-members.html deleted file mode 100644 index e79bf79a2..000000000 --- a/doc/html/classRedBrowser-members.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedBrowser Member List
        -
        -
        - -

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

        - - - - - - - - - - -
        $authRedBrowserprivate
        __construct(&$auth)RedBrowser
        findAttachHash($owner, $parentHash, $attachName)RedBrowserprotected
        findAttachIdByHash($attachHash)RedBrowserprotected
        generateDirectoryIndex($path)RedBrowser
        getAssetUrl($assetName)RedBrowserprotected
        htmlActionsPanel(DAV\INode $node, &$output)RedBrowser
        set_writeable()RedBrowser
        userReadableSize($size)RedBrowser
        -
        - diff --git a/doc/html/classRedBrowser.html b/doc/html/classRedBrowser.html deleted file mode 100644 index a3d622c51..000000000 --- a/doc/html/classRedBrowser.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - -The Red Matrix: RedBrowser Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        -
        -Inheritance diagram for RedBrowser:
        -
        -
        - - - -
        - - - - - - - - - - - - - -

        -Public Member Functions

         __construct (&$auth)
         
         set_writeable ()
         
         generateDirectoryIndex ($path)
         Creates the directory listing for the given path. More...
         
         userReadableSize ($size)
         
         htmlActionsPanel (DAV\INode $node, &$output)
         
        - - - - - - - -

        -Protected Member Functions

         getAssetUrl ($assetName)
         
         findAttachHash ($owner, $parentHash, $attachName)
         
         findAttachIdByHash ($attachHash)
         
        - - - -

        -Private Attributes

         $auth
         
        -

        Detailed Description

        -

        RedBrowser class.

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - -
        RedBrowser::__construct ($auth)
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        RedBrowser::findAttachHash ( $owner,
         $parentHash,
         $attachName 
        )
        -
        -protected
        -
        - -

        Referenced by generateDirectoryIndex().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedBrowser::findAttachIdByHash ( $attachHash)
        -
        -protected
        -
        - -

        Referenced by generateDirectoryIndex().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedBrowser::generateDirectoryIndex ( $path)
        -
        - -

        Creates the directory listing for the given path.

        -
        Parameters
        - - -
        string$pathwhich should be displayed
        -
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedBrowser::getAssetUrl ( $assetName)
        -
        -protected
        -
        -

        This method takes a path/name of an asset and turns it into url suiteable for http access.

        -
        Parameters
        - - -
        string$assetName
        -
        -
        -
        Returns
        string
        - -

        Referenced by generateDirectoryIndex().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedBrowser::htmlActionsPanel (DAV\INode $node,
        $output 
        )
        -
        -

        Creates a form to add new folders and upload files.

        -
        Parameters
        - - - -
        DAV\INode$node
        string&$output
        -
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedBrowser::set_writeable ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedBrowser::userReadableSize ( $size)
        -
        - -

        Referenced by generateDirectoryIndex().

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedBrowser::$auth
        -
        -private
        -
        - -

        Referenced by __construct().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedBrowser.js b/doc/html/classRedBrowser.js deleted file mode 100644 index 8c1817306..000000000 --- a/doc/html/classRedBrowser.js +++ /dev/null @@ -1,12 +0,0 @@ -var classRedBrowser = -[ - [ "__construct", "classRedBrowser.html#a4b76be9ccef0262cf78fffb4129eda93", null ], - [ "findAttachHash", "classRedBrowser.html#ae4edd4e10c709e2624c1aeb47b0440c5", null ], - [ "findAttachIdByHash", "classRedBrowser.html#a20d81230645ddca08a88bfd9ea9f88f1", null ], - [ "generateDirectoryIndex", "classRedBrowser.html#a1f7daf50bb9bfcde7345b3b1908dbd7e", null ], - [ "getAssetUrl", "classRedBrowser.html#a87529b4988a7777b49616f5c0a1c55d3", null ], - [ "htmlActionsPanel", "classRedBrowser.html#a7f6bf0bda07833f4c647557bd172e349", null ], - [ "set_writeable", "classRedBrowser.html#a40fdbb9d9fe6c1243bbf135dd5b0a06f", null ], - [ "userReadableSize", "classRedBrowser.html#ad3418b8ccad42a1ef4ad0079e15b2e64", null ], - [ "$auth", "classRedBrowser.html#ab6d6d1e2a67e06b344a4cede1bd00b35", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedBrowser.png b/doc/html/classRedBrowser.png deleted file mode 100644 index df14b3aa8..000000000 Binary files a/doc/html/classRedBrowser.png and /dev/null differ diff --git a/doc/html/classRedDirectory-members.html b/doc/html/classRedDirectory-members.html deleted file mode 100644 index c667f6488..000000000 --- a/doc/html/classRedDirectory-members.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedDirectory Member List
        -
        - -
        - diff --git a/doc/html/classRedDirectory.html b/doc/html/classRedDirectory.html deleted file mode 100644 index 2975fc2ef..000000000 --- a/doc/html/classRedDirectory.html +++ /dev/null @@ -1,641 +0,0 @@ - - - - - - -The Red Matrix: RedDirectory Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        - -

        RedDirectory class. - More...

        -
        -Inheritance diagram for RedDirectory:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($ext_path, &$auth_plugin)
         Sets up the directory node, expects a full path. More...
         
         getChildren ()
         Returns an array with all the child nodes. More...
         
         getChild ($name)
         Returns a child by name. More...
         
         getName ()
         Returns the name of the directory. More...
         
         setName ($name)
         Renames the directory. More...
         
         createFile ($name, $data=null)
         Creates a new file in the directory. More...
         
         createDirectory ($name)
         Creates a new subdirectory. More...
         
         childExists ($name)
         Checks if a child exists. More...
         
         getDir ()
         
         getLastModified ()
         Returns the last modification time for the directory, as a UNIX timestamp. More...
         
         getQuotaInfo ()
         Return quota usage. More...
         
        - - - -

        -Private Member Functions

         log ()
         
        - - - - - - - - - - - - - -

        -Private Attributes

         $red_path
         
         $folder_hash
         
         $ext_path
         
         $root_dir = ''
         
         $auth
         
         $os_path = ''
         
        -

        Detailed Description

        -

        RedDirectory class.

        -

        A class that represents a directory.

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedDirectory::__construct ( $ext_path,
        $auth_plugin 
        )
        -
        - -

        Sets up the directory node, expects a full path.

        -
        Parameters
        - - - -
        string$ext_patha full path
        RedBasicAuth&$auth_plugin
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        RedDirectory::childExists ( $name)
        -
        - -

        Checks if a child exists.

        -
        Parameters
        - - -
        string$name
        -
        -
        -
        Returns
        boolean
        - -
        -
        - -
        -
        - - - - - - - - -
        RedDirectory::createDirectory ( $name)
        -
        - -

        Creates a new subdirectory.

        -
        Parameters
        - - -
        string$namethe directory to create
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedDirectory::createFile ( $name,
         $data = null 
        )
        -
        - -

        Creates a new file in the directory.

        -

        Data will either be supplied as a stream resource, or in certain cases as a string. Keep in mind that you may have to support either.

        -

        After successful creation of the file, you may choose to return the ETag of the new file here.

        -
        Exceptions
        - - -
        DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - - -
        string$nameName of the file
        resource | string$dataInitial payload
        -
        -
        -
        Returns
        null|string ETag
        - -
        -
        - -
        -
        - - - - - - - - -
        RedDirectory::getChild ( $name)
        -
        - -

        Returns a child by name.

        -
        Exceptions
        - - - -
        DAV\Exception\Forbidden
        DAV\Exception\NotFound
        -
        -
        -
        Parameters
        - - -
        string$name
        -
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedDirectory::getChildren ()
        -
        - -

        Returns an array with all the child nodes.

        -
        Exceptions
        - - -
        DAV\Exception\Forbidden
        -
        -
        -
        Returns
        array DAV[]
        - -
        -
        - -
        -
        - - - - - - - -
        RedDirectory::getDir ()
        -
        -
        Todo:
        add description of what this function does.
        -
        Exceptions
        - - -
        DAV\Exception\NotFound
        -
        -
        -
        Returns
        void
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - -
        RedDirectory::getLastModified ()
        -
        - -

        Returns the last modification time for the directory, as a UNIX timestamp.

        -

        It looks for the last edited file in the folder. If it is an empty folder it returns the lastmodified time of the folder itself, to prevent zero timestamps.

        -
        Returns
        int last modification time in UNIX timestamp
        - -
        -
        - -
        -
        - - - - - - - -
        RedDirectory::getName ()
        -
        - -

        Returns the name of the directory.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedDirectory::getQuotaInfo ()
        -
        - -

        Return quota usage.

        -

        Do guests relly see the used/free values from filesystem of the complete store directory?

        -
        Returns
        array with used and free values in bytes.
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        RedDirectory::log ()
        -
        -private
        -
        - -

        Referenced by getChildren().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedDirectory::setName ( $name)
        -
        - -

        Renames the directory.

        -
        Todo:
        handle duplicate directory name
        -
        Exceptions
        - - -
        DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - -
        string$nameThe new name of the directory.
        -
        -
        -
        Returns
        void
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$auth
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$ext_path
        -
        -private
        -
        - -

        Referenced by __construct(), and getDir().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$folder_hash
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$os_path = ''
        -
        -private
        -
        - -

        Referenced by createFile(), and getDir().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$red_path
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedDirectory::$root_dir = ''
        -
        -private
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedDirectory.js b/doc/html/classRedDirectory.js deleted file mode 100644 index d54fb405a..000000000 --- a/doc/html/classRedDirectory.js +++ /dev/null @@ -1,21 +0,0 @@ -var classRedDirectory = -[ - [ "__construct", "classRedDirectory.html#a1e35e3cd31d2a15250655e4cafdea180", null ], - [ "childExists", "classRedDirectory.html#a5e3fc08b2bf9f61cea4d2ccae0495bec", null ], - [ "createDirectory", "classRedDirectory.html#a986936910f0216887a25e28916c166c7", null ], - [ "createFile", "classRedDirectory.html#a2d12d99d38a6a75fc9a830b2f7fc0bf0", null ], - [ "getChild", "classRedDirectory.html#aaa20f0f44da23781917af8170c0a2569", null ], - [ "getChildren", "classRedDirectory.html#aa42d3065f6f065b17db87146a7cb031a", null ], - [ "getDir", "classRedDirectory.html#a70173d4458572d95e586b2037d2fd2f4", null ], - [ "getLastModified", "classRedDirectory.html#a6c7e08199abc24e6eeb94a4037ef8bfc", null ], - [ "getName", "classRedDirectory.html#af6e4475dbd5abcdede00d20b8d388583", null ], - [ "getQuotaInfo", "classRedDirectory.html#a2f7a574f2115f099d6dd103d5b252375", null ], - [ "log", "classRedDirectory.html#a11376aed1963b4471eb1592c13c63976", null ], - [ "setName", "classRedDirectory.html#adc48035679e52c55d9881f83de535553", null ], - [ "$auth", "classRedDirectory.html#a9616af16cd19a18a6afebebcc2881c44", null ], - [ "$ext_path", "classRedDirectory.html#a0f113244cd85c17848df991001d024f4", null ], - [ "$folder_hash", "classRedDirectory.html#aa10254abf177bb2a0e4a88495725e09b", null ], - [ "$os_path", "classRedDirectory.html#a3c148c07ad909985125aa4926d8d0021", null ], - [ "$red_path", "classRedDirectory.html#acb32b8df27538c57772824a745e751d7", null ], - [ "$root_dir", "classRedDirectory.html#ad87c514a307ec97ba0f1372e9bcfa6a4", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedDirectory.png b/doc/html/classRedDirectory.png deleted file mode 100644 index 05439b4c5..000000000 Binary files a/doc/html/classRedDirectory.png and /dev/null differ diff --git a/doc/html/classRedFile-members.html b/doc/html/classRedFile-members.html deleted file mode 100644 index 343fe2a82..000000000 --- a/doc/html/classRedFile-members.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedFile Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - -
        $authRedFileprivate
        $dataRedFileprivate
        $nameRedFileprivate
        __construct($name, $data, &$auth)RedFile
        delete()RedFile
        get()RedFile
        getContentType()RedFile
        getETag()RedFile
        getLastModified()RedFile
        getName()RedFile
        getSize()RedFile
        put($data)RedFile
        setName($newName)RedFile
        -
        - diff --git a/doc/html/classRedFile.html b/doc/html/classRedFile.html deleted file mode 100644 index 683dd1657..000000000 --- a/doc/html/classRedFile.html +++ /dev/null @@ -1,474 +0,0 @@ - - - - - - -The Red Matrix: RedFile Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedFile Class Reference
        -
        -
        -
        -Inheritance diagram for RedFile:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($name, $data, &$auth)
         
         getName ()
         Returns the name of the file. More...
         
         setName ($newName)
         Renames the file. More...
         
         put ($data)
         Updates the data of the file. More...
         
         get ()
         Returns the raw data. More...
         
         getETag ()
         Returns the ETag for a file. More...
         
         getContentType ()
         Returns the mime-type for a file. More...
         
         getSize ()
         Returns the size of the node, in bytes. More...
         
         getLastModified ()
         Returns the last modification time for the file, as a unix timestamp. More...
         
         delete ()
         Delete the file. More...
         
        - - - - - - - -

        -Private Attributes

         $data
         
         $auth
         
         $name
         
        -

        Detailed Description

        -

        RedFile class.

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        RedFile::__construct ( $name,
         $data,
        $auth 
        )
        -
        -

        Sets up the node, expects a full path name.

        -
        Parameters
        - - - - -
        string$name
        array$datafrom attach table
        &$auth
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        RedFile::delete ()
        -
        - -

        Delete the file.

        -
        Exceptions
        - - -
        DAV\Exception\Forbidden
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::get ()
        -
        - -

        Returns the raw data.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::getContentType ()
        -
        - -

        Returns the mime-type for a file.

        -

        If null is returned, we'll assume application/octet-stream

        -
        Returns
        mixed
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::getETag ()
        -
        - -

        Returns the ETag for a file.

        -

        An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change. The ETag is an arbitrary string, but MUST be surrounded by double-quotes.

        -

        Return null if the ETag can not effectively be determined.

        -
        Returns
        mixed
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::getLastModified ()
        -
        - -

        Returns the last modification time for the file, as a unix timestamp.

        -
        Returns
        int last modification time in UNIX timestamp
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::getName ()
        -
        - -

        Returns the name of the file.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedFile::getSize ()
        -
        - -

        Returns the size of the node, in bytes.

        -
        Returns
        int
        - -
        -
        - -
        -
        - - - - - - - - -
        RedFile::put ( $data)
        -
        - -

        Updates the data of the file.

        -
        Parameters
        - - -
        resource$data
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - - - - -
        RedFile::setName ( $newName)
        -
        - -

        Renames the file.

        -
        Exceptions
        - - -
        DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - -
        string$nameThe new name of the file.
        -
        -
        -
        Returns
        void
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedFile::$auth
        -
        -private
        -
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedFile::$data
        -
        -private
        -
        - -

        Referenced by __construct(), and put().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedFile::$name
        -
        -private
        -
        - -

        Referenced by __construct().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedFile.js b/doc/html/classRedFile.js deleted file mode 100644 index 4f03440ad..000000000 --- a/doc/html/classRedFile.js +++ /dev/null @@ -1,16 +0,0 @@ -var classRedFile = -[ - [ "__construct", "classRedFile.html#a9a67bdb34c9db6ce144b3f371148b183", null ], - [ "delete", "classRedFile.html#aef71c9eaac7052be7dc8602eb12171e7", null ], - [ "get", "classRedFile.html#a7c868dfcef6c70cd0e24cf3caa2c3535", null ], - [ "getContentType", "classRedFile.html#a26416827eb68554d033d1e2e5cc6dd3b", null ], - [ "getETag", "classRedFile.html#ae96d5caa2db7a461c57b24380fa87e28", null ], - [ "getLastModified", "classRedFile.html#a41562a28007789bbe7fe06d6a20eef47", null ], - [ "getName", "classRedFile.html#a0c961c5f49544d2502420361fa526437", null ], - [ "getSize", "classRedFile.html#acb1edbe1848fab05347746fa1ea09d8f", null ], - [ "put", "classRedFile.html#a41a49a583eb276b75626fcf97f4a699c", null ], - [ "setName", "classRedFile.html#a38a82bfc1b30028ea6ac75923e90fa25", null ], - [ "$auth", "classRedFile.html#a4b5d0e33f919c6c175b30a55de6263f2", null ], - [ "$data", "classRedFile.html#a2ff12032b45538353eded9809d3b7550", null ], - [ "$name", "classRedFile.html#acc48c05cd5a70951cb3c615ad84f03ba", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedFile.png b/doc/html/classRedFile.png deleted file mode 100644 index 81ce66310..000000000 Binary files a/doc/html/classRedFile.png and /dev/null differ diff --git a/doc/html/classRedInode-members.html b/doc/html/classRedInode-members.html deleted file mode 100644 index 3d8504822..000000000 --- a/doc/html/classRedInode-members.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedInode Member List
        -
        -
        - -

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

        - - - - - - - -
        $attachRedInodeprivate
        __construct($attach)RedInode
        delete()RedInode
        getLastModified()RedInode
        getName()RedInode
        setName($newName)RedInode
        -
        - diff --git a/doc/html/classRedInode.html b/doc/html/classRedInode.html deleted file mode 100644 index 3f19069a6..000000000 --- a/doc/html/classRedInode.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - -The Red Matrix: RedInode Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedInode Class Reference
        -
        -
        -
        -Inheritance diagram for RedInode:
        -
        -
        - - - -
        - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($attach)
         
         delete ()
         
         getName ()
         
         setName ($newName)
         
         getLastModified ()
         
        - - - -

        -Private Attributes

         $attach
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - -
        RedInode::__construct ( $attach)
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        RedInode::delete ()
        -
        -

        Since I don't believe this is documented elsewhere - ATTACH_FLAG_OS means that the file contents are stored in the OS rather than in the DB - as is the case for attachments. Exactly how they are stored (what path and filename) are still TBD. We will probably not be using the original filename but instead the attachment 'hash' as this will prevent folks from uploading PHP code onto misconfigured servers and executing it. It's easy to misconfigure servers because we can provide a rule for Apache, but folks using nginx will then be susceptible. Then there are those who don't understand these kinds of exploits and don't have any idea allowing uploaded PHP files to be executed by the server could be a problem. We also don't have any idea what executable types are served on their system - like .py, .pyc, .pl, .sh .cgi, .exe, .bat, .net, whatever.

        - -
        -
        - -
        -
        - - - - - - - -
        RedInode::getLastModified ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedInode::getName ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedInode::setName ( $newName)
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedInode::$attach
        -
        -private
        -
        - -

        Referenced by __construct().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedInode.js b/doc/html/classRedInode.js deleted file mode 100644 index 6bf4d5840..000000000 --- a/doc/html/classRedInode.js +++ /dev/null @@ -1,9 +0,0 @@ -var classRedInode = -[ - [ "__construct", "classRedInode.html#a21a6f92921c037c868e6fae30c7c51bb", null ], - [ "delete", "classRedInode.html#a5e8f09bc887725c3c448f8d72fe3edfc", null ], - [ "getLastModified", "classRedInode.html#a8503d4f247186e9e55bc42b37e067fb6", null ], - [ "getName", "classRedInode.html#aec5706105400764124db39d4bc68d458", null ], - [ "setName", "classRedInode.html#a3d76322f25d847b123b3df37a26dd04e", null ], - [ "$attach", "classRedInode.html#a7b317eb1230930154107ed51e54193f5", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedInode.png b/doc/html/classRedInode.png deleted file mode 100644 index 77027544c..000000000 Binary files a/doc/html/classRedInode.png and /dev/null differ diff --git a/doc/html/classRedMatrix_1_1Import_1_1Import-members.html b/doc/html/classRedMatrix_1_1Import_1_1Import-members.html deleted file mode 100644 index 2be66a2ea..000000000 --- a/doc/html/classRedMatrix_1_1Import_1_1Import-members.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classRedMatrix_1_1Import_1_1Import.html b/doc/html/classRedMatrix_1_1Import_1_1Import.html deleted file mode 100644 index 2119780c3..000000000 --- a/doc/html/classRedMatrix_1_1Import_1_1Import.html +++ /dev/null @@ -1,447 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\Import\Import Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\Import\Import Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         get_credentials ()
         
         get_itemlist ()
         
         get_item_ident ($item)
         
         get_item ($item_ident)
         
         get_taxonomy ($item_ident)
         
         get_children ($item_ident)
         
         convert_item ($item_ident)
         
         convert_taxonomy ($item_ident)
         
         convert_child ($child)
         
         store ($item, $update=false)
         
         run ()
         
        - - - - - - - -

        -Protected Attributes

         $itemlist = null
         
         $src_items = null
         
         $items = null
         
        - - - -

        -Private Attributes

         $credentials = null
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_child ( $child)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_item ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_taxonomy ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_children ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::get_credentials ()
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_item ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_item_ident ( $item)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::get_itemlist ()
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_taxonomy ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::run ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\Import\Import::store ( $item,
         $update = false 
        )
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$credentials = null
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$itemlist = null
        -
        -protected
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$items = null
        -
        -protected
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$src_items = null
        -
        -protected
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedMatrix_1_1Import_1_1Import.js b/doc/html/classRedMatrix_1_1Import_1_1Import.js deleted file mode 100644 index 03e429289..000000000 --- a/doc/html/classRedMatrix_1_1Import_1_1Import.js +++ /dev/null @@ -1,18 +0,0 @@ -var classRedMatrix_1_1Import_1_1Import = -[ - [ "convert_child", "classRedMatrix_1_1Import_1_1Import.html#a5434325afb2c633c52540127d717800a", null ], - [ "convert_item", "classRedMatrix_1_1Import_1_1Import.html#a107703a43a1b0ceb2af7ae470cb3f218", null ], - [ "convert_taxonomy", "classRedMatrix_1_1Import_1_1Import.html#addf6e53dacd971eaab49be4b17a767d6", null ], - [ "get_children", "classRedMatrix_1_1Import_1_1Import.html#a57561904b0f127e0d9a3e2c33688daf8", null ], - [ "get_credentials", "classRedMatrix_1_1Import_1_1Import.html#a24134929d9a8a682da2036a0bf326367", null ], - [ "get_item", "classRedMatrix_1_1Import_1_1Import.html#a27987a41cb703a796f1821baeb4774a2", null ], - [ "get_item_ident", "classRedMatrix_1_1Import_1_1Import.html#a772c28edf36aaf8e66007a95004c4059", null ], - [ "get_itemlist", "classRedMatrix_1_1Import_1_1Import.html#a855cd5a79b95d269ae8737fae774e3bc", null ], - [ "get_taxonomy", "classRedMatrix_1_1Import_1_1Import.html#ae3c6472bea1a44025bc2e152604eb20c", null ], - [ "run", "classRedMatrix_1_1Import_1_1Import.html#a8d138a9a7d4f79b81d3446ca216a602c", null ], - [ "store", "classRedMatrix_1_1Import_1_1Import.html#a33ed595de044c0ec1cd84cca719e31dc", null ], - [ "$credentials", "classRedMatrix_1_1Import_1_1Import.html#a864aac9fadb4846f5d9f840e8e0f440f", null ], - [ "$itemlist", "classRedMatrix_1_1Import_1_1Import.html#ad0d2bdc3b388220479063915b4f5c2fc", null ], - [ "$items", "classRedMatrix_1_1Import_1_1Import.html#a0a05dac405ccc5b617b7b7b3c8ed783c", null ], - [ "$src_items", "classRedMatrix_1_1Import_1_1Import.html#a88c2eeba8d0cba3e7c12a2c45ba0fbc6", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth-members.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth-members.html deleted file mode 100644 index f2f77b15f..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth-members.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html deleted file mode 100644 index 732ee436e..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html +++ /dev/null @@ -1,519 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\RedDAV\RedBasicAuth Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\RedDAV\RedBasicAuth Class Reference
        -
        -
        - -

        Authentication backend class for RedDAV. - More...

        -
        -Inheritance diagram for RedMatrix\RedDAV\RedBasicAuth:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         setCurrentUser ($name)
         
         getCurrentUser ()
         
         setTimezone ($timezone)
         Sets the timezone from the channel in RedBasicAuth. More...
         
         getTimezone ()
         Returns the timezone. More...
         
         setBrowserPlugin ($browser)
         Set browser plugin for SabreDAV. More...
         
         log ()
         Prints out all RedBasicAuth variables to logger(). More...
         
        - - - - - - - - - - - - - -

        -Public Attributes

         $channel_id = 0
         
         $channel_hash = ''
         
         $observer = ''
         
         $browser
         
         $owner_id = 0
         
         $owner_nick = ''
         
        - - - - - - - -

        -Protected Member Functions

         validateUserPass ($username, $password)
         Validates a username and password. More...
         
         setAuthenticated ($r)
         Sets variables and session parameters after successfull authentication. More...
         
        - - - - - -

        -Protected Attributes

         $channel_name = null
         
         $timezone = ''
         
        -

        Detailed Description

        -

        Authentication backend class for RedDAV.

        -

        This class also contains some data which is not necessary for authentication like timezone settings.

        -

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

        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::getCurrentUser ()
        -
        -

        Returns information about the currently logged-in channel.

        -

        If nobody is currently logged in, this method should return null.

        -
        See Also
        ::getCurrentUser
        -
        Returns
        string|null
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::getTimezone ()
        -
        - -

        Returns the timezone.

        -
        Returns
        string Return the channel's timezone.
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::log ()
        -
        - -

        Prints out all RedBasicAuth variables to logger().

        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::setAuthenticated ( $r)
        -
        -protected
        -
        - -

        Sets variables and session parameters after successfull authentication.

        -
        Parameters
        - - -
        array$rArray with the values for the authenticated channel.
        -
        -
        -
        Returns
        bool
        - -

        Referenced by RedMatrix\RedDAV\RedBasicAuth\validateUserPass().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::setBrowserPlugin ( $browser)
        -
        - -

        Set browser plugin for SabreDAV.

        -
        See Also
        RedBrowser::set_writeable()
        -
        Parameters
        - - -
        \Sabre\DAV\Browser\Plugin$browser
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::setCurrentUser ( $name)
        -
        -

        Sets the channel_name from the currently logged-in channel.

        -
        Parameters
        - - -
        string$nameThe channel's name
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::setTimezone ( $timezone)
        -
        - -

        Sets the timezone from the channel in RedBasicAuth.

        -

        Set in mod/cloud.php if the channel has a timezone set.

        -
        Parameters
        - - -
        string$timezoneThe channel's timezone.
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedBasicAuth::validateUserPass ( $username,
         $password 
        )
        -
        -protected
        -
        - -

        Validates a username and password.

        -

        Guest access is granted with the password "+++".

        -
        See Also
        ::validateUserPass
        -
        Parameters
        - - - -
        string$username
        string$password
        -
        -
        -
        Returns
        bool
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$browser
        -
        -
        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$channel_hash = ''
        -
        - -
        -
        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$channel_id = 0
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$channel_name = null
        -
        -protected
        -
        -
        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$observer = ''
        -
        - -
        -
        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$owner_id = 0
        -
        - -
        -
        - -
        -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$owner_nick = ''
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedBasicAuth::$timezone = ''
        -
        -protected
        -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.js b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.js deleted file mode 100644 index b48393cea..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.js +++ /dev/null @@ -1,19 +0,0 @@ -var classRedMatrix_1_1RedDAV_1_1RedBasicAuth = -[ - [ "getCurrentUser", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aa0b2a5fa9186d7dc0e637f1ecb379c42", null ], - [ "getTimezone", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6333c8ce58998bd11bf8102afe3b0748", null ], - [ "log", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b", null ], - [ "setAuthenticated", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a2926fe923baade564f2663632fa8c633", null ], - [ "setBrowserPlugin", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#adc72f36f0b2b17b20ea4df900afcd697", null ], - [ "setCurrentUser", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aadce020fb595c7943829d7f995d3f998", null ], - [ "setTimezone", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#af6d239fefed05859327ee8db626703f9", null ], - [ "validateUserPass", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6ece02655b780469e59e204c5979a624", null ], - [ "$browser", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3", null ], - [ "$channel_hash", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0", null ], - [ "$channel_id", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abe1defedb90ac8e3b6487e124e625521", null ], - [ "$channel_name", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a76fdb7fd5dd7376155abb5a58cd6fd69", null ], - [ "$observer", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a605aa09565a097316b80f0d17d6b5823", null ], - [ "$owner_id", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a1a23c349cc4699a8474505972684ea9c", null ], - [ "$owner_nick", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aad0ef0cc05c407de84dbfbf2050bbbbe", null ], - [ "$timezone", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.png b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.png deleted file mode 100644 index f361b604b..000000000 Binary files a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.png and /dev/null differ diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html deleted file mode 100644 index 0f0fb800b..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedMatrix\RedDAV\RedBrowser Member List
        -
        -
        - -

        This is the complete list of members for RedMatrix\RedDAV\RedBrowser, including all inherited members.

        - - - - - - - - - -
        $authRedMatrix\RedDAV\RedBrowserprivate
        __construct(&$auth)RedMatrix\RedDAV\RedBrowser
        findAttachHash($owner, $parentHash, $attachName)RedMatrix\RedDAV\RedBrowserprotected
        findAttachIdByHash($attachHash)RedMatrix\RedDAV\RedBrowserprotected
        generateDirectoryIndex($path)RedMatrix\RedDAV\RedBrowser
        getAssetUrl($assetName)RedMatrix\RedDAV\RedBrowserprotected
        htmlActionsPanel(DAV\INode $node, &$output)RedMatrix\RedDAV\RedBrowser
        set_writeable()RedMatrix\RedDAV\RedBrowser
        -
        - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html deleted file mode 100644 index 1b62c2967..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\RedDAV\RedBrowser Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\RedDAV\RedBrowser Class Reference
        -
        -
        - -

        Provides a DAV frontend for the webbrowser. - More...

        -
        -Inheritance diagram for RedMatrix\RedDAV\RedBrowser:
        -
        -
        - - - -
        - - - - - - - - - - - - - -

        -Public Member Functions

         __construct (&$auth)
         Constructor for RedBrowser class. More...
         
         set_writeable ()
         
         generateDirectoryIndex ($path)
         Creates the directory listing for the given path. More...
         
         htmlActionsPanel (DAV\INode $node, &$output)
         Creates a form to add new folders and upload files. More...
         
        - - - - - - - - - -

        -Protected Member Functions

         getAssetUrl ($assetName)
         
         findAttachHash ($owner, $parentHash, $attachName)
         Return the hash of an attachment. More...
         
         findAttachIdByHash ($attachHash)
         Returns an attachment's id for a given hash. More...
         
        - - - -

        -Private Attributes

         $auth
         
        -

        Detailed Description

        -

        Provides a DAV frontend for the webbrowser.

        -

        RedBrowser is a SabreDAV server-plugin to provide a view to the DAV storage for the webbrowser.

        -

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

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::__construct ($auth)
        -
        - -

        Constructor for RedBrowser class.

        -

        $enablePost will be activated through set_writeable() in a later stage. At the moment the write_storage permission is only valid for the whole folder. No file specific permissions yet.

        -
        Todo:
        disable enablePost by default and only activate if permissions grant edit rights.
        -

        Disable assets with $enableAssets = false. Should get some thumbnail views anyway.

        -
        Parameters
        - - -
        RedBasicAuth&$auth
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::findAttachHash ( $owner,
         $parentHash,
         $attachName 
        )
        -
        -protected
        -
        - -

        Return the hash of an attachment.

        -

        Given the owner, the parent folder and and attach name get the attachment hash.

        -
        Parameters
        - - - - -
        int$ownerThe owner_id
        string$hashThe parent's folder hash
        string$attachNameThe name of the attachment
        -
        -
        -
        Returns
        string
        - -

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

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::findAttachIdByHash ( $attachHash)
        -
        -protected
        -
        - -

        Returns an attachment's id for a given hash.

        -

        This id is used to access the attachment in filestorage/

        -
        Parameters
        - - -
        string$attachHashThe hash of an attachment
        -
        -
        -
        Returns
        string
        - -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::generateDirectoryIndex ( $path)
        -
        - -

        Creates the directory listing for the given path.

        -
        Parameters
        - - -
        string$pathwhich should be displayed
        -
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::getAssetUrl ( $assetName)
        -
        -protected
        -
        -

        This method takes a path/name of an asset and turns it into url suiteable for http access.

        -
        Parameters
        - - -
        string$assetName
        -
        -
        -
        Returns
        string
        - -

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

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::htmlActionsPanel (DAV\INode $node,
        $output 
        )
        -
        - -

        Creates a form to add new folders and upload files.

        -
        Parameters
        - - - -
        \Sabre\DAV\INode$node
        string&$output
        -
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedBrowser::set_writeable ()
        -
        -

        The DAV browser is instantiated after the auth module and directory classes but before we know the current directory and who the owner and observer are. So we add a pointer to the browser into the auth module and vice versa. Then when we've figured out what directory is actually being accessed, we call the following function to decide whether or not to show web elements which include writeable objects.

        -

        It only disable/enable the visible parts. Not the POST handler which handels the actual requests when uploading files or creating folders.

        -
        Todo:
        Maybe this whole way of doing this can be solved with some $server->subscribeEvent().
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedBrowser::$auth
        -
        -private
        -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js deleted file mode 100644 index 849cba824..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js +++ /dev/null @@ -1,11 +0,0 @@ -var classRedMatrix_1_1RedDAV_1_1RedBrowser = -[ - [ "__construct", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a8161f2a0be205412e263c947b5ec46c5", null ], - [ "findAttachHash", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad4bc0516533c62733f38043a37267d78", null ], - [ "findAttachIdByHash", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd", null ], - [ "generateDirectoryIndex", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09", null ], - [ "getAssetUrl", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d", null ], - [ "htmlActionsPanel", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf", null ], - [ "set_writeable", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19", null ], - [ "$auth", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.png b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.png deleted file mode 100644 index c549bff94..000000000 Binary files a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.png and /dev/null differ diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory-members.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory-members.html deleted file mode 100644 index b6cf43ad2..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory-members.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.html deleted file mode 100644 index ba9db5894..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.html +++ /dev/null @@ -1,642 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\RedDAV\RedDirectory Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\RedDAV\RedDirectory Class Reference
        -
        -
        - -

        RedDirectory class. - More...

        -
        -Inheritance diagram for RedMatrix\RedDAV\RedDirectory:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($ext_path, &$auth_plugin)
         Sets up the directory node, expects a full path. More...
         
         getChildren ()
         Returns an array with all the child nodes. More...
         
         getChild ($name)
         Returns a child by name. More...
         
         getName ()
         Returns the name of the directory. More...
         
         setName ($name)
         Renames the directory. More...
         
         createFile ($name, $data=null)
         Creates a new file in the directory. More...
         
         createDirectory ($name)
         Creates a new subdirectory. More...
         
         childExists ($name)
         Checks if a child exists. More...
         
         getDir ()
         
         getLastModified ()
         Returns the last modification time for the directory, as a UNIX timestamp. More...
         
         getQuotaInfo ()
         Return quota usage. More...
         
        - - - -

        -Private Member Functions

         log ()
         
        - - - - - - - - - - - - - -

        -Private Attributes

         $red_path
         
         $folder_hash
         
         $ext_path
         
         $root_dir = ''
         
         $auth
         
         $os_path = ''
         
        -

        Detailed Description

        -

        RedDirectory class.

        -

        A class that represents a directory.

        -

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

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::__construct ( $ext_path,
        $auth_plugin 
        )
        -
        - -

        Sets up the directory node, expects a full path.

        -
        Parameters
        - - - -
        string$ext_patha full path
        RedBasicAuth&$auth_plugin
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::childExists ( $name)
        -
        - -

        Checks if a child exists.

        -
        Parameters
        - - -
        string$nameThe name to check if it exists.
        -
        -
        -
        Returns
        boolean
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::createDirectory ( $name)
        -
        - -

        Creates a new subdirectory.

        -
        Parameters
        - - -
        string$namethe directory to create
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::createFile ( $name,
         $data = null 
        )
        -
        - -

        Creates a new file in the directory.

        -

        Data will either be supplied as a stream resource, or in certain cases as a string. Keep in mind that you may have to support either.

        -

        After successful creation of the file, you may choose to return the ETag of the new file here.

        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - - -
        string$nameName of the file
        resource | string$dataInitial payload
        -
        -
        -
        Returns
        null|string ETag
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getChild ( $name)
        -
        - -

        Returns a child by name.

        -
        Exceptions
        - - - -
        \Sabre\DAV\Exception\Forbidden
        \Sabre\DAV\Exception\NotFound
        -
        -
        -
        Parameters
        - - -
        string$name
        -
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getChildren ()
        -
        - -

        Returns an array with all the child nodes.

        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\Forbidden
        -
        -
        -
        Returns
        array []
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getDir ()
        -
        -
        Todo:
        add description of what this function does.
        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\NotFound
        -
        -
        -
        Returns
        void
        - -

        Referenced by RedMatrix\RedDAV\RedDirectory\__construct().

        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getLastModified ()
        -
        - -

        Returns the last modification time for the directory, as a UNIX timestamp.

        -

        It looks for the last edited file in the folder. If it is an empty folder it returns the lastmodified time of the folder itself, to prevent zero timestamps.

        -
        Returns
        int last modification time in UNIX timestamp
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getName ()
        -
        - -

        Returns the name of the directory.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::getQuotaInfo ()
        -
        - -

        Return quota usage.

        -

        Should guests relly see the used/free values from filesystem of the complete store directory?

        -
        Returns
        array with used and free values in bytes.
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::log ()
        -
        -private
        -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedDirectory::setName ( $name)
        -
        - -

        Renames the directory.

        -
        Todo:
        handle duplicate directory name
        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - -
        string$nameThe new name of the directory.
        -
        -
        -
        Returns
        void
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$auth
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$ext_path
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$folder_hash
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$os_path = ''
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$red_path
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedDirectory::$root_dir = ''
        -
        -private
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.js b/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.js deleted file mode 100644 index bbb92425f..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.js +++ /dev/null @@ -1,21 +0,0 @@ -var classRedMatrix_1_1RedDAV_1_1RedDirectory = -[ - [ "__construct", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a76b58fe5223e565c97f1b9af93031a99", null ], - [ "childExists", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a964b13fde1a5da6f76b51ca5519234dc", null ], - [ "createDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aca0e8d574ea66a0e210f571700663c62", null ], - [ "createFile", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a58e750256cdc2f0f79fbe8d5463ffefe", null ], - [ "getChild", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a1a37850bdd1f188abd6160559698d5d7", null ], - [ "getChildren", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a9b9a0b5bfa4de1f78e6cafaa534b6f6a", null ], - [ "getDir", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a825dc5f3e0f83f50736c16daa6a4809d", null ], - [ "getLastModified", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5", null ], - [ "getName", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df", null ], - [ "getQuotaInfo", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db443ed3c84938b4352fe515bf8d68", null ], - [ "log", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59", null ], - [ "setName", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a14ac61d31a031d139956763db4e03956", null ], - [ "$auth", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9", null ], - [ "$ext_path", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9", null ], - [ "$folder_hash", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a2fc4e6b9be2108bbaa1ca1a03fd6d44e", null ], - [ "$os_path", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a17ea47e34cb76b6e79f36ebed790d76a", null ], - [ "$red_path", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d", null ], - [ "$root_dir", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a438066fb1565fbcffa22c12d5ce23695", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.png b/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.png deleted file mode 100644 index e3eeebb23..000000000 Binary files a/doc/html/classRedMatrix_1_1RedDAV_1_1RedDirectory.png and /dev/null differ diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile-members.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile-members.html deleted file mode 100644 index 2206f8cbf..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile-members.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.html deleted file mode 100644 index 1f48aa7b7..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.html +++ /dev/null @@ -1,479 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\RedDAV\RedFile Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\RedDAV\RedFile Class Reference
        -
        -
        - -

        This class represents a file in DAV. - More...

        -
        -Inheritance diagram for RedMatrix\RedDAV\RedFile:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         __construct ($name, $data, &$auth)
         
         getName ()
         Returns the name of the file. More...
         
         setName ($newName)
         Renames the file. More...
         
         put ($data)
         Updates the data of the file. More...
         
         get ()
         Returns the raw data. More...
         
         getETag ()
         Returns the ETag for a file. More...
         
         getContentType ()
         Returns the mime-type for a file. More...
         
         getSize ()
         Returns the size of the node, in bytes. More...
         
         getLastModified ()
         Returns the last modification time for the file, as a unix timestamp. More...
         
         delete ()
         Delete the file. More...
         
        - - - - - - - -

        -Private Attributes

         $data
         
         $auth
         
         $name
         
        -

        Detailed Description

        -

        This class represents a file in DAV.

        -

        It provides all functions to work with files in Red's cloud through DAV protocol.

        -

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

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        RedMatrix\RedDAV\RedFile::__construct ( $name,
         $data,
        $auth 
        )
        -
        -

        Sets up the node, expects a full path name.

        -
        Parameters
        - - - - -
        string$name
        array$datafrom attach table
        &$auth
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::delete ()
        -
        - -

        Delete the file.

        -

        This method checks the permissions and then calls attach_delete() function to actually remove the file.

        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\Forbidden
        -
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::get ()
        -
        - -

        Returns the raw data.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::getContentType ()
        -
        - -

        Returns the mime-type for a file.

        -

        If null is returned, we'll assume application/octet-stream

        -
        Returns
        mixed
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::getETag ()
        -
        - -

        Returns the ETag for a file.

        -

        An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change. The ETag is an arbitrary string, but MUST be surrounded by double-quotes.

        -

        Return null if the ETag can not effectively be determined.

        -
        Returns
        null|string
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::getLastModified ()
        -
        - -

        Returns the last modification time for the file, as a unix timestamp.

        -
        Returns
        int last modification time in UNIX timestamp
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::getName ()
        -
        - -

        Returns the name of the file.

        -
        Returns
        string
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\RedDAV\RedFile::getSize ()
        -
        - -

        Returns the size of the node, in bytes.

        -
        Returns
        int filesize in bytes
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedFile::put ( $data)
        -
        - -

        Updates the data of the file.

        -
        Parameters
        - - -
        resource$data
        -
        -
        -
        Returns
        void
        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\RedDAV\RedFile::setName ( $newName)
        -
        - -

        Renames the file.

        -
        Exceptions
        - - -
        Sabre\DAV\Exception\Forbidden
        -
        -
        -
        Parameters
        - - -
        string$nameThe new name of the file.
        -
        -
        -
        Returns
        void
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedFile::$auth
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedFile::$data
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\RedDAV\RedFile::$name
        -
        -private
        -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.js b/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.js deleted file mode 100644 index c65382641..000000000 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.js +++ /dev/null @@ -1,16 +0,0 @@ -var classRedMatrix_1_1RedDAV_1_1RedFile = -[ - [ "__construct", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a05798eac84c578152ff21758261c6ac6", null ], - [ "delete", "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe", null ], - [ "get", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8", null ], - [ "getContentType", "classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e", null ], - [ "getETag", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689", null ], - [ "getLastModified", "classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25", null ], - [ "getName", "classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d", null ], - [ "getSize", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a07e1b19e7aaf3dcce822e9be8823a87d", null ], - [ "put", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0", null ], - [ "setName", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a0350cb4e0327e1f9922869a48ee04f1d", null ], - [ "$auth", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215", null ], - [ "$data", "classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc", null ], - [ "$name", "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2", null ] -]; \ No newline at end of file diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.png b/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.png deleted file mode 100644 index 9a1837e1c..000000000 Binary files a/doc/html/classRedMatrix_1_1RedDAV_1_1RedFile.png and /dev/null differ diff --git a/doc/html/classRedmatrix_1_1Import_1_1Import.html b/doc/html/classRedmatrix_1_1Import_1_1Import.html deleted file mode 100644 index 3920dd3d9..000000000 --- a/doc/html/classRedmatrix_1_1Import_1_1Import.html +++ /dev/null @@ -1,446 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\Import\Import Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\Import\Import Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         get_credentials ()
         
         get_itemlist ()
         
         get_item_ident ($item)
         
         get_item ($item_ident)
         
         get_taxonomy ($item_ident)
         
         get_children ($item_ident)
         
         convert_item ($item_ident)
         
         convert_taxonomy ($item_ident)
         
         convert_child ($child)
         
         store ($item, $update=false)
         
         run ()
         
        - - - - - - - -

        -Protected Attributes

         $itemlist = null
         
         $src_items = null
         
         $items = null
         
        - - - -

        -Private Attributes

         $credentials = null
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_child ( $child)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_item ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::convert_taxonomy ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_children ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::get_credentials ()
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_item ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_item_ident ( $item)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::get_itemlist ()
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - - -
        RedMatrix\Import\Import::get_taxonomy ( $item_ident)
        -
        - -

        Referenced by RedMatrix\Import\Import\run().

        - -
        -
        - -
        -
        - - - - - - - -
        RedMatrix\Import\Import::run ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedMatrix\Import\Import::store ( $item,
         $update = false 
        )
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$credentials = null
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$itemlist = null
        -
        -protected
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$items = null
        -
        -protected
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        RedMatrix\Import\Import::$src_items = null
        -
        -protected
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        diff --git a/doc/html/classTemplate-members.html b/doc/html/classTemplate-members.html deleted file mode 100644 index c3620c316..000000000 --- a/doc/html/classTemplate-members.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Template Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $dTemplate
        $debugTemplate
        $doneTemplate
        $langTemplate
        $nameTemplatestatic
        $nodesTemplate
        $rTemplate
        $replaceTemplate
        $searchTemplate
        $stackTemplate
        _build_nodes($s)Templateprivate
        _get_var($name, $retNoKey=false)Templateprivate
        _pop_stack()Templateprivate
        _preg_error()Templateprivate
        _push_stack()Templateprivate
        _replcb($m)Templateprivate
        _replcb_debug($args)Templateprivate
        _replcb_for($args)Templateprivate
        _replcb_if($args)Templateprivate
        _replcb_inc($args)Templateprivate
        _replcb_node($m)Templateprivate
        get_markup_template($file, $root='')Template
        replace($s, $r)Templateprivate
        replace_macros($s, $r)Template
        var_replace($s)Templateprivate
        -
        - diff --git a/doc/html/classTemplate.html b/doc/html/classTemplate.html deleted file mode 100644 index 9ea7d2643..000000000 --- a/doc/html/classTemplate.html +++ /dev/null @@ -1,742 +0,0 @@ - - - - - - -The Red Matrix: Template Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        -
        -Inheritance diagram for Template:
        -
        -
        - - -ITemplateEngine - -
        - - - - - - -

        -Public Member Functions

         replace_macros ($s, $r)
         
         get_markup_template ($file, $root='')
         
        - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

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

        -Static Public Attributes

        static $name ="internal"
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Private Member Functions

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

        Member Function Documentation

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

        Referenced by replace_macros().

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

        Referenced by _replcb_for(), and _replcb_inc().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Template::_preg_error ()
        -
        -private
        -
        - -

        Referenced by _build_nodes(), and replace_macros().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        Template::_push_stack ()
        -
        -private
        -
        - -

        Referenced by _replcb_for(), and _replcb_inc().

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

        DEBUG node

        -

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

        -

        replace node with

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

        FOR node

        -

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

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

        IF node

        -

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

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

        INC node

        -

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

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        Template::_replcb_node ( $m)
        -
        -private
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        Template::get_markup_template ( $file,
         $root = '' 
        )
        -
        - -

        Implements ITemplateEngine.

        - -

        Referenced by _replcb_inc().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        Template::replace ( $s,
         $r 
        )
        -
        -private
        -
        - -

        Referenced by _replcb_for(), and _replcb_inc().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        Template::replace_macros ( $s,
         $r 
        )
        -
        - -

        Implements ITemplateEngine.

        - -

        Referenced by replace().

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

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

        - -

        Referenced by replace_macros().

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        Template::$d = false
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$debug =false
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$done = false
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$lang = null
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        Template::$name ="internal"
        -
        -static
        -
        - -

        Referenced by _get_var().

        - -
        -
        - -
        -
        - - - - -
        Template::$nodes = array()
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$r
        -
        -
        - -
        -
        - - - - -
        Template::$replace
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$search
        -
        - -
        -
        - -
        -
        - - - - -
        Template::$stack = array()
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classTemplate.js b/doc/html/classTemplate.js deleted file mode 100644 index 9b5a06744..000000000 --- a/doc/html/classTemplate.js +++ /dev/null @@ -1,27 +0,0 @@ -var classTemplate = -[ - [ "_build_nodes", "classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4", null ], - [ "_get_var", "classTemplate.html#aae9c4d761ea1298e745e8052d7910194", null ], - [ "_pop_stack", "classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7", null ], - [ "_preg_error", "classTemplate.html#a37c15f6d1ade500943629f27a62808b7", null ], - [ "_push_stack", "classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29", null ], - [ "_replcb", "classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934", null ], - [ "_replcb_debug", "classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e", null ], - [ "_replcb_for", "classTemplate.html#abf71098c80fd1f218a59452b3408309e", null ], - [ "_replcb_if", "classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228", null ], - [ "_replcb_inc", "classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677", null ], - [ "_replcb_node", "classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee", null ], - [ "get_markup_template", "classTemplate.html#afd97b4b1e7754a550e67c0ea79159059", null ], - [ "replace", "classTemplate.html#a285b5b2007dbbf733476273df3fed4ef", null ], - [ "replace_macros", "classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b", null ], - [ "var_replace", "classTemplate.html#abbc484016ddf5d818f55b823cae6feb0", null ], - [ "$d", "classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38", null ], - [ "$debug", "classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a", null ], - [ "$done", "classTemplate.html#abda4c8d049f70553338eae7c905e9d5c", null ], - [ "$lang", "classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8", null ], - [ "$nodes", "classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1", null ], - [ "$r", "classTemplate.html#aac9a4638f11271e1b1dcc9f247242718", null ], - [ "$replace", "classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10", null ], - [ "$search", "classTemplate.html#a317d535946dc065c35dd5cd38380e6c6", null ], - [ "$stack", "classTemplate.html#a6f0efc256688c36110180b501067ff11", null ] -]; \ No newline at end of file diff --git a/doc/html/classTemplate.png b/doc/html/classTemplate.png deleted file mode 100644 index 3c073c726..000000000 Binary files a/doc/html/classTemplate.png and /dev/null differ diff --git a/doc/html/classZotDriver-members.html b/doc/html/classZotDriver-members.html deleted file mode 100644 index eb4c0a6b2..000000000 --- a/doc/html/classZotDriver-members.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        ZotDriver Member List
        -
        -
        - -

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

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

        -Protected Member Functions

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

        Member Function Documentation

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

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

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

        -Public Member Functions

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

        -Public Attributes

         $mysqli = true
         
         $connected = false
         
         $error = false
         
        - - - - - -

        -Private Attributes

         $debug = 0
         
         $db
         
        -

        Detailed Description

        -

        MySQL database class

        -

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

        -

        Constructor & Destructor Documentation

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

        Member Function Documentation

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

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

        - -
        -
        -

        Member Data Documentation

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

        Referenced by __construct(), and getdb().

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

        Referenced by q().

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

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

        - - - - - - - - - - - - - - - - - - - - - - - - - -
        $connecteddba_driver
        $dbdba_driverprotected
        $debugdba_driverprotected
        $errordba_driver
        __construct($server, $port, $user, $pass, $db, $install=false)dba_driver
        __destruct()dba_driver
        close()dba_driver
        concat($fld, $sep)dba_driver
        connect($server, $port, $user, $pass, $db)dba_driver
        dbg($dbg)dba_driver
        escape($str)dba_driver
        escapebin($str)dba_driver
        get_install_script()dba_driver
        get_null_date()dba_driver
        getdriver()dba_driver
        install($server, $user, $pass, $db)dba_driver
        INSTALL_SCRIPTdba_driver
        NULL_DATEdba_driver
        optimize_table($table)dba_driver
        q($sql)dba_driver
        quote_interval($txt)dba_driver
        unescapebin($str)dba_driver
        UTC_NOWdba_driver
        utcnow()dba_driver
        -
        - diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html deleted file mode 100644 index 4c917a0dd..000000000 --- a/doc/html/classdba__driver.html +++ /dev/null @@ -1,764 +0,0 @@ - - - - - - -The Red Matrix: dba_driver Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        - -

        abstract database driver class. - More...

        -
        -Inheritance diagram for dba_driver:
        -
        -
        - - -dba_mysql -dba_mysqli -dba_postgres - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         connect ($server, $port, $user, $pass, $db)
         Connect to the database. More...
         
         q ($sql)
         Perform a DB query with the SQL statement $sql. More...
         
         escape ($str)
         Escape a string before being passed to a DB query. More...
         
         close ()
         Close the database connection. More...
         
         getdriver ()
         Return text name for db driver. More...
         
         __construct ($server, $port, $user, $pass, $db, $install=false)
         
         get_null_date ()
         
         get_install_script ()
         
         utcnow ()
         
         install ($server, $user, $pass, $db)
         
         dbg ($dbg)
         Sets the database driver's debugging state. More...
         
         __destruct ()
         
         quote_interval ($txt)
         
         optimize_table ($table)
         
         concat ($fld, $sep)
         
         escapebin ($str)
         
         unescapebin ($str)
         
        - - - - - - - - - - - -

        -Public Attributes

        const INSTALL_SCRIPT ='install/schema_mysql.sql'
         
        const NULL_DATE = '0000-00-00 00:00:00'
         
        const UTC_NOW = 'UTC_TIMESTAMP()'
         
         $connected = false
         
         $error = false
         
        - - - - - -

        -Protected Attributes

         $debug = 0
         
         $db
         
        -

        Detailed Description

        -

        abstract database driver class.

        -

        This class gets extended by the real database driver classes, e.g. dba_mysql, dba_mysqli.

        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_driver::__construct ( $server,
         $port,
         $user,
         $pass,
         $db,
         $install = false 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_driver::__destruct ()
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - -
        - - - - - - - -
        dba_driver::close ()
        -
        -abstract
        -
        - -

        Close the database connection.

        -

        This abstract function needs to be implemented in the real driver.

        - -

        Referenced by __destruct().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        dba_driver::concat ( $fld,
         $sep 
        )
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_driver::connect ( $server,
         $port,
         $user,
         $pass,
         $db 
        )
        -
        -abstract
        -
        - -

        Connect to the database.

        -

        This abstract function needs to be implemented in the real driver.

        -
        Parameters
        - - - - - - -
        string$serverDB server name
        string$portDB port
        string$userDB username
        string$passDB password
        string$dbdatabase name
        -
        -
        -
        Returns
        bool
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - - -
        dba_driver::dbg ( $dbg)
        -
        - -

        Sets the database driver's debugging state.

        -
        Parameters
        - - -
        int$dbg0 to disable debugging
        -
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        dba_driver::escape ( $str)
        -
        -abstract
        -
        - -

        Escape a string before being passed to a DB query.

        -

        This abstract function needs to be implemented in the real driver.

        -
        Parameters
        - - -
        string$strThe string to escape.
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_driver::escapebin ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_driver::get_install_script ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_driver::get_null_date ()
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        dba_driver::getdriver ()
        -
        -abstract
        -
        - -

        Return text name for db driver.

        -

        This abstract function needs to be implemented in the real driver.

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_driver::install ( $server,
         $user,
         $pass,
         $db 
        )
        -
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - - -
        dba_driver::optimize_table ( $table)
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        dba_driver::q ( $sql)
        -
        -abstract
        -
        - -

        Perform a DB query with the SQL statement $sql.

        -

        This abstract function needs to be implemented in the real driver.

        -
        Parameters
        - - -
        string$sqlThe SQL query to execute
        -
        -
        - -

        Referenced by optimize_table().

        - -
        -
        - -
        -
        - - - - - - - - -
        dba_driver::quote_interval ( $txt)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_driver::unescapebin ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_driver::utcnow ()
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        dba_driver::$connected = false
        -
        - -

        Referenced by dba_postgres\connect().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        dba_driver::$db
        -
        -protected
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        dba_driver::$debug = 0
        -
        -protected
        -
        - -
        -
        - -
        -
        - - - - -
        dba_driver::$error = false
        -
        - -
        -
        - -
        -
        - - - - -
        const dba_driver::INSTALL_SCRIPT ='install/schema_mysql.sql'
        -
        - -
        -
        - -
        -
        - - - - -
        const dba_driver::NULL_DATE = '0000-00-00 00:00:00'
        -
        - -
        -
        - -
        -
        - - - - -
        const dba_driver::UTC_NOW = 'UTC_TIMESTAMP()'
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classdba__driver.js b/doc/html/classdba__driver.js deleted file mode 100644 index ea24b64f9..000000000 --- a/doc/html/classdba__driver.js +++ /dev/null @@ -1,27 +0,0 @@ -var classdba__driver = -[ - [ "__construct", "classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186", null ], - [ "__destruct", "classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721", null ], - [ "close", "classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975", null ], - [ "concat", "classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4", null ], - [ "connect", "classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc", null ], - [ "dbg", "classdba__driver.html#adcc1f8955120fec0708bce39202d0422", null ], - [ "escape", "classdba__driver.html#afc95ffa103a3290581b537670cde5311", null ], - [ "escapebin", "classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd", null ], - [ "get_install_script", "classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48", null ], - [ "get_null_date", "classdba__driver.html#a65a5c7b355ab5529a43049e160006426", null ], - [ "getdriver", "classdba__driver.html#a02165fc4bee63d040ebd963a4fa82a14", null ], - [ "install", "classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746", null ], - [ "optimize_table", "classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092", null ], - [ "q", "classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555", null ], - [ "quote_interval", "classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9", null ], - [ "unescapebin", "classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155", null ], - [ "utcnow", "classdba__driver.html#ad700712879719bee23752b8f424d97d0", null ], - [ "$connected", "classdba__driver.html#a205f6535e399700b6fca2492f96f2229", null ], - [ "$db", "classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6", null ], - [ "$debug", "classdba__driver.html#af48e2afeded5285766bf92e22123ed03", null ], - [ "$error", "classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c", null ], - [ "INSTALL_SCRIPT", "classdba__driver.html#a98d8523dcedda316085b4d4f856b6583", null ], - [ "NULL_DATE", "classdba__driver.html#afce39394c010ea589d99a21579b2c31e", null ], - [ "UTC_NOW", "classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8", null ] -]; \ No newline at end of file diff --git a/doc/html/classdba__driver.png b/doc/html/classdba__driver.png deleted file mode 100644 index b9cc8c832..000000000 Binary files a/doc/html/classdba__driver.png and /dev/null differ diff --git a/doc/html/classdba__mysql-members.html b/doc/html/classdba__mysql-members.html deleted file mode 100644 index a74cfc456..000000000 --- a/doc/html/classdba__mysql-members.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dba_mysql Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - -
        $connecteddba_driver
        $dbdba_driverprotected
        $debugdba_driverprotected
        $errordba_driver
        __construct($server, $port, $user, $pass, $db, $install=false)dba_driver
        __destruct()dba_driver
        close()dba_mysql
        concat($fld, $sep)dba_driver
        connect($server, $port, $user, $pass, $db)dba_mysql
        dbg($dbg)dba_driver
        escape($str)dba_mysql
        escapebin($str)dba_driver
        get_install_script()dba_driver
        get_null_date()dba_driver
        getdriver()dba_mysql
        install($server, $user, $pass, $db)dba_driver
        INSTALL_SCRIPTdba_driver
        NULL_DATEdba_driver
        optimize_table($table)dba_driver
        q($sql)dba_mysql
        quote_interval($txt)dba_driver
        unescapebin($str)dba_driver
        UTC_NOWdba_driver
        utcnow()dba_driver
        -
        - diff --git a/doc/html/classdba__mysql.html b/doc/html/classdba__mysql.html deleted file mode 100644 index c0bd780a2..000000000 --- a/doc/html/classdba__mysql.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - -The Red Matrix: dba_mysql Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_mysql Class Reference
        -
        -
        -
        -Inheritance diagram for dba_mysql:
        -
        -
        - - -dba_driver - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         connect ($server, $port, $user, $pass, $db)
         
         q ($sql)
         
         escape ($str)
         
         close ()
         
         getdriver ()
         
        - Public Member Functions inherited from dba_driver
         connect ($server, $port, $user, $pass, $db)
         Connect to the database. More...
         
         q ($sql)
         Perform a DB query with the SQL statement $sql. More...
         
         escape ($str)
         Escape a string before being passed to a DB query. More...
         
         close ()
         Close the database connection. More...
         
         getdriver ()
         Return text name for db driver. More...
         
         __construct ($server, $port, $user, $pass, $db, $install=false)
         
         get_null_date ()
         
         get_install_script ()
         
         utcnow ()
         
         install ($server, $user, $pass, $db)
         
         dbg ($dbg)
         Sets the database driver's debugging state. More...
         
         __destruct ()
         
         quote_interval ($txt)
         
         optimize_table ($table)
         
         concat ($fld, $sep)
         
         escapebin ($str)
         
         unescapebin ($str)
         
        - - - - - - - - - - - - - - - - - -

        -Additional Inherited Members

        - Public Attributes inherited from dba_driver
        const INSTALL_SCRIPT ='install/schema_mysql.sql'
         
        const NULL_DATE = '0000-00-00 00:00:00'
         
        const UTC_NOW = 'UTC_TIMESTAMP()'
         
         $connected = false
         
         $error = false
         
        - Protected Attributes inherited from dba_driver
         $debug = 0
         
         $db
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        dba_mysql::close ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_mysql::connect ( $server,
         $port,
         $user,
         $pass,
         $db 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_mysql::escape ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_mysql::getdriver ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_mysql::q ( $sql)
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classdba__mysql.js b/doc/html/classdba__mysql.js deleted file mode 100644 index ec4c52eaf..000000000 --- a/doc/html/classdba__mysql.js +++ /dev/null @@ -1,8 +0,0 @@ -var classdba__mysql = -[ - [ "close", "classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e", null ], - [ "connect", "classdba__mysql.html#a1887338627ce0e28786839363014bd0b", null ], - [ "escape", "classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e", null ], - [ "getdriver", "classdba__mysql.html#a31011edd67b6b394355bf04cedb498d0", null ], - [ "q", "classdba__mysql.html#ac3fd60c278f400907322dac578754a99", null ] -]; \ No newline at end of file diff --git a/doc/html/classdba__mysql.png b/doc/html/classdba__mysql.png deleted file mode 100644 index 38ea168b7..000000000 Binary files a/doc/html/classdba__mysql.png and /dev/null differ diff --git a/doc/html/classdba__mysqli-members.html b/doc/html/classdba__mysqli-members.html deleted file mode 100644 index 0c43b330e..000000000 --- a/doc/html/classdba__mysqli-members.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dba_mysqli Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - -
        $connecteddba_driver
        $dbdba_driverprotected
        $debugdba_driverprotected
        $errordba_driver
        __construct($server, $port, $user, $pass, $db, $install=false)dba_driver
        __destruct()dba_driver
        close()dba_mysqli
        concat($fld, $sep)dba_driver
        connect($server, $port, $user, $pass, $db)dba_mysqli
        dbg($dbg)dba_driver
        escape($str)dba_mysqli
        escapebin($str)dba_driver
        get_install_script()dba_driver
        get_null_date()dba_driver
        getdriver()dba_mysqli
        install($server, $user, $pass, $db)dba_driver
        INSTALL_SCRIPTdba_driver
        NULL_DATEdba_driver
        optimize_table($table)dba_driver
        q($sql)dba_mysqli
        quote_interval($txt)dba_driver
        unescapebin($str)dba_driver
        UTC_NOWdba_driver
        utcnow()dba_driver
        -
        - diff --git a/doc/html/classdba__mysqli.html b/doc/html/classdba__mysqli.html deleted file mode 100644 index df0c38b6a..000000000 --- a/doc/html/classdba__mysqli.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - -The Red Matrix: dba_mysqli Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_mysqli Class Reference
        -
        -
        -
        -Inheritance diagram for dba_mysqli:
        -
        -
        - - -dba_driver - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         connect ($server, $port, $user, $pass, $db)
         
         q ($sql)
         
         escape ($str)
         
         close ()
         
         getdriver ()
         
        - Public Member Functions inherited from dba_driver
         connect ($server, $port, $user, $pass, $db)
         Connect to the database. More...
         
         q ($sql)
         Perform a DB query with the SQL statement $sql. More...
         
         escape ($str)
         Escape a string before being passed to a DB query. More...
         
         close ()
         Close the database connection. More...
         
         getdriver ()
         Return text name for db driver. More...
         
         __construct ($server, $port, $user, $pass, $db, $install=false)
         
         get_null_date ()
         
         get_install_script ()
         
         utcnow ()
         
         install ($server, $user, $pass, $db)
         
         dbg ($dbg)
         Sets the database driver's debugging state. More...
         
         __destruct ()
         
         quote_interval ($txt)
         
         optimize_table ($table)
         
         concat ($fld, $sep)
         
         escapebin ($str)
         
         unescapebin ($str)
         
        - - - - - - - - - - - - - - - - - -

        -Additional Inherited Members

        - Public Attributes inherited from dba_driver
        const INSTALL_SCRIPT ='install/schema_mysql.sql'
         
        const NULL_DATE = '0000-00-00 00:00:00'
         
        const UTC_NOW = 'UTC_TIMESTAMP()'
         
         $connected = false
         
         $error = false
         
        - Protected Attributes inherited from dba_driver
         $debug = 0
         
         $db
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        dba_mysqli::close ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_mysqli::connect ( $server,
         $port,
         $user,
         $pass,
         $db 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_mysqli::escape ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_mysqli::getdriver ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_mysqli::q ( $sql)
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classdba__mysqli.js b/doc/html/classdba__mysqli.js deleted file mode 100644 index ab2d66be7..000000000 --- a/doc/html/classdba__mysqli.js +++ /dev/null @@ -1,8 +0,0 @@ -var classdba__mysqli = -[ - [ "close", "classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55", null ], - [ "connect", "classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1", null ], - [ "escape", "classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64", null ], - [ "getdriver", "classdba__mysqli.html#a6eb6c578c6928908321e5e6da866e1db", null ], - [ "q", "classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec", null ] -]; \ No newline at end of file diff --git a/doc/html/classdba__mysqli.png b/doc/html/classdba__mysqli.png deleted file mode 100644 index 1667829fc..000000000 Binary files a/doc/html/classdba__mysqli.png and /dev/null differ diff --git a/doc/html/classdba__postgres-members.html b/doc/html/classdba__postgres-members.html deleted file mode 100644 index 2796566d5..000000000 --- a/doc/html/classdba__postgres-members.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dba_postgres Member List
        -
        - -
        - diff --git a/doc/html/classdba__postgres.html b/doc/html/classdba__postgres.html deleted file mode 100644 index c88750564..000000000 --- a/doc/html/classdba__postgres.html +++ /dev/null @@ -1,477 +0,0 @@ - - - - - - -The Red Matrix: dba_postgres Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_postgres Class Reference
        -
        -
        -
        -Inheritance diagram for dba_postgres:
        -
        -
        - - -dba_driver - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         connect ($server, $port, $user, $pass, $db)
         
         q ($sql)
         
         escape ($str)
         
         escapebin ($str)
         
         unescapebin ($str)
         
         close ()
         
         quote_interval ($txt)
         
         escape_identifier ($str)
         
         optimize_table ($table)
         
         concat ($fld, $sep)
         
         getdriver ()
         
        - Public Member Functions inherited from dba_driver
         connect ($server, $port, $user, $pass, $db)
         Connect to the database. More...
         
         q ($sql)
         Perform a DB query with the SQL statement $sql. More...
         
         escape ($str)
         Escape a string before being passed to a DB query. More...
         
         close ()
         Close the database connection. More...
         
         getdriver ()
         Return text name for db driver. More...
         
         __construct ($server, $port, $user, $pass, $db, $install=false)
         
         get_null_date ()
         
         get_install_script ()
         
         utcnow ()
         
         install ($server, $user, $pass, $db)
         
         dbg ($dbg)
         Sets the database driver's debugging state. More...
         
         __destruct ()
         
         quote_interval ($txt)
         
         optimize_table ($table)
         
         concat ($fld, $sep)
         
         escapebin ($str)
         
         unescapebin ($str)
         
        - - - - - - - - - - - - - - - - - - -

        -Public Attributes

        const INSTALL_SCRIPT ='install/schema_postgres.sql'
         
        const NULL_DATE = '0001-01-01 00:00:00'
         
        const UTC_NOW = "now() at time zone 'UTC'"
         
        - Public Attributes inherited from dba_driver
        const INSTALL_SCRIPT ='install/schema_mysql.sql'
         
        const NULL_DATE = '0000-00-00 00:00:00'
         
        const UTC_NOW = 'UTC_TIMESTAMP()'
         
         $connected = false
         
         $error = false
         
        - - - - - - -

        -Additional Inherited Members

        - Protected Attributes inherited from dba_driver
         $debug = 0
         
         $db
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - -
        dba_postgres::close ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        dba_postgres::concat ( $fld,
         $sep 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_postgres::connect ( $server,
         $port,
         $user,
         $pass,
         $db 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::escape ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::escape_identifier ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::escapebin ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        dba_postgres::getdriver ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::optimize_table ( $table)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::q ( $sql)
        -
        - -

        Referenced by connect().

        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::quote_interval ( $txt)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dba_postgres::unescapebin ( $str)
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        const dba_postgres::INSTALL_SCRIPT ='install/schema_postgres.sql'
        -
        - -
        -
        - -
        -
        - - - - -
        const dba_postgres::NULL_DATE = '0001-01-01 00:00:00'
        -
        - -
        -
        - -
        -
        - - - - -
        const dba_postgres::UTC_NOW = "now() at time zone 'UTC'"
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classdba__postgres.js b/doc/html/classdba__postgres.js deleted file mode 100644 index 64f18d9d9..000000000 --- a/doc/html/classdba__postgres.js +++ /dev/null @@ -1,17 +0,0 @@ -var classdba__postgres = -[ - [ "close", "classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058", null ], - [ "concat", "classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa", null ], - [ "connect", "classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e", null ], - [ "escape", "classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f", null ], - [ "escape_identifier", "classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127", null ], - [ "escapebin", "classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc", null ], - [ "getdriver", "classdba__postgres.html#ae0f834413e57cf0735ae7b64b2f71e68", null ], - [ "optimize_table", "classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90", null ], - [ "q", "classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a", null ], - [ "quote_interval", "classdba__postgres.html#a56f926f218155c88807e0e06f6817a72", null ], - [ "unescapebin", "classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9", null ], - [ "INSTALL_SCRIPT", "classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7", null ], - [ "NULL_DATE", "classdba__postgres.html#aeb404a85974d6c5df30c21650888000b", null ], - [ "UTC_NOW", "classdba__postgres.html#ace80a204e34b20b9907650399cce02a3", null ] -]; \ No newline at end of file diff --git a/doc/html/classdba__postgres.png b/doc/html/classdba__postgres.png deleted file mode 100644 index b57f604c4..000000000 Binary files a/doc/html/classdba__postgres.png and /dev/null differ diff --git a/doc/html/classeasywebdav_1_1client_1_1Client-members.html b/doc/html/classeasywebdav_1_1client_1_1Client-members.html deleted file mode 100644 index f9c83a773..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1Client-members.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classeasywebdav_1_1client_1_1Client.html b/doc/html/classeasywebdav_1_1client_1_1Client.html deleted file mode 100644 index 8c8b6ad60..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1Client.html +++ /dev/null @@ -1,737 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.client.Client Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        easywebdav.client.Client Class Reference
        -
        -
        -
        -Inheritance diagram for easywebdav.client.Client:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        def __init__
         
        def cd
         
        def mkdir
         
        def mkdirs
         
        def rmdir
         
        def delete
         
        def upload
         
        def download
         
        def ls
         
        def exists
         
        - - - - - - - -

        -Public Attributes

         baseurl
         
         cwd
         
         session
         
        - - - - - - - - - -

        -Private Member Functions

        def _send
         
        def _get_url
         
        def _upload
         
        def _download
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.__init__ ( self,
         host,
         port = 0,
         auth = None,
         username = None,
         password = None,
         protocol = 'http',
         verify_ssl = True,
         path = None,
         cert = None,
         session = None 
        )
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client._download ( self,
         fileobj,
         response 
        )
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client._get_url ( self,
         path 
        )
        -
        -private
        -
        - -

        Referenced by easywebdav.client.Client._send().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client._send ( self,
         method,
         path,
         expected_code,
         kwargs 
        )
        -
        -private
        -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client._upload ( self,
         fileobj,
         remote_path 
        )
        -
        -private
        -
        - -

        Referenced by easywebdav.client.Client.upload().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.cd ( self,
         path 
        )
        -
        - -

        Referenced by easywebdav.client.Client.mkdirs().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.delete ( self,
         path 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.download ( self,
         remote_path,
         local_path_or_fileobj 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.exists ( self,
         remote_path 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.ls ( self,
         remote_path = '.' 
        )
        -
        - -

        Referenced by easywebdav.client.Client.ls().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.mkdir ( self,
         path,
         safe = False 
        )
        -
        - -

        Referenced by easywebdav.client.Client.mkdirs().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.mkdirs ( self,
         path 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.rmdir ( self,
         path,
         safe = False 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.Client.upload ( self,
         local_path_or_fileobj,
         remote_path 
        )
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - -
        easywebdav.client.Client.baseurl
        -
        -
        - -
        -
        - - - - -
        easywebdav.client.Client.cwd
        -
        -
        - -
        -
        - - - - -
        easywebdav.client.Client.session
        -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classeasywebdav_1_1client_1_1Client.js b/doc/html/classeasywebdav_1_1client_1_1Client.js deleted file mode 100644 index 9f02bc0b4..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1Client.js +++ /dev/null @@ -1,20 +0,0 @@ -var classeasywebdav_1_1client_1_1Client = -[ - [ "__init__", "classeasywebdav_1_1client_1_1Client.html#aa17aa551ee348830d09dbf3a5616aebb", null ], - [ "_download", "classeasywebdav_1_1client_1_1Client.html#a37094196d06e70b0ed6f41322f599faf", null ], - [ "_get_url", "classeasywebdav_1_1client_1_1Client.html#a01e56f6f57b17cbc6e4b759175cb6204", null ], - [ "_send", "classeasywebdav_1_1client_1_1Client.html#ae6c8e7680e2c76df128e2c5ec4b79516", null ], - [ "_upload", "classeasywebdav_1_1client_1_1Client.html#a119e2f4cdd0e266a747bf8e92de51997", null ], - [ "cd", "classeasywebdav_1_1client_1_1Client.html#a5af2c65d101a6d6a9cd557a4e2945755", null ], - [ "delete", "classeasywebdav_1_1client_1_1Client.html#a1bcdcd91226e9c014556bb3eb2a37a55", null ], - [ "download", "classeasywebdav_1_1client_1_1Client.html#adc879105d0991fe6bc4e97888e547356", null ], - [ "exists", "classeasywebdav_1_1client_1_1Client.html#a7a98a4a257becc7fa7fc8e0c8ed9fbd1", null ], - [ "ls", "classeasywebdav_1_1client_1_1Client.html#ad843202f103b9ab9fbc70014dcb0049c", null ], - [ "mkdir", "classeasywebdav_1_1client_1_1Client.html#a0601c37a357cccb10fa05af95fbf306f", null ], - [ "mkdirs", "classeasywebdav_1_1client_1_1Client.html#a57116f274a2b4bf0c3a21978558bfe96", null ], - [ "rmdir", "classeasywebdav_1_1client_1_1Client.html#a65654cbf48e7d123ce52d8bd3335b03d", null ], - [ "upload", "classeasywebdav_1_1client_1_1Client.html#a0a5c361cb58763f5a363f786480c29cc", null ], - [ "baseurl", "classeasywebdav_1_1client_1_1Client.html#a6b4ef9c67ea641e4e42eb04123876a5f", null ], - [ "cwd", "classeasywebdav_1_1client_1_1Client.html#a8129b9db86535dd99218cdba49fe3fb4", null ], - [ "session", "classeasywebdav_1_1client_1_1Client.html#a3ae2c2f4b07692c2e81fa4c9643fd4cf", null ] -]; \ No newline at end of file diff --git a/doc/html/classeasywebdav_1_1client_1_1Client.png b/doc/html/classeasywebdav_1_1client_1_1Client.png deleted file mode 100644 index f2ae334c2..000000000 Binary files a/doc/html/classeasywebdav_1_1client_1_1Client.png and /dev/null differ diff --git a/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.html b/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.html deleted file mode 100644 index 3aece2a06..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.client.ConnectionFailed Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        easywebdav.client.ConnectionFailed Class Reference
        -
        -
        -
        -Inheritance diagram for easywebdav.client.ConnectionFailed:
        -
        -
        - - -easywebdav.client.WebdavException - -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.png b/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.png deleted file mode 100644 index fe0f7ad7d..000000000 Binary files a/doc/html/classeasywebdav_1_1client_1_1ConnectionFailed.png and /dev/null differ diff --git a/doc/html/classeasywebdav_1_1client_1_1OperationFailed-members.html b/doc/html/classeasywebdav_1_1client_1_1OperationFailed-members.html deleted file mode 100644 index 8b26404f3..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1OperationFailed-members.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.html b/doc/html/classeasywebdav_1_1client_1_1OperationFailed.html deleted file mode 100644 index 654ceea1e..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.client.OperationFailed Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        easywebdav.client.OperationFailed Class Reference
        -
        -
        -
        -Inheritance diagram for easywebdav.client.OperationFailed:
        -
        -
        - - -easywebdav.client.WebdavException - -
        - - - - -

        -Public Member Functions

        def __init__
         
        - - - - - - - - - - - -

        -Public Attributes

         method
         
         path
         
         expected_code
         
         actual_code
         
         reason
         
        - - - -

        -Static Private Attributes

        tuple _OPERATIONS
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.OperationFailed.__init__ ( self,
         method,
         path,
         expected_code,
         actual_code 
        )
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        tuple easywebdav.client.OperationFailed._OPERATIONS
        -
        -staticprivate
        -
        -Initial value:
        1 = dict(
        -
        2  HEAD = "get header",
        -
        3  GET = "download",
        -
        4  PUT = "upload",
        -
        5  DELETE = "delete",
        -
        6  MKCOL = "create directory",
        -
        7  PROPFIND = "list directory",
        -
        8  )
        -
        -
        -
        - -
        -
        - - - - -
        easywebdav.client.OperationFailed.actual_code
        -
        - -
        -
        - -
        -
        - - - - -
        easywebdav.client.OperationFailed.expected_code
        -
        - -
        -
        - -
        -
        - - - - -
        easywebdav.client.OperationFailed.method
        -
        - -
        -
        - -
        -
        - - - - -
        easywebdav.client.OperationFailed.path
        -
        - -
        -
        - -
        -
        - - - - -
        easywebdav.client.OperationFailed.reason
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.js b/doc/html/classeasywebdav_1_1client_1_1OperationFailed.js deleted file mode 100644 index 8d835b583..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.js +++ /dev/null @@ -1,9 +0,0 @@ -var classeasywebdav_1_1client_1_1OperationFailed = -[ - [ "__init__", "classeasywebdav_1_1client_1_1OperationFailed.html#acfdca9ff27c865ea1c07449ce4e8d339", null ], - [ "actual_code", "classeasywebdav_1_1client_1_1OperationFailed.html#a3c42e9edf259eca30ac7fbcb7e181eac", null ], - [ "expected_code", "classeasywebdav_1_1client_1_1OperationFailed.html#aa2fb71a2b07dfc6edd208059463d4052", null ], - [ "method", "classeasywebdav_1_1client_1_1OperationFailed.html#a606a07fbfc1fd05d94c12695c831ae77", null ], - [ "path", "classeasywebdav_1_1client_1_1OperationFailed.html#a95d48cca4944cc68a6220f6f9030ad70", null ], - [ "reason", "classeasywebdav_1_1client_1_1OperationFailed.html#ad1026cc529cf839da18542f6907df022", null ] -]; \ No newline at end of file diff --git a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.png b/doc/html/classeasywebdav_1_1client_1_1OperationFailed.png deleted file mode 100644 index dbed03503..000000000 Binary files a/doc/html/classeasywebdav_1_1client_1_1OperationFailed.png and /dev/null differ diff --git a/doc/html/classeasywebdav_1_1client_1_1WebdavException.html b/doc/html/classeasywebdav_1_1client_1_1WebdavException.html deleted file mode 100644 index 5ed8f1c14..000000000 --- a/doc/html/classeasywebdav_1_1client_1_1WebdavException.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.client.WebdavException Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        easywebdav.client.WebdavException Class Reference
        -
        -
        -
        -Inheritance diagram for easywebdav.client.WebdavException:
        -
        -
        - - -easywebdav.client.ConnectionFailed -easywebdav.client.OperationFailed - -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classeasywebdav_1_1client_1_1WebdavException.png b/doc/html/classeasywebdav_1_1client_1_1WebdavException.png deleted file mode 100644 index 20b71dc05..000000000 Binary files a/doc/html/classeasywebdav_1_1client_1_1WebdavException.png and /dev/null differ diff --git a/doc/html/classenotify-members.html b/doc/html/classenotify-members.html deleted file mode 100644 index 65681ca44..000000000 --- a/doc/html/classenotify-members.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        enotify Member List
        -
        -
        - -

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

        - - -
        send($params)enotifystatic
        -
        - diff --git a/doc/html/classenotify.html b/doc/html/classenotify.html deleted file mode 100644 index 2dc2d8640..000000000 --- a/doc/html/classenotify.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -The Red Matrix: enotify Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        enotify Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static send ($params)
         
        -

        Member Function Documentation

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

        Send a multipart/alternative message with Text and HTML versions

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

        Referenced by notification().

        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classes.html b/doc/html/classes.html deleted file mode 100644 index 97c940891..000000000 --- a/doc/html/classes.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -The Red Matrix: Class Index - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Class Index
        -
        -
        -
        A | B | C | D | E | F | I | O | P | R | T | W | Z
        - - - - - - - - - - - - - - - - -
          A  
        -
        Conversation   FKOAuthDataStore   photo_gd   
          W  
        -
          D  
        -
        FriendicaSmarty   photo_imagick   
        App   FriendicaSmartyEngine   ProtoDriver   WebdavException (easywebdav.client)   
          B  
        -
        dba_driver   
          I  
        -
          R  
        -
          Z  
        -
        dba_mysql   
        BaseObject   dba_mysqli   Import (RedMatrix\Import)   RedBasicAuth (RedMatrix\RedDAV)   ZotDriver   
          C  
        -
        dba_postgres   Item   RedBrowser (RedMatrix\RedDAV)   ZotSH (zotsh)   
          E  
        -
        ITemplateEngine   RedDirectory (RedMatrix\RedDAV)   
        Cache   
          O  
        -
        RedFile (RedMatrix\RedDAV)   
        Client (easywebdav.client)   enotify   
          T  
        -
        CommandNotFound (zotsh)   
          F  
        -
        OperationFailed (easywebdav.client)   
        ConnectionFailed (easywebdav.client)   
          P  
        -
        Template   
        FKOAuth1   
        photo_driver   
        -
        A | B | C | D | E | F | I | O | P | R | T | W | Z
        -
        -
        - diff --git a/doc/html/classphoto__driver-members.html b/doc/html/classphoto__driver-members.html deleted file mode 100644 index f22362fb4..000000000 --- a/doc/html/classphoto__driver-members.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        photo_driver Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $heightphoto_driverprotected
        $imagephoto_driverprotected
        $typephoto_driverprotected
        $typesphoto_driverprotected
        $validphoto_driverprotected
        $widthphoto_driverprotected
        __construct($data, $type='')photo_driver
        __destruct()photo_driver
        cropImage($max, $x, $y, $w, $h)photo_driver
        destroy()photo_driver
        doScaleImage($new_width, $new_height)photo_driver
        flip($horiz=true, $vert=false)photo_driver
        getExt()photo_driver
        getHeight()photo_driver
        getImage()photo_driver
        getType()photo_driver
        getWidth()photo_driver
        imageString()photo_driver
        is_valid()photo_driver
        load($data, $type)photo_driver
        orient($filename)photo_driver
        rotate($degrees)photo_driver
        save($arr)photo_driver
        saveImage($path)photo_driver
        scaleImage($max)photo_driver
        scaleImageSquare($dim)photo_driver
        scaleImageUp($min)photo_driver
        setDimensions()photo_driver
        store($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')photo_driver
        supportedTypes()photo_driver
        -
        - diff --git a/doc/html/classphoto__driver.html b/doc/html/classphoto__driver.html deleted file mode 100644 index f6c922574..000000000 --- a/doc/html/classphoto__driver.html +++ /dev/null @@ -1,945 +0,0 @@ - - - - - - -The Red Matrix: photo_driver Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_driver Class Reference
        -
        -
        -
        -Inheritance diagram for photo_driver:
        -
        -
        - - -photo_gd -photo_imagick - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         supportedTypes ()
         
         load ($data, $type)
         
         destroy ()
         
         setDimensions ()
         
         getImage ()
         
         doScaleImage ($new_width, $new_height)
         
         rotate ($degrees)
         
         flip ($horiz=true, $vert=false)
         
         cropImage ($max, $x, $y, $w, $h)
         
         imageString ()
         
         __construct ($data, $type='')
         
         __destruct ()
         
         is_valid ()
         
         getWidth ()
         
         getHeight ()
         
         saveImage ($path)
         
         getType ()
         
         getExt ()
         
         scaleImage ($max)
         
         scaleImageUp ($min)
         
         scaleImageSquare ($dim)
         
         orient ($filename)
         
         save ($arr)
         
         store ($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')
         
        - - - - - - - - - - - - - -

        -Protected Attributes

         $image
         
         $width
         
         $height
         
         $valid
         
         $type
         
         $types
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_driver::__construct ( $data,
         $type = '' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_driver::__destruct ()
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        photo_driver::cropImage ( $max,
         $x,
         $y,
         $w,
         $h 
        )
        -
        -abstract
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        photo_driver::destroy ()
        -
        -abstract
        -
        - -

        Referenced by __destruct().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        photo_driver::doScaleImage ( $new_width,
         $new_height 
        )
        -
        -abstract
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        photo_driver::flip ( $horiz = true,
         $vert = false 
        )
        -
        -abstract
        -
        - -

        Referenced by orient().

        - -
        -
        - -
        -
        - - - - - - - -
        photo_driver::getExt ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_driver::getHeight ()
        -
        - -

        Referenced by save(), and store().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        photo_driver::getImage ()
        -
        -abstract
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_driver::getType ()
        -
        -
        - -
        -
        - - - - - - - -
        photo_driver::getWidth ()
        -
        - -

        Referenced by save(), and store().

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        photo_driver::imageString ()
        -
        -abstract
        -
        - -

        Referenced by save(), saveImage(), and store().

        - -
        -
        - - - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        photo_driver::load ( $data,
         $type 
        )
        -
        -abstract
        -
        - -

        Referenced by __construct().

        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::orient ( $filename)
        -
        -

        This function is a bit unusual, because it is operating on a file, but you must first create an image from that file to initialise the type and check validity of the image.

        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - - -
        photo_driver::rotate ( $degrees)
        -
        -abstract
        -
        - -

        Referenced by orient().

        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::save ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::saveImage ( $path)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::scaleImage ( $max)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::scaleImageSquare ( $dim)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photo_driver::scaleImageUp ( $min)
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        photo_driver::setDimensions ()
        -
        -abstract
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        photo_driver::store ( $aid,
         $uid,
         $xchan,
         $rid,
         $filename,
         $album,
         $scale,
         $profile = 0,
         $allow_cid = '',
         $allow_gid = '',
         $deny_cid = '',
         $deny_gid = '' 
        )
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - - - - -
        photo_driver::supportedTypes ()
        -
        -abstract
        -
        - -

        Referenced by __construct().

        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$height
        -
        -protected
        -
        -
        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$image
        -
        -protected
        -
        - -

        Referenced by photo_gd\getImage(), and photo_imagick\getImage().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$type
        -
        -protected
        -
        - -

        Referenced by __construct(), getType(), and photo_imagick\load().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$types
        -
        -protected
        -
        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$valid
        -
        -protected
        -
        - -

        Referenced by is_valid().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        photo_driver::$width
        -
        -protected
        -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classphoto__driver.js b/doc/html/classphoto__driver.js deleted file mode 100644 index 258b2eb60..000000000 --- a/doc/html/classphoto__driver.js +++ /dev/null @@ -1,33 +0,0 @@ -var classphoto__driver = -[ - [ "__construct", "classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae", null ], - [ "__destruct", "classphoto__driver.html#ae4501abdc9651359f81d036b63625686", null ], - [ "cropImage", "classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e", null ], - [ "destroy", "classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813", null ], - [ "doScaleImage", "classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f", null ], - [ "flip", "classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832", null ], - [ "getExt", "classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba", null ], - [ "getHeight", "classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468", null ], - [ "getImage", "classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5", null ], - [ "getType", "classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3", null ], - [ "getWidth", "classphoto__driver.html#acc30486acee9e89e32701f44a1738117", null ], - [ "imageString", "classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd", null ], - [ "is_valid", "classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab", null ], - [ "load", "classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712", null ], - [ "orient", "classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d", null ], - [ "rotate", "classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec", null ], - [ "save", "classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac", null ], - [ "saveImage", "classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3", null ], - [ "scaleImage", "classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0", null ], - [ "scaleImageSquare", "classphoto__driver.html#a56634842b071b96502716e9843ea5361", null ], - [ "scaleImageUp", "classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce", null ], - [ "setDimensions", "classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143", null ], - [ "store", "classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b", null ], - [ "supportedTypes", "classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da", null ], - [ "$height", "classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80", null ], - [ "$image", "classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55", null ], - [ "$type", "classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03", null ], - [ "$types", "classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03", null ], - [ "$valid", "classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9", null ], - [ "$width", "classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1", null ] -]; \ No newline at end of file diff --git a/doc/html/classphoto__driver.png b/doc/html/classphoto__driver.png deleted file mode 100644 index 5ce112bd2..000000000 Binary files a/doc/html/classphoto__driver.png and /dev/null differ diff --git a/doc/html/classphoto__gd-members.html b/doc/html/classphoto__gd-members.html deleted file mode 100644 index cd85d4020..000000000 --- a/doc/html/classphoto__gd-members.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        photo_gd Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $heightphoto_driverprotected
        $imagephoto_driverprotected
        $typephoto_driverprotected
        $typesphoto_driverprotected
        $validphoto_driverprotected
        $widthphoto_driverprotected
        __construct($data, $type='')photo_driver
        __destruct()photo_driver
        cropImage($max, $x, $y, $w, $h)photo_gd
        destroy()photo_gd
        doScaleImage($dest_width, $dest_height)photo_gd
        flip($horiz=true, $vert=false)photo_gd
        getExt()photo_driver
        getHeight()photo_driver
        getImage()photo_gd
        getType()photo_driver
        getWidth()photo_driver
        imageString()photo_gd
        is_valid()photo_driver
        load($data, $type)photo_gd
        orient($filename)photo_driver
        rotate($degrees)photo_gd
        save($arr)photo_driver
        saveImage($path)photo_driver
        scaleImage($max)photo_driver
        scaleImageSquare($dim)photo_driver
        scaleImageUp($min)photo_driver
        setDimensions()photo_gd
        store($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')photo_driver
        supportedTypes()photo_gd
        -
        - diff --git a/doc/html/classphoto__gd.html b/doc/html/classphoto__gd.html deleted file mode 100644 index 53d819bfb..000000000 --- a/doc/html/classphoto__gd.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - -The Red Matrix: photo_gd Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_gd Class Reference
        -
        -
        -
        -Inheritance diagram for photo_gd:
        -
        -
        - - -photo_driver - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         supportedTypes ()
         
         load ($data, $type)
         
         setDimensions ()
         
         destroy ()
         
         getImage ()
         
         doScaleImage ($dest_width, $dest_height)
         
         rotate ($degrees)
         
         flip ($horiz=true, $vert=false)
         
         cropImage ($max, $x, $y, $w, $h)
         
         imageString ()
         
        - Public Member Functions inherited from photo_driver
         supportedTypes ()
         
         load ($data, $type)
         
         destroy ()
         
         setDimensions ()
         
         getImage ()
         
         doScaleImage ($new_width, $new_height)
         
         rotate ($degrees)
         
         flip ($horiz=true, $vert=false)
         
         cropImage ($max, $x, $y, $w, $h)
         
         imageString ()
         
         __construct ($data, $type='')
         
         __destruct ()
         
         is_valid ()
         
         getWidth ()
         
         getHeight ()
         
         saveImage ($path)
         
         getType ()
         
         getExt ()
         
         scaleImage ($max)
         
         scaleImageUp ($min)
         
         scaleImageSquare ($dim)
         
         orient ($filename)
         
         save ($arr)
         
         store ($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')
         
        - - - - - - - - - - - - - - -

        -Additional Inherited Members

        - Protected Attributes inherited from photo_driver
         $image
         
         $width
         
         $height
         
         $valid
         
         $type
         
         $types
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        photo_gd::cropImage ( $max,
         $x,
         $y,
         $w,
         $h 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_gd::destroy ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_gd::doScaleImage ( $dest_width,
         $dest_height 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_gd::flip ( $horiz = true,
         $vert = false 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_gd::getImage ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_gd::imageString ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_gd::load ( $data,
         $type 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photo_gd::rotate ( $degrees)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_gd::setDimensions ()
        -
        - -

        Referenced by cropImage(), doScaleImage(), flip(), load(), and rotate().

        - -
        -
        - -
        -
        - - - - - - - -
        photo_gd::supportedTypes ()
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classphoto__gd.js b/doc/html/classphoto__gd.js deleted file mode 100644 index c9992ce63..000000000 --- a/doc/html/classphoto__gd.js +++ /dev/null @@ -1,13 +0,0 @@ -var classphoto__gd = -[ - [ "cropImage", "classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c", null ], - [ "destroy", "classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1", null ], - [ "doScaleImage", "classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754", null ], - [ "flip", "classphoto__gd.html#a44cedef376044018702d9355ddc813ce", null ], - [ "getImage", "classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484", null ], - [ "imageString", "classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00", null ], - [ "load", "classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9", null ], - [ "rotate", "classphoto__gd.html#a77f87730b11093b76980c541159df37d", null ], - [ "setDimensions", "classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e", null ], - [ "supportedTypes", "classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd", null ] -]; \ No newline at end of file diff --git a/doc/html/classphoto__gd.png b/doc/html/classphoto__gd.png deleted file mode 100644 index 405dcaccd..000000000 Binary files a/doc/html/classphoto__gd.png and /dev/null differ diff --git a/doc/html/classphoto__imagick-members.html b/doc/html/classphoto__imagick-members.html deleted file mode 100644 index 6e8be9219..000000000 --- a/doc/html/classphoto__imagick-members.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        photo_imagick Member List
        -
        -
        - -

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

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $heightphoto_driverprotected
        $imagephoto_driverprotected
        $typephoto_driverprotected
        $typesphoto_driverprotected
        $validphoto_driverprotected
        $widthphoto_driverprotected
        __construct($data, $type='')photo_driver
        __destruct()photo_driver
        cropImage($max, $x, $y, $w, $h)photo_imagick
        destroy()photo_imagick
        doScaleImage($dest_width, $dest_height)photo_imagick
        flip($horiz=true, $vert=false)photo_imagick
        get_FormatsMap()photo_imagick
        getExt()photo_driver
        getHeight()photo_driver
        getImage()photo_imagick
        getType()photo_driver
        getWidth()photo_driver
        imageString()photo_imagick
        is_valid()photo_driver
        load($data, $type)photo_imagick
        orient($filename)photo_driver
        rotate($degrees)photo_imagick
        save($arr)photo_driver
        saveImage($path)photo_driver
        scaleImage($max)photo_driver
        scaleImageSquare($dim)photo_driver
        scaleImageUp($min)photo_driver
        setDimensions()photo_imagick
        store($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')photo_driver
        supportedTypes()photo_imagick
        -
        - diff --git a/doc/html/classphoto__imagick.html b/doc/html/classphoto__imagick.html deleted file mode 100644 index bc6554cd0..000000000 --- a/doc/html/classphoto__imagick.html +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - -The Red Matrix: photo_imagick Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_imagick Class Reference
        -
        -
        -
        -Inheritance diagram for photo_imagick:
        -
        -
        - - -photo_driver - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         supportedTypes ()
         
         get_FormatsMap ()
         
         load ($data, $type)
         
         destroy ()
         
         setDimensions ()
         
         getImage ()
         
         doScaleImage ($dest_width, $dest_height)
         
         rotate ($degrees)
         
         flip ($horiz=true, $vert=false)
         
         cropImage ($max, $x, $y, $w, $h)
         
         imageString ()
         
        - Public Member Functions inherited from photo_driver
         supportedTypes ()
         
         load ($data, $type)
         
         destroy ()
         
         setDimensions ()
         
         getImage ()
         
         doScaleImage ($new_width, $new_height)
         
         rotate ($degrees)
         
         flip ($horiz=true, $vert=false)
         
         cropImage ($max, $x, $y, $w, $h)
         
         imageString ()
         
         __construct ($data, $type='')
         
         __destruct ()
         
         is_valid ()
         
         getWidth ()
         
         getHeight ()
         
         saveImage ($path)
         
         getType ()
         
         getExt ()
         
         scaleImage ($max)
         
         scaleImageUp ($min)
         
         scaleImageSquare ($dim)
         
         orient ($filename)
         
         save ($arr)
         
         store ($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')
         
        - - - - - - - - - - - - - - -

        -Additional Inherited Members

        - Protected Attributes inherited from photo_driver
         $image
         
         $width
         
         $height
         
         $valid
         
         $type
         
         $types
         
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        photo_imagick::cropImage ( $max,
         $x,
         $y,
         $w,
         $h 
        )
        -
        -

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

        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::destroy ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_imagick::doScaleImage ( $dest_width,
         $dest_height 
        )
        -
        -

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

        - -

        Referenced by cropImage().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_imagick::flip ( $horiz = true,
         $vert = false 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::get_FormatsMap ()
        -
        - -

        Referenced by load().

        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::getImage ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::imageString ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_imagick::load ( $data,
         $type 
        )
        -
        -

        Setup the image to the format it will be saved to

        -

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

        -

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

        -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        photo_imagick::rotate ( $degrees)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::setDimensions ()
        -
        - -

        Referenced by doScaleImage(), flip(), load(), and rotate().

        - -
        -
        - -
        -
        - - - - - - - -
        photo_imagick::supportedTypes ()
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classphoto__imagick.js b/doc/html/classphoto__imagick.js deleted file mode 100644 index b43d1e9e5..000000000 --- a/doc/html/classphoto__imagick.js +++ /dev/null @@ -1,14 +0,0 @@ -var classphoto__imagick = -[ - [ "cropImage", "classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4", null ], - [ "destroy", "classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207", null ], - [ "doScaleImage", "classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66", null ], - [ "flip", "classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393", null ], - [ "get_FormatsMap", "classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4", null ], - [ "getImage", "classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc", null ], - [ "imageString", "classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019", null ], - [ "load", "classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8", null ], - [ "rotate", "classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f", null ], - [ "setDimensions", "classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb", null ], - [ "supportedTypes", "classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7", null ] -]; \ No newline at end of file diff --git a/doc/html/classphoto__imagick.png b/doc/html/classphoto__imagick.png deleted file mode 100644 index c39b45b2e..000000000 Binary files a/doc/html/classphoto__imagick.png and /dev/null differ diff --git a/doc/html/classzotsh_1_1CommandNotFound.html b/doc/html/classzotsh_1_1CommandNotFound.html deleted file mode 100644 index abe6f3ad1..000000000 --- a/doc/html/classzotsh_1_1CommandNotFound.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -The Red Matrix: zotsh.CommandNotFound Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        zotsh.CommandNotFound Class Reference
        -
        -
        -
        -Inheritance diagram for zotsh.CommandNotFound:
        -
        -
        - - - -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classzotsh_1_1CommandNotFound.png b/doc/html/classzotsh_1_1CommandNotFound.png deleted file mode 100644 index 96209f425..000000000 Binary files a/doc/html/classzotsh_1_1CommandNotFound.png and /dev/null differ diff --git a/doc/html/classzotsh_1_1ZotSH-members.html b/doc/html/classzotsh_1_1ZotSH-members.html deleted file mode 100644 index 6627fea31..000000000 --- a/doc/html/classzotsh_1_1ZotSH-members.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/classzotsh_1_1ZotSH.html b/doc/html/classzotsh_1_1ZotSH.html deleted file mode 100644 index 9a986f87e..000000000 --- a/doc/html/classzotsh_1_1ZotSH.html +++ /dev/null @@ -1,1005 +0,0 @@ - - - - - - -The Red Matrix: zotsh.ZotSH Class Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - - -
        -
        -Inheritance diagram for zotsh.ZotSH:
        -
        -
        - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        def __init__
         
        def host
         
        def host
         
        def hostname
         
        def hostname
         
        def session
         
        def session
         
        def PS1
         
        def get_host_session
         
        def do
         
        def cmd_exists
         
        def cmd_mkdir
         
        def cmd_mkdirs
         
        def cmd_rmdir
         
        def cmd_delete
         
        def cmd_upload
         
        def cmd_download
         
        def cmd_host
         
        def cmd_pwd
         
        def cmd_ls
         
        def cmd_lpwd
         
        def cmd_lcd
         
        def cmd_lls
         
        def cmd_help
         
        def cmd_cat
         
        - - - - - - - - - - - -

        -Public Attributes

         sessions
         
         host
         
         session
         
         davclient
         
         hostname
         
        - - - -

        -Static Public Attributes

        list commands
         
        - - - - - - - -

        -Private Attributes

         _host
         
         _hostname
         
         _session
         
        -

        Constructor & Destructor Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.__init__ ( self,
         host,
         session = None,
         davclient = None 
        )
        -
        - -
        -
        -

        Member Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_cat ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_delete ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_download ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_exists ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_help ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_host ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_lcd ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_lls ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_lpwd ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_ls ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_mkdir ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_mkdirs ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_pwd ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_rmdir ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.cmd_upload ( self,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.do ( self,
         command,
         args 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.get_host_session ( self,
         host = None 
        )
        -
        - -

        Referenced by zotsh.ZotSH.cmd_host().

        - -
        -
        - -
        -
        - - - - - - - - -
        def zotsh.ZotSH.host ( self)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.host ( self,
         host 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def zotsh.ZotSH.hostname ( self)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.hostname ( self,
         hostname 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def zotsh.ZotSH.PS1 ( self)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def zotsh.ZotSH.session ( self)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def zotsh.ZotSH.session ( self,
         session 
        )
        -
        - -
        -
        -

        Member Data Documentation

        - -
        -
        - - - - - -
        - - - - -
        zotsh.ZotSH._host
        -
        -private
        -
        - -

        Referenced by zotsh.ZotSH.host(), and zotsh.ZotSH.hostname().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        zotsh.ZotSH._hostname
        -
        -private
        -
        - -

        Referenced by zotsh.ZotSH.hostname().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        zotsh.ZotSH._session
        -
        -private
        -
        - -

        Referenced by zotsh.ZotSH.session().

        - -
        -
        - -
        -
        - - - - - -
        - - - - -
        list zotsh.ZotSH.commands
        -
        -static
        -
        -Initial value:
        1 = ['cd','ls','exists','mkdir','mkdirs','rmdir','delete','upload','download',
        -
        2  'host', 'pwd','cat',
        -
        3  'lcd','lpwd', 'lls',
        -
        4  'quit', 'help']
        -
        -

        Referenced by zotsh.ZotSH.cmd_help(), and zotsh.ZotSH.do().

        - -
        -
        - -
        -
        - - - - -
        zotsh.ZotSH.davclient
        -
        - -

        Referenced by zotsh.ZotSH.do(), and zotsh.ZotSH.PS1().

        - -
        -
        - -
        -
        - - - - -
        zotsh.ZotSH.host
        -
        - -

        Referenced by zotsh.ZotSH.cmd_host(), and zotsh.ZotSH.host().

        - -
        -
        - -
        -
        - - - - -
        zotsh.ZotSH.hostname
        -
        - -

        Referenced by zotsh.ZotSH.hostname(), and zotsh.ZotSH.PS1().

        - -
        -
        - -
        -
        - - - - -
        zotsh.ZotSH.session
        -
        -
        - -
        -
        - - - - -
        zotsh.ZotSH.sessions
        -
        - -
        -
        -
        The documentation for this class was generated from the following file: -
        -
        - diff --git a/doc/html/classzotsh_1_1ZotSH.js b/doc/html/classzotsh_1_1ZotSH.js deleted file mode 100644 index 562fb881c..000000000 --- a/doc/html/classzotsh_1_1ZotSH.js +++ /dev/null @@ -1,36 +0,0 @@ -var classzotsh_1_1ZotSH = -[ - [ "__init__", "classzotsh_1_1ZotSH.html#a668d46a5dd96ae7d390273c187b0c3bc", null ], - [ "cmd_cat", "classzotsh_1_1ZotSH.html#a3c857c942309ecea9b2bad2dd0dfc410", null ], - [ "cmd_delete", "classzotsh_1_1ZotSH.html#a5fe9615eb84aa7f5c932b8ac5e08594d", null ], - [ "cmd_download", "classzotsh_1_1ZotSH.html#ada686b83017bfe450e367cfdb89d084e", null ], - [ "cmd_exists", "classzotsh_1_1ZotSH.html#af98a32d48748f4fa96caec1f6a33d3d0", null ], - [ "cmd_help", "classzotsh_1_1ZotSH.html#a9a7c98256c6b5ef2c56fc5f7a76580d5", null ], - [ "cmd_host", "classzotsh_1_1ZotSH.html#a0fe85d1e5e662e0d60fc6a749c5c8ee6", null ], - [ "cmd_lcd", "classzotsh_1_1ZotSH.html#a9d40211e408798c3aaceecfe9f611d8f", null ], - [ "cmd_lls", "classzotsh_1_1ZotSH.html#a709c4d5135a7c45fea12af1b2bae911c", null ], - [ "cmd_lpwd", "classzotsh_1_1ZotSH.html#acdafbe4f32089bf3dc9f14d82ba5054a", null ], - [ "cmd_ls", "classzotsh_1_1ZotSH.html#a9abc50b9215a544bdbc2b0bfd511a70a", null ], - [ "cmd_mkdir", "classzotsh_1_1ZotSH.html#ae4f4079edcfbd2f86f423137f5dcffec", null ], - [ "cmd_mkdirs", "classzotsh_1_1ZotSH.html#a32d6a43f22b5e1e2c172a10775ab83db", null ], - [ "cmd_pwd", "classzotsh_1_1ZotSH.html#ab6b1c88a142f39a579b024f44aa24ccd", null ], - [ "cmd_rmdir", "classzotsh_1_1ZotSH.html#a51592d441bd2ab61a7841c31fef3af0e", null ], - [ "cmd_upload", "classzotsh_1_1ZotSH.html#a72f4c37d4786c52b593c37c4a1b23b06", null ], - [ "do", "classzotsh_1_1ZotSH.html#a42e3d635a25a65cd4a0fd7586473a9d1", null ], - [ "get_host_session", "classzotsh_1_1ZotSH.html#a85d0155ee6f6116c16c3c0091805b144", null ], - [ "host", "classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612", null ], - [ "host", "classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612", null ], - [ "hostname", "classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea", null ], - [ "hostname", "classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea", null ], - [ "PS1", "classzotsh_1_1ZotSH.html#a02e7a436389baa6c2c1f7a530760606e", null ], - [ "session", "classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506", null ], - [ "session", "classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506", null ], - [ "_host", "classzotsh_1_1ZotSH.html#a6e5ab6ac97a89b18761120bab26a397a", null ], - [ "_hostname", "classzotsh_1_1ZotSH.html#a65623483056d05833d1edfe714dfac96", null ], - [ "_session", "classzotsh_1_1ZotSH.html#a778a232b947fa563a21bf09e992589ad", null ], - [ "davclient", "classzotsh_1_1ZotSH.html#a7d75b322c19fc685a654641a873b2ea3", null ], - [ "host", "classzotsh_1_1ZotSH.html#a49d42aee1a0b1a98c5a523434fe99973", null ], - [ "hostname", "classzotsh_1_1ZotSH.html#aef5c2b2a549ec923314dce9d1badcaac", null ], - [ "session", "classzotsh_1_1ZotSH.html#a817b058af7f90c6d4bbbe590b3f7faaf", null ], - [ "sessions", "classzotsh_1_1ZotSH.html#a40f05be2cd1eec8da7237e73e6ed4cd6", null ] -]; \ No newline at end of file diff --git a/doc/html/classzotsh_1_1ZotSH.png b/doc/html/classzotsh_1_1ZotSH.png deleted file mode 100644 index d3b5ebfaf..000000000 Binary files a/doc/html/classzotsh_1_1ZotSH.png and /dev/null differ diff --git a/doc/html/cli__startup_8php.html b/doc/html/cli__startup_8php.html deleted file mode 100644 index 27a15f1da..000000000 --- a/doc/html/cli__startup_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Matrix: include/cli_startup.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        cli_startup.php File Reference
        -
        -
        - - - - -

        -Functions

         cli_startup ()
         
        -

        Function Documentation

        - - -
        -
        - diff --git a/doc/html/cli__startup_8php.js b/doc/html/cli__startup_8php.js deleted file mode 100644 index 3f941b222..000000000 --- a/doc/html/cli__startup_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var cli__startup_8php = -[ - [ "cli_startup", "cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b", null ] -]; \ No newline at end of file diff --git a/doc/html/cli__suggest_8php.html b/doc/html/cli__suggest_8php.html deleted file mode 100644 index 7a57f4baa..000000000 --- a/doc/html/cli__suggest_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/cli_suggest.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        cli_suggest.php File Reference
        -
        -
        - - - - -

        -Functions

         cli_suggest_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        cli_suggest_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/cli__suggest_8php.js b/doc/html/cli__suggest_8php.js deleted file mode 100644 index 3389a1ddb..000000000 --- a/doc/html/cli__suggest_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var cli__suggest_8php = -[ - [ "cli_suggest_run", "cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2", null ] -]; \ No newline at end of file diff --git a/doc/html/client_8py.html b/doc/html/client_8py.html deleted file mode 100644 index 3285f32fb..000000000 --- a/doc/html/client_8py.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh/easywebdav/client.py File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        client.py File Reference
        -
        -
        - - - - - - - - - - -

        -Classes

        class  easywebdav.client.WebdavException
         
        class  easywebdav.client.ConnectionFailed
         
        class  easywebdav.client.OperationFailed
         
        class  easywebdav.client.Client
         
        - - - -

        -Namespaces

        namespace  easywebdav.client
         
        - - - - - - - -

        -Functions

        def easywebdav.client.codestr
         
        def easywebdav.client.prop
         
        def easywebdav.client.elem2file
         
        - - - - - -

        -Variables

        int easywebdav.client.DOWNLOAD_CHUNK_SIZE_BYTES = 1
         
        tuple easywebdav.client.File = namedtuple('File', ['name', 'size', 'mtime', 'ctime', 'contenttype'])
         
        -
        -
        - diff --git a/doc/html/client_8py.js b/doc/html/client_8py.js deleted file mode 100644 index e274e558c..000000000 --- a/doc/html/client_8py.js +++ /dev/null @@ -1,12 +0,0 @@ -var client_8py = -[ - [ "WebdavException", "classeasywebdav_1_1client_1_1WebdavException.html", null ], - [ "ConnectionFailed", "classeasywebdav_1_1client_1_1ConnectionFailed.html", null ], - [ "OperationFailed", "classeasywebdav_1_1client_1_1OperationFailed.html", "classeasywebdav_1_1client_1_1OperationFailed" ], - [ "Client", "classeasywebdav_1_1client_1_1Client.html", "classeasywebdav_1_1client_1_1Client" ], - [ "codestr", "client_8py.html#afd5d5d10ff07ed6fcda7e3c6b8771a16", null ], - [ "elem2file", "client_8py.html#a4ef6158e600484fda44b88391b74ec2f", null ], - [ "prop", "client_8py.html#a5e093458640c0bd98f7ef39adc2fe159", null ], - [ "DOWNLOAD_CHUNK_SIZE_BYTES", "client_8py.html#a6be7601c21385a35feb357dcc7fd22bd", null ], - [ "File", "client_8py.html#a1cc63f6c4dd4e5e6c8c8324b75e78b9d", null ] -]; \ No newline at end of file diff --git a/doc/html/closed.png b/doc/html/closed.png deleted file mode 100644 index 98cc2c909..000000000 Binary files a/doc/html/closed.png and /dev/null differ diff --git a/doc/html/cloud_8php.html b/doc/html/cloud_8php.html deleted file mode 100644 index c8a127ea6..000000000 --- a/doc/html/cloud_8php.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -The Red Matrix: mod/cloud.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        cloud.php File Reference
        -
        -
        - -

        Initialize RedMatrix's cloud (SabreDAV). -More...

        - - - - - -

        -Functions

        if(x($_SERVER,
        -'REDIRECT_REMOTE_USER')) if(x($_SERVER,
        -'HTTP_AUTHORIZATION')) 
        cloud_init (&$a)
         Fires up the SabreDAV server. More...
         
        -

        Detailed Description

        -

        Initialize RedMatrix's cloud (SabreDAV).

        -

        Module for accessing the DAV storage area.

        -

        Function Documentation

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

        Fires up the SabreDAV server.

        -
        Parameters
        - - -
        App&$a
        -
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/cloud_8php.js b/doc/html/cloud_8php.js deleted file mode 100644 index 333d1c197..000000000 --- a/doc/html/cloud_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var cloud_8php = -[ - [ "cloud_init", "cloud_8php.html#ad2e96e917852f27dedfc263d37e13756", null ] -]; \ No newline at end of file diff --git a/doc/html/comanche_8php.html b/doc/html/comanche_8php.html deleted file mode 100644 index c3a98f787..000000000 --- a/doc/html/comanche_8php.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - -The Red Matrix: include/comanche.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        comanche.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         pdl_selector ($uid, $current="")
         
         comanche_parser (&$a, $s)
         
         comanche_menu ($name, $class= '')
         
         comanche_replace_region ($match)
         
         comanche_get_channel_id ()
         
         comanche_block ($name)
         
         comanche_webpage (&$a, $s)
         
         comanche_widget ($name, $text)
         
         comanche_region (&$a, $s)
         
         register_page_template ($arr)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        comanche_block ( $name)
        -
        - -

        Referenced by comanche_region(), and profile_sidebar().

        - -
        -
        - -
        -
        - - - - - - - -
        comanche_get_channel_id ()
        -
        -

        comanche_get_channel_id() Returns the channel_id of the profile owner of the page, or the local_channel if there is no profile owner. Otherwise returns 0

        - -

        Referenced by comanche_block(), comanche_menu(), and load_pdl().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        comanche_menu ( $name,
         $class = '' 
        )
        -
        - -

        Referenced by comanche_region().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        comanche_parser ($a,
         $s 
        )
        -
        - -

        Referenced by load_pdl(), and page_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        comanche_region ($a,
         $s 
        )
        -
        - -

        Referenced by comanche_parser().

        - -
        -
        - -
        -
        - - - - - - - - -
        comanche_replace_region ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        comanche_webpage ($a,
         $s 
        )
        -
        - -

        Referenced by comanche_parser().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        comanche_widget ( $name,
         $text 
        )
        -
        - -

        Referenced by comanche_region().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pdl_selector ( $uid,
         $current = "" 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        register_page_template ( $arr)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/comanche_8php.js b/doc/html/comanche_8php.js deleted file mode 100644 index 51c7b52c6..000000000 --- a/doc/html/comanche_8php.js +++ /dev/null @@ -1,13 +0,0 @@ -var comanche_8php = -[ - [ "comanche_block", "comanche_8php.html#a5a7ab801717d38e91ac910b933973887", null ], - [ "comanche_get_channel_id", "comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e", null ], - [ "comanche_menu", "comanche_8php.html#ad5a44e42231759aba1dda49e0490501e", null ], - [ "comanche_parser", "comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922", null ], - [ "comanche_region", "comanche_8php.html#a5718daeda40bf835345fe061e8808cdf", null ], - [ "comanche_replace_region", "comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe", null ], - [ "comanche_webpage", "comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a", null ], - [ "comanche_widget", "comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f", null ], - [ "pdl_selector", "comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e", null ], - [ "register_page_template", "comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f", null ] -]; \ No newline at end of file diff --git a/doc/html/common_8php.html b/doc/html/common_8php.html deleted file mode 100644 index e70c1adb9..000000000 --- a/doc/html/common_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/common.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        common.php File Reference
        -
        -
        - - - - - - -

        -Functions

         common_init (&$a)
         
         common_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        common_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        common_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/common_8php.js b/doc/html/common_8php.js deleted file mode 100644 index 85ca9299c..000000000 --- a/doc/html/common_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var common_8php = -[ - [ "common_content", "common_8php.html#ab63408f39abef7a6915186e8dabc5a96", null ], - [ "common_init", "common_8php.html#aca62f113655809f41f49042ce9b123c2", null ] -]; \ No newline at end of file diff --git a/doc/html/community_8php.html b/doc/html/community_8php.html deleted file mode 100644 index 71e1deaa5..000000000 --- a/doc/html/community_8php.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -The Red Matrix: mod/community.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        community.php File Reference
        -
        -
        - - - - - - -

        -Functions

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

        Function Documentation

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

        Referenced by update_community_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        community_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/community_8php.js b/doc/html/community_8php.js deleted file mode 100644 index 06ba1c3b4..000000000 --- a/doc/html/community_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var community_8php = -[ - [ "community_content", "community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a", null ], - [ "community_init", "community_8php.html#a56c94ec978a38633c5628fa6f8e386d9", null ] -]; \ No newline at end of file diff --git a/doc/html/config_8md.html b/doc/html/config_8md.html deleted file mode 100644 index 03a435c31..000000000 --- a/doc/html/config_8md.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: util/config.md File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        util/config.md File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/connect_8php.html b/doc/html/connect_8php.html deleted file mode 100644 index feb2c7cb2..000000000 --- a/doc/html/connect_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/connect.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        connect.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         connect_init (&$a)
         
         connect_post (&$a)
         
         connect_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        connect_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connect_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connect_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/connect_8php.js b/doc/html/connect_8php.js deleted file mode 100644 index 208ea22b3..000000000 --- a/doc/html/connect_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var connect_8php = -[ - [ "connect_content", "connect_8php.html#a489f0a66c660de6ec4d6917b27674f07", null ], - [ "connect_init", "connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36", null ], - [ "connect_post", "connect_8php.html#a417ec27afe33f21a929667a665e32ee2", null ] -]; \ No newline at end of file diff --git a/doc/html/connections_8php.html b/doc/html/connections_8php.html deleted file mode 100644 index cd24a6a61..000000000 --- a/doc/html/connections_8php.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -The Red Matrix: mod/connections.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        connections.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

         connections_init (&$a)
         
         connections_post (&$a)
         
         connections_clone (&$a)
         
         connections_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        connections_clone ($a)
        -
        - -

        Referenced by connections_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        connections_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connections_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connections_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/connections_8php.js b/doc/html/connections_8php.js deleted file mode 100644 index 962b1f866..000000000 --- a/doc/html/connections_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var connections_8php = -[ - [ "connections_clone", "connections_8php.html#a15af118efee9c948b6f8294e54a73bb2", null ], - [ "connections_content", "connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c", null ], - [ "connections_init", "connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558", null ], - [ "connections_post", "connections_8php.html#a1224058db8e3fb56463eb312f98e561d", null ] -]; \ No newline at end of file diff --git a/doc/html/connedit_8php.html b/doc/html/connedit_8php.html deleted file mode 100644 index 53c6eeda6..000000000 --- a/doc/html/connedit_8php.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -The Red Matrix: mod/connedit.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        connedit.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

         connedit_init (&$a)
         
         connedit_post (&$a)
         
         connedit_clone (&$a)
         
         connedit_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        connedit_clone ($a)
        -
        - -

        Referenced by connedit_content(), and connedit_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        connedit_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connedit_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        connedit_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/connedit_8php.js b/doc/html/connedit_8php.js deleted file mode 100644 index 0492ead35..000000000 --- a/doc/html/connedit_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var connedit_8php = -[ - [ "connedit_clone", "connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5", null ], - [ "connedit_content", "connedit_8php.html#a795acb3d9d841f55c255d7611681ab67", null ], - [ "connedit_init", "connedit_8php.html#a4da871e075597a09a8b374b9171dd92e", null ], - [ "connedit_post", "connedit_8php.html#a234c48426b652bf4d37053f2af329ac5", null ] -]; \ No newline at end of file diff --git a/doc/html/contact__selectors_8php.html b/doc/html/contact__selectors_8php.html deleted file mode 100644 index 83d773fc0..000000000 --- a/doc/html/contact__selectors_8php.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -The Red Matrix: include/contact_selectors.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        contact_selectors.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         contact_profile_assign ($current)
         
         contact_poll_interval ($current, $disabled=false)
         
         network_to_name ($s)
         
        -

        Function Documentation

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

        Referenced by connedit_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        contact_profile_assign ( $current)
        -
        - -

        Referenced by connedit_content(), and thing_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        network_to_name ( $s)
        -
        - -

        Referenced by connections_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/contact__selectors_8php.js b/doc/html/contact__selectors_8php.js deleted file mode 100644 index fd8a2cb0f..000000000 --- a/doc/html/contact__selectors_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var contact__selectors_8php = -[ - [ "contact_poll_interval", "contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f", null ], - [ "contact_profile_assign", "contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75", null ], - [ "network_to_name", "contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be", null ] -]; \ No newline at end of file diff --git a/doc/html/contact__widgets_8php.html b/doc/html/contact__widgets_8php.html deleted file mode 100644 index a9febe165..000000000 --- a/doc/html/contact__widgets_8php.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - -The Red Matrix: include/contact_widgets.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        contact_widgets.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

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

        Function Documentation

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

        Referenced by widget_categories().

        - -
        -
        - -
        -
        - - - - - - - - -
        common_friends_visitor_widget ( $profile_uid)
        -
        - -

        Referenced by channel_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        fileas_widget ( $baseurl,
         $selected = '' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        findpeople_widget ()
        -
        - -

        Referenced by widget_findpeople().

        - -
        -
        -
        -
        - diff --git a/doc/html/contact__widgets_8php.js b/doc/html/contact__widgets_8php.js deleted file mode 100644 index 2963a1227..000000000 --- a/doc/html/contact__widgets_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var contact__widgets_8php = -[ - [ "categories_widget", "contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353", null ], - [ "common_friends_visitor_widget", "contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65", null ], - [ "fileas_widget", "contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b", null ], - [ "findpeople_widget", "contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6", null ] -]; \ No newline at end of file diff --git a/doc/html/contactgroup_8php.html b/doc/html/contactgroup_8php.html deleted file mode 100644 index 140b4ad12..000000000 --- a/doc/html/contactgroup_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/contactgroup.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        contactgroup.php File Reference
        -
        -
        - - - - -

        -Functions

         contactgroup_content (&$a)
         
        -

        Function Documentation

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

        -Functions

         item_extract_images ($body)
         
         item_redir_and_replace_images ($body, $images, $cid)
         
         localize_item (&$item)
         
         count_descendants ($item)
         
         visible_activity ($item)
         
         conversation (&$a, $items, $mode, $update, $page_mode= 'traditional', $prepared_item= '')
         
         best_link_url ($item)
         
         item_photo_menu ($item)
         
         builtin_activity_puller ($item, &$conv_responses)
         Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.) Increments the count of each matching activity and adds a link to the author as needed. More...
         
         format_like ($cnt, $arr, $type, $id)
         
         status_editor ($a, $x, $popup=false)
         
         get_item_children ($arr, $parent)
         
         sort_item_children ($items)
         
         add_children_to_list ($children, &$arr)
         
         conv_sort ($arr, $order)
         
         sort_thr_created ($a, $b)
         
         sort_thr_created_rev ($a, $b)
         
         sort_thr_commented ($a, $b)
         
         find_thread_parent_index ($arr, $x)
         
         format_location ($item)
         
         render_location_default ($item)
         
         prepare_page ($item)
         
         network_tabs ()
         
         profile_tabs ($a, $is_owner=False, $nickname=Null)
         
         get_responses ($conv_responses, $response_verbs, $ob, $item)
         
         get_response_button_text ($v, $count)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        add_children_to_list ( $children,
        $arr 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        best_link_url ( $item)
        -
        - -

        Referenced by conversation().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        builtin_activity_puller ( $item,
        $conv_responses 
        )
        -
        - -

        Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.) Increments the count of each matching activity and adds a link to the author as needed.

        -
        Parameters
        - - - - -
        array$a(not used)
        array$item
        array&$conv_responses(already created with builtin activity structure)
        -
        -
        -
        Returns
        void
        - -

        Referenced by conversation().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        conv_sort ( $arr,
         $order 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        conversation ($a,
         $items,
         $mode,
         $update,
         $page_mode = 'traditional',
         $prepared_item = '' 
        )
        -
        -

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

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

        Referenced by channel_content(), display_content(), home_content(), item_post(), network_content(), Item\remove_parent(), search_content(), and Item\set_conversation().

        - -
        -
        - -
        -
        - - - - - - - - -
        count_descendants ( $item)
        -
        -

        Count the total of comments on this item and its desendants

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        find_thread_parent_index ( $arr,
         $x 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        format_like ( $cnt,
         $arr,
         $type,
         $id 
        )
        -
        - -

        Referenced by Item\get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_location ( $item)
        -
        - -

        Referenced by conversation(), and Item\get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_item_children ( $arr,
         $parent 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_response_button_text ( $v,
         $count 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        get_responses ( $conv_responses,
         $response_verbs,
         $ob,
         $item 
        )
        -
        - -

        Referenced by Item\get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - -
        item_extract_images ( $body)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        item_photo_menu ( $item)
        -
        - -

        Referenced by conversation(), and Item\get_template_data().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        item_redir_and_replace_images ( $body,
         $images,
         $cid 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        localize_item ($item)
        -
        -

        Render actions localized

        - -

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

        - -
        -
        - -
        -
        - - - - - - - -
        network_tabs ()
        -
        - -

        Referenced by network_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        prepare_page ( $item)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        profile_tabs ( $a,
         $is_owner = False,
         $nickname = Null 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        render_location_default ( $item)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        sort_item_children ( $items)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        sort_thr_commented ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        sort_thr_created ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        sort_thr_created_rev ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        status_editor ( $a,
         $x,
         $popup = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        visible_activity ( $item)
        -
        -
        -
        -
        - diff --git a/doc/html/conversation_8php.js b/doc/html/conversation_8php.js deleted file mode 100644 index 0e6a84b1f..000000000 --- a/doc/html/conversation_8php.js +++ /dev/null @@ -1,29 +0,0 @@ -var conversation_8php = -[ - [ "add_children_to_list", "conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b", null ], - [ "best_link_url", "conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7", null ], - [ "builtin_activity_puller", "conversation_8php.html#a54d5247d645b320191052283bee06c34", null ], - [ "conv_sort", "conversation_8php.html#abed85a41f1160598de880b84021c9cf7", null ], - [ "conversation", "conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81", null ], - [ "count_descendants", "conversation_8php.html#ab2383dff4f823e580399ff469d90ab19", null ], - [ "find_thread_parent_index", "conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6", null ], - [ "format_like", "conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3", null ], - [ "format_location", "conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3", null ], - [ "get_item_children", "conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67", null ], - [ "get_response_button_text", "conversation_8php.html#afb16b867934dbc5f7e68f21925f9e71e", null ], - [ "get_responses", "conversation_8php.html#afb69613cf71dc5a21c23f3430ce3c229", null ], - [ "item_extract_images", "conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654", null ], - [ "item_photo_menu", "conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3", null ], - [ "item_redir_and_replace_images", "conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533", null ], - [ "localize_item", "conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c", null ], - [ "network_tabs", "conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4", null ], - [ "prepare_page", "conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c", null ], - [ "profile_tabs", "conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273", null ], - [ "render_location_default", "conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2", null ], - [ "sort_item_children", "conversation_8php.html#ae996eb116d397a2c6396c312d7b98664", null ], - [ "sort_thr_commented", "conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11", null ], - [ "sort_thr_created", "conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d", null ], - [ "sort_thr_created_rev", "conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0", null ], - [ "status_editor", "conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a", null ], - [ "visible_activity", "conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3", null ] -]; \ No newline at end of file diff --git a/doc/html/crepair_8php.html b/doc/html/crepair_8php.html deleted file mode 100644 index c9e347b75..000000000 --- a/doc/html/crepair_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/crepair.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        crepair.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

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

        Function Documentation

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

        -Functions

         cronhooks_run ($argv, $argc)
         
        -

        Function Documentation

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

        -Functions

         rsa_sign ($data, $key, $alg= 'sha256')
         
         rsa_verify ($data, $sig, $key, $alg= 'sha256')
         
         pkcs5_pad ($text, $blocksize)
         
         pkcs5_unpad ($text)
         
         AES256CBC_encrypt ($data, $key, $iv)
         
         AES256CBC_decrypt ($data, $key, $iv)
         
         crypto_encapsulate ($data, $pubkey, $alg='aes256cbc')
         
         aes_encapsulate ($data, $pubkey)
         
         crypto_unencapsulate ($data, $prvkey)
         
         aes_unencapsulate ($data, $prvkey)
         
         new_keypair ($bits)
         
         pkcs1to8 ($oldkey, $len)
         
         pkcs8to1 ($oldkey, $len)
         
         DerToPem ($Der, $Private=false)
         
         DerToRsa ($Der)
         
         pkcs8_encode ($Modulus, $PublicExponent)
         
         pkcs1_encode ($Modulus, $PublicExponent)
         
         metopem ($m, $e)
         
         pubrsatome ($key, &$m, &$e)
         
         rsatopem ($key)
         
         pemtorsa ($key)
         
         pemtome ($key, &$m, &$e)
         
         metorsa ($m, $e)
         
         salmon_key ($pubkey)
         
        -

        Function Documentation

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

        Referenced by aes_unencapsulate().

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

        Referenced by aes_encapsulate().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        aes_encapsulate ( $data,
         $pubkey 
        )
        -
        - -

        Referenced by crypto_encapsulate().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        aes_unencapsulate ( $data,
         $prvkey 
        )
        -
        - -

        Referenced by crypto_unencapsulate().

        - -
        -
        - - - - - -
        -
        - - - - - - - - - - - - - - - - - - -
        DerToPem ( $Der,
         $Private = false 
        )
        -
        - -

        Referenced by metopem().

        - -
        -
        - -
        -
        - - - - - - - - -
        DerToRsa ( $Der)
        -
        - -

        Referenced by metorsa().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        metopem ( $m,
         $e 
        )
        -
        - -

        Referenced by rsatopem().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        metorsa ( $m,
         $e 
        )
        -
        - -

        Referenced by pemtorsa().

        - -
        -
        - -
        -
        - - - - - - - - -
        new_keypair ( $bits)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        pemtome ( $key,
        $m,
        $e 
        )
        -
        - -

        Referenced by pemtorsa(), and salmon_key().

        - -
        -
        - -
        -
        - - - - - - - - -
        pemtorsa ( $key)
        -
        - -

        Referenced by xrd_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pkcs1_encode ( $Modulus,
         $PublicExponent 
        )
        -
        - -

        Referenced by metorsa().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pkcs1to8 ( $oldkey,
         $len 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pkcs5_pad ( $text,
         $blocksize 
        )
        -
        - -

        Referenced by AES256CBC_encrypt(), and diaspora_msg_build().

        - -
        -
        - -
        -
        - - - - - - - - -
        pkcs5_unpad ( $text)
        -
        - -

        Referenced by AES256CBC_decrypt(), and diaspora_decode().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pkcs8_encode ( $Modulus,
         $PublicExponent 
        )
        -
        - -

        Referenced by metopem().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pkcs8to1 ( $oldkey,
         $len 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        pubrsatome ( $key,
        $m,
        $e 
        )
        -
        - -

        Referenced by rsatopem().

        - -
        -
        - - - - - -
        -
        - - - - - - - - -
        rsatopem ( $key)
        -
        - -

        Referenced by discover_by_webbie().

        - -
        -
        - -
        -
        - - - - - - - - -
        salmon_key ( $pubkey)
        -
        - -

        Referenced by xrd_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/crypto_8php.js b/doc/html/crypto_8php.js deleted file mode 100644 index dca2088c1..000000000 --- a/doc/html/crypto_8php.js +++ /dev/null @@ -1,27 +0,0 @@ -var crypto_8php = -[ - [ "AES256CBC_decrypt", "crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9", null ], - [ "AES256CBC_encrypt", "crypto_8php.html#a5c61821d205f95f127114159cbffa764", null ], - [ "aes_encapsulate", "crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286", null ], - [ "aes_unencapsulate", "crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914", null ], - [ "crypto_encapsulate", "crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c", null ], - [ "crypto_unencapsulate", "crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5", null ], - [ "DerToPem", "crypto_8php.html#a630e1574554f34e7c38511585d9e71a2", null ], - [ "DerToRsa", "crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839", null ], - [ "metopem", "crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85", null ], - [ "metorsa", "crypto_8php.html#a573f02517abe4ac9241268263063b2a0", null ], - [ "new_keypair", "crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a", null ], - [ "pemtome", "crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c", null ], - [ "pemtorsa", "crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8", null ], - [ "pkcs1_encode", "crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5", null ], - [ "pkcs1to8", "crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9", null ], - [ "pkcs5_pad", "crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec", null ], - [ "pkcs5_unpad", "crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85", null ], - [ "pkcs8_encode", "crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2", null ], - [ "pkcs8to1", "crypto_8php.html#a7427a18417341aa35e2207bfa205e432", null ], - [ "pubrsatome", "crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287", null ], - [ "rsa_sign", "crypto_8php.html#a920e5f222d0020f47556033d8b2b6552", null ], - [ "rsa_verify", "crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96", null ], - [ "rsatopem", "crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26", null ], - [ "salmon_key", "crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5", null ] -]; \ No newline at end of file diff --git a/doc/html/dark_8php.html b/doc/html/dark_8php.html deleted file mode 100644 index df29c3249..000000000 --- a/doc/html/dark_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/dark.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dark.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/darkness_8php.html b/doc/html/darkness_8php.html deleted file mode 100644 index d5ea426d6..000000000 --- a/doc/html/darkness_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/darkness.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        darkness.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/darknessleftaside_8php.html b/doc/html/darknessleftaside_8php.html deleted file mode 100644 index 033a7ce47..000000000 --- a/doc/html/darknessleftaside_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/darknessleftaside.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        darknessleftaside.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/darknessrightaside_8php.html b/doc/html/darknessrightaside_8php.html deleted file mode 100644 index 9cc59d968..000000000 --- a/doc/html/darknessrightaside_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/darknessrightaside.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        darknessrightaside.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html deleted file mode 100644 index cbc160c85..000000000 --- a/doc/html/datetime_8php.html +++ /dev/null @@ -1,653 +0,0 @@ - - - - - - -The Red Matrix: include/datetime.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        datetime.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         timezone_cmp ($a, $b)
         
         get_timezones ()
         
         datetime_convert ($from= 'UTC', $to= 'UTC', $s= 'now', $fmt="Y-m-d H:i:s")
         
         dob ($dob)
         
         datesel ($format, $min, $max, $default, $id= 'datepicker')
         
         timesel ($format, $h, $m, $id='timepicker')
         
         datetimesel ($format, $min, $max, $default, $id= 'datetimepicker', $pickdate=true, $picktime=true, $minfrom= '', $maxfrom= '', $required=false)
         
         relative_date ($posted_date, $format=null)
         
         age ($dob, $owner_tz= '', $viewer_tz= '')
         
         get_dim ($y, $m)
         
         get_first_dim ($y, $m)
         
         cal ($y=0, $m=0, $links=false, $class='')
         
         z_birthday ($dob, $tz, $format="Y-m-d H:i:s")
         
         update_birthdays ()
         
        -

        Function Documentation

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

        Referenced by events_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        datesel ( $format,
         $min,
         $max,
         $default,
         $id = 'datepicker' 
        )
        -
        -

        returns a date selector

        -
        Parameters
        - - - - - - -
        $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
        $minunix timestamp of minimum date
        $maxunix timestap of maximum date
        $defaultunix timestamp of default date
        $idid and name of datetimepicker (defaults to "datetimepicker")
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        datetime_convert ( $from = 'UTC',
         $to = 'UTC',
         $s = 'now',
         $fmt = "Y-m-d H:i:s" 
        )
        -
        - -

        Referenced by abook_toggle_flag(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), format_event_ical(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), RedMatrix\RedDAV\RedFile\getLastModified(), RedMatrix\RedDAV\RedDirectory\getLastModified(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), log_failed_login(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), prate_post(), process_rating_delivery(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rate_post(), ratenotif_run(), regdir_init(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        datetimesel ( $format,
         $min,
         $max,
         $default,
         $id = 'datetimepicker',
         $pickdate = true,
         $picktime = true,
         $minfrom = '',
         $maxfrom = '',
         $required = false 
        )
        -
        -

        returns a datetime selector

        -
        Parameters
        - - - - - - - - - - -
        $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
        $minunix timestamp of minimum date
        $maxunix timestap of maximum date
        $defaultunix timestamp of default date
        $idid and name of datetimepicker (defaults to "datetimepicker")
        $pickdatetrue to show date picker (default)
        $picktimetrue to show time picker (default)
        $minfromset minimum date from picker with id $minfrom (none by default)
        $maxfromset maximum date from picker with id $maxfrom (none by default)
        -
        -
        - -

        Referenced by datesel(), events_content(), and timesel().

        - -
        -
        - -
        -
        - - - - - - - - -
        dob ( $dob)
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_dim ( $y,
         $m 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_first_dim ( $y,
         $m 
        )
        -
        - -

        Referenced by cal().

        - -
        -
        - -
        -
        - - - - - - - -
        get_timezones ()
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        relative_date ( $posted_date,
         $format = null 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        timesel ( $format,
         $h,
         $m,
         $id = 'timepicker' 
        )
        -
        -

        returns a time selector

        -
        Parameters
        - - - - - -
        $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
        $halready selected hour
        $malready selected minute
        $idid and name of datetimepicker (defaults to "timepicker")
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        timezone_cmp ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        update_birthdays ()
        -
        -

        Create a birthday event for any connections with a birthday in the next 1-2 weeks. Update the year so that we don't create another event until next year.

        - -

        Referenced by poller_run().

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

        Return the next birthday, converted from the owner's timezone to UTC. This makes it globally portable. If the provided birthday lacks a month and or day, return an empty string. A missing year is acceptable.

        - -

        Referenced by zfinger_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/datetime_8php.js b/doc/html/datetime_8php.js deleted file mode 100644 index 5265b77a1..000000000 --- a/doc/html/datetime_8php.js +++ /dev/null @@ -1,17 +0,0 @@ -var datetime_8php = -[ - [ "age", "datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df", null ], - [ "cal", "datetime_8php.html#aea356409ba69f9de412298c998595dd2", null ], - [ "datesel", "datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766", null ], - [ "datetime_convert", "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226", null ], - [ "datetimesel", "datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7", null ], - [ "dob", "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8", null ], - [ "get_dim", "datetime_8php.html#a7df24d72ea05922d3127363e2295174c", null ], - [ "get_first_dim", "datetime_8php.html#aba971b67f17fecf050813f1eba72367f", null ], - [ "get_timezones", "datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1", null ], - [ "relative_date", "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82", null ], - [ "timesel", "datetime_8php.html#a3f239f94e23335d860b148958d87a093", null ], - [ "timezone_cmp", "datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865", null ], - [ "update_birthdays", "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826", null ], - [ "z_birthday", "datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f", null ] -]; \ No newline at end of file diff --git a/doc/html/dav_8php.html b/doc/html/dav_8php.html deleted file mode 100644 index 650764cb1..000000000 --- a/doc/html/dav_8php.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -The Red Matrix: mod/dav.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dav.php File Reference
        -
        -
        - -

        Initialize RedMatrix's cloud (SabreDAV). -More...

        - - - - - -

        -Functions

        if(x($_SERVER,
        -'REDIRECT_REMOTE_USER')) if(x($_SERVER,
        -'HTTP_AUTHORIZATION')) 
        dav_init (&$a)
         Fires up the SabreDAV server. More...
         
        -

        Detailed Description

        -

        Initialize RedMatrix's cloud (SabreDAV).

        -

        Module for accessing the DAV storage area from a DAV client.

        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        if (x($_SERVER, 'REDIRECT_REMOTE_USER')) if (x($_SERVER, 'HTTP_AUTHORIZATION')) dav_init ($a)
        -
        - -

        Fires up the SabreDAV server.

        -
        Parameters
        - - -
        App&$a
        -
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/dav_8php.js b/doc/html/dav_8php.js deleted file mode 100644 index c50b9b86b..000000000 --- a/doc/html/dav_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var dav_8php = -[ - [ "dav_init", "dav_8php.html#addd46b5ec6cd6c23e065634462b7f040", null ] -]; \ No newline at end of file diff --git a/doc/html/db__update_8php.html b/doc/html/db__update_8php.html deleted file mode 100644 index 070216b38..000000000 --- a/doc/html/db__update_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: util/db_update.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        db_update.php File Reference
        -
        -
        - - - - -

        -Namespaces

        namespace  util
         
        -
        -
        - diff --git a/doc/html/db__update_8php.js b/doc/html/db__update_8php.js deleted file mode 100644 index a94d2d63d..000000000 --- a/doc/html/db__update_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var db__update_8php = -[ - [ "$a", "db__update_8php.html#acebf83966ef6d7e5645a6b62ba368f9f", null ], - [ "$build", "db__update_8php.html#a502b15db084ae270b52e03c8075916de", null ], - [ "$db", "db__update_8php.html#a1fa3127fc82f96b1436d871ef02be319", null ], - [ "$lang", "db__update_8php.html#a7714b111b644017933931ec69a154102", null ] -]; \ No newline at end of file diff --git a/doc/html/dba_8php.html b/doc/html/dba_8php.html deleted file mode 100644 index 027f9d105..000000000 --- a/doc/html/dba_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Project: include/dba.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dba.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/dba_8php.js b/doc/html/dba_8php.js deleted file mode 100644 index 92ae4c2e4..000000000 --- a/doc/html/dba_8php.js +++ /dev/null @@ -1,11 +0,0 @@ -var dba_8php = -[ - [ "dba", "classdba.html", "classdba" ], - [ "dbesc", "dba_8php.html#ab222aa1dbf9ea93b320f82028739127e", null ], - [ "dbesc_array", "dba_8php.html#a65b83462bd26968106aebd43f16540e4", null ], - [ "dbesc_array_cb", "dba_8php.html#af531546fac5f0836a8557a4f6dfee930", null ], - [ "dbg", "dba_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb", null ], - [ "dbq", "dba_8php.html#aa377074e70981e8c4e82ca0accd068ee", null ], - [ "printable", "dba_8php.html#a55bf30d8176967e682656b5be4ad9249", null ], - [ "q", "dba_8php.html#a2c09a731d3b4fef41fed0e83db01be1f", null ] -]; \ No newline at end of file diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html deleted file mode 100644 index 900b6d1c2..000000000 --- a/doc/html/dba__driver_8php.html +++ /dev/null @@ -1,584 +0,0 @@ - - - - - - -The Red Matrix: include/dba/dba_driver.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_driver.php File Reference
        -
        -
        - -

        some database related functions and abstract driver class. -More...

        - - - - - -

        -Classes

        class  dba_driver
         abstract database driver class. More...
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         dba_factory ($server, $port, $user, $pass, $db, $dbtype, $install=false)
         Returns the database driver object. More...
         
         printable ($s)
         
         dbg ($state)
         set database driver debugging state. More...
         
         dbesc ($str)
         Escape strings being passed to DB queries. More...
         
         dbescbin ($str)
         
         dbunescbin ($str)
         
         dbescdate ($date)
         
         db_quoteinterval ($txt)
         
         dbesc_identifier ($str)
         
         db_utcnow ()
         
         db_optimizetable ($table)
         
         db_concat ($fld, $sep)
         
         q ($sql)
         Execute a SQL query with printf style args. More...
         
         dbq ($sql)
         Raw DB query, no arguments. More...
         
         dbesc_array_cb (&$item, $key)
         
         dbesc_array (&$arr)
         
         db_getfunc ($f)
         
        -

        Detailed Description

        -

        some database related functions and abstract driver class.

        -

        This file contains the abstract database driver class dba_driver and some functions for working with databases.

        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        db_concat ( $fld,
         $sep 
        )
        -
        - -

        Referenced by acl_init(), and admin_page_users().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        db_optimizetable ( $table)
        -
        - -

        Referenced by ref_session_gc().

        - -
        -
        - - - - - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dba_factory ( $server,
         $port,
         $user,
         $pass,
         $db,
         $dbtype,
         $install = false 
        )
        -
        - -

        Returns the database driver object.

        -

        If available it will use PHP's mysqli otherwise mysql driver.

        -
        Parameters
        - - - - - - - - -
        string$serverDB server name
        string$portDB port
        string$userDB username
        string$passDB password
        string$dbdatabase name
        string$dbtype0 for mysql, 1 for postgres
        bool$installDefaults to false
        -
        -
        -
        Returns
        null|dba_driver A database driver object (dba_mysql|dba_mysqli) or null if no driver found.
        - -

        Referenced by cli_startup(), and setup_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        dbesc ( $str)
        -
        - -

        Escape strings being passed to DB queries.

        -

        Always escape strings being used in DB queries. This function returns the escaped string. Integer DB parameters should all be proven integers by wrapping with intval().

        -
        Parameters
        - - -
        string$strA string to pass to a DB query
        -
        -
        -
        Returns
        Return an escaped string of the value to pass to a DB query.
        - -

        Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_flag_build(), dir_query_build(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), file_tag_file_query(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_things(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), in_group(), install_plugin(), invite_post(), is_matrix_url(), item_add_cid(), item_message_id(), item_permissions_sql(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), list_public_sites(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), menu_list_count(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poll_post(), poller_run(), post_init(), post_post(), prate_init(), prate_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sharedwithme_content(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_random_block(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        dbesc_array ($arr)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        dbesc_array_cb ($item,
         $key 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dbesc_identifier ( $str)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dbescbin ( $str)
        -
        -
        - -
        -
        - - - - - - - - -
        dbescdate ( $date)
        -
        -
        - -
        -
        - - - - - - - - -
        dbg ( $state)
        -
        - -

        set database driver debugging state.

        -
        Parameters
        - - -
        int$state0 to disable debugging
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dbq ( $sql)
        -
        - -

        Raw DB query, no arguments.

        -

        This function executes a raw DB query without any arguments.

        -
        Parameters
        - - -
        string$sqlThe SQL query to execute
        -
        -
        - -

        Referenced by import_post(), item_store(), item_store_update(), mail_store(), process_channel_sync_delivery(), and profiles_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        dbunescbin ( $str)
        -
        -
        - -
        -
        - - - - - - - - -
        printable ( $s)
        -
        - -

        Referenced by dba_mysql\q(), dba_mysqli\q(), and dba_postgres\q().

        - -
        -
        - -
        -
        - - - - - - - - -
        q ( $sql)
        -
        - -

        Execute a SQL query with printf style args.

        -

        printf style arguments s and d are replaced with variable arguments, which should each be appropriately dbesc() or intval(). SELECT queries return an array of results or false if SQL or DB error. Other queries return true if the command was successful or false if it wasn't.

        -

        Example: $r = q("SELECT * FROM <tt>%s</tt> WHERE <tt>uid</tt> = %d", 'user', 1);

        -
        Parameters
        - - -
        string$sqlThe SQL query to execute
        -
        -
        -
        Returns
        bool|array
        - -

        Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_queue(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), in_group(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), nav(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_on(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), prate_init(), prate_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_local_posts_stat(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), wtagblock(), xchan_content(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/dba__driver_8php.js b/doc/html/dba__driver_8php.js deleted file mode 100644 index cfe110f61..000000000 --- a/doc/html/dba__driver_8php.js +++ /dev/null @@ -1,21 +0,0 @@ -var dba__driver_8php = -[ - [ "dba_driver", "classdba__driver.html", "classdba__driver" ], - [ "db_concat", "dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee", null ], - [ "db_getfunc", "dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67", null ], - [ "db_optimizetable", "dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e", null ], - [ "db_quoteinterval", "dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a", null ], - [ "db_utcnow", "dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645", null ], - [ "dba_factory", "dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0", null ], - [ "dbesc", "dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e", null ], - [ "dbesc_array", "dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4", null ], - [ "dbesc_array_cb", "dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930", null ], - [ "dbesc_identifier", "dba__driver_8php.html#aa051799567690a124a3b865bf902f58a", null ], - [ "dbescbin", "dba__driver_8php.html#a2a38996670c2936b5769270c49c57593", null ], - [ "dbescdate", "dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78", null ], - [ "dbg", "dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb", null ], - [ "dbq", "dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee", null ], - [ "dbunescbin", "dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e", null ], - [ "printable", "dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249", null ], - [ "q", "dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f", null ] -]; \ No newline at end of file diff --git a/doc/html/dba__mysql_8php.html b/doc/html/dba__mysql_8php.html deleted file mode 100644 index da4db27d7..000000000 --- a/doc/html/dba__mysql_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/dba/dba_mysql.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_mysql.php File Reference
        -
        -
        - - - - -

        -Classes

        class  dba_mysql
         
        -
        -
        - diff --git a/doc/html/dba__mysqli_8php.html b/doc/html/dba__mysqli_8php.html deleted file mode 100644 index 9f580d4e9..000000000 --- a/doc/html/dba__mysqli_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/dba/dba_mysqli.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_mysqli.php File Reference
        -
        -
        - - - - -

        -Classes

        class  dba_mysqli
         
        -
        -
        - diff --git a/doc/html/dba__postgres_8php.html b/doc/html/dba__postgres_8php.html deleted file mode 100644 index de5f03278..000000000 --- a/doc/html/dba__postgres_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/dba/dba_postgres.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dba_postgres.php File Reference
        -
        -
        - - - - -

        -Classes

        class  dba_postgres
         
        -
        -
        - diff --git a/doc/html/default_8php.html b/doc/html/default_8php.html deleted file mode 100644 index dbec1176a..000000000 --- a/doc/html/default_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/php/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

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

        -Functions

         delegate_content (&$a)
         
        -

        Function Documentation

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

        -Functions

         deliver_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        deliver_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/deliver_8php.js b/doc/html/deliver_8php.js deleted file mode 100644 index 7e8a08223..000000000 --- a/doc/html/deliver_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var deliver_8php = -[ - [ "deliver_run", "deliver_8php.html#a397afcb9afecf0c1816b0951189dd346", null ] -]; \ No newline at end of file diff --git a/doc/html/deprecated.html b/doc/html/deprecated.html deleted file mode 100644 index f4f7044ab..000000000 --- a/doc/html/deprecated.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: Deprecated List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Deprecated List
        -
        -
        -
        -
        Member local_user ()
        -
        since v2.1, use local_channel()
        -
        Member remote_user ()
        -
        since v2.1, use remote_channel()
        -
        -
        -
        - diff --git a/doc/html/diaspora_8php.html b/doc/html/diaspora_8php.html deleted file mode 100644 index 4619009ee..000000000 --- a/doc/html/diaspora_8php.html +++ /dev/null @@ -1,1277 +0,0 @@ - - - - - - -The Red Matrix: include/diaspora.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        diaspora.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         diaspora_dispatch_public ($msg)
         
         diaspora_dispatch ($importer, $msg)
         
         diaspora_is_blacklisted ($s)
         
         diaspora_process_outbound ($arr)
         
         diaspora_handle_from_contact ($contact_hash)
         
         diaspora_get_contact_by_handle ($uid, $handle)
         
         find_diaspora_person_by_handle ($handle)
         
         get_diaspora_key ($handle)
         
         diaspora_pubmsg_build ($msg, $channel, $contact, $prvkey, $pubkey)
         
         diaspora_msg_build ($msg, $channel, $contact, $prvkey, $pubkey, $public=false)
         
         diaspora_decode ($importer, $xml)
         
         diaspora_request ($importer, $xml)
         
         diaspora_post ($importer, $xml, $msg)
         
         get_diaspora_reshare_xml ($url, $recurse=0)
         
         diaspora_reshare ($importer, $xml, $msg)
         
         diaspora_asphoto ($importer, $xml, $msg)
         
         diaspora_comment ($importer, $xml, $msg)
         
         diaspora_conversation ($importer, $xml, $msg)
         
         diaspora_message ($importer, $xml, $msg)
         
         diaspora_photo ($importer, $xml, $msg)
         
         diaspora_like ($importer, $xml, $msg)
         
         diaspora_retraction ($importer, $xml)
         
         diaspora_signed_retraction ($importer, $xml, $msg)
         
         diaspora_profile ($importer, $xml, $msg)
         
         diaspora_share ($owner, $contact)
         
         diaspora_unshare ($owner, $contact)
         
         diaspora_send_status ($item, $owner, $contact, $public_batch=false)
         
         diaspora_is_reshare ($body)
         
         diaspora_send_images ($item, $owner, $contact, $images, $public_batch=false)
         
         diaspora_send_followup ($item, $owner, $contact, $public_batch=false)
         
         diaspora_send_relay ($item, $owner, $contact, $public_batch=false)
         
         diaspora_send_retraction ($item, $owner, $contact, $public_batch=false)
         
         diaspora_send_mail ($item, $owner, $contact)
         
         diaspora_transmit ($owner, $contact, $slap, $public_batch, $queue_run=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_asphoto ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_comment ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_conversation ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_decode ( $importer,
         $xml 
        )
        -
        -

        diaspora_decode($importer,$xml) array $importer -> from user table string $xml -> urldecoded Diaspora salmon

        -

        Returns array 'message' -> decoded Diaspora XML message 'author' -> author diaspora handle 'key' -> author public key (converted to pkcs#8)

        -

        Author and key are used elsewhere to save a lookup for verifying replies and likes

        -
         $decrypted now contains something like
        -
        -  <decrypted_header>
        -     <iv>8e+G2+ET8l5BPuW0sVTnQw==</iv>
        -     <aes_key>UvSMb4puPeB14STkcDWq+4QE302Edu15oaprAQSkLKU=</aes_key>
        -

        OBSOLETE

        -
             <author>
        -       <name>Ryan Hughes</name>
        -       <uri>acct:galaxor@diaspora.pirateship.org</uri>
        -     </author>
        -

        CURRENT

        -
             <author_id>galaxor@diaspora.priateship.org</author_id>
        -

        END DIFFS

        -
          </decrypted_header>
        -
        -

        Referenced by receive_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_dispatch ( $importer,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch_public(), and receive_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        diaspora_dispatch_public ( $msg)
        -
        - -

        Referenced by receive_post().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        diaspora_handle_from_contact ( $contact_hash)
        -
        - -

        Referenced by diaspora_send_relay().

        - -
        -
        - -
        -
        - - - - - - - - -
        diaspora_is_blacklisted ( $s)
        -
        -
        - -
        -
        - - - - - - - - -
        diaspora_is_reshare ( $body)
        -
        - -

        Referenced by diaspora_send_status().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_like ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_message ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_msg_build ( $msg,
         $channel,
         $contact,
         $prvkey,
         $pubkey,
         $public = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_photo ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_post ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - -
        diaspora_process_outbound ( $arr)
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_profile ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_pubmsg_build ( $msg,
         $channel,
         $contact,
         $prvkey,
         $pubkey 
        )
        -
        - -

        Referenced by diaspora_msg_build().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_request ( $importer,
         $xml 
        )
        -
        -

        If there is a default group for this channel, add this member to it

        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_reshare ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_retraction ( $importer,
         $xml 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_followup ( $item,
         $owner,
         $contact,
         $public_batch = false 
        )
        -
        - -

        Referenced by diaspora_process_outbound().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_images ( $item,
         $owner,
         $contact,
         $images,
         $public_batch = false 
        )
        -
        - -

        Referenced by diaspora_send_status().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_mail ( $item,
         $owner,
         $contact 
        )
        -
        - -

        Referenced by diaspora_process_outbound().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_relay ( $item,
         $owner,
         $contact,
         $public_batch = false 
        )
        -
        - -

        Referenced by diaspora_process_outbound().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_retraction ( $item,
         $owner,
         $contact,
         $public_batch = false 
        )
        -
        - -

        Referenced by diaspora_process_outbound().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_send_status ( $item,
         $owner,
         $contact,
         $public_batch = false 
        )
        -
        - -

        Referenced by diaspora_process_outbound().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_share ( $owner,
         $contact 
        )
        -
        - -

        Referenced by diaspora_request(), and notifier_run().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_signed_retraction ( $importer,
         $xml,
         $msg 
        )
        -
        - -

        Referenced by diaspora_dispatch().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        diaspora_transmit ( $owner,
         $contact,
         $slap,
         $public_batch,
         $queue_run = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        diaspora_unshare ( $owner,
         $contact 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        find_diaspora_person_by_handle ( $handle)
        -
        -
        - -
        -
        - - - - - - - - -
        get_diaspora_key ( $handle)
        -
        - -

        Referenced by diaspora_decode().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_diaspora_reshare_xml ( $url,
         $recurse = 0 
        )
        -
        - -

        Referenced by diaspora_reshare().

        - -
        -
        -
        -
        - diff --git a/doc/html/diaspora_8php.js b/doc/html/diaspora_8php.js deleted file mode 100644 index 8131461cb..000000000 --- a/doc/html/diaspora_8php.js +++ /dev/null @@ -1,37 +0,0 @@ -var diaspora_8php = -[ - [ "diaspora_asphoto", "diaspora_8php.html#a006731620a5242d410358b32678e48e3", null ], - [ "diaspora_comment", "diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829", null ], - [ "diaspora_conversation", "diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f", null ], - [ "diaspora_decode", "diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36", null ], - [ "diaspora_dispatch", "diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66", null ], - [ "diaspora_dispatch_public", "diaspora_8php.html#ab99505944728d46585b8312989de533d", null ], - [ "diaspora_get_contact_by_handle", "diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4", null ], - [ "diaspora_handle_from_contact", "diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff", null ], - [ "diaspora_is_blacklisted", "diaspora_8php.html#a858f70153c384f8778082cf7843a19da", null ], - [ "diaspora_is_reshare", "diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690", null ], - [ "diaspora_like", "diaspora_8php.html#a5d57518545baa31cf8a85a937a267681", null ], - [ "diaspora_message", "diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46", null ], - [ "diaspora_msg_build", "diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b", null ], - [ "diaspora_photo", "diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c", null ], - [ "diaspora_post", "diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31", null ], - [ "diaspora_process_outbound", "diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605", null ], - [ "diaspora_profile", "diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f", null ], - [ "diaspora_pubmsg_build", "diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa", null ], - [ "diaspora_request", "diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598", null ], - [ "diaspora_reshare", "diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007", null ], - [ "diaspora_retraction", "diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9", null ], - [ "diaspora_send_followup", "diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc", null ], - [ "diaspora_send_images", "diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b", null ], - [ "diaspora_send_mail", "diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c", null ], - [ "diaspora_send_relay", "diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d", null ], - [ "diaspora_send_retraction", "diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a", null ], - [ "diaspora_send_status", "diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668", null ], - [ "diaspora_share", "diaspora_8php.html#a69f250b078a46e405647428ec3399a16", null ], - [ "diaspora_signed_retraction", "diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055", null ], - [ "diaspora_transmit", "diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56", null ], - [ "diaspora_unshare", "diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200", null ], - [ "find_diaspora_person_by_handle", "diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b", null ], - [ "get_diaspora_key", "diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e", null ], - [ "get_diaspora_reshare_xml", "diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7", null ] -]; \ No newline at end of file diff --git a/doc/html/dimport_8php.html b/doc/html/dimport_8php.html deleted file mode 100644 index 925e95097..000000000 --- a/doc/html/dimport_8php.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -The Red Matrix: include/dimport.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dimport.php File Reference
        -
        -
        - - - - -

        -Functions

         foofoo ()
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        foofoo ()
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/dimport_8php.js b/doc/html/dimport_8php.js deleted file mode 100644 index 1f463fb3d..000000000 --- a/doc/html/dimport_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var dimport_8php = -[ - [ "foofoo", "dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html deleted file mode 100644 index e3fe69222..000000000 --- a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/suckerberg Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        suckerberg Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js deleted file mode 100644 index c0919b906..000000000 --- a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_0262a6a8df56a167e3761b6e5a54bb1c = -[ - [ "php", "dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html", "dir_ac4f5165c8d71ebb1a1a0a168a48f3f7" ] -]; \ No newline at end of file diff --git a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html deleted file mode 100644 index 6ed121816..000000000 --- a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - - - -

        -Files

        file  config.php
         
        file  style.php
         
        file  theme.php
         
        file  theme_init.php
         
        -
        -
        - diff --git a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js deleted file mode 100644 index b08bbd12c..000000000 --- a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js +++ /dev/null @@ -1,7 +0,0 @@ -var dir_032dd9e2cfe278a2cfa5eb9547448eb9 = -[ - [ "config.php", "view_2theme_2redbasic_2php_2config_8php.html", "view_2theme_2redbasic_2php_2config_8php" ], - [ "style.php", "view_2theme_2redbasic_2php_2style_8php.html", "view_2theme_2redbasic_2php_2style_8php" ], - [ "theme.php", "view_2theme_2redbasic_2php_2theme_8php.html", "view_2theme_2redbasic_2php_2theme_8php" ], - [ "theme_init.php", "theme_2redbasic_2php_2theme__init_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html deleted file mode 100644 index 733c56cef..000000000 --- a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        schema Directory Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Files

        file  darkness.php
         
        file  darknessleftaside.php
         
        file  darknessrightaside.php
         
        file  greenthumbnails.php
         
        file  minimalisticdarkness.php
         
        file  olddefault.php
         
        file  passion.php
         
        file  passionwide.php
         
        file  pine.php
         
        file  redbasic.php
         
        file  widedarkness.php
         
        -
        -
        - diff --git a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js deleted file mode 100644 index c0f751065..000000000 --- a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js +++ /dev/null @@ -1,14 +0,0 @@ -var dir_05f4fba29266e8fd7869afcd6cefb5cb = -[ - [ "darkness.php", "darkness_8php.html", null ], - [ "darknessleftaside.php", "darknessleftaside_8php.html", null ], - [ "darknessrightaside.php", "darknessrightaside_8php.html", null ], - [ "greenthumbnails.php", "greenthumbnails_8php.html", null ], - [ "minimalisticdarkness.php", "minimalisticdarkness_8php.html", "minimalisticdarkness_8php" ], - [ "olddefault.php", "olddefault_8php.html", null ], - [ "passion.php", "passion_8php.html", null ], - [ "passionwide.php", "passionwide_8php.html", null ], - [ "pine.php", "pine_8php.html", null ], - [ "redbasic.php", "redbasic_8php.html", null ], - [ "widedarkness.php", "widedarkness_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html deleted file mode 100644 index b0a09dcc0..000000000 --- a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/occupant Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        occupant Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js b/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js deleted file mode 100644 index 68cdb9382..000000000 --- a/doc/html/dir_0d5ac3124d787e6297f47179aec2cdad.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_0d5ac3124d787e6297f47179aec2cdad = -[ - [ "php", "dir_94ce3c0aa655f52cbce858751688d328.html", "dir_94ce3c0aa655f52cbce858751688d328" ] -]; \ No newline at end of file diff --git a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html deleted file mode 100644 index 7a5f77a99..000000000 --- a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: util/fpostit Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        fpostit Directory Reference
        -
        -
        - - - - -

        -Files

        file  fpostit.php
         
        -
        -
        - diff --git a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js deleted file mode 100644 index b73b33dda..000000000 --- a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_0eaa4a0adae8ba4811e133c6e594aeee = -[ - [ "fpostit.php", "fpostit_8php.html", "fpostit_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.html b/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.html deleted file mode 100644 index c24cdb051..000000000 --- a/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/suckerberg Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        suckerberg Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.js b/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.js deleted file mode 100644 index fa59e2533..000000000 --- a/doc/html/dir_1586f67ab5300c2995f38a68fc5c4b7d.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_1586f67ab5300c2995f38a68fc5c4b7d = -[ - [ "php", "dir_172e021ddcd8632dc2b797c4a4961924.html", "dir_172e021ddcd8632dc2b797c4a4961924" ] -]; \ No newline at end of file diff --git a/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.html b/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.html deleted file mode 100644 index e61b38ffc..000000000 --- a/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/suckerberg/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.js b/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.js deleted file mode 100644 index 42332d5e5..000000000 --- a/doc/html/dir_172e021ddcd8632dc2b797c4a4961924.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_172e021ddcd8632dc2b797c4a4961924 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html b/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html deleted file mode 100644 index ac82b3a1d..000000000 --- a/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - -The Red Matrix: include/dba Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        dba Directory Reference
        -
        -
        - - - - - - - - - - - -

        -Files

        file  dba_driver.php
         some database related functions and abstract driver class.
         
        file  dba_mysql.php
         
        file  dba_mysqli.php
         
        file  dba_postgres.php
         
        -
        -
        - diff --git a/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js b/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js deleted file mode 100644 index 1c1549310..000000000 --- a/doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js +++ /dev/null @@ -1,13 +0,0 @@ -var dir_21bc5169ff11430004758be31dcfc6c4 = -[ - [ "dba_driver.php", "dba__driver_8php.html", "dba__driver_8php" ], - [ "dba_mysql.php", "dba__mysql_8php.html", [ - [ "dba_mysql", "classdba__mysql.html", "classdba__mysql" ] - ] ], - [ "dba_mysqli.php", "dba__mysqli_8php.html", [ - [ "dba_mysqli", "classdba__mysqli.html", "classdba__mysqli" ] - ] ], - [ "dba_postgres.php", "dba__postgres_8php.html", [ - [ "dba_postgres", "classdba__postgres.html", "classdba__postgres" ] - ] ] -]; \ No newline at end of file diff --git a/doc/html/dir_2222f31d7a61e527af3624100548cf57.html b/doc/html/dir_2222f31d7a61e527af3624100548cf57.html deleted file mode 100644 index 84b4bdafe..000000000 --- a/doc/html/dir_2222f31d7a61e527af3624100548cf57.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        extend Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  theme
         
        -
        -
        - diff --git a/doc/html/dir_2222f31d7a61e527af3624100548cf57.js b/doc/html/dir_2222f31d7a61e527af3624100548cf57.js deleted file mode 100644 index 2c06b48e9..000000000 --- a/doc/html/dir_2222f31d7a61e527af3624100548cf57.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_2222f31d7a61e527af3624100548cf57 = -[ - [ "theme", "dir_2b01166339035d109f34f44565eac444.html", "dir_2b01166339035d109f34f44565eac444" ] -]; \ No newline at end of file diff --git a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html deleted file mode 100644 index 51d5b9002..000000000 --- a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: util Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        util Directory Reference
        -
        -
        - - - - - - -

        -Directories

        directory  fpostit
         
        directory  zotsh
         
        - - - - - - - - - - - - - - - - - - - - - -

        -Files

        file  db_update.php
         
        file  docblox_errorchecker.php
         
        file  extract.php
         
        file  friendica-to-smarty-tpl.py
         
        file  php2po.php
         
        file  po2php.php
         
        file  tpldebug.php
         
        file  typo.php
         
        file  typohelper.php
         
        file  updatetpl.py
         
        -
        -
        - diff --git a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js deleted file mode 100644 index b77d4947e..000000000 --- a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js +++ /dev/null @@ -1,15 +0,0 @@ -var dir_23ec12649285f9fabf3a6b7380226c28 = -[ - [ "fpostit", "dir_0eaa4a0adae8ba4811e133c6e594aeee.html", "dir_0eaa4a0adae8ba4811e133c6e594aeee" ], - [ "zotsh", "dir_fbbac2f976ce3830c063dc14fc87781a.html", "dir_fbbac2f976ce3830c063dc14fc87781a" ], - [ "db_update.php", "db__update_8php.html", null ], - [ "docblox_errorchecker.php", "docblox__errorchecker_8php.html", "docblox__errorchecker_8php" ], - [ "extract.php", "extract_8php.html", "extract_8php" ], - [ "friendica-to-smarty-tpl.py", "friendica-to-smarty-tpl_8py.html", "friendica-to-smarty-tpl_8py" ], - [ "php2po.php", "php2po_8php.html", "php2po_8php" ], - [ "po2php.php", "po2php_8php.html", "po2php_8php" ], - [ "tpldebug.php", "tpldebug_8php.html", "tpldebug_8php" ], - [ "typo.php", "typo_8php.html", "typo_8php" ], - [ "typohelper.php", "typohelper_8php.html", "typohelper_8php" ], - [ "updatetpl.py", "updatetpl_8py.html", "updatetpl_8py" ] -]; \ No newline at end of file diff --git a/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.html b/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.html deleted file mode 100644 index 085888ac3..000000000 --- a/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/js Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        js Directory Reference
        -
        -
        - - - - -

        -Files

        file  mod_filestorage.php
         
        -
        -
        - diff --git a/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.js b/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.js deleted file mode 100644 index b46498175..000000000 --- a/doc/html/dir_24b9ffacd044b9b20a6b863179c605d1.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_24b9ffacd044b9b20a6b863179c605d1 = -[ - [ "mod_filestorage.php", "mod__filestorage_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.html b/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.html deleted file mode 100644 index c5f57ad6f..000000000 --- a/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: util/wp/post_to_red Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        post_to_red Directory Reference
        -
        -
        - - - - -

        -Files

        file  post_to_red.php
         
        -
        -
        - diff --git a/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.js b/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.js deleted file mode 100644 index e521771ca..000000000 --- a/doc/html/dir_25f74a9991dbbca1b52a94e358ca73c1.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_25f74a9991dbbca1b52a94e358ca73c1 = -[ - [ "post_to_red.php", "post__to__red_8php.html", "post__to__red_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_2b01166339035d109f34f44565eac444.html b/doc/html/dir_2b01166339035d109f34f44565eac444.html deleted file mode 100644 index 0fa9879a5..000000000 --- a/doc/html/dir_2b01166339035d109f34f44565eac444.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  deadsuperhero
         
        -
        -
        - diff --git a/doc/html/dir_2b01166339035d109f34f44565eac444.js b/doc/html/dir_2b01166339035d109f34f44565eac444.js deleted file mode 100644 index 11a7571b3..000000000 --- a/doc/html/dir_2b01166339035d109f34f44565eac444.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_2b01166339035d109f34f44565eac444 = -[ - [ "deadsuperhero", "dir_bf49406b6a987836ba4fe5618afdb371.html", "dir_bf49406b6a987836ba4fe5618afdb371" ] -]; \ No newline at end of file diff --git a/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.html b/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.html deleted file mode 100644 index f124cec42..000000000 --- a/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/yolo/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.js b/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.js deleted file mode 100644 index d905a40ba..000000000 --- a/doc/html/dir_3b9797c0babe758cd341aa12c993dd83.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_3b9797c0babe758cd341aa12c993dd83 = -[ - [ "style.php", "yolo_2php_2style_8php.html", null ], - [ "theme.php", "yolo_2php_2theme_8php.html", "yolo_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_3ce0e055da4865b813ea0aa230224599.html b/doc/html/dir_3ce0e055da4865b813ea0aa230224599.html deleted file mode 100644 index 81ad6e4b9..000000000 --- a/doc/html/dir_3ce0e055da4865b813ea0aa230224599.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sunbeam/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_3ce0e055da4865b813ea0aa230224599.js b/doc/html/dir_3ce0e055da4865b813ea0aa230224599.js deleted file mode 100644 index 4797e3d81..000000000 --- a/doc/html/dir_3ce0e055da4865b813ea0aa230224599.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_3ce0e055da4865b813ea0aa230224599 = -[ - [ "style.php", "sunbeam_2php_2style_8php.html", null ], - [ "theme.php", "sunbeam_2php_2theme_8php.html", "sunbeam_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html deleted file mode 100644 index 9949aeeb2..000000000 --- a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        schema Directory Reference
        -
        -
        - - - - - - - - - - - - - - - - -

        -Files

        file  boxy.php
         
        file  BS-Default.php
         
        file  dark.php
         
        file  notred.php
         
        file  simple_black_on_white.php
         
        file  simple_green_on_black.php
         
        file  simple_white_on_black.php
         
        -
        -
        - diff --git a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js deleted file mode 100644 index 459c9186f..000000000 --- a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js +++ /dev/null @@ -1,10 +0,0 @@ -var dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb = -[ - [ "boxy.php", "boxy_8php.html", null ], - [ "BS-Default.php", "BS-Default_8php.html", null ], - [ "dark.php", "dark_8php.html", null ], - [ "notred.php", "notred_8php.html", null ], - [ "simple_black_on_white.php", "simple__black__on__white_8php.html", null ], - [ "simple_green_on_black.php", "simple__green__on__black_8php.html", null ], - [ "simple_white_on_black.php", "simple__white__on__black_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_3de62e6fc7b5905e890806571f832581.html b/doc/html/dir_3de62e6fc7b5905e890806571f832581.html deleted file mode 100644 index 968cef266..000000000 --- a/doc/html/dir_3de62e6fc7b5905e890806571f832581.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/yolo Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        yolo Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_3de62e6fc7b5905e890806571f832581.js b/doc/html/dir_3de62e6fc7b5905e890806571f832581.js deleted file mode 100644 index 8b7820db8..000000000 --- a/doc/html/dir_3de62e6fc7b5905e890806571f832581.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_3de62e6fc7b5905e890806571f832581 = -[ - [ "php", "dir_80b621040c90c64e1a3ba8df441fb198.html", "dir_80b621040c90c64e1a3ba8df441fb198" ] -]; \ No newline at end of file diff --git a/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.html b/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.html deleted file mode 100644 index 46023c8ee..000000000 --- a/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sporadic/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.js b/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.js deleted file mode 100644 index 106b7c31c..000000000 --- a/doc/html/dir_3f87478dd9b9ff2b54bc96c9063f79a0.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_3f87478dd9b9ff2b54bc96c9063f79a0 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_4acb285a1960a920438b718da0958cf4.html b/doc/html/dir_4acb285a1960a920438b718da0958cf4.html deleted file mode 100644 index b609d2603..000000000 --- a/doc/html/dir_4acb285a1960a920438b718da0958cf4.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/stumble Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        stumble Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_4acb285a1960a920438b718da0958cf4.js b/doc/html/dir_4acb285a1960a920438b718da0958cf4.js deleted file mode 100644 index ddf00ba8a..000000000 --- a/doc/html/dir_4acb285a1960a920438b718da0958cf4.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_4acb285a1960a920438b718da0958cf4 = -[ - [ "php", "dir_65522070e0a83623cefc01ebe26a83e3.html", "dir_65522070e0a83623cefc01ebe26a83e3" ] -]; \ No newline at end of file diff --git a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html deleted file mode 100644 index 382655c52..000000000 --- a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        redbasic Directory Reference
        -
        -
        - - - - - - -

        -Directories

        directory  php
         
        directory  schema
         
        -
        -
        - diff --git a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js deleted file mode 100644 index b48a368d3..000000000 --- a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_55dbaf9b7b53c4fc605c9011743a7353 = -[ - [ "php", "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html", "dir_032dd9e2cfe278a2cfa5eb9547448eb9" ], - [ "schema", "dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html", "dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb" ] -]; \ No newline at end of file diff --git a/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.html b/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.html deleted file mode 100644 index 8398efb3a..000000000 --- a/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/minded/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.js b/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.js deleted file mode 100644 index 0c3e87db5..000000000 --- a/doc/html/dir_5adc1a22d666400f49fcc8826e30cd6d.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_5adc1a22d666400f49fcc8826e30cd6d = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2minded_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.html b/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.html deleted file mode 100644 index 1e9f06608..000000000 --- a/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/hivenet Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        hivenet Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.js b/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.js deleted file mode 100644 index f0bbc4fcf..000000000 --- a/doc/html/dir_5b50d2dc059442371252f4f6fa0b8ef6.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_5b50d2dc059442371252f4f6fa0b8ef6 = -[ - [ "php", "dir_da7dee9003bbd0df28447261834d7815.html", "dir_da7dee9003bbd0df28447261834d7815" ] -]; \ No newline at end of file diff --git a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html deleted file mode 100644 index 70b82fa1e..000000000 --- a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/stumble/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js deleted file mode 100644 index f914d9b01..000000000 --- a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_65522070e0a83623cefc01ebe26a83e3 = -[ - [ "style.php", "stumble_2php_2style_8php.html", null ], - [ "theme.php", "stumble_2php_2theme_8php.html", "stumble_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_6b44a0e797e2f12381093380e3e54763.html b/doc/html/dir_6b44a0e797e2f12381093380e3e54763.html deleted file mode 100644 index 2492bfb49..000000000 --- a/doc/html/dir_6b44a0e797e2f12381093380e3e54763.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - - - - - -

        -Files

        file  config.php
         
        file  default.php
         
        file  style.php
         
        file  theme.php
         
        file  theme_init.php
         
        -
        -
        - diff --git a/doc/html/dir_6b44a0e797e2f12381093380e3e54763.js b/doc/html/dir_6b44a0e797e2f12381093380e3e54763.js deleted file mode 100644 index 04783bb16..000000000 --- a/doc/html/dir_6b44a0e797e2f12381093380e3e54763.js +++ /dev/null @@ -1,8 +0,0 @@ -var dir_6b44a0e797e2f12381093380e3e54763 = -[ - [ "config.php", "view_2theme_2redstrap_2php_2config_8php.html", "view_2theme_2redstrap_2php_2config_8php" ], - [ "default.php", "theme_2redstrap_2php_2default_8php.html", "theme_2redstrap_2php_2default_8php" ], - [ "style.php", "redstrap_2php_2style_8php.html", "redstrap_2php_2style_8php" ], - [ "theme.php", "redstrap_2php_2theme_8php.html", "redstrap_2php_2theme_8php" ], - [ "theme_init.php", "theme_2redstrap_2php_2theme__init_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html b/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html deleted file mode 100644 index 60379cb00..000000000 --- a/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view/theme Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  blog
         
        -
        -
        - diff --git a/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.js b/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.js deleted file mode 100644 index ae90f9671..000000000 --- a/doc/html/dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b = -[ - [ "blog", "dir_a8a0005c2b8590c535262d232c22afab.html", "dir_a8a0005c2b8590c535262d232c22afab" ] -]; \ No newline at end of file diff --git a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html deleted file mode 100644 index 920784d3d..000000000 --- a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/hivenet Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        hivenet Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js deleted file mode 100644 index cc2615730..000000000 --- a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_6e52a2a2cd27c08b7df5e5cdb216bd77 = -[ - [ "php", "dir_9ef82eb3846cd201470898c3b6ef38cf.html", "dir_9ef82eb3846cd201470898c3b6ef38cf" ] -]; \ No newline at end of file diff --git a/doc/html/dir_720432dea4a717197ae070dbc42b8f20.html b/doc/html/dir_720432dea4a717197ae070dbc42b8f20.html deleted file mode 100644 index 1fe66c5e2..000000000 --- a/doc/html/dir_720432dea4a717197ae070dbc42b8f20.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: util/wp Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        wp Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  post_to_red
         
        -
        -
        - diff --git a/doc/html/dir_720432dea4a717197ae070dbc42b8f20.js b/doc/html/dir_720432dea4a717197ae070dbc42b8f20.js deleted file mode 100644 index b394ccd3f..000000000 --- a/doc/html/dir_720432dea4a717197ae070dbc42b8f20.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_720432dea4a717197ae070dbc42b8f20 = -[ - [ "post_to_red", "dir_25f74a9991dbbca1b52a94e358ca73c1.html", "dir_25f74a9991dbbca1b52a94e358ca73c1" ] -]; \ No newline at end of file diff --git a/doc/html/dir_73186942b3defcab180a242f911ab570.html b/doc/html/dir_73186942b3defcab180a242f911ab570.html deleted file mode 100644 index c1e52f11c..000000000 --- a/doc/html/dir_73186942b3defcab180a242f911ab570.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/yolo Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        yolo Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_73186942b3defcab180a242f911ab570.js b/doc/html/dir_73186942b3defcab180a242f911ab570.js deleted file mode 100644 index 8fd3c9e1e..000000000 --- a/doc/html/dir_73186942b3defcab180a242f911ab570.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_73186942b3defcab180a242f911ab570 = -[ - [ "php", "dir_3b9797c0babe758cd341aa12c993dd83.html", "dir_3b9797c0babe758cd341aa12c993dd83" ] -]; \ No newline at end of file diff --git a/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html b/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html deleted file mode 100644 index bd3819ac3..000000000 --- a/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sporadic/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.js b/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.js deleted file mode 100644 index 2c53f3128..000000000 --- a/doc/html/dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_7ddcf206aaa3a9c8f0e8a9760ac02bed = -[ - [ "style.php", "sporadic_2php_2style_8php.html", null ], - [ "theme.php", "sporadic_2php_2theme_8php.html", "sporadic_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html deleted file mode 100644 index d477e48a8..000000000 --- a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: include/Import Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Import Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  Importer.php
         
        file  refimport.php
         
        -
        -
        - diff --git a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js deleted file mode 100644 index 70fef9c82..000000000 --- a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js +++ /dev/null @@ -1,7 +0,0 @@ -var dir_7edbbd0f8c514efef79942dcdc21f738 = -[ - [ "Importer.php", "Importer_8php.html", [ - [ "Import", "classRedMatrix_1_1Import_1_1Import.html", "classRedMatrix_1_1Import_1_1Import" ] - ] ], - [ "refimport.php", "refimport_8php.html", "refimport_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.html b/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.html deleted file mode 100644 index 34313d788..000000000 --- a/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/yolo/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.js b/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.js deleted file mode 100644 index fa283d845..000000000 --- a/doc/html/dir_80b621040c90c64e1a3ba8df441fb198.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_80b621040c90c64e1a3ba8df441fb198 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.html b/doc/html/dir_817f6d302394b98e59575acdb59998bc.html deleted file mode 100644 index 3c4237aac..000000000 --- a/doc/html/dir_817f6d302394b98e59575acdb59998bc.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: view/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - - - - - - - - - - - -

        -Files

        file  choklet.php
         
        file  default.php
         
        file  full.php
         
        file  minimal.php
         
        file  mod_import.php
         
        file  none.php
         
        file  redable.php
         
        file  theme_init.php
         
        -
        -
        - diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.js b/doc/html/dir_817f6d302394b98e59575acdb59998bc.js deleted file mode 100644 index c33882a29..000000000 --- a/doc/html/dir_817f6d302394b98e59575acdb59998bc.js +++ /dev/null @@ -1,11 +0,0 @@ -var dir_817f6d302394b98e59575acdb59998bc = -[ - [ "choklet.php", "choklet_8php.html", null ], - [ "default.php", "php_2default_8php.html", "php_2default_8php" ], - [ "full.php", "full_8php.html", "full_8php" ], - [ "minimal.php", "minimal_8php.html", null ], - [ "mod_import.php", "mod__import_8php.html", "mod__import_8php" ], - [ "none.php", "none_8php.html", null ], - [ "redable.php", "redable_8php.html", "redable_8php" ], - [ "theme_init.php", "php_2theme__init_8php.html", "php_2theme__init_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.html b/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.html deleted file mode 100644 index d3287f8ac..000000000 --- a/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sunbeam Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        sunbeam Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.js b/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.js deleted file mode 100644 index 0706d8401..000000000 --- a/doc/html/dir_84d42485a570ed49b44a03b64f62adcc.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_84d42485a570ed49b44a03b64f62adcc = -[ - [ "php", "dir_3ce0e055da4865b813ea0aa230224599.html", "dir_3ce0e055da4865b813ea0aa230224599" ] -]; \ No newline at end of file diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html deleted file mode 100644 index 7553386ef..000000000 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: view/theme Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme Directory Reference
        -
        -
        - - - - - - - - -

        -Directories

        directory  apw
         
        directory  mytheme
         
        directory  redbasic
         
        -
        -
        - diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js deleted file mode 100644 index a903ec53c..000000000 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js +++ /dev/null @@ -1,6 +0,0 @@ -var dir_8543001e5d25368a6edede3e63efb554 = -[ - [ "apw", "dir_d520c5cf583201d9437764f209363c22.html", "dir_d520c5cf583201d9437764f209363c22" ], - [ "mytheme", "dir_8e58ba5e98ac07e59ee15ca7486c9950.html", "dir_8e58ba5e98ac07e59ee15ca7486c9950" ], - [ "redbasic", "dir_55dbaf9b7b53c4fc605c9011743a7353.html", "dir_55dbaf9b7b53c4fc605c9011743a7353" ] -]; \ No newline at end of file diff --git a/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.html b/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.html deleted file mode 100644 index ac34520b1..000000000 --- a/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sunbeam Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        sunbeam Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.js b/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.js deleted file mode 100644 index cab7c6694..000000000 --- a/doc/html/dir_863cdfcaa3c256fef8de0dcc53d6311a.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_863cdfcaa3c256fef8de0dcc53d6311a = -[ - [ "php", "dir_f6607f4f29fa266cde007631e2b0eade.html", "dir_f6607f4f29fa266cde007631e2b0eade" ] -]; \ No newline at end of file diff --git a/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.html b/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.html deleted file mode 100644 index b9d6d7b18..000000000 --- a/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - -

        -Files

        file  default.php
         
        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.js b/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.js deleted file mode 100644 index 9873f477e..000000000 --- a/doc/html/dir_887fdc94312ba7b057b6bfe7fdd27ea5.js +++ /dev/null @@ -1,6 +0,0 @@ -var dir_887fdc94312ba7b057b6bfe7fdd27ea5 = -[ - [ "default.php", "theme_2mytheme_2php_2default_8php.html", "theme_2mytheme_2php_2default_8php" ], - [ "style.php", "view_2theme_2mytheme_2php_2style_8php.html", null ], - [ "theme.php", "view_2theme_2mytheme_2php_2theme_8php.html", "view_2theme_2mytheme_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html deleted file mode 100644 index 67c9c30f6..000000000 --- a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - -The Red Project: view/theme/test Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        test Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - - - - diff --git a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js deleted file mode 100644 index 0b8eea955..000000000 --- a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_8e4ceba158be32034f698ffd6810bb05 = -[ - [ "php", "dir_955ae6074e6c84afe72925e364242b14.html", "dir_955ae6074e6c84afe72925e364242b14" ] -]; \ No newline at end of file diff --git a/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.html b/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.html deleted file mode 100644 index 0951ac5a3..000000000 --- a/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        mytheme Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.js b/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.js deleted file mode 100644 index 0e4436f16..000000000 --- a/doc/html/dir_8e58ba5e98ac07e59ee15ca7486c9950.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_8e58ba5e98ac07e59ee15ca7486c9950 = -[ - [ "php", "dir_887fdc94312ba7b057b6bfe7fdd27ea5.html", "dir_887fdc94312ba7b057b6bfe7fdd27ea5" ] -]; \ No newline at end of file diff --git a/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.html b/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.html deleted file mode 100644 index a8fed5c16..000000000 --- a/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        blogga Directory Reference
        -
        -
        - - - - - - -

        -Directories

        directory  php
         
        directory  view
         
        -
        -
        - diff --git a/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.js b/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.js deleted file mode 100644 index d5e65e0d6..000000000 --- a/doc/html/dir_922c77e958c99a98db92d38a3a349bf2.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_922c77e958c99a98db92d38a3a349bf2 = -[ - [ "php", "dir_c02447ad39a5307c81c64e880ec9e8d3.html", "dir_c02447ad39a5307c81c64e880ec9e8d3" ], - [ "view", "dir_92d6b429199666aa3765c8a934db5e14.html", "dir_92d6b429199666aa3765c8a934db5e14" ] -]; \ No newline at end of file diff --git a/doc/html/dir_92d6b429199666aa3765c8a934db5e14.html b/doc/html/dir_92d6b429199666aa3765c8a934db5e14.html deleted file mode 100644 index fbd8bf9e8..000000000 --- a/doc/html/dir_92d6b429199666aa3765c8a934db5e14.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        view Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  theme
         
        -
        -
        - diff --git a/doc/html/dir_92d6b429199666aa3765c8a934db5e14.js b/doc/html/dir_92d6b429199666aa3765c8a934db5e14.js deleted file mode 100644 index 2a2dd8dc9..000000000 --- a/doc/html/dir_92d6b429199666aa3765c8a934db5e14.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_92d6b429199666aa3765c8a934db5e14 = -[ - [ "theme", "dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html", "dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b" ] -]; \ No newline at end of file diff --git a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html deleted file mode 100644 index 4a232a331..000000000 --- a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/occupant/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js b/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js deleted file mode 100644 index 8fb70cd72..000000000 --- a/doc/html/dir_94ce3c0aa655f52cbce858751688d328.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_94ce3c0aa655f52cbce858751688d328 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_955ae6074e6c84afe72925e364242b14.html b/doc/html/dir_955ae6074e6c84afe72925e364242b14.html deleted file mode 100644 index d031ec14f..000000000 --- a/doc/html/dir_955ae6074e6c84afe72925e364242b14.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - -The Red Project: view/theme/test/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - -

        -Files

        file  theme.php
         
        -
        -
        - - - - diff --git a/doc/html/dir_955ae6074e6c84afe72925e364242b14.js b/doc/html/dir_955ae6074e6c84afe72925e364242b14.js deleted file mode 100644 index 427747272..000000000 --- a/doc/html/dir_955ae6074e6c84afe72925e364242b14.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_955ae6074e6c84afe72925e364242b14 = -[ - [ "theme.php", "test_2php_2theme_8php.html", "test_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html deleted file mode 100644 index 91c6ed04b..000000000 --- a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/hivenet/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js deleted file mode 100644 index 576c2c655..000000000 --- a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_9ef82eb3846cd201470898c3b6ef38cf = -[ - [ "style.php", "hivenet_2php_2style_8php.html", null ], - [ "theme.php", "hivenet_2php_2theme_8php.html", "hivenet_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir__fns_8php.html b/doc/html/dir__fns_8php.html deleted file mode 100644 index 9b1f0b31f..000000000 --- a/doc/html/dir__fns_8php.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - -The Red Matrix: include/dir_fns.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dir_fns.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - -

        -Functions

         find_upstream_directory ($dirmode)
         
         check_upstream_directory ()
         
         dir_sort_links ()
         
         dir_safe_mode ()
         
         sync_directories ($dirmode)
         
         update_directory_entry ($ud)
         
         local_dir_update ($uid, $force)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        check_upstream_directory ()
        -
        -

        Directories may come and go over time. We will need to check that our directory server is still valid occasionally, and reset to something that is if our directory has gone offline for any reason

        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        dir_safe_mode ()
        -
        - -

        Referenced by widget_dirsafemode().

        - -
        -
        - -
        -
        - - - - - - - -
        dir_sort_links ()
        -
        -

        dir_sort_links() Called by the directory_sort widget

        - -

        Referenced by widget_dirsort().

        - -
        -
        - -
        -
        - - - - - - - - -
        find_upstream_directory ( $dirmode)
        -
        -

        No directory has yet been set. For most sites, pick one at random from our list of directory servers. However, if we're a directory server ourself, point at the local instance We will then set this value so this should only ever happen once. Ideally there will be an admin setting to change to a different directory server if you don't like our choice or if circumstances change.

        - -

        Referenced by directory_content(), directory_run(), navbar_complete(), pubsites_content(), ratings_init(), and update_suggestions().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        local_dir_update ( $uid,
         $force 
        )
        -
        -

        local_dir_update($uid,$force) push local channel updates to a local directory server This is called from include/directory.php if a profile is to be pushed to the directory and the local hub in this case is any kind of directory server.

        - -

        Referenced by directory_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        sync_directories ( $dirmode)
        -
        -

        sync_directories($mode)

        -
        Parameters
        - - -
        int$mode,;Checks the directory mode of this hub to see if it is some form of directory server. If it is, get the directory realm of this hub. Fetch a list of all other directory servers in this realm and request a directory sync packet. This will contain both directory updates and new ratings. Store these all in the DB. In the case of updates, we will query each of them asynchronously from a poller task. Ratings are stored directly if the rater's signature matches.
        -
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        update_directory_entry ( $ud)
        -
        -

        $function update_directory_entry($ud)

        -
        Parameters
        - - -
        array$ud,;// Entry from update table Given an update record, probe the channel, grab a zot-info packet and refresh/sync the data
        -
        -
        -

        Ignore updating records marked as deleted

        -

        If successful, sets ud_last in the DB to the current datetime for this reddress/webbie

        - -

        Referenced by onedirsync_run().

        - -
        -
        -
        -
        - diff --git a/doc/html/dir__fns_8php.js b/doc/html/dir__fns_8php.js deleted file mode 100644 index d0a717014..000000000 --- a/doc/html/dir__fns_8php.js +++ /dev/null @@ -1,10 +0,0 @@ -var dir__fns_8php = -[ - [ "check_upstream_directory", "dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16", null ], - [ "dir_safe_mode", "dir__fns_8php.html#acf621621e929d49441da30aad76a58cf", null ], - [ "dir_sort_links", "dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774", null ], - [ "find_upstream_directory", "dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d", null ], - [ "local_dir_update", "dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e", null ], - [ "sync_directories", "dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6", null ], - [ "update_directory_entry", "dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_a8a0005c2b8590c535262d232c22afab.html b/doc/html/dir_a8a0005c2b8590c535262d232c22afab.html deleted file mode 100644 index dc599f8bb..000000000 --- a/doc/html/dir_a8a0005c2b8590c535262d232c22afab.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view/theme/blog Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        blog Directory Reference
        -
        -
        - - - - - - - - -

        -Files

        file  config.php
         
        file  default.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_a8a0005c2b8590c535262d232c22afab.js b/doc/html/dir_a8a0005c2b8590c535262d232c22afab.js deleted file mode 100644 index 9311d8a78..000000000 --- a/doc/html/dir_a8a0005c2b8590c535262d232c22afab.js +++ /dev/null @@ -1,6 +0,0 @@ -var dir_a8a0005c2b8590c535262d232c22afab = -[ - [ "config.php", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html", "view_2theme_2blogga_2view_2theme_2blog_2config_8php" ], - [ "default.php", "theme_2blogga_2view_2theme_2blog_2default_8php.html", "theme_2blogga_2view_2theme_2blog_2default_8php" ], - [ "theme.php", "blogga_2view_2theme_2blog_2theme_8php.html", "blogga_2view_2theme_2blog_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_aae29906d7bfc07d076125f669c8352e.html b/doc/html/dir_aae29906d7bfc07d076125f669c8352e.html deleted file mode 100644 index a12af8c64..000000000 --- a/doc/html/dir_aae29906d7bfc07d076125f669c8352e.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: include/photo Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        photo Directory Reference
        -
        -
        - - - - - - - - -

        -Files

        file  photo_driver.php
         
        file  photo_gd.php
         
        file  photo_imagick.php
         
        -
        -
        - diff --git a/doc/html/dir_aae29906d7bfc07d076125f669c8352e.js b/doc/html/dir_aae29906d7bfc07d076125f669c8352e.js deleted file mode 100644 index c8fe31dc4..000000000 --- a/doc/html/dir_aae29906d7bfc07d076125f669c8352e.js +++ /dev/null @@ -1,10 +0,0 @@ -var dir_aae29906d7bfc07d076125f669c8352e = -[ - [ "photo_driver.php", "photo__driver_8php.html", "photo__driver_8php" ], - [ "photo_gd.php", "photo__gd_8php.html", [ - [ "photo_gd", "classphoto__gd.html", "classphoto__gd" ] - ] ], - [ "photo_imagick.php", "photo__imagick_8php.html", [ - [ "photo_imagick", "classphoto__imagick.html", "classphoto__imagick" ] - ] ] -]; \ No newline at end of file diff --git a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html deleted file mode 100644 index 76a464461..000000000 --- a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view/theme/suckerberg/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js deleted file mode 100644 index 0e2f340ef..000000000 --- a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_ac4f5165c8d71ebb1a1a0a168a48f3f7 = -[ - [ "style.php", "suckerberg_2php_2style_8php.html", null ], - [ "theme.php", "suckerberg_2php_2theme_8php.html", "suckerberg_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_b1008ce0b02657da707945523382e0f8.html b/doc/html/dir_b1008ce0b02657da707945523382e0f8.html deleted file mode 100644 index 34c80c536..000000000 --- a/doc/html/dir_b1008ce0b02657da707945523382e0f8.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sporadic Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        sporadic Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_b1008ce0b02657da707945523382e0f8.js b/doc/html/dir_b1008ce0b02657da707945523382e0f8.js deleted file mode 100644 index b3bc8e392..000000000 --- a/doc/html/dir_b1008ce0b02657da707945523382e0f8.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_b1008ce0b02657da707945523382e0f8 = -[ - [ "php", "dir_7ddcf206aaa3a9c8f0e8a9760ac02bed.html", "dir_7ddcf206aaa3a9c8f0e8a9760ac02bed" ] -]; \ No newline at end of file diff --git a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html deleted file mode 100644 index 4aa042ef0..000000000 --- a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: view Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        view Directory Reference
        -
        -
        - - - - - - -

        -Directories

        directory  php
         
        directory  theme
         
        -
        -
        - diff --git a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js deleted file mode 100644 index 991623ea4..000000000 --- a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_b2f003339c516cc00c8cadcafbe82f13 = -[ - [ "php", "dir_817f6d302394b98e59575acdb59998bc.html", "dir_817f6d302394b98e59575acdb59998bc" ], - [ "theme", "dir_8543001e5d25368a6edede3e63efb554.html", "dir_8543001e5d25368a6edede3e63efb554" ] -]; \ No newline at end of file diff --git a/doc/html/dir_b6f208674a96d24af8106c998c637d76.html b/doc/html/dir_b6f208674a96d24af8106c998c637d76.html deleted file mode 100644 index 2cf4a6502..000000000 --- a/doc/html/dir_b6f208674a96d24af8106c998c637d76.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh/easywebdav Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        easywebdav Directory Reference
        -
        -
        - - - - - - - - -

        -Files

        file  __init__.py
         
        file  __version__.py
         
        file  client.py
         
        -
        -
        - diff --git a/doc/html/dir_b6f208674a96d24af8106c998c637d76.js b/doc/html/dir_b6f208674a96d24af8106c998c637d76.js deleted file mode 100644 index 2f870c4bb..000000000 --- a/doc/html/dir_b6f208674a96d24af8106c998c637d76.js +++ /dev/null @@ -1,6 +0,0 @@ -var dir_b6f208674a96d24af8106c998c637d76 = -[ - [ "__init__.py", "____init_____8py.html", "____init_____8py" ], - [ "__version__.py", "____version_____8py.html", "____version_____8py" ], - [ "client.py", "client_8py.html", "client_8py" ] -]; \ No newline at end of file diff --git a/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.html b/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.html deleted file mode 100644 index 1f23efcb1..000000000 --- a/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/stumble Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        stumble Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.js b/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.js deleted file mode 100644 index f2d0be949..000000000 --- a/doc/html/dir_b8abe7ef07ecd5203a481d38354dbb5c.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_b8abe7ef07ecd5203a481d38354dbb5c = -[ - [ "php", "dir_f20b1a70c98162efa33fce7214fb9665.html", "dir_f20b1a70c98162efa33fce7214fb9665" ] -]; \ No newline at end of file diff --git a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html deleted file mode 100644 index a0adcb07a..000000000 --- a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        deadsuperhero Directory Reference
        -
        -
        - - - - - - - - - - - - - - - - - - -

        -Directories

        directory  hivenet
         
        directory  minded
         
        directory  occupant
         
        directory  sporadic
         
        directory  stumble
         
        directory  suckerberg
         
        directory  sunbeam
         
        directory  yolo
         
        -
        -
        - diff --git a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js b/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js deleted file mode 100644 index 37a9fc703..000000000 --- a/doc/html/dir_bf49406b6a987836ba4fe5618afdb371.js +++ /dev/null @@ -1,11 +0,0 @@ -var dir_bf49406b6a987836ba4fe5618afdb371 = -[ - [ "hivenet", "dir_5b50d2dc059442371252f4f6fa0b8ef6.html", "dir_5b50d2dc059442371252f4f6fa0b8ef6" ], - [ "minded", "dir_d53802940ab180b2c59d9e30e9e33e5b.html", "dir_d53802940ab180b2c59d9e30e9e33e5b" ], - [ "occupant", "dir_0d5ac3124d787e6297f47179aec2cdad.html", "dir_0d5ac3124d787e6297f47179aec2cdad" ], - [ "sporadic", "dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html", "dir_dcbba3cf1f9c80ab791fdcb3d0e78672" ], - [ "stumble", "dir_b8abe7ef07ecd5203a481d38354dbb5c.html", "dir_b8abe7ef07ecd5203a481d38354dbb5c" ], - [ "suckerberg", "dir_1586f67ab5300c2995f38a68fc5c4b7d.html", "dir_1586f67ab5300c2995f38a68fc5c4b7d" ], - [ "sunbeam", "dir_863cdfcaa3c256fef8de0dcc53d6311a.html", "dir_863cdfcaa3c256fef8de0dcc53d6311a" ], - [ "yolo", "dir_3de62e6fc7b5905e890806571f832581.html", "dir_3de62e6fc7b5905e890806571f832581" ] -]; \ No newline at end of file diff --git a/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.html b/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.html deleted file mode 100644 index af53f8b58..000000000 --- a/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - - - -

        -Files

        file  config.php
         
        file  default.php
         
        file  theme.php
         
        file  theme_init.php
         
        -
        -
        - diff --git a/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.js b/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.js deleted file mode 100644 index 9013b22b6..000000000 --- a/doc/html/dir_c02447ad39a5307c81c64e880ec9e8d3.js +++ /dev/null @@ -1,7 +0,0 @@ -var dir_c02447ad39a5307c81c64e880ec9e8d3 = -[ - [ "config.php", "view_2theme_2blogga_2php_2config_8php.html", "view_2theme_2blogga_2php_2config_8php" ], - [ "default.php", "theme_2blogga_2php_2default_8php.html", "theme_2blogga_2php_2default_8php" ], - [ "theme.php", "blogga_2php_2theme_8php.html", "blogga_2php_2theme_8php" ], - [ "theme_init.php", "theme_2blogga_2php_2theme__init_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html deleted file mode 100644 index eec8ebe52..000000000 --- a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - - - - - - - -

        -Files

        file  config.php
         
        file  functions.php
         
        file  style.php
         
        file  theme.php
         
        file  theme_init.php
         
        -
        -
        - diff --git a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js deleted file mode 100644 index ebbb99fb2..000000000 --- a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js +++ /dev/null @@ -1,8 +0,0 @@ -var dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5 = -[ - [ "config.php", "view_2theme_2apw_2php_2config_8php.html", "view_2theme_2apw_2php_2config_8php" ], - [ "functions.php", "functions_8php.html", "functions_8php" ], - [ "style.php", "view_2theme_2apw_2php_2style_8php.html", "view_2theme_2apw_2php_2style_8php" ], - [ "theme.php", "view_2theme_2apw_2php_2theme_8php.html", "view_2theme_2apw_2php_2theme_8php" ], - [ "theme_init.php", "theme_2apw_2php_2theme__init_8php.html", "theme_2apw_2php_2theme__init_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html deleted file mode 100644 index a22c4372d..000000000 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - -The Red Matrix: mod Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        mod Directory Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Files

        file  _well_known.php
         
        file  achievements.php
         
        file  acl.php
         
        file  admin.php
         
        file  api.php
         
        file  appman.php
         
        file  apps.php
         
        file  attach.php
         
        file  block.php
         
        file  blocks.php
         
        file  bookmarks.php
         
        file  channel.php
         
        file  chanview.php
         
        file  chat.php
         
        file  chatsvc.php
         
        file  cloud.php
         Initialize RedMatrix's cloud (SabreDAV).
         
        file  common.php
         
        file  connect.php
         
        file  connections.php
         
        file  connedit.php
         
        file  contactgroup.php
         
        file  dav.php
         Initialize RedMatrix's cloud (SabreDAV).
         
        file  delegate.php
         
        file  directory.php
         
        file  dirsearch.php
         
        file  display.php
         
        file  editblock.php
         
        file  editlayout.php
         
        file  editpost.php
         
        file  editwebpage.php
         
        file  events.php
         
        file  fbrowser.php
         
        file  feed.php
         
        file  filer.php
         
        file  filerm.php
         
        file  filestorage.php
         
        file  follow.php
         
        file  fsuggest.php
         
        file  group.php
         
        file  hcard.php
         
        file  help.php
         
        file  home.php
         
        file  hostxrd.php
         
        file  impel.php
         
        file  import.php
         
        file  importelm.php
         
        file  invite.php
         
        file  item.php
         
        file  lang.php
         
        file  layouts.php
         
        file  like.php
         
        file  lockview.php
         
        file  locs.php
         
        file  login.php
         
        file  lostpass.php
         
        file  magic.php
         
        file  mail.php
         
        file  manage.php
         
        file  match.php
         
        file  menu.php
         
        file  message.php
         
        file  mitem.php
         
        file  mood.php
         
        file  msearch.php
         
        file  netgrowth.php
         
        file  network.php
         
        file  new_channel.php
         
        file  notes.php
         
        file  notifications.php
         
        file  notify.php
         
        file  oembed.php
         
        file  oexchange.php
         
        file  online.php
         
        file  openid.php
         
        file  opensearch.php
         
        file  p.php
         
        file  page.php
         
        file  parse_url.php
         
        file  pdledit.php
         
        file  photo.php
         
        file  photos.php
         
        file  php.php
         
        file  ping.php
         
        file  poco.php
         
        file  poke.php
         
        file  poll.php
         
        file  post.php
         
        file  prate.php
         
        file  pretheme.php
         
        file  probe.php
         
        file  profile.php
         
        file  profile_photo.php
         
        file  profiles.php
         
        file  profperm.php
         
        file  pubsites.php
         
        file  pubsub.php
         
        file  pubsubhubbub.php
         
        file  randprof.php
         
        file  rate.php
         
        file  ratings.php
         
        file  ratingsearch.php
         
        file  rbmark.php
         
        file  receive.php
         
        file  regdir.php
         
        file  register.php
         
        file  regmod.php
         
        file  regver.php
         
        file  removeaccount.php
         
        file  removeme.php
         
        file  rmagic.php
         
        file  rpost.php
         
        file  rsd_xml.php
         
        file  search.php
         
        file  search_ac.php
         
        file  service_limits.php
         
        file  settings.php
         
        file  setup.php
         
        file  share.php
         
        file  sharedwithme.php
         
        file  siteinfo.php
         
        file  sitelist.php
         
        file  smilies.php
         
        file  sources.php
         
        file  sslify.php
         
        file  starred.php
         
        file  subthread.php
         
        file  suggest.php
         
        file  tagger.php
         
        file  tagrm.php
         
        file  thing.php
         
        file  toggle_mobile.php
         
        file  toggle_safesearch.php
         
        file  uexport.php
         
        file  update_channel.php
         
        file  update_display.php
         
        file  update_home.php
         
        file  update_network.php
         
        file  update_search.php
         
        file  view.php
         
        file  viewconnections.php
         
        file  viewsrc.php
         
        file  vote.php
         
        file  wall_attach.php
         
        file  wall_upload.php
         
        file  webfinger.php
         
        file  webpages.php
         
        file  wfinger.php
         
        file  xchan.php
         
        file  xpoco.php
         
        file  xrd.php
         
        file  xref.php
         
        file  zfinger.php
         
        file  zotfeed.php
         
        file  zping.php
         
        -
        -
        - diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js deleted file mode 100644 index 5d5d27418..000000000 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ /dev/null @@ -1,157 +0,0 @@ -var dir_d41ce877eb409a4791b288730010abe2 = -[ - [ "_well_known.php", "__well__known_8php.html", "__well__known_8php" ], - [ "achievements.php", "achievements_8php.html", "achievements_8php" ], - [ "acl.php", "acl_8php.html", "acl_8php" ], - [ "admin.php", "admin_8php.html", "admin_8php" ], - [ "api.php", "mod_2api_8php.html", "mod_2api_8php" ], - [ "appman.php", "appman_8php.html", "appman_8php" ], - [ "apps.php", "mod_2apps_8php.html", "mod_2apps_8php" ], - [ "attach.php", "mod_2attach_8php.html", "mod_2attach_8php" ], - [ "block.php", "block_8php.html", "block_8php" ], - [ "blocks.php", "blocks_8php.html", "blocks_8php" ], - [ "bookmarks.php", "mod_2bookmarks_8php.html", "mod_2bookmarks_8php" ], - [ "channel.php", "channel_8php.html", "channel_8php" ], - [ "chanview.php", "chanview_8php.html", "chanview_8php" ], - [ "chat.php", "mod_2chat_8php.html", "mod_2chat_8php" ], - [ "chatsvc.php", "chatsvc_8php.html", "chatsvc_8php" ], - [ "cloud.php", "cloud_8php.html", "cloud_8php" ], - [ "common.php", "common_8php.html", "common_8php" ], - [ "connect.php", "connect_8php.html", "connect_8php" ], - [ "connections.php", "connections_8php.html", "connections_8php" ], - [ "connedit.php", "connedit_8php.html", "connedit_8php" ], - [ "contactgroup.php", "contactgroup_8php.html", "contactgroup_8php" ], - [ "dav.php", "dav_8php.html", "dav_8php" ], - [ "delegate.php", "delegate_8php.html", "delegate_8php" ], - [ "directory.php", "mod_2directory_8php.html", "mod_2directory_8php" ], - [ "dirsearch.php", "dirsearch_8php.html", "dirsearch_8php" ], - [ "display.php", "display_8php.html", "display_8php" ], - [ "editblock.php", "editblock_8php.html", "editblock_8php" ], - [ "editlayout.php", "editlayout_8php.html", "editlayout_8php" ], - [ "editpost.php", "editpost_8php.html", "editpost_8php" ], - [ "editwebpage.php", "editwebpage_8php.html", "editwebpage_8php" ], - [ "events.php", "events_8php.html", "events_8php" ], - [ "fbrowser.php", "fbrowser_8php.html", "fbrowser_8php" ], - [ "feed.php", "feed_8php.html", "feed_8php" ], - [ "filer.php", "filer_8php.html", "filer_8php" ], - [ "filerm.php", "filerm_8php.html", "filerm_8php" ], - [ "filestorage.php", "filestorage_8php.html", "filestorage_8php" ], - [ "follow.php", "mod_2follow_8php.html", "mod_2follow_8php" ], - [ "fsuggest.php", "fsuggest_8php.html", "fsuggest_8php" ], - [ "group.php", "mod_2group_8php.html", "mod_2group_8php" ], - [ "hcard.php", "hcard_8php.html", "hcard_8php" ], - [ "help.php", "help_8php.html", "help_8php" ], - [ "home.php", "home_8php.html", "home_8php" ], - [ "hostxrd.php", "hostxrd_8php.html", "hostxrd_8php" ], - [ "impel.php", "impel_8php.html", "impel_8php" ], - [ "import.php", "import_8php.html", "import_8php" ], - [ "importelm.php", "importelm_8php.html", "importelm_8php" ], - [ "invite.php", "invite_8php.html", "invite_8php" ], - [ "item.php", "item_8php.html", "item_8php" ], - [ "lang.php", "lang_8php.html", "lang_8php" ], - [ "layouts.php", "layouts_8php.html", "layouts_8php" ], - [ "like.php", "like_8php.html", "like_8php" ], - [ "lockview.php", "lockview_8php.html", "lockview_8php" ], - [ "locs.php", "locs_8php.html", "locs_8php" ], - [ "login.php", "login_8php.html", "login_8php" ], - [ "lostpass.php", "lostpass_8php.html", "lostpass_8php" ], - [ "magic.php", "magic_8php.html", "magic_8php" ], - [ "mail.php", "mail_8php.html", "mail_8php" ], - [ "manage.php", "manage_8php.html", "manage_8php" ], - [ "match.php", "match_8php.html", "match_8php" ], - [ "menu.php", "mod_2menu_8php.html", "mod_2menu_8php" ], - [ "message.php", "mod_2message_8php.html", "mod_2message_8php" ], - [ "mitem.php", "mitem_8php.html", "mitem_8php" ], - [ "mood.php", "mood_8php.html", "mood_8php" ], - [ "msearch.php", "msearch_8php.html", "msearch_8php" ], - [ "netgrowth.php", "netgrowth_8php.html", "netgrowth_8php" ], - [ "network.php", "mod_2network_8php.html", "mod_2network_8php" ], - [ "new_channel.php", "new__channel_8php.html", "new__channel_8php" ], - [ "notes.php", "notes_8php.html", "notes_8php" ], - [ "notifications.php", "notifications_8php.html", "notifications_8php" ], - [ "notify.php", "mod_2notify_8php.html", "mod_2notify_8php" ], - [ "oembed.php", "mod_2oembed_8php.html", "mod_2oembed_8php" ], - [ "oexchange.php", "oexchange_8php.html", "oexchange_8php" ], - [ "online.php", "online_8php.html", "online_8php" ], - [ "openid.php", "openid_8php.html", "openid_8php" ], - [ "opensearch.php", "opensearch_8php.html", "opensearch_8php" ], - [ "p.php", "p_8php.html", "p_8php" ], - [ "page.php", "page_8php.html", "page_8php" ], - [ "parse_url.php", "parse__url_8php.html", "parse__url_8php" ], - [ "pdledit.php", "pdledit_8php.html", "pdledit_8php" ], - [ "photo.php", "photo_8php.html", "photo_8php" ], - [ "photos.php", "mod_2photos_8php.html", "mod_2photos_8php" ], - [ "php.php", "php_8php.html", "php_8php" ], - [ "ping.php", "ping_8php.html", "ping_8php" ], - [ "poco.php", "poco_8php.html", "poco_8php" ], - [ "poke.php", "poke_8php.html", "poke_8php" ], - [ "poll.php", "poll_8php.html", "poll_8php" ], - [ "post.php", "post_8php.html", "post_8php" ], - [ "prate.php", "prate_8php.html", "prate_8php" ], - [ "pretheme.php", "pretheme_8php.html", "pretheme_8php" ], - [ "probe.php", "mod_2probe_8php.html", "mod_2probe_8php" ], - [ "profile.php", "profile_8php.html", "profile_8php" ], - [ "profile_photo.php", "profile__photo_8php.html", "profile__photo_8php" ], - [ "profiles.php", "profiles_8php.html", "profiles_8php" ], - [ "profperm.php", "profperm_8php.html", "profperm_8php" ], - [ "pubsites.php", "pubsites_8php.html", "pubsites_8php" ], - [ "pubsub.php", "pubsub_8php.html", "pubsub_8php" ], - [ "pubsubhubbub.php", "pubsubhubbub_8php.html", "pubsubhubbub_8php" ], - [ "randprof.php", "randprof_8php.html", "randprof_8php" ], - [ "rate.php", "rate_8php.html", "rate_8php" ], - [ "ratings.php", "ratings_8php.html", "ratings_8php" ], - [ "ratingsearch.php", "ratingsearch_8php.html", "ratingsearch_8php" ], - [ "rbmark.php", "rbmark_8php.html", "rbmark_8php" ], - [ "receive.php", "receive_8php.html", "receive_8php" ], - [ "regdir.php", "regdir_8php.html", "regdir_8php" ], - [ "register.php", "register_8php.html", "register_8php" ], - [ "regmod.php", "regmod_8php.html", "regmod_8php" ], - [ "regver.php", "regver_8php.html", "regver_8php" ], - [ "removeaccount.php", "removeaccount_8php.html", "removeaccount_8php" ], - [ "removeme.php", "removeme_8php.html", "removeme_8php" ], - [ "rmagic.php", "rmagic_8php.html", "rmagic_8php" ], - [ "rpost.php", "rpost_8php.html", "rpost_8php" ], - [ "rsd_xml.php", "rsd__xml_8php.html", "rsd__xml_8php" ], - [ "search.php", "search_8php.html", "search_8php" ], - [ "search_ac.php", "search__ac_8php.html", "search__ac_8php" ], - [ "service_limits.php", "service__limits_8php.html", "service__limits_8php" ], - [ "settings.php", "settings_8php.html", "settings_8php" ], - [ "setup.php", "setup_8php.html", "setup_8php" ], - [ "share.php", "share_8php.html", "share_8php" ], - [ "sharedwithme.php", "sharedwithme_8php.html", "sharedwithme_8php" ], - [ "siteinfo.php", "siteinfo_8php.html", "siteinfo_8php" ], - [ "sitelist.php", "sitelist_8php.html", "sitelist_8php" ], - [ "smilies.php", "smilies_8php.html", "smilies_8php" ], - [ "sources.php", "sources_8php.html", "sources_8php" ], - [ "sslify.php", "sslify_8php.html", "sslify_8php" ], - [ "starred.php", "starred_8php.html", "starred_8php" ], - [ "subthread.php", "subthread_8php.html", "subthread_8php" ], - [ "suggest.php", "suggest_8php.html", "suggest_8php" ], - [ "tagger.php", "tagger_8php.html", "tagger_8php" ], - [ "tagrm.php", "tagrm_8php.html", "tagrm_8php" ], - [ "thing.php", "thing_8php.html", "thing_8php" ], - [ "toggle_mobile.php", "toggle__mobile_8php.html", "toggle__mobile_8php" ], - [ "toggle_safesearch.php", "toggle__safesearch_8php.html", "toggle__safesearch_8php" ], - [ "uexport.php", "uexport_8php.html", "uexport_8php" ], - [ "update_channel.php", "update__channel_8php.html", "update__channel_8php" ], - [ "update_display.php", "update__display_8php.html", "update__display_8php" ], - [ "update_home.php", "update__home_8php.html", "update__home_8php" ], - [ "update_network.php", "update__network_8php.html", "update__network_8php" ], - [ "update_search.php", "update__search_8php.html", "update__search_8php" ], - [ "view.php", "view_8php.html", "view_8php" ], - [ "viewconnections.php", "viewconnections_8php.html", "viewconnections_8php" ], - [ "viewsrc.php", "viewsrc_8php.html", "viewsrc_8php" ], - [ "vote.php", "vote_8php.html", "vote_8php" ], - [ "wall_attach.php", "wall__attach_8php.html", "wall__attach_8php" ], - [ "wall_upload.php", "wall__upload_8php.html", "wall__upload_8php" ], - [ "webfinger.php", "webfinger_8php.html", "webfinger_8php" ], - [ "webpages.php", "webpages_8php.html", "webpages_8php" ], - [ "wfinger.php", "wfinger_8php.html", "wfinger_8php" ], - [ "xchan.php", "xchan_8php.html", "xchan_8php" ], - [ "xpoco.php", "xpoco_8php.html", "xpoco_8php" ], - [ "xrd.php", "xrd_8php.html", "xrd_8php" ], - [ "xref.php", "xref_8php.html", "xref_8php" ], - [ "zfinger.php", "zfinger_8php.html", "zfinger_8php" ], - [ "zotfeed.php", "zotfeed_8php.html", "zotfeed_8php" ], - [ "zping.php", "zping_8php.html", "zping_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html deleted file mode 100644 index fe16c5f56..000000000 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - -The Red Matrix: include Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        include Directory Reference
        -
        -
        - - - - - - - - - - -

        -Directories

        directory  dba
         
        directory  Import
         
        directory  photo
         
        directory  RedDAV
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Files

        file  account.php
         
        file  acl_selectors.php
         
        file  activities.php
         
        file  api.php
         
        file  apps.php
         
        file  attach.php
         File/attach API with the potential for revision control.
         
        file  auth.php
         Functions and inline functionality for authentication.
         
        file  BaseObject.php
         
        file  bb2diaspora.php
         
        file  bbcode.php
         
        file  bookmarks.php
         
        file  cache.php
         
        file  chat.php
         
        file  cli_startup.php
         
        file  cli_suggest.php
         
        file  comanche.php
         
        file  config.php
         Arbitrary configuration storage.
         
        file  Contact.php
         
        file  contact_selectors.php
         
        file  contact_widgets.php
         
        file  conversation.php
         
        file  ConversationObject.php
         
        file  cronhooks.php
         
        file  crypto.php
         
        file  datetime.php
         
        file  deliver.php
         
        file  diaspora.php
         
        file  dimport.php
         
        file  dir_fns.php
         
        file  directory.php
         
        file  enotify.php
         
        file  event.php
         
        file  expire.php
         
        file  externals.php
         
        file  features.php
         
        file  follow.php
         
        file  gprobe.php
         
        file  group.php
         
        file  html2bbcode.php
         
        file  html2plain.php
         
        file  hubloc.php
         
        file  identity.php
         
        file  ItemObject.php
         
        file  ITemplateEngine.php
         
        file  items.php
         
        file  language.php
         translation support
         
        file  menu.php
         
        file  message.php
         
        file  nav.php
         
        file  network.php
         
        file  notifier.php
         
        file  notify.php
         
        file  oauth.php
         
        file  oembed.php
         
        file  onedirsync.php
         
        file  onepoll.php
         
        file  page_widgets.php
         
        file  permissions.php
         
        file  photos.php
         
        file  plugin.php
         Some functions to handle addons and themes.
         
        file  poller.php
         
        file  probe.php
         
        file  profile_selectors.php
         
        file  ProtoDriver.php
         
        file  queue.php
         
        file  queue_fn.php
         
        file  ratenotif.php
         
        file  reddav.php
         some DAV related functions for RedMatrix.
         
        file  security.php
         
        file  session.php
         
        file  smarty.php
         
        file  socgraph.php
         
        file  spam.php
         
        file  statistics_fns.php
         
        file  system_unavailable.php
         
        file  taxonomy.php
         
        file  template_processor.php
         
        file  text.php
         
        file  widgets.php
         This file contains the widgets.
         
        file  zot.php
         
        -
        -
        - diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js deleted file mode 100644 index 796f65867..000000000 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ /dev/null @@ -1,103 +0,0 @@ -var dir_d44c64559bbebec7f509842c48db8b23 = -[ - [ "dba", "dir_21bc5169ff11430004758be31dcfc6c4.html", "dir_21bc5169ff11430004758be31dcfc6c4" ], - [ "Import", "dir_7edbbd0f8c514efef79942dcdc21f738.html", "dir_7edbbd0f8c514efef79942dcdc21f738" ], - [ "photo", "dir_aae29906d7bfc07d076125f669c8352e.html", "dir_aae29906d7bfc07d076125f669c8352e" ], - [ "RedDAV", "dir_e7f045be8bb383d8447c6a6b84145083.html", "dir_e7f045be8bb383d8447c6a6b84145083" ], - [ "account.php", "account_8php.html", "account_8php" ], - [ "acl_selectors.php", "acl__selectors_8php.html", "acl__selectors_8php" ], - [ "activities.php", "activities_8php.html", "activities_8php" ], - [ "api.php", "include_2api_8php.html", "include_2api_8php" ], - [ "apps.php", "include_2apps_8php.html", "include_2apps_8php" ], - [ "attach.php", "include_2attach_8php.html", "include_2attach_8php" ], - [ "auth.php", "auth_8php.html", "auth_8php" ], - [ "BaseObject.php", "BaseObject_8php.html", [ - [ "BaseObject", "classBaseObject.html", "classBaseObject" ] - ] ], - [ "bb2diaspora.php", "bb2diaspora_8php.html", "bb2diaspora_8php" ], - [ "bbcode.php", "bbcode_8php.html", "bbcode_8php" ], - [ "bookmarks.php", "include_2bookmarks_8php.html", "include_2bookmarks_8php" ], - [ "cache.php", "cache_8php.html", [ - [ "Cache", "classCache.html", null ] - ] ], - [ "chat.php", "include_2chat_8php.html", "include_2chat_8php" ], - [ "cli_startup.php", "cli__startup_8php.html", "cli__startup_8php" ], - [ "cli_suggest.php", "cli__suggest_8php.html", "cli__suggest_8php" ], - [ "comanche.php", "comanche_8php.html", "comanche_8php" ], - [ "config.php", "include_2config_8php.html", "include_2config_8php" ], - [ "Contact.php", "Contact_8php.html", "Contact_8php" ], - [ "contact_selectors.php", "contact__selectors_8php.html", "contact__selectors_8php" ], - [ "contact_widgets.php", "contact__widgets_8php.html", "contact__widgets_8php" ], - [ "conversation.php", "conversation_8php.html", "conversation_8php" ], - [ "ConversationObject.php", "ConversationObject_8php.html", [ - [ "Conversation", "classConversation.html", "classConversation" ] - ] ], - [ "cronhooks.php", "cronhooks_8php.html", "cronhooks_8php" ], - [ "crypto.php", "crypto_8php.html", "crypto_8php" ], - [ "datetime.php", "datetime_8php.html", "datetime_8php" ], - [ "deliver.php", "deliver_8php.html", "deliver_8php" ], - [ "diaspora.php", "diaspora_8php.html", "diaspora_8php" ], - [ "dimport.php", "dimport_8php.html", "dimport_8php" ], - [ "dir_fns.php", "dir__fns_8php.html", "dir__fns_8php" ], - [ "directory.php", "include_2directory_8php.html", "include_2directory_8php" ], - [ "enotify.php", "enotify_8php.html", "enotify_8php" ], - [ "event.php", "event_8php.html", "event_8php" ], - [ "expire.php", "expire_8php.html", "expire_8php" ], - [ "externals.php", "externals_8php.html", "externals_8php" ], - [ "features.php", "features_8php.html", "features_8php" ], - [ "follow.php", "include_2follow_8php.html", "include_2follow_8php" ], - [ "gprobe.php", "gprobe_8php.html", "gprobe_8php" ], - [ "group.php", "include_2group_8php.html", "include_2group_8php" ], - [ "html2bbcode.php", "html2bbcode_8php.html", "html2bbcode_8php" ], - [ "html2plain.php", "html2plain_8php.html", "html2plain_8php" ], - [ "hubloc.php", "hubloc_8php.html", "hubloc_8php" ], - [ "identity.php", "identity_8php.html", "identity_8php" ], - [ "ItemObject.php", "ItemObject_8php.html", [ - [ "Item", "classItem.html", "classItem" ] - ] ], - [ "ITemplateEngine.php", "ITemplateEngine_8php.html", [ - [ "ITemplateEngine", "interfaceITemplateEngine.html", "interfaceITemplateEngine" ] - ] ], - [ "items.php", "items_8php.html", "items_8php" ], - [ "language.php", "language_8php.html", "language_8php" ], - [ "menu.php", "include_2menu_8php.html", "include_2menu_8php" ], - [ "message.php", "include_2message_8php.html", "include_2message_8php" ], - [ "nav.php", "nav_8php.html", "nav_8php" ], - [ "network.php", "include_2network_8php.html", "include_2network_8php" ], - [ "notifier.php", "notifier_8php.html", "notifier_8php" ], - [ "notify.php", "include_2notify_8php.html", "include_2notify_8php" ], - [ "oauth.php", "oauth_8php.html", "oauth_8php" ], - [ "oembed.php", "include_2oembed_8php.html", "include_2oembed_8php" ], - [ "onedirsync.php", "onedirsync_8php.html", "onedirsync_8php" ], - [ "onepoll.php", "onepoll_8php.html", "onepoll_8php" ], - [ "page_widgets.php", "page__widgets_8php.html", "page__widgets_8php" ], - [ "permissions.php", "permissions_8php.html", "permissions_8php" ], - [ "photos.php", "include_2photos_8php.html", "include_2photos_8php" ], - [ "plugin.php", "plugin_8php.html", "plugin_8php" ], - [ "poller.php", "poller_8php.html", "poller_8php" ], - [ "probe.php", "include_2probe_8php.html", "include_2probe_8php" ], - [ "profile_selectors.php", "profile__selectors_8php.html", "profile__selectors_8php" ], - [ "ProtoDriver.php", "ProtoDriver_8php.html", [ - [ "ProtoDriver", "classProtoDriver.html", "classProtoDriver" ], - [ "ZotDriver", "classZotDriver.html", "classZotDriver" ] - ] ], - [ "queue.php", "queue_8php.html", "queue_8php" ], - [ "queue_fn.php", "queue__fn_8php.html", "queue__fn_8php" ], - [ "ratenotif.php", "ratenotif_8php.html", "ratenotif_8php" ], - [ "reddav.php", "reddav_8php.html", "reddav_8php" ], - [ "security.php", "security_8php.html", "security_8php" ], - [ "session.php", "session_8php.html", "session_8php" ], - [ "smarty.php", "smarty_8php.html", [ - [ "FriendicaSmarty", "classFriendicaSmarty.html", "classFriendicaSmarty" ], - [ "FriendicaSmartyEngine", "classFriendicaSmartyEngine.html", "classFriendicaSmartyEngine" ] - ] ], - [ "socgraph.php", "socgraph_8php.html", "socgraph_8php" ], - [ "spam.php", "spam_8php.html", "spam_8php" ], - [ "statistics_fns.php", "statistics__fns_8php.html", "statistics__fns_8php" ], - [ "system_unavailable.php", "system__unavailable_8php.html", "system__unavailable_8php" ], - [ "taxonomy.php", "taxonomy_8php.html", "taxonomy_8php" ], - [ "template_processor.php", "template__processor_8php.html", "template__processor_8php" ], - [ "text.php", "text_8php.html", "text_8php" ], - [ "widgets.php", "widgets_8php.html", "widgets_8php" ], - [ "zot.php", "zot_8php.html", "zot_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_d520c5cf583201d9437764f209363c22.html b/doc/html/dir_d520c5cf583201d9437764f209363c22.html deleted file mode 100644 index c1c883fad..000000000 --- a/doc/html/dir_d520c5cf583201d9437764f209363c22.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        apw Directory Reference
        -
        -
        - - - - - - - - -

        -Directories

        directory  css
         
        directory  php
         
        directory  schema
         
        -
        -
        - diff --git a/doc/html/dir_d520c5cf583201d9437764f209363c22.js b/doc/html/dir_d520c5cf583201d9437764f209363c22.js deleted file mode 100644 index 9b58769c1..000000000 --- a/doc/html/dir_d520c5cf583201d9437764f209363c22.js +++ /dev/null @@ -1,6 +0,0 @@ -var dir_d520c5cf583201d9437764f209363c22 = -[ - [ "css", "dir_f19da925ee886ec38f19b0e8c19779bc.html", "dir_f19da925ee886ec38f19b0e8c19779bc" ], - [ "php", "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html", "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5" ], - [ "schema", "dir_05f4fba29266e8fd7869afcd6cefb5cb.html", "dir_05f4fba29266e8fd7869afcd6cefb5cb" ] -]; \ No newline at end of file diff --git a/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.html b/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.html deleted file mode 100644 index 479b0f741..000000000 --- a/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/minded Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        minded Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.js b/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.js deleted file mode 100644 index 27418bbf3..000000000 --- a/doc/html/dir_d53802940ab180b2c59d9e30e9e33e5b.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_d53802940ab180b2c59d9e30e9e33e5b = -[ - [ "php", "dir_5adc1a22d666400f49fcc8826e30cd6d.html", "dir_5adc1a22d666400f49fcc8826e30cd6d" ] -]; \ No newline at end of file diff --git a/doc/html/dir_d795dfe8933002397556cc7aa16eca15.html b/doc/html/dir_d795dfe8933002397556cc7aa16eca15.html deleted file mode 100644 index 119fb7927..000000000 --- a/doc/html/dir_d795dfe8933002397556cc7aa16eca15.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        redstrap Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_d795dfe8933002397556cc7aa16eca15.js b/doc/html/dir_d795dfe8933002397556cc7aa16eca15.js deleted file mode 100644 index 2b02828b8..000000000 --- a/doc/html/dir_d795dfe8933002397556cc7aa16eca15.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_d795dfe8933002397556cc7aa16eca15 = -[ - [ "php", "dir_6b44a0e797e2f12381093380e3e54763.html", "dir_6b44a0e797e2f12381093380e3e54763" ] -]; \ No newline at end of file diff --git a/doc/html/dir_da7dee9003bbd0df28447261834d7815.html b/doc/html/dir_da7dee9003bbd0df28447261834d7815.html deleted file mode 100644 index cbb98f8f5..000000000 --- a/doc/html/dir_da7dee9003bbd0df28447261834d7815.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/hivenet/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_da7dee9003bbd0df28447261834d7815.js b/doc/html/dir_da7dee9003bbd0df28447261834d7815.js deleted file mode 100644 index d6cc1cb12..000000000 --- a/doc/html/dir_da7dee9003bbd0df28447261834d7815.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_da7dee9003bbd0df28447261834d7815 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html b/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html deleted file mode 100644 index a0cbd7fbd..000000000 --- a/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sporadic Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        sporadic Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  php
         
        -
        -
        - diff --git a/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.js b/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.js deleted file mode 100644 index f54467511..000000000 --- a/doc/html/dir_dcbba3cf1f9c80ab791fdcb3d0e78672.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_dcbba3cf1f9c80ab791fdcb3d0e78672 = -[ - [ "php", "dir_3f87478dd9b9ff2b54bc96c9063f79a0.html", "dir_3f87478dd9b9ff2b54bc96c9063f79a0" ] -]; \ No newline at end of file diff --git a/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.html b/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.html deleted file mode 100644 index 14d998f04..000000000 --- a/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - -The Red Matrix: include/RedDAV Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        RedDAV Directory Reference
        -
        -
        - - - - - - - - - - -

        -Files

        file  RedBasicAuth.php
         
        file  RedBrowser.php
         
        file  RedDirectory.php
         
        file  RedFile.php
         
        -
        -
        - diff --git a/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.js b/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.js deleted file mode 100644 index 477c22fe8..000000000 --- a/doc/html/dir_e7f045be8bb383d8447c6a6b84145083.js +++ /dev/null @@ -1,15 +0,0 @@ -var dir_e7f045be8bb383d8447c6a6b84145083 = -[ - [ "RedBasicAuth.php", "RedBasicAuth_8php.html", [ - [ "RedBasicAuth", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth" ] - ] ], - [ "RedBrowser.php", "RedBrowser_8php.html", [ - [ "RedBrowser", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html", "classRedMatrix_1_1RedDAV_1_1RedBrowser" ] - ] ], - [ "RedDirectory.php", "RedDirectory_8php.html", [ - [ "RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", "classRedMatrix_1_1RedDAV_1_1RedDirectory" ] - ] ], - [ "RedFile.php", "RedFile_8php.html", [ - [ "RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", "classRedMatrix_1_1RedDAV_1_1RedFile" ] - ] ] -]; \ No newline at end of file diff --git a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html deleted file mode 100644 index 9f4fc228c..000000000 --- a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/css Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        css Directory Reference
        -
        -
        - - - - -

        -Files

        file  mod_chanview.php
         
        -
        -
        - diff --git a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js deleted file mode 100644 index b453d057e..000000000 --- a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js +++ /dev/null @@ -1,4 +0,0 @@ -var dir_f19da925ee886ec38f19b0e8c19779bc = -[ - [ "mod_chanview.php", "mod__chanview_8php.html", null ] -]; \ No newline at end of file diff --git a/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.html b/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.html deleted file mode 100644 index 17096bf61..000000000 --- a/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/stumble/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.js b/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.js deleted file mode 100644 index e0091c874..000000000 --- a/doc/html/dir_f20b1a70c98162efa33fce7214fb9665.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_f20b1a70c98162efa33fce7214fb9665 = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.html b/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.html deleted file mode 100644 index 8800216c0..000000000 --- a/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sunbeam/php Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        php Directory Reference
        -
        -
        - - - - - - -

        -Files

        file  style.php
         
        file  theme.php
         
        -
        -
        - diff --git a/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.js b/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.js deleted file mode 100644 index 24b991cf2..000000000 --- a/doc/html/dir_f6607f4f29fa266cde007631e2b0eade.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_f6607f4f29fa266cde007631e2b0eade = -[ - [ "style.php", "extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html", null ], - [ "theme.php", "extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html", "extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php" ] -]; \ No newline at end of file diff --git a/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.html b/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.html deleted file mode 100644 index 972af46d3..000000000 --- a/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh Directory Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        zotsh Directory Reference
        -
        -
        - - - - -

        -Directories

        directory  easywebdav
         
        - - - -

        -Files

        file  zotsh.py
         
        -
        -
        - diff --git a/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.js b/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.js deleted file mode 100644 index b999c5c56..000000000 --- a/doc/html/dir_fbbac2f976ce3830c063dc14fc87781a.js +++ /dev/null @@ -1,5 +0,0 @@ -var dir_fbbac2f976ce3830c063dc14fc87781a = -[ - [ "easywebdav", "dir_b6f208674a96d24af8106c998c637d76.html", "dir_b6f208674a96d24af8106c998c637d76" ], - [ "zotsh.py", "zotsh_8py.html", "zotsh_8py" ] -]; \ No newline at end of file diff --git a/doc/html/dirfind_8php.html b/doc/html/dirfind_8php.html deleted file mode 100644 index 93241d1a4..000000000 --- a/doc/html/dirfind_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/dirfind.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dirfind.php File Reference
        -
        -
        - - - - - - -

        -Functions

         dirfind_init (&$a)
         
         dirfind_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        dirfind_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dirfind_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/dirfind_8php.js b/doc/html/dirfind_8php.js deleted file mode 100644 index 133a7bcb3..000000000 --- a/doc/html/dirfind_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var dirfind_8php = -[ - [ "dirfind_content", "dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee", null ], - [ "dirfind_init", "dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c", null ] -]; \ No newline at end of file diff --git a/doc/html/dirprofile_8php.html b/doc/html/dirprofile_8php.html deleted file mode 100644 index 94bcb7aad..000000000 --- a/doc/html/dirprofile_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/dirprofile.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dirprofile.php File Reference
        -
        -
        - - - - -

        -Functions

         dirprofile_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        dirprofile_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/dirprofile_8php.js b/doc/html/dirprofile_8php.js deleted file mode 100644 index 45cc06441..000000000 --- a/doc/html/dirprofile_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var dirprofile_8php = -[ - [ "dirprofile_init", "dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052", null ] -]; \ No newline at end of file diff --git a/doc/html/dirsearch_8php.html b/doc/html/dirsearch_8php.html deleted file mode 100644 index 8ea9faed9..000000000 --- a/doc/html/dirsearch_8php.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - -The Red Matrix: mod/dirsearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        dirsearch.php File Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Functions

         dirsearch_init (&$a)
         
         dirsearch_content (&$a)
         
         dir_query_build ($joiner, $field, $s)
         
         dir_flag_build ($joiner, $field, $bit, $s)
         
         dir_parse_query ($s)
         
         list_public_sites ()
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dir_flag_build ( $joiner,
         $field,
         $bit,
         $s 
        )
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        dir_parse_query ( $s)
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        dir_query_build ( $joiner,
         $field,
         $s 
        )
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        dirsearch_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        dirsearch_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        list_public_sites ()
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/dirsearch_8php.js b/doc/html/dirsearch_8php.js deleted file mode 100644 index 635a97231..000000000 --- a/doc/html/dirsearch_8php.js +++ /dev/null @@ -1,9 +0,0 @@ -var dirsearch_8php = -[ - [ "dir_flag_build", "dirsearch_8php.html#ab6d5fefa98da249a994b910434a669c2", null ], - [ "dir_parse_query", "dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305", null ], - [ "dir_query_build", "dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2", null ], - [ "dirsearch_content", "dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c", null ], - [ "dirsearch_init", "dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752", null ], - [ "list_public_sites", "dirsearch_8php.html#a985d410a170549429857af6ff2673149", null ] -]; \ No newline at end of file diff --git a/doc/html/display_8php.html b/doc/html/display_8php.html deleted file mode 100644 index c2f2d8664..000000000 --- a/doc/html/display_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/display.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        display.php File Reference
        -
        -
        - - - - -

        -Functions

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

        Function Documentation

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

        Referenced by update_display_content().

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

        -Namespaces

        namespace  util
         
        - - - - - - - -

        -Functions

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

        -Variables

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

        Function Documentation

        - -
        -
        - - - - - - - - -
        namesList ( $fileset)
        -
        - -

        Referenced by runs().

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

        Variable Documentation

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

        -Functions

         editblock_init (&$a)
         
         editblock_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        editblock_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        editblock_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/editblock_8php.js b/doc/html/editblock_8php.js deleted file mode 100644 index 7acf62547..000000000 --- a/doc/html/editblock_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var editblock_8php = -[ - [ "editblock_content", "editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6", null ], - [ "editblock_init", "editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e", null ] -]; \ No newline at end of file diff --git a/doc/html/editlayout_8php.html b/doc/html/editlayout_8php.html deleted file mode 100644 index ec62348c1..000000000 --- a/doc/html/editlayout_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/editlayout.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        editlayout.php File Reference
        -
        -
        - - - - - - -

        -Functions

         editlayout_init (&$a)
         
         editlayout_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        editlayout_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        editlayout_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/editlayout_8php.js b/doc/html/editlayout_8php.js deleted file mode 100644 index 0720ddc09..000000000 --- a/doc/html/editlayout_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var editlayout_8php = -[ - [ "editlayout_content", "editlayout_8php.html#aa877e4157a26b099de904164181dd386", null ], - [ "editlayout_init", "editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7", null ] -]; \ No newline at end of file diff --git a/doc/html/editpost_8php.html b/doc/html/editpost_8php.html deleted file mode 100644 index a86d5d3c6..000000000 --- a/doc/html/editpost_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/editpost.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        editpost.php File Reference
        -
        -
        - - - - -

        -Functions

         editpost_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        editpost_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/editpost_8php.js b/doc/html/editpost_8php.js deleted file mode 100644 index 5012045da..000000000 --- a/doc/html/editpost_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var editpost_8php = -[ - [ "editpost_content", "editpost_8php.html#a34011690864d122680c802e9e748ccfb", null ] -]; \ No newline at end of file diff --git a/doc/html/editwebpage_8php.html b/doc/html/editwebpage_8php.html deleted file mode 100644 index 8672a9779..000000000 --- a/doc/html/editwebpage_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/editwebpage.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        editwebpage.php File Reference
        -
        -
        - - - - - - -

        -Functions

         editwebpage_init (&$a)
         
         editwebpage_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        editwebpage_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        editwebpage_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/editwebpage_8php.js b/doc/html/editwebpage_8php.js deleted file mode 100644 index ccce7d0cd..000000000 --- a/doc/html/editwebpage_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var editwebpage_8php = -[ - [ "editwebpage_content", "editwebpage_8php.html#a375e945255fad79a71036528f7480650", null ], - [ "editwebpage_init", "editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f", null ] -]; \ No newline at end of file diff --git a/doc/html/enotify_8php.html b/doc/html/enotify_8php.html deleted file mode 100644 index b896e9bbf..000000000 --- a/doc/html/enotify_8php.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - -The Red Matrix: include/enotify.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        enotify.php File Reference
        -
        -
        - - - - -

        -Classes

        class  enotify
         
        - - - -

        -Functions

         notification ($params)
         
        -

        Function Documentation

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

        -Functions

         format_event_html ($ev)
         
         ical_wrapper ($ev)
         
         format_event_ical ($ev)
         
         format_ical_text ($s)
         
         format_event_bbcode ($ev)
         
         bbtovcal ($s)
         
         bbtoevent ($s)
         
         sort_by_date ($arr)
         
         ev_compare ($a, $b)
         
         event_store_event ($arr)
         
         event_addtocal ($item_id, $uid)
         
         event_store_item ($arr, $event)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        bbtoevent ( $s)
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        bbtovcal ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ev_compare ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        event_addtocal ( $item_id,
         $uid 
        )
        -
        - -

        Referenced by events_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        event_store_event ( $arr)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        event_store_item ( $arr,
         $event 
        )
        -
        - -

        Referenced by events_post(), and update_birthdays().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_event_bbcode ( $ev)
        -
        - -

        Referenced by event_store_item().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_event_html ( $ev)
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        format_event_ical ( $ev)
        -
        - -

        Referenced by ical_wrapper().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_ical_text ( $s)
        -
        - -

        Referenced by format_event_ical().

        - -
        -
        - -
        -
        - - - - - - - - -
        ical_wrapper ( $ev)
        -
        - -

        Referenced by events_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        sort_by_date ( $arr)
        -
        - -

        Referenced by events_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/event_8php.js b/doc/html/event_8php.js deleted file mode 100644 index f95c17696..000000000 --- a/doc/html/event_8php.js +++ /dev/null @@ -1,15 +0,0 @@ -var event_8php = -[ - [ "bbtoevent", "event_8php.html#a180cccd63c2a2f00ff432b03113531f3", null ], - [ "bbtovcal", "event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279", null ], - [ "ev_compare", "event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850", null ], - [ "event_addtocal", "event_8php.html#ac9f206819186b65952ac1869f0da8c6e", null ], - [ "event_store_event", "event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c", null ], - [ "event_store_item", "event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92", null ], - [ "format_event_bbcode", "event_8php.html#abb74206cf42d694307c3d7abb7af9869", null ], - [ "format_event_html", "event_8php.html#a2ac9f1b08de03250ecd794f705781d17", null ], - [ "format_event_ical", "event_8php.html#a3ff7f1824540a38f4a3991a59a9542d4", null ], - [ "format_ical_text", "event_8php.html#a05073cd4ab837bd4a0149e8ed23ce688", null ], - [ "ical_wrapper", "event_8php.html#ab8cc2825013e724dc26229026711cf93", null ], - [ "sort_by_date", "event_8php.html#a018ea4484910a873a7c1eaa126de9b1a", null ] -]; \ No newline at end of file diff --git a/doc/html/events_8php.html b/doc/html/events_8php.html deleted file mode 100644 index ecd63f5a1..000000000 --- a/doc/html/events_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/events.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        events.php File Reference
        -
        -
        - - - - - - -

        -Functions

         events_post (&$a)
         
         events_content (&$a)
         
        -

        Function Documentation

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

        -Functions

         expire_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        expire_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/expire_8php.js b/doc/html/expire_8php.js deleted file mode 100644 index 6ecd16ffe..000000000 --- a/doc/html/expire_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var expire_8php = -[ - [ "expire_run", "expire_8php.html#a444e45c9b67727b27db4c779fd51a298", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html deleted file mode 100644 index 549ceea1d..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/hivenet/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html deleted file mode 100644 index 96bd38eb2..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/hivenet/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         hivenet_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        hivenet_init ($a)
        -
        -
          -
        • Name: Hivenet
        • -
        • Description: An experimental red-colored theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.js deleted file mode 100644 index 43bd202fd..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php = -[ - [ "hivenet_init", "extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html deleted file mode 100644 index 443db073b..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/minded/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html deleted file mode 100644 index 3a35ebeb2..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/minded/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         minded_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        minded_init ($a)
        -
        -
          -
        • Name: Minded
        • -
        • Description: A port of the Minds.com style to Red
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.js deleted file mode 100644 index 8d308d8ef..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2minded_2php_2theme_8php = -[ - [ "minded_init", "extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html deleted file mode 100644 index ad8e9d7cb..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/occupant/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html deleted file mode 100644 index dbcfba61d..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/occupant/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         occupant_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        occupant_init ($a)
        -
        -
          -
        • Name: Occupant
        • -
        • Description: An Occupy theme.
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js deleted file mode 100644 index b454020db..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php = -[ - [ "occupant_init", "extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html deleted file mode 100644 index f5c84c68e..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sporadic/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html deleted file mode 100644 index 0101e5b0c..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sporadic/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         sporadic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sporadic_init ($a)
        -
        -
          -
        • Name: Sporadic
        • -
        • Description: A Diaspora-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.js deleted file mode 100644 index b594f0723..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php = -[ - [ "sporadic_init", "extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html deleted file mode 100644 index 77928a290..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/stumble/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html deleted file mode 100644 index 38d6ba424..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/stumble/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         stumble_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        stumble_init ($a)
        -
        -
          -
        • Name: Stumble
        • -
        • Description: A Tumblr-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.js deleted file mode 100644 index b22c472c9..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php = -[ - [ "stumble_init", "extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html deleted file mode 100644 index fb27706cb..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/suckerberg/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html deleted file mode 100644 index 9dc67d6a1..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/suckerberg/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         suckerberg_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        suckerberg_init ($a)
        -
        -
          -
        • Name: Suckerberg
        • -
        • Description: A Facebook-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.js deleted file mode 100644 index a3ff7f544..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php = -[ - [ "suckerberg_init", "extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html deleted file mode 100644 index 32e65f29a..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sunbeam/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html deleted file mode 100644 index 04ad14b5d..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/sunbeam/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         sunbeam_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sunbeam_init ($a)
        -
        -
          -
        • Name: Sunbeam
        • -
        • Description: A fresh theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.js deleted file mode 100644 index 417e3aa7d..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php = -[ - [ "sunbeam_init", "extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525", null ] -]; \ No newline at end of file diff --git a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html b/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html deleted file mode 100644 index 7ea8c5bb3..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/yolo/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html b/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html deleted file mode 100644 index ffd960449..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: extend/theme/deadsuperhero/yolo/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         yolo_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        yolo_init ($a)
        -
        -
          -
        • Name: yolo
        • -
        • Description: An Ello-like theme based on redbasic. Because fuck Ello.
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.js b/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.js deleted file mode 100644 index 0563adeee..000000000 --- a/doc/html/extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php = -[ - [ "yolo_init", "extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da", null ] -]; \ No newline at end of file diff --git a/doc/html/externals_8php.html b/doc/html/externals_8php.html deleted file mode 100644 index 9623e4abe..000000000 --- a/doc/html/externals_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/externals.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        externals.php File Reference
        -
        -
        - - - - -

        -Functions

         externals_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        externals_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/externals_8php.js b/doc/html/externals_8php.js deleted file mode 100644 index 396b1bf22..000000000 --- a/doc/html/externals_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var externals_8php = -[ - [ "externals_run", "externals_8php.html#a4df44079e6f915286088b7a0d44db926", null ] -]; \ No newline at end of file diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html deleted file mode 100644 index bb5e27be4..000000000 --- a/doc/html/extract_8php.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -The Red Matrix: util/extract.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        extract.php File Reference
        -
        -
        - - - - - - - - - - -

        -Variables

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

        Variable Documentation

        - -
        -
        - - - - -
        $arr = array()
        -
        - -

        Referenced by _well_known_init(), account_service_class_allows(), account_service_class_fetch(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), app_store(), app_update(), appman_post(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), delete_imported_item(), diaspora_like(), diaspora_process_outbound(), directory_content(), discover_by_url(), discover_by_webbie(), drop_item(), event_store_event(), event_store_item(), externals_run(), feature_enabled(), fetch_xrd_links(), file_activity(), filter_insecure(), find_xchan_in_array(), foofoo(), format_like(), generate_map(), generate_named_map(), get_all_perms(), get_atom_elements(), get_cloudpath(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), load_database(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), refimport_content(), reflect_comment_store(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), sync_locations(), tag_deliver(), tagger_content(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), verify_email_address(), wfinger_init(), widget_affinity(), widget_archive(), widget_catcloud_wall(), widget_clock(), widget_item(), widget_photo(), widget_photo_rand(), widget_random_block(), widget_rating(), widget_suggestions(), widget_tagcloud_wall(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_feed(), zot_fetch(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), and zot_register_hub().

        - -
        -
        - - - -
        -
        - - - - -
        $s = '<?php' . "\n"
        -
        - -

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

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

        -Namespaces

        namespace  Friendica
         
        - - - -

        -Functions

         fbrowser_content ($a)
         
        -

        Function Documentation

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

        -Functions

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

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        fcontact_store ( $url,
         $name,
         $photo 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        ffinder_store ( $uid,
         $cid,
         $fid 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/fcontact_8php.js b/doc/html/fcontact_8php.js deleted file mode 100644 index de48747b1..000000000 --- a/doc/html/fcontact_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var fcontact_8php = -[ - [ "fcontact_store", "fcontact_8php.html#a4ce1d8d444c938790e0d50e003d04a15", null ], - [ "ffinder_store", "fcontact_8php.html#a4512592814dc7883b57bf01ac33353f6", null ] -]; \ No newline at end of file diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html deleted file mode 100644 index 2e93b8f0c..000000000 --- a/doc/html/features_8php.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - -The Red Matrix: include/features.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        features.php File Reference
        -
        - -
        - diff --git a/doc/html/features_8php.js b/doc/html/features_8php.js deleted file mode 100644 index df6ef4fa9..000000000 --- a/doc/html/features_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var features_8php = -[ - [ "feature_enabled", "features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0", null ], - [ "get_feature_default", "features_8php.html#ab9a273de13a12a1c561b380cabaea090", null ], - [ "get_features", "features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c", null ] -]; \ No newline at end of file diff --git a/doc/html/feed_8php.html b/doc/html/feed_8php.html deleted file mode 100644 index 8b44eacb2..000000000 --- a/doc/html/feed_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/feed.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        feed.php File Reference
        -
        -
        - - - - -

        -Functions

         feed_init (&$a)
         
        -

        Function Documentation

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

        -Functions

         filer_content (&$a)
         
        -

        Function Documentation

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

        -Functions

         filerm_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        filerm_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/filerm_8php.js b/doc/html/filerm_8php.js deleted file mode 100644 index bc36f3054..000000000 --- a/doc/html/filerm_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var filerm_8php = -[ - [ "filerm_content", "filerm_8php.html#ae2eb28d2054fa2c37e38689882172208", null ] -]; \ No newline at end of file diff --git a/doc/html/files.html b/doc/html/files.html deleted file mode 100644 index 3e6c8e371..000000000 --- a/doc/html/files.html +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - -The Red Matrix: File List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        File List
        -
        -
        -
        Here is a list of all files with brief descriptions:
        -
        [detail level 123456]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        o+extend
        o+include
        o+mod
        o+util
        o+view
        \*boot.php
        -
        -
        -
        - diff --git a/doc/html/files.js b/doc/html/files.js deleted file mode 100644 index 48be5489c..000000000 --- a/doc/html/files.js +++ /dev/null @@ -1,9 +0,0 @@ -var files = -[ - [ "extend", "dir_2222f31d7a61e527af3624100548cf57.html", "dir_2222f31d7a61e527af3624100548cf57" ], - [ "include", "dir_d44c64559bbebec7f509842c48db8b23.html", "dir_d44c64559bbebec7f509842c48db8b23" ], - [ "mod", "dir_d41ce877eb409a4791b288730010abe2.html", "dir_d41ce877eb409a4791b288730010abe2" ], - [ "util", "dir_23ec12649285f9fabf3a6b7380226c28.html", "dir_23ec12649285f9fabf3a6b7380226c28" ], - [ "view", "dir_b2f003339c516cc00c8cadcafbe82f13.html", "dir_b2f003339c516cc00c8cadcafbe82f13" ], - [ "boot.php", "boot_8php.html", "boot_8php" ] -]; \ No newline at end of file diff --git a/doc/html/filestorage_8php.html b/doc/html/filestorage_8php.html deleted file mode 100644 index 5696cd2a8..000000000 --- a/doc/html/filestorage_8php.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -The Red Matrix: mod/filestorage.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        filestorage.php File Reference
        -
        -
        - - - - - - -

        -Functions

         filestorage_post (&$a)
         
         filestorage_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        filestorage_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        filestorage_post ($a)
        -
        -
        Parameters
        - - -
        object&$a
        -
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/filestorage_8php.js b/doc/html/filestorage_8php.js deleted file mode 100644 index 86f35b70c..000000000 --- a/doc/html/filestorage_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var filestorage_8php = -[ - [ "filestorage_content", "filestorage_8php.html#a61bb1be78472555df4ce619f51014040", null ], - [ "filestorage_post", "filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd", null ] -]; \ No newline at end of file diff --git a/doc/html/fixd_8php.html b/doc/html/fixd_8php.html deleted file mode 100644 index 54ca9f95c..000000000 --- a/doc/html/fixd_8php.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -The Red Matrix: include/fixd.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        fixd.php File Reference
        -
        -
        - - - - - - - - - - -

        -Variables

         $rand = db_getfunc('RAND')
         
         $r = q("select xchan_addr, hubloc_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_network like '%%diaspora%%' order by $rand")
         
         $total = 0
         
        foreach($r as $rr) print $total n
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $r = q("select xchan_addr, hubloc_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_network like '%%diaspora%%' order by $rand")
        -
        - -

        Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_dbsync(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_summary(), all_friends(), allowed_public_recips(), api_call(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_oauth_access_token(), api_oauth_request_token(), api_red_xchan(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), autoname(), bb2diaspora_itemwallwall(), bb2dmention_callback(), bb_translate_video(), block_content(), blocks_content(), bookmark_add(), build_sync_packet(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), collect_recipients(), comanche_block(), common_content(), common_friends(), common_friends_visitor_widget(), common_friends_zcid(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_init(), connedit_post(), construct_activity_object(), construct_activity_target(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_images(), diaspora_send_mail(), diaspora_signed_retraction(), dir_tagadelic(), dir_tagblock(), directory_content(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_diaspora_key(), get_events(), get_item_elements(), get_online_status(), get_plugin_info(), get_sys_channel(), get_theme_info(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), importelm_post(), in_group(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_expire(), item_getfeedattach(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_content(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), menu_post(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_post(), mood_init(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_content(), page_init(), pagelist_widget(), pdl_selector(), pemtome(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_post(), prate_init(), preg_heart(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), pubrsatome(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), rate_content(), rate_init(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), regdir_init(), register_content(), register_hook(), register_post(), relative_date(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), replace_macros(), FriendicaSmartyEngine\replace_macros(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_default_login_identity(), RedMatrix\RedDAV\RedBasicAuth\setAuthenticated(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), theme_attachments(), thing_content(), thing_init(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_attach_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), wtagblock(), xchan_content(), xchan_fetch(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zotfeed_init(), and zping_content().

        - -
        -
        - -
        -
        - - - - -
        $rand = db_getfunc('RAND')
        -
        -
        - - - -
        -
        - - - - -
        foreach ($r as $rr) print $total n
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/fixd_8php.js b/doc/html/fixd_8php.js deleted file mode 100644 index 2486b89d6..000000000 --- a/doc/html/fixd_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var fixd_8php = -[ - [ "$r", "fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98", null ], - [ "$rand", "fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219", null ], - [ "$total", "fixd_8php.html#a241b818f48030b628685b2e5119c5624", null ], - [ "n", "fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb", null ] -]; \ No newline at end of file diff --git a/doc/html/fpostit_8php.html b/doc/html/fpostit_8php.html deleted file mode 100644 index d5320a73f..000000000 --- a/doc/html/fpostit_8php.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -The Red Matrix: util/fpostit/fpostit.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        fpostit.php File Reference
        -
        -
        - - - - -

        -Functions

         showForm ($error, $content)
         
        - - - -

        -Variables

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

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        showForm ( $error,
         $content 
        )
        -
        - -
        -
        -

        Variable Documentation

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

        -Namespaces

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

        -Functions

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

        -Variables

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

        -Classes

        class  FriendicaSmarty
         
        class  FriendicaSmartyEngine
         
        -
        -
        - diff --git a/doc/html/frphotohelper_8php.html b/doc/html/frphotohelper_8php.html deleted file mode 100644 index 11ae583a6..000000000 --- a/doc/html/frphotohelper_8php.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - -The Red Matrix: util/frphotohelper.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        frphotohelper.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

         $a = get_app()
         
         $photo_id = $argv[1]
         
         $channel_address = $argv[2]
         
         $fr_server = urldecode($argv[3])
         
         $cookies = 'store/[data]/frphoto_cookie_' . $channel_address
         
         $c
         
        if(!$c) $channel = $c[0]
         
         $ch = curl_init($fr_server . '/api/friendica/photo?f=&photo_id=' . $photo_id)
         
         $output = curl_exec($ch)
         
         $j = json_decode($output,true)
         
         $args = array()
         
         $args ['data'] = base64_decode($j['data'])
         
         $args ['filename'] = $j['filename']
         
         $args ['resource_id'] = $j['resource-id']
         
         $args ['scale'] = $j['scale']
         
         $args ['album'] = $j['album']
         
         $args ['not_visible'] = 1
         
         $args ['created'] = $j['created']
         
         $args ['edited'] = $j['edited']
         
         $args ['title'] = $j['title']
         
         $args ['description'] = $j['desc']
         
         $args ['type'] = $j['type']
         
         $r
         
        if($r) $ret = photo_upload($channel,$channel,$args)
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a = get_app()
        -
        - -

        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(), frphotos_init(), 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(), home_content(), home_init(), hostxrd_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_translation_table(), load_xconfig(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), 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(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), 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(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), 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_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().

        - -
        -
        - - - -
        -
        - - - - -
        $args['data'] = base64_decode($j['data'])
        -
        - -
        -
        - -
        -
        - - - - -
        $args['filename'] = $j['filename']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['resource_id'] = $j['resource-id']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['scale'] = $j['scale']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['album'] = $j['album']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['not_visible'] = 1
        -
        - -
        -
        - -
        -
        - - - - -
        $args['created'] = $j['created']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['edited'] = $j['edited']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['title'] = $j['title']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['description'] = $j['desc']
        -
        - -
        -
        - -
        -
        - - - - -
        $args['type'] = $j['type']
        -
        - -
        -
        - - - -
        -
        - - - - -
        $ch = curl_init($fr_server . '/api/friendica/photo?f=&photo_id=' . $photo_id)
        -
        -
        - -
        -
        - - - - -
        if (!$c) $channel = $c[0]
        -
        - -

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

        - -
        -
        - -
        -
        - - - - -
        $channel_address = $argv[2]
        -
        -
        - -
        -
        - - - - -
        $cookies = 'store/[data]/frphoto_cookie_' . $channel_address
        -
        - -

        Referenced by frphotos_init().

        - -
        -
        - -
        -
        - - - - -
        $fr_server = urldecode($argv[3])
        -
        - -

        Referenced by frphotos_init().

        - -
        -
        - - - -
        -
        - - - - -
        $output = curl_exec($ch)
        -
        -
        - -
        -
        - - - - -
        $photo_id = $argv[1]
        -
        - -
        -
        - -
        -
        - - - - -
        $r
        -
        -Initial value:
        = q("select * from photo where resource_id = '%s' and uid = %d limit 1",
        -
        dbesc($args['resource_id']),
        -
        intval($channel['channel_id'])
        -
        )
        -
        -

        Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_dbsync(), admin_page_hubloc_post(), admin_page_summary(), all_friends(), allowed_public_recips(), api_call(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_login(), api_oauth_access_token(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), autoname(), bb_translate_video(), block_content(), blocks_content(), bookmark_add(), build_sync_packet(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), collect_recipients(), comanche_block(), common_content(), common_friends(), common_friends_visitor_widget(), common_friends_zcid(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_init(), connedit_post(), construct_activity_object(), construct_activity_target(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_images(), diaspora_send_mail(), diaspora_signed_retraction(), diaspora_transmit(), dir_tagadelic(), dir_tagblock(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editlayout_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedBrowser\findAttachHash(), RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), frphotos_init(), fsuggest_content(), fsuggest_post(), RedBrowser\generateDirectoryIndex(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_diaspora_key(), get_events(), get_item_elements(), get_online_status(), get_plugin_info(), get_sys_channel(), get_theme_info(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), hcard_init(), home_content(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), importelm_post(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_expire(), item_getfeedattach(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_content(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_post(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_post(), mood_init(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_post(), preg_heart(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), queue_run(), random_profile(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), relative_date(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), replace_macros(), FriendicaSmartyEngine\replace_macros(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_default_login_identity(), RedDirectory\setName(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), theme_attachments(), thing_content(), thing_init(), unregister_hook(), update_birthdays(), update_directory_entry(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_attach_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_item(), widget_savedsearch(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), xchan_content(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zotfeed_init(), and zping_content().

        - -
        -
        - -
        -
        - - - - -
        if ($r) $ret = photo_upload($channel,$channel,$args)
        -
        - -

        Referenced by Template\_replcb_debug(), Template\_replcb_for(), Template\_replcb_inc(), activity_sanitise(), api_apply_template(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_as(), api_format_items(), api_format_messages(), api_get_user(), api_item_get_user(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_user_timeline(), app_encode(), app_store(), app_update(), array_sanitise(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), build_querystring(), change_channel(), chanman_remove_everything_from_network(), chanview_content(), chat_content(), chat_message(), chatroom_create(), chatroom_destroy(), chatsvc_content(), chatsvc_init(), chatsvc_post(), comanche_webpage(), create_identity(), day_translate(), dbq(), decode_tags(), del_config(), del_pconfig(), del_xconfig(), diaspora_dispatch(), diaspora_is_reshare(), diaspora_request(), diaspora_send_status(), dir_parse_query(), dir_query_build(), dirsearch_content(), downgrade_accounts(), encode_item_flags(), encode_item_terms(), encode_item_xchan(), expand_acl(), expand_groups(), format_notification(), get_all_perms(), get_config_from_storage(), get_online_status(), get_perms(), get_system_apps(), get_tags(), get_terms_oftype(), App\get_widgets(), RedFile\getETag(), group_add(), group_get_members(), group_rmv(), groups_containing(), home_init(), identity_basic_export(), identity_check_service_class(), import_post(), import_xchan(), item_check_service_class(), item_getfeedattach(), item_getfeedtags(), item_post(), item_store(), item_store_update(), list_post_dates(), list_public_sites(), load_contact_links(), magic_init(), mail_post(), netgrowth_content(), FKOAuthDataStore\new_access_token(), new_contact(), normalise_link(), notes_init(), oembed_format_object(), oexchange_content(), online_init(), parse_app_description(), perms2str(), photo_upload(), photos_albums_list(), photos_content(), photos_list_photos(), poco_init(), post_activity_item(), post_init(), post_post(), posted_dates(), probe_well_known(), pubsites_content(), receive_post(), RedChannelList(), RedCollectionData(), send_message(), set_config(), set_pconfig(), set_xconfig(), site_default_perms(), stream_perms_api_uids(), stream_perms_xchans(), string_splitter(), tagger_content(), thing_init(), unxmlify(), update_suggestions(), user_allow(), user_approve(), RedBrowser\userReadableSize(), wall_upload_post(), widget_archive(), z_fetch_url(), z_post_url(), z_readdir(), zfinger_init(), and zot_get_hublocs().

        - -
        -
        -
        -
        - diff --git a/doc/html/frphotohelper_8php.js b/doc/html/frphotohelper_8php.js deleted file mode 100644 index 6a5e283d3..000000000 --- a/doc/html/frphotohelper_8php.js +++ /dev/null @@ -1,27 +0,0 @@ -var frphotohelper_8php = -[ - [ "$a", "frphotohelper_8php.html#acebf83966ef6d7e5645a6b62ba368f9f", null ], - [ "$args", "frphotohelper_8php.html#a67e94494731d99ed23b123e95175bc10", null ], - [ "$args", "frphotohelper_8php.html#acaefa2c3b286896f12eb55ae56e154af", null ], - [ "$args", "frphotohelper_8php.html#ad3310ef5d714f2baae2d882a1e22cf05", null ], - [ "$args", "frphotohelper_8php.html#adbc68ba8d9b3e0fac2d4c9fb683ef9f6", null ], - [ "$args", "frphotohelper_8php.html#ad4237a752a460152a5445abcb50238cf", null ], - [ "$args", "frphotohelper_8php.html#a44a64913242d4235e332cc69885c1460", null ], - [ "$args", "frphotohelper_8php.html#a6bb04aa9e43d97273fc84b6e308999c5", null ], - [ "$args", "frphotohelper_8php.html#ab93f92df528f98af0f4511720032b03c", null ], - [ "$args", "frphotohelper_8php.html#a1fba6794d8decbc7b957710af3179c10", null ], - [ "$args", "frphotohelper_8php.html#a88f7360b97eecb65e5e13708a093d172", null ], - [ "$args", "frphotohelper_8php.html#ad5fe4c1396829f3ce98eec037db698b2", null ], - [ "$args", "frphotohelper_8php.html#ab66e3756cdc86eaa61d42e675092c649", null ], - [ "$c", "frphotohelper_8php.html#ab73d7f4f2dae233dd561e7fdaab3a77b", null ], - [ "$ch", "frphotohelper_8php.html#a696b903bbc5c02914bdd402e91826eca", null ], - [ "$channel", "frphotohelper_8php.html#ac162139c764f53cc07f42b09432549ba", null ], - [ "$channel_address", "frphotohelper_8php.html#a1ce9aa56ce28b42f5db69d00d4c78972", null ], - [ "$cookies", "frphotohelper_8php.html#aef9f7eafd54f6e36423347bed723c67e", null ], - [ "$fr_server", "frphotohelper_8php.html#a2059b37bbca58d2613c70af2c19eddce", null ], - [ "$j", "frphotohelper_8php.html#a6f16db779ef3ccea921b277b5dc245d1", null ], - [ "$output", "frphotohelper_8php.html#a73004ce9cd673c1bfafd1dc351134797", null ], - [ "$photo_id", "frphotohelper_8php.html#a2d2299040f635cee8d5aac68230dd630", null ], - [ "$r", "frphotohelper_8php.html#a8abe176bc41afd728f32ba8c506cbd98", null ], - [ "$ret", "frphotohelper_8php.html#a83d5f232bed56a5af8173818b0bdf79d", null ] -]; \ No newline at end of file diff --git a/doc/html/frphotos_8php.html b/doc/html/frphotos_8php.html deleted file mode 100644 index d65b82b6d..000000000 --- a/doc/html/frphotos_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/frphotos.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        frphotos.php File Reference
        -
        -
        - - - - - - -

        -Functions

         frphotos_init (&$a)
         
         frphotos_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        frphotos_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        frphotos_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/frphotos_8php.js b/doc/html/frphotos_8php.js deleted file mode 100644 index 179e98384..000000000 --- a/doc/html/frphotos_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var frphotos_8php = -[ - [ "frphotos_content", "frphotos_8php.html#a6536248e7dda3f06cf37838064b961a4", null ], - [ "frphotos_init", "frphotos_8php.html#a4a33fadb181497eff301ee5132ec61d1", null ] -]; \ No newline at end of file diff --git a/doc/html/fsuggest_8php.html b/doc/html/fsuggest_8php.html deleted file mode 100644 index 07d2127ab..000000000 --- a/doc/html/fsuggest_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/fsuggest.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        fsuggest.php File Reference
        -
        -
        - - - - - - -

        -Functions

         fsuggest_post (&$a)
         
         fsuggest_content (&$a)
         
        -

        Function Documentation

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

        -Variables

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

        Variable Documentation

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

        - $ -

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

        - _ -

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

        - a -

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

        - b -

        -
        -
        - diff --git a/doc/html/functions_0x63.html b/doc/html/functions_0x63.html deleted file mode 100644 index 4dadd1b64..000000000 --- a/doc/html/functions_0x63.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - -The Red Matrix: Class Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all class members with links to the classes they belong to:
        - -

        - c -

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

        - d -

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

        - e -

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

        - f -

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

        - g -

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

        - h -

        -
        -
        - diff --git a/doc/html/functions_0x69.html b/doc/html/functions_0x69.html deleted file mode 100644 index 38dbcbd3b..000000000 --- a/doc/html/functions_0x69.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - -The Red Matrix: Class Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all class members with links to the classes they belong to:
        - -

        - i -

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

        - l -

        -
        -
        - diff --git a/doc/html/functions_0x6d.html b/doc/html/functions_0x6d.html deleted file mode 100644 index 6cc7867c2..000000000 --- a/doc/html/functions_0x6d.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -The Red Matrix: Class Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all class members with links to the classes they belong to:
        - -

        - m -

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

        - n -

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

        - o -

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

        - p -

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

        - q -

        -
        -
        - diff --git a/doc/html/functions_0x72.html b/doc/html/functions_0x72.html deleted file mode 100644 index 3ce8674a0..000000000 --- a/doc/html/functions_0x72.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - -The Red Matrix: Class Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all class members with links to the classes they belong to:
        - -

        - r -

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

        - s -

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

        - t -

          -
        • template_engine() -: App -
        • -
        -
        -
        - diff --git a/doc/html/functions_0x75.html b/doc/html/functions_0x75.html deleted file mode 100644 index 090b37a4e..000000000 --- a/doc/html/functions_0x75.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -The Red Matrix: Class Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all class members with links to the classes they belong to:
        - -

        - u -

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

        - v -

        -
        -
        - diff --git a/doc/html/functions_8php.html b/doc/html/functions_8php.html deleted file mode 100644 index 38152d89b..000000000 --- a/doc/html/functions_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/functions.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        functions.php File Reference
        -
        -
        - - - - -

        -Functions

         splitFilename ($filename)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        splitFilename ( $filename)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/functions_8php.js b/doc/html/functions_8php.js deleted file mode 100644 index d8761014d..000000000 --- a/doc/html/functions_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var functions_8php = -[ - [ "splitFilename", "functions_8php.html#adefe514c95680928b3aae250cbc3c663", null ] -]; \ No newline at end of file diff --git a/doc/html/functions_dup.js b/doc/html/functions_dup.js deleted file mode 100644 index 111cad88d..000000000 --- a/doc/html/functions_dup.js +++ /dev/null @@ -1,25 +0,0 @@ -var functions_dup = -[ - [ "$", "functions.html", null ], - [ "_", "functions_0x5f.html", null ], - [ "a", "functions_0x61.html", null ], - [ "b", "functions_0x62.html", null ], - [ "c", "functions_0x63.html", null ], - [ "d", "functions_0x64.html", null ], - [ "e", "functions_0x65.html", null ], - [ "f", "functions_0x66.html", null ], - [ "g", "functions_0x67.html", null ], - [ "h", "functions_0x68.html", null ], - [ "i", "functions_0x69.html", null ], - [ "l", "functions_0x6c.html", null ], - [ "m", "functions_0x6d.html", null ], - [ "n", "functions_0x6e.html", null ], - [ "o", "functions_0x6f.html", null ], - [ "p", "functions_0x70.html", null ], - [ "q", "functions_0x71.html", null ], - [ "r", "functions_0x72.html", null ], - [ "s", "functions_0x73.html", null ], - [ "t", "functions_0x74.html", null ], - [ "u", "functions_0x75.html", null ], - [ "v", "functions_0x76.html", null ] -]; \ No newline at end of file diff --git a/doc/html/functions_func.html b/doc/html/functions_func.html deleted file mode 100644 index cf3ab5847..000000000 --- a/doc/html/functions_func.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - _ -

        -
        -
        - diff --git a/doc/html/functions_func.js b/doc/html/functions_func.js deleted file mode 100644 index 56ec33957..000000000 --- a/doc/html/functions_func.js +++ /dev/null @@ -1,24 +0,0 @@ -var functions_func = -[ - [ "_", "functions_func.html", null ], - [ "a", "functions_func_0x61.html", null ], - [ "b", "functions_func_0x62.html", null ], - [ "c", "functions_func_0x63.html", null ], - [ "d", "functions_func_0x64.html", null ], - [ "e", "functions_func_0x65.html", null ], - [ "f", "functions_func_0x66.html", null ], - [ "g", "functions_func_0x67.html", null ], - [ "h", "functions_func_0x68.html", null ], - [ "i", "functions_func_0x69.html", null ], - [ "l", "functions_func_0x6c.html", null ], - [ "m", "functions_func_0x6d.html", null ], - [ "n", "functions_func_0x6e.html", null ], - [ "o", "functions_func_0x6f.html", null ], - [ "p", "functions_func_0x70.html", null ], - [ "q", "functions_func_0x71.html", null ], - [ "r", "functions_func_0x72.html", null ], - [ "s", "functions_func_0x73.html", null ], - [ "t", "functions_func_0x74.html", null ], - [ "u", "functions_func_0x75.html", null ], - [ "v", "functions_func_0x76.html", null ] -]; \ No newline at end of file diff --git a/doc/html/functions_func_0x61.html b/doc/html/functions_func_0x61.html deleted file mode 100644 index 0416b5625..000000000 --- a/doc/html/functions_func_0x61.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - a -

        -
        -
        - diff --git a/doc/html/functions_func_0x62.html b/doc/html/functions_func_0x62.html deleted file mode 100644 index e105e7df6..000000000 --- a/doc/html/functions_func_0x62.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - b -

          -
        • build_pagehead() -: App -
        • -
        -
        -
        - diff --git a/doc/html/functions_func_0x63.html b/doc/html/functions_func_0x63.html deleted file mode 100644 index 144cdc7f3..000000000 --- a/doc/html/functions_func_0x63.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - c -

        -
        -
        - diff --git a/doc/html/functions_func_0x64.html b/doc/html/functions_func_0x64.html deleted file mode 100644 index 4b519393e..000000000 --- a/doc/html/functions_func_0x64.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - d -

        -
        -
        - diff --git a/doc/html/functions_func_0x65.html b/doc/html/functions_func_0x65.html deleted file mode 100644 index cd244090a..000000000 --- a/doc/html/functions_func_0x65.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - e -

        -
        -
        - diff --git a/doc/html/functions_func_0x66.html b/doc/html/functions_func_0x66.html deleted file mode 100644 index 83a4333ec..000000000 --- a/doc/html/functions_func_0x66.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - f -

        -
        -
        - diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html deleted file mode 100644 index 277743b8c..000000000 --- a/doc/html/functions_func_0x67.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - g -

        -
        -
        - diff --git a/doc/html/functions_func_0x68.html b/doc/html/functions_func_0x68.html deleted file mode 100644 index b410b3d9f..000000000 --- a/doc/html/functions_func_0x68.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - h -

        -
        -
        - diff --git a/doc/html/functions_func_0x69.html b/doc/html/functions_func_0x69.html deleted file mode 100644 index 55191a7f2..000000000 --- a/doc/html/functions_func_0x69.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - i -

        -
        -
        - diff --git a/doc/html/functions_func_0x6c.html b/doc/html/functions_func_0x6c.html deleted file mode 100644 index dd3526414..000000000 --- a/doc/html/functions_func_0x6c.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - l -

        -
        -
        - diff --git a/doc/html/functions_func_0x6d.html b/doc/html/functions_func_0x6d.html deleted file mode 100644 index de1449c27..000000000 --- a/doc/html/functions_func_0x6d.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/functions_func_0x6e.html b/doc/html/functions_func_0x6e.html deleted file mode 100644 index c2bea5b6b..000000000 --- a/doc/html/functions_func_0x6e.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - n -

        -
        -
        - diff --git a/doc/html/functions_func_0x6f.html b/doc/html/functions_func_0x6f.html deleted file mode 100644 index f897af14f..000000000 --- a/doc/html/functions_func_0x6f.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - o -

        -
        -
        - diff --git a/doc/html/functions_func_0x70.html b/doc/html/functions_func_0x70.html deleted file mode 100644 index 285bfee0f..000000000 --- a/doc/html/functions_func_0x70.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - p -

        -
        -
        - diff --git a/doc/html/functions_func_0x71.html b/doc/html/functions_func_0x71.html deleted file mode 100644 index 01ca47002..000000000 --- a/doc/html/functions_func_0x71.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - q -

        -
        -
        - diff --git a/doc/html/functions_func_0x72.html b/doc/html/functions_func_0x72.html deleted file mode 100644 index c8ab07a4a..000000000 --- a/doc/html/functions_func_0x72.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - r -

        -
        -
        - diff --git a/doc/html/functions_func_0x73.html b/doc/html/functions_func_0x73.html deleted file mode 100644 index 34ab2ccc5..000000000 --- a/doc/html/functions_func_0x73.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - s -

        -
        -
        - diff --git a/doc/html/functions_func_0x74.html b/doc/html/functions_func_0x74.html deleted file mode 100644 index f59bbb303..000000000 --- a/doc/html/functions_func_0x74.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - t -

          -
        • template_engine() -: App -
        • -
        -
        -
        - diff --git a/doc/html/functions_func_0x75.html b/doc/html/functions_func_0x75.html deleted file mode 100644 index 2b347ab06..000000000 --- a/doc/html/functions_func_0x75.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - u -

        -
        -
        - diff --git a/doc/html/functions_func_0x76.html b/doc/html/functions_func_0x76.html deleted file mode 100644 index 6aeb5ef63..000000000 --- a/doc/html/functions_func_0x76.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Functions - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - v -

        -
        -
        - diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html deleted file mode 100644 index d38992663..000000000 --- a/doc/html/functions_vars.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - -The Red Matrix: Class Members - Variables - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - $ -

        - - -

        - _ -

        - - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - h -

        - - -

        - i -

        - - -

        - m -

        - - -

        - n -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - u -

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

        - $ -

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

        - _ -

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

        - a -

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

        - b -

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

        - c -

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

        - d -

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

        - e -

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

        - f -

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

        - g -

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

        - h -

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

        - i -

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

        - j -

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

        - k -

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

        - l -

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

        - m -

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

        - n -

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

        - o -

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

        - p -

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

        - q -

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

        - r -

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

        - s -

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

        - t -

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

        - u -

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

        - v -

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

        - w -

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

        - x -

        -
        -
        - diff --git a/doc/html/globals_0x79.html b/doc/html/globals_0x79.html deleted file mode 100644 index 007fae0db..000000000 --- a/doc/html/globals_0x79.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all file members with links to the files they belong to:
        - -

        - y -

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

        - z -

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

        - _ -

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

        - a -

        -
        -
        - diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html deleted file mode 100644 index 2519680b5..000000000 --- a/doc/html/globals_func_0x62.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - b -

        -
        -
        - diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html deleted file mode 100644 index d0243c222..000000000 --- a/doc/html/globals_func_0x63.html +++ /dev/null @@ -1,489 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - c -

        -
        -
        - diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html deleted file mode 100644 index 55879a98a..000000000 --- a/doc/html/globals_func_0x64.html +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - d -

        -
        -
        - diff --git a/doc/html/globals_func_0x65.html b/doc/html/globals_func_0x65.html deleted file mode 100644 index 5e9ad0ffb..000000000 --- a/doc/html/globals_func_0x65.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - e -

        -
        -
        - diff --git a/doc/html/globals_func_0x66.html b/doc/html/globals_func_0x66.html deleted file mode 100644 index 924227e46..000000000 --- a/doc/html/globals_func_0x66.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - f -

        -
        -
        - diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html deleted file mode 100644 index eac7e949f..000000000 --- a/doc/html/globals_func_0x67.html +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - g -

        -
        -
        - diff --git a/doc/html/globals_func_0x68.html b/doc/html/globals_func_0x68.html deleted file mode 100644 index 3696bb428..000000000 --- a/doc/html/globals_func_0x68.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - h -

        -
        -
        - diff --git a/doc/html/globals_func_0x69.html b/doc/html/globals_func_0x69.html deleted file mode 100644 index bf0978943..000000000 --- a/doc/html/globals_func_0x69.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - i -

        -
        -
        - diff --git a/doc/html/globals_func_0x6a.html b/doc/html/globals_func_0x6a.html deleted file mode 100644 index 4a5b35663..000000000 --- a/doc/html/globals_func_0x6a.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - j -

        -
        -
        - diff --git a/doc/html/globals_func_0x6b.html b/doc/html/globals_func_0x6b.html deleted file mode 100644 index 5fc1426a6..000000000 --- a/doc/html/globals_func_0x6b.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - k -

        -
        -
        - diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html deleted file mode 100644 index 8ccdbbd32..000000000 --- a/doc/html/globals_func_0x6c.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - l -

        -
        -
        - diff --git a/doc/html/globals_func_0x6d.html b/doc/html/globals_func_0x6d.html deleted file mode 100644 index c009e0db4..000000000 --- a/doc/html/globals_func_0x6d.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - m -

        -
        -
        - diff --git a/doc/html/globals_func_0x6e.html b/doc/html/globals_func_0x6e.html deleted file mode 100644 index 2d8961711..000000000 --- a/doc/html/globals_func_0x6e.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - n -

        -
        -
        - diff --git a/doc/html/globals_func_0x6f.html b/doc/html/globals_func_0x6f.html deleted file mode 100644 index 371f2bea5..000000000 --- a/doc/html/globals_func_0x6f.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - o -

        -
        -
        - diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html deleted file mode 100644 index c560ea54f..000000000 --- a/doc/html/globals_func_0x70.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - p -

        -
        -
        - diff --git a/doc/html/globals_func_0x71.html b/doc/html/globals_func_0x71.html deleted file mode 100644 index 59c8ee6cb..000000000 --- a/doc/html/globals_func_0x71.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - q -

        -
        -
        - diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html deleted file mode 100644 index 3059b147c..000000000 --- a/doc/html/globals_func_0x72.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - r -

        -
        -
        - diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html deleted file mode 100644 index 3b5b6b1ce..000000000 --- a/doc/html/globals_func_0x73.html +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - s -

        -
        -
        - diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html deleted file mode 100644 index f88054d15..000000000 --- a/doc/html/globals_func_0x74.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - t -

        -
        -
        - diff --git a/doc/html/globals_func_0x75.html b/doc/html/globals_func_0x75.html deleted file mode 100644 index 8f5244f6b..000000000 --- a/doc/html/globals_func_0x75.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - u -

        -
        -
        - diff --git a/doc/html/globals_func_0x76.html b/doc/html/globals_func_0x76.html deleted file mode 100644 index 2b3ba6ce4..000000000 --- a/doc/html/globals_func_0x76.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - v -

        -
        -
        - diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html deleted file mode 100644 index cfa7bfb53..000000000 --- a/doc/html/globals_func_0x77.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - w -

        -
        -
        - diff --git a/doc/html/globals_func_0x78.html b/doc/html/globals_func_0x78.html deleted file mode 100644 index cf6f46120..000000000 --- a/doc/html/globals_func_0x78.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - x -

        -
        -
        - diff --git a/doc/html/globals_func_0x79.html b/doc/html/globals_func_0x79.html deleted file mode 100644 index 119f98fb4..000000000 --- a/doc/html/globals_func_0x79.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - y -

        -
        -
        - diff --git a/doc/html/globals_func_0x7a.html b/doc/html/globals_func_0x7a.html deleted file mode 100644 index 791d1b2ef..000000000 --- a/doc/html/globals_func_0x7a.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - z -

        -
        -
        - diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html deleted file mode 100644 index 43f27ad6c..000000000 --- a/doc/html/globals_vars.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - $ -

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

        - a -

        -
        -
        - diff --git a/doc/html/globals_vars_0x63.html b/doc/html/globals_vars_0x63.html deleted file mode 100644 index c0c2ec3e8..000000000 --- a/doc/html/globals_vars_0x63.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - c -

        -
        -
        - diff --git a/doc/html/globals_vars_0x64.html b/doc/html/globals_vars_0x64.html deleted file mode 100644 index eeee1c304..000000000 --- a/doc/html/globals_vars_0x64.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - d -

        -
        -
        - diff --git a/doc/html/globals_vars_0x65.html b/doc/html/globals_vars_0x65.html deleted file mode 100644 index 3b62e6f8b..000000000 --- a/doc/html/globals_vars_0x65.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - e -

        -
        -
        - diff --git a/doc/html/globals_vars_0x66.html b/doc/html/globals_vars_0x66.html deleted file mode 100644 index 79f67b3d5..000000000 --- a/doc/html/globals_vars_0x66.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - f -

        -
        -
        - diff --git a/doc/html/globals_vars_0x67.html b/doc/html/globals_vars_0x67.html deleted file mode 100644 index 6d33c7a1b..000000000 --- a/doc/html/globals_vars_0x67.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - g -

        -
        -
        - diff --git a/doc/html/globals_vars_0x68.html b/doc/html/globals_vars_0x68.html deleted file mode 100644 index fba7c5730..000000000 --- a/doc/html/globals_vars_0x68.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - h -

        -
        -
        - diff --git a/doc/html/globals_vars_0x69.html b/doc/html/globals_vars_0x69.html deleted file mode 100644 index 4e589eaee..000000000 --- a/doc/html/globals_vars_0x69.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - i -

        -
        -
        - diff --git a/doc/html/globals_vars_0x6a.html b/doc/html/globals_vars_0x6a.html deleted file mode 100644 index b2df893eb..000000000 --- a/doc/html/globals_vars_0x6a.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - j -

        -
        -
        - diff --git a/doc/html/globals_vars_0x6b.html b/doc/html/globals_vars_0x6b.html deleted file mode 100644 index 6ef61e098..000000000 --- a/doc/html/globals_vars_0x6b.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - k -

        -
        -
        - diff --git a/doc/html/globals_vars_0x6c.html b/doc/html/globals_vars_0x6c.html deleted file mode 100644 index 2532cd99d..000000000 --- a/doc/html/globals_vars_0x6c.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - l -

        -
        -
        - diff --git a/doc/html/globals_vars_0x6d.html b/doc/html/globals_vars_0x6d.html deleted file mode 100644 index e95cfac46..000000000 --- a/doc/html/globals_vars_0x6d.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - m -

        -
        -
        - diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html deleted file mode 100644 index 645094fe8..000000000 --- a/doc/html/globals_vars_0x6e.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - n -

        -
        -
        - diff --git a/doc/html/globals_vars_0x70.html b/doc/html/globals_vars_0x70.html deleted file mode 100644 index 46f543ab4..000000000 --- a/doc/html/globals_vars_0x70.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - p -

        -
        -
        - diff --git a/doc/html/globals_vars_0x72.html b/doc/html/globals_vars_0x72.html deleted file mode 100644 index 20a6af1a9..000000000 --- a/doc/html/globals_vars_0x72.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - r -

        -
        -
        - diff --git a/doc/html/globals_vars_0x73.html b/doc/html/globals_vars_0x73.html deleted file mode 100644 index 34e04bb36..000000000 --- a/doc/html/globals_vars_0x73.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - s -

        -
        -
        - diff --git a/doc/html/globals_vars_0x74.html b/doc/html/globals_vars_0x74.html deleted file mode 100644 index 193d418d0..000000000 --- a/doc/html/globals_vars_0x74.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - t -

        -
        -
        - diff --git a/doc/html/globals_vars_0x75.html b/doc/html/globals_vars_0x75.html deleted file mode 100644 index 58204f28b..000000000 --- a/doc/html/globals_vars_0x75.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - u -

        -
        -
        - diff --git a/doc/html/globals_vars_0x76.html b/doc/html/globals_vars_0x76.html deleted file mode 100644 index a3452e61d..000000000 --- a/doc/html/globals_vars_0x76.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - v -

        -
        -
        - diff --git a/doc/html/globals_vars_0x77.html b/doc/html/globals_vars_0x77.html deleted file mode 100644 index 042ef4a64..000000000 --- a/doc/html/globals_vars_0x77.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/globals_vars_0x78.html b/doc/html/globals_vars_0x78.html deleted file mode 100644 index 41525e813..000000000 --- a/doc/html/globals_vars_0x78.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - x -

        -
        -
        - diff --git a/doc/html/globals_vars_0x7a.html b/doc/html/globals_vars_0x7a.html deleted file mode 100644 index 2f0197c73..000000000 --- a/doc/html/globals_vars_0x7a.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -The Red Matrix: File Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -  - -

        - z -

        -
        -
        - diff --git a/doc/html/gprobe_8php.html b/doc/html/gprobe_8php.html deleted file mode 100644 index e145841f3..000000000 --- a/doc/html/gprobe_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/gprobe.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        gprobe.php File Reference
        -
        -
        - - - - -

        -Functions

         gprobe_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        gprobe_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/gprobe_8php.js b/doc/html/gprobe_8php.js deleted file mode 100644 index 1c0c6e44a..000000000 --- a/doc/html/gprobe_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var gprobe_8php = -[ - [ "gprobe_run", "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1", null ] -]; \ No newline at end of file diff --git a/doc/html/greenthumbnails_8php.html b/doc/html/greenthumbnails_8php.html deleted file mode 100644 index 69c3376e3..000000000 --- a/doc/html/greenthumbnails_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/greenthumbnails.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        greenthumbnails.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/hcard_8php.html b/doc/html/hcard_8php.html deleted file mode 100644 index 98f95ba7e..000000000 --- a/doc/html/hcard_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/hcard.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        hcard.php File Reference
        -
        -
        - - - - - - -

        -Functions

         hcard_init (&$a)
         
         hcard_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        hcard_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        hcard_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/hcard_8php.js b/doc/html/hcard_8php.js deleted file mode 100644 index c87b83294..000000000 --- a/doc/html/hcard_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var hcard_8php = -[ - [ "hcard_content", "hcard_8php.html#a3663012f1549849af88aba2bb87388e3", null ], - [ "hcard_init", "hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d", null ] -]; \ No newline at end of file diff --git a/doc/html/help_8php.html b/doc/html/help_8php.html deleted file mode 100644 index dc3a3b1da..000000000 --- a/doc/html/help_8php.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -The Red Matrix: mod/help.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        help.php File Reference
        -
        -
        - - - - - - -

        -Functions

        if(!function_exists('load_doc_file')) help_content (&$a)
         
         preg_callback_help_include ($matches)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        if (!function_exists('load_doc_file')) help_content ($a)
        -
        -

        You can create local site resources in doc/Site.md and either link to doc/Home.md for the standard resources or use our include mechanism to include it on your local page.

        -

        #include doc/Home.md;

        -

        The syntax is somewhat strict.

        - -
        -
        - -
        -
        - - - - - - - - -
        preg_callback_help_include ( $matches)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/help_8php.js b/doc/html/help_8php.js deleted file mode 100644 index bc1247ed4..000000000 --- a/doc/html/help_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var help_8php = -[ - [ "help_content", "help_8php.html#af055e15f600ffa6fbca9386fdf715224", null ], - [ "preg_callback_help_include", "help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4", null ] -]; \ No newline at end of file diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html deleted file mode 100644 index 87b3152e7..000000000 --- a/doc/html/hierarchy.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -The Red Matrix: Class Hierarchy - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Class Hierarchy
        -
        -
        -
        This inheritance list is sorted roughly, but not completely, alphabetically:
        -
        [detail level 123]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        oCAbstractBasic
        |\CRedMatrix\RedDAV\RedBasicAuthAuthentication backend class for RedDAV
        oCAppOur main application structure for the life of this page
        oCBaseObject
        |oCConversation
        |\CItem
        oCCache
        oCdba_driverAbstract database driver class
        |oCdba_mysql
        |oCdba_mysqli
        |\Cdba_postgres
        oCenotify
        oCException
        |oCeasywebdav.client.WebdavException
        ||oCeasywebdav.client.ConnectionFailed
        ||\Ceasywebdav.client.OperationFailed
        |\Czotsh.CommandNotFound
        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
        oCobject
        |oCeasywebdav.client.Client
        |\Czotsh.ZotSH
        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 deleted file mode 100644 index 659508d31..000000000 --- a/doc/html/hierarchy.js +++ /dev/null @@ -1,75 +0,0 @@ -var hierarchy = -[ - [ "AbstractBasic", null, [ - [ "RedMatrix\\RedDAV\\RedBasicAuth", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html", null ] - ] ], - [ "App", "classApp.html", null ], - [ "BaseObject", "classBaseObject.html", [ - [ "Conversation", "classConversation.html", null ], - [ "Item", "classItem.html", null ] - ] ], - [ "Cache", "classCache.html", null ], - [ "dba_driver", "classdba__driver.html", [ - [ "dba_mysql", "classdba__mysql.html", null ], - [ "dba_mysqli", "classdba__mysqli.html", null ], - [ "dba_postgres", "classdba__postgres.html", null ] - ] ], - [ "enotify", "classenotify.html", null ], - [ "Exception", null, [ - [ "easywebdav.client.WebdavException", "classeasywebdav_1_1client_1_1WebdavException.html", [ - [ "easywebdav.client.ConnectionFailed", "classeasywebdav_1_1client_1_1ConnectionFailed.html", null ], - [ "easywebdav.client.OperationFailed", "classeasywebdav_1_1client_1_1OperationFailed.html", null ] - ] ], - [ "zotsh.CommandNotFound", "classzotsh_1_1CommandNotFound.html", null ] - ] ], - [ "ICollection", null, [ - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ] - ] ], - [ "IFile", null, [ - [ "RedMatrix\\RedDAV\\RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", null ] - ] ], - [ "RedMatrix\\Import\\Import", "classRedMatrix_1_1Import_1_1Import.html", null ], - [ "IQuota", null, [ - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ] - ] ], - [ "ITemplateEngine", "interfaceITemplateEngine.html", [ - [ "FriendicaSmartyEngine", "classFriendicaSmartyEngine.html", null ], - [ "Template", "classTemplate.html", null ] - ] ], - [ "Node", null, [ - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ], - [ "RedMatrix\\RedDAV\\RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", null ] - ] ], - [ "OAuthDataStore", null, [ - [ "FKOAuthDataStore", "classFKOAuthDataStore.html", null ] - ] ], - [ "OAuthServer", null, [ - [ "FKOAuth1", "classFKOAuth1.html", null ] - ] ], - [ "object", null, [ - [ "easywebdav.client.Client", "classeasywebdav_1_1client_1_1Client.html", null ], - [ "zotsh.ZotSH", "classzotsh_1_1ZotSH.html", null ] - ] ], - [ "photo_driver", "classphoto__driver.html", [ - [ "photo_gd", "classphoto__gd.html", null ], - [ "photo_imagick", "classphoto__imagick.html", null ] - ] ], - [ "Plugin", null, [ - [ "RedMatrix\\RedDAV\\RedBrowser", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html", null ] - ] ], - [ "ProtoDriver", "classProtoDriver.html", [ - [ "ZotDriver", "classZotDriver.html", null ] - ] ], - [ "Sabre", null, [ - [ "RedMatrix\\RedDAV\\RedBasicAuth", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html", null ], - [ "RedMatrix\\RedDAV\\RedBrowser", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html", null ], - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ], - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ], - [ "RedMatrix\\RedDAV\\RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", null ], - [ "RedMatrix\\RedDAV\\RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", null ], - [ "RedMatrix\\RedDAV\\RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", null ] - ] ], - [ "Smarty", null, [ - [ "FriendicaSmarty", "classFriendicaSmarty.html", null ] - ] ] -]; \ No newline at end of file diff --git a/doc/html/hivenet_2php_2style_8php.html b/doc/html/hivenet_2php_2style_8php.html deleted file mode 100644 index b2adc9011..000000000 --- a/doc/html/hivenet_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/hivenet/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/hivenet_2php_2theme_8php.html b/doc/html/hivenet_2php_2theme_8php.html deleted file mode 100644 index de9afb019..000000000 --- a/doc/html/hivenet_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/hivenet/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         hivenet_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        hivenet_init ($a)
        -
        -
          -
        • Name: Hivenet
        • -
        • Description: An experimental red-colored theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/hivenet_2php_2theme_8php.js b/doc/html/hivenet_2php_2theme_8php.js deleted file mode 100644 index f6923b33f..000000000 --- a/doc/html/hivenet_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var hivenet_2php_2theme_8php = -[ - [ "hivenet_init", "hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29", null ] -]; \ No newline at end of file diff --git a/doc/html/home_8php.html b/doc/html/home_8php.html deleted file mode 100644 index 6e5b05937..000000000 --- a/doc/html/home_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/home.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        home.php File Reference
        -
        -
        - - - - - - -

        -Functions

         home_init (&$a)
         
         home_content (&$a, $update=0, $load=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        home_content ($a,
         $update = 0,
         $load = false 
        )
        -
        - -

        Referenced by update_home_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        home_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/home_8php.js b/doc/html/home_8php.js deleted file mode 100644 index 3aacc0b85..000000000 --- a/doc/html/home_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var home_8php = -[ - [ "home_content", "home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f", null ], - [ "home_init", "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde", null ] -]; \ No newline at end of file diff --git a/doc/html/hostxrd_8php.html b/doc/html/hostxrd_8php.html deleted file mode 100644 index 75c163d07..000000000 --- a/doc/html/hostxrd_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/hostxrd.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        hostxrd.php File Reference
        -
        -
        - - - - -

        -Functions

         hostxrd_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        hostxrd_init ($a)
        -
        - -

        Referenced by _well_known_init().

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

        -Functions

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

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        deletenode ($doc,
         $node 
        )
        -
        - -

        Referenced by html2bbcode(), and parseurl_getsiteinfo().

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

        Referenced by html2bbcode(), and html2plain().

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

        Referenced by node2bbcode().

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

        -Functions

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

        Function Documentation

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

        Referenced by quotelevel().

        - -
        -
        - -
        -
        - - - - - - - - -
        collecturls ( $message)
        -
        - -

        Referenced by html2plain().

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

        Referenced by html2plain().

        - -
        -
        -
        -
        - diff --git a/doc/html/html2plain_8php.js b/doc/html/html2plain_8php.js deleted file mode 100644 index 377ba004e..000000000 --- a/doc/html/html2plain_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var html2plain_8php = -[ - [ "breaklines", "html2plain_8php.html#a3214912e3d00cf0a948072daccf16740", null ], - [ "collecturls", "html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201", null ], - [ "html2plain", "html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04", null ], - [ "quotelevel", "html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0", null ] -]; \ No newline at end of file diff --git a/doc/html/hubloc_8php.html b/doc/html/hubloc_8php.html deleted file mode 100644 index 66ef98c09..000000000 --- a/doc/html/hubloc_8php.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -The Red Matrix: include/hubloc.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        hubloc.php File Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Functions

         is_matrix_url ($url)
         
         prune_hub_reinstalls ()
         
         remove_obsolete_hublocs ()
         
         hubloc_change_primary ($hubloc)
         
         xchan_store ($arr)
         
         xchan_fetch ($arr)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        hubloc_change_primary ( $hubloc)
        -
        - -

        Referenced by sync_locations().

        - -
        -
        - -
        -
        - - - - - - - - -
        is_matrix_url ( $url)
        -
        -
        - -
        -
        - - - - - - - -
        prune_hub_reinstalls ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        remove_obsolete_hublocs ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        xchan_fetch ( $arr)
        -
        - -

        Referenced by api_red_xchan().

        - -
        -
        - -
        -
        - - - - - - - - -
        xchan_store ( $arr)
        -
        - -

        Referenced by api_red_xchan(), and reflect_comment_store().

        - -
        -
        -
        -
        - diff --git a/doc/html/hubloc_8php.js b/doc/html/hubloc_8php.js deleted file mode 100644 index d16715d55..000000000 --- a/doc/html/hubloc_8php.js +++ /dev/null @@ -1,9 +0,0 @@ -var hubloc_8php = -[ - [ "hubloc_change_primary", "hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d", null ], - [ "is_matrix_url", "hubloc_8php.html#aebd244b4616ded022cbbee5e82926951", null ], - [ "prune_hub_reinstalls", "hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002", null ], - [ "remove_obsolete_hublocs", "hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea", null ], - [ "xchan_fetch", "hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea", null ], - [ "xchan_store", "hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b", null ] -]; \ No newline at end of file diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html deleted file mode 100644 index f75e9cfd4..000000000 --- a/doc/html/identity_8php.html +++ /dev/null @@ -1,949 +0,0 @@ - - - - - - -The Red Matrix: include/identity.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        identity.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         identity_check_service_class ($account_id)
         
         validate_channelname ($name)
         
         create_sys_channel ()
         
         get_sys_channel ()
         
         is_sys_channel ($channel_id)
         
         channel_total ()
         
         create_identity ($arr)
         
         set_default_login_identity ($account_id, $channel_id, $force=true)
         
         identity_basic_export ($channel_id, $items=false)
         
         profile_load (&$a, $nickname, $profile= '')
         
         profile_create_sidebar (&$a, $connect=true)
         
         profile_sidebar ($profile, $block=0, $show_connect=true)
         
         get_birthdays ()
         
         get_events ()
         
         advanced_profile (&$a)
         
         get_my_url ()
         
         get_my_address ()
         
         zid_init (&$a)
         
         zid ($s, $address= '')
         
         get_theme_uid ()
         
         get_default_profile_photo ($size=175)
         
         is_foreigner ($s)
         
         is_member ($s)
         
         get_online_status ($nick)
         
         remote_online_status ($webbie)
         
         get_channel_by_nick ($nick)
         
         identity_selector ()
         
         is_public_profile ()
         
         get_profile_fields_basic ($filter=0)
         
         get_profile_fields_advanced ($filter=0)
         
         notifications_off ($channel_id)
         
         notifications_on ($channel_id, $value)
         
         get_channel_default_perms ($uid)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        advanced_profile ($a)
        -
        - -

        Referenced by profile_content().

        - -
        -
        - -
        -
        - - - - - - - -
        channel_total ()
        -
        -

        () Return the total number of channels on this site. No filtering is performed except to check PAGE_REMOVED

        -
        Returns
        int on error returns boolean false
        - -

        Referenced by zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        create_identity ( $arr)
        -
        -

        create_identity($arr) Create a new channel Also creates the related xchan, hubloc, profile, and "self" abook records, and an empty "Friends" group/collection for the new channel

        -
        Parameters
        - - -
        array$arr'name' => full name of channel 'nickname' => "email/url-compliant" nickname 'account_id' => account_id to attach with this channel [other identity fields as desired]
        -
        -
        -
        Returns
        array 'success' => boolean true or false 'message' => optional error text if success is false 'channel' => if successful the created channel array
        - -

        Referenced by create_sys_channel(), and new_channel_post().

        - -
        -
        - -
        -
        - - - - - - - -
        create_sys_channel ()
        -
        -

        create_sys_channel() Create a system channel - which has no account attached

        - -

        Referenced by check_config(), and what_next().

        - -
        -
        - -
        -
        - - - - - - - -
        get_birthdays ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        get_channel_by_nick ( $nick)
        -
        -
        - -
        -
        - - - - - - - - -
        get_channel_default_perms ( $uid)
        -
        - -

        Referenced by connedit_content(), and new_contact().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_default_profile_photo ( $size = 175)
        -
        -

        get_default_profile_photo($size = 175) Retrieves the path of the default_profile_photo for this system with the specified size.

        -
        Parameters
        - - -
        int$sizeone of (175, 80, 48)
        -
        -
        -
        Returns
        string
        - -

        Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), photo_init(), reflect_comment_store(), and xchan_store().

        - -
        -
        - -
        -
        - - - - - - - -
        get_events ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        get_my_address ()
        -
        - -

        Referenced by App\build_pagehead(), rmagic_init(), zid(), and zid_init().

        - -
        -
        - -
        -
        - - - - - - - -
        get_my_url ()
        -
        - -

        Referenced by nav(), and zid().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_online_status ( $nick)
        -
        - -

        Referenced by online_init(), and profile_load().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_profile_fields_advanced ( $filter = 0)
        -
        -
        - -
        -
        - - - - - - - - -
        get_profile_fields_basic ( $filter = 0)
        -
        -
        - - - -
        -
        - - - - - - - -
        get_theme_uid ()
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        identity_basic_export ( $channel_id,
         $items = false 
        )
        -
        -

        identity_basic_export($channel_id,$items = false) Create an array representing the important channel information which would be necessary to create a nomadic identity clone. This includes most channel resources and connection information with the exception of content.

        -
        Parameters
        - - - -
        int$channel_idChannel_id to export
        boolean$itemsInclude channel posts (wall items), default false
        -
        -
        -
        Returns
        array See function for details
        - -

        Referenced by api_export_basic(), and uexport_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        identity_check_service_class ( $account_id)
        -
        -

        identity_check_service_class($account_id) Called when creating a new channel. Checks the account's service class and number of current channels to determine whether creating a new channel is within the current service class constraints.

        -
        Parameters
        - - -
        int$account_idAccount_id used for this request
        -
        -
        -
        Returns
        array 'success' => boolean true if creating a new channel is allowed for this account 'message' => if success is false, optional error text
        - -

        Referenced by create_identity().

        - -
        -
        - -
        -
        - - - - - - - -
        identity_selector ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        is_foreigner ( $s)
        -
        -

        is_foreigner($s) Test whether a given identity is NOT a member of the Red Matrix

        -
        Parameters
        - - -
        string$s,;xchan_hash of the identity in question
        -
        -
        -
        Returns
        boolean true or false
        - -

        Referenced by is_member(), and theme_attachments().

        - -
        -
        - -
        -
        - - - - - - - - -
        is_member ( $s)
        -
        -

        is_member($s) Test whether a given identity is a member of the Red Matrix

        -
        Parameters
        - - -
        string$s,;xchan_hash of the identity in question
        -
        -
        -
        Returns
        boolean true or false
        - -
        -
        - -
        -
        - - - - - - - -
        is_public_profile ()
        -
        - -

        Referenced by app_render(), and parse_app_description().

        - -
        -
        - -
        -
        - - - - - - - - -
        is_sys_channel ( $channel_id)
        -
        - -

        Referenced by zot_feed().

        - -
        -
        - -
        -
        - - - - - - - - -
        notifications_off ( $channel_id)
        -
        -

        notifications_off($channel_id) Clear notifyflags for a channel - most likely during bulk import of content or other activity that is likely to generate huge amounts of undesired notifications.

        -
        Parameters
        - - -
        int$channel_idThe channel to disable notifications for
        -
        -
        -
        Returns
        int Current notification flag value. Send this to notifications_on() to restore the channel settings when finished with the activity requiring notifications_off();
        - -

        Referenced by import_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        notifications_on ( $channel_id,
         $value 
        )
        -
        - -

        Referenced by import_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        profile_create_sidebar ($a,
         $connect = true 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        profile_load ($a,
         $nickname,
         $profile = '' 
        )
        -
        -

        : profile_load(&$a, $nickname, $profile) Generate

        -
        Parameters
        - - - - -
        App$a
        string$nickname
        string$profileSummary: Loads a profile into the App structure. The function requires a writeable copy of the main App structure, and the nickname of a valid channel.
        -
        -
        -

        Permissions of the current observer are checked. If a restricted profile is available to the current observer, that will be loaded instead of the channel default profile.

        -

        The channel owner can set $profile to a valid profile_guid to preview that profile.

        -

        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_init(), channel_init(), chat_init(), cloud_init(), common_init(), connect_init(), dav_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().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        profile_sidebar ( $profile,
         $block = 0,
         $show_connect = true 
        )
        -
        -

        Function: profile_sidebar

        -

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

        -

        : array $profile

        -

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

        - -

        Referenced by profile_create_sidebar(), widget_fullprofile(), and widget_profile().

        - -
        -
        - -
        -
        - - - - - - - - -
        remote_online_status ( $webbie)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        set_default_login_identity ( $account_id,
         $channel_id,
         $force = true 
        )
        -
        -

        set_default_login_identity($account_id, $channel_id, $force = true) Set default channel to be used on login

        -
        Parameters
        - - - - -
        int$account_idlogin account
        int$channel_idchannel id to set as default for this account
        booleanforce if true, set this default unconditionally if $force is false only do this if there is no existing default
        -
        -
        -
        Returns
        nil
        - -

        Referenced by create_identity(), and import_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        validate_channelname ( $name)
        -
        -

        validate_channelname($name) Determine if the channel name is allowed when creating a new channel. This action is pluggable.

        -
        Parameters
        - - -
        string$name
        -
        -
        -
        Returns
        nil return if name is valid, or string describing the error state.
        -

        We're currently only checking for an empty name or one that exceeds our storage limit (255 chars). 255 chars is probably going to create a mess on some pages. Plugins can set additional policies such as full name requirements, character sets, multi-byte length, etc.

        - -

        Referenced by create_identity(), and settings_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        zid ( $s,
         $address = '' 
        )
        -
        -

        zid($s,$address = '') Adds a zid parameter to a url

        -
        Parameters
        - - - -
        string$sThe url to accept the zid
        boolean$address$address to use instead of session environment
        -
        -
        -
        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(), 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(), vcard_from_xchan(), widget_bookmarkedchats(), widget_photo(), widget_photo_rand(), and widget_suggestedchats().

        - -
        -
        - -
        -
        - - - - - - - - -
        zid_init ($a)
        -
        -

        zid_init(&$a) If somebody arrives at our site using a zid, add their xchan to our DB if we don't have it already. And if they aren't already authenticated here, attempt reverse magic auth.

        -

        'zid_init' string 'zid' - their zid string 'url' - the destination url

        - -
        -
        -
        -
        - diff --git a/doc/html/identity_8php.js b/doc/html/identity_8php.js deleted file mode 100644 index 92b4f2c38..000000000 --- a/doc/html/identity_8php.js +++ /dev/null @@ -1,36 +0,0 @@ -var identity_8php = -[ - [ "advanced_profile", "identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4", null ], - [ "channel_total", "identity_8php.html#a77d2237f1846964634b1c99089c27c7d", null ], - [ "create_identity", "identity_8php.html#a345f4c943d84de502ec6e72d2c813945", null ], - [ "create_sys_channel", "identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05", null ], - [ "get_birthdays", "identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51", null ], - [ "get_channel_by_nick", "identity_8php.html#ac73b3e13778c564c877554517a7f51ba", null ], - [ "get_channel_default_perms", "identity_8php.html#a293f416ce9050220b183e08ff5890216", null ], - [ "get_default_profile_photo", "identity_8php.html#ab1485a26b032956e1496fc08c58b83ed", null ], - [ "get_events", "identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312", null ], - [ "get_my_address", "identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2", null ], - [ "get_my_url", "identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec", null ], - [ "get_online_status", "identity_8php.html#a332df795f684788002f5a6424abacfd7", null ], - [ "get_profile_fields_advanced", "identity_8php.html#a224710dfb7465b706c91134247c20afa", null ], - [ "get_profile_fields_basic", "identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21", null ], - [ "get_sys_channel", "identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51", null ], - [ "get_theme_uid", "identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3", null ], - [ "identity_basic_export", "identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249", null ], - [ "identity_check_service_class", "identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633", null ], - [ "identity_selector", "identity_8php.html#a2ab5172eabd375869060c9ad68323f5c", null ], - [ "is_foreigner", "identity_8php.html#ae2b140df652a55ca11bb6a99005fce35", null ], - [ "is_member", "identity_8php.html#a9637c557e13d9671f3eeb124ab98212a", null ], - [ "is_public_profile", "identity_8php.html#a4e996e44b50330098a04b467367a559f", null ], - [ "is_sys_channel", "identity_8php.html#aa4bd4abfcba883f43919e89ec6419025", null ], - [ "notifications_off", "identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe", null ], - [ "notifications_on", "identity_8php.html#a5650319c799de09d1b6d1076b6f839a4", null ], - [ "profile_create_sidebar", "identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620", null ], - [ "profile_load", "identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68", null ], - [ "profile_sidebar", "identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc", null ], - [ "remote_online_status", "identity_8php.html#a47d6f53216f23a3484061793bef29854", null ], - [ "set_default_login_identity", "identity_8php.html#a78151baf4407a8482d2681a91a9c486b", null ], - [ "validate_channelname", "identity_8php.html#af2802bc13a00a17b867bba7978ba8f58", null ], - [ "zid", "identity_8php.html#a5b815330f3d177ab383af37a6c12e532", null ], - [ "zid_init", "identity_8php.html#a680fbafc2db023c5b1309e0180e81315", null ] -]; \ No newline at end of file diff --git a/doc/html/impel_8php.html b/doc/html/impel_8php.html deleted file mode 100644 index 1a35a56cf..000000000 --- a/doc/html/impel_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/impel.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        impel.php File Reference
        -
        -
        - - - - -

        -Functions

         impel_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        impel_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/impel_8php.js b/doc/html/impel_8php.js deleted file mode 100644 index fdd6ebee7..000000000 --- a/doc/html/impel_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var impel_8php = -[ - [ "impel_init", "impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b", null ] -]; \ No newline at end of file diff --git a/doc/html/import_8php.html b/doc/html/import_8php.html deleted file mode 100644 index 9d9d05950..000000000 --- a/doc/html/import_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/import.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        import.php File Reference
        -
        -
        - - - - - - -

        -Functions

         import_post (&$a)
         
         import_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        import_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        import_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/import_8php.js b/doc/html/import_8php.js deleted file mode 100644 index 906bce463..000000000 --- a/doc/html/import_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var import_8php = -[ - [ "import_content", "import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184", null ], - [ "import_post", "import_8php.html#af17fef0410518f7eac205d0ea416eaa2", null ] -]; \ No newline at end of file diff --git a/doc/html/importelm_8php.html b/doc/html/importelm_8php.html deleted file mode 100644 index d4b084662..000000000 --- a/doc/html/importelm_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/importelm.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        importelm.php File Reference
        -
        -
        - - - - -

        -Functions

         importelm_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        importelm_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/importelm_8php.js b/doc/html/importelm_8php.js deleted file mode 100644 index e9b427a77..000000000 --- a/doc/html/importelm_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var importelm_8php = -[ - [ "importelm_post", "importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2api_8php.html b/doc/html/include_2api_8php.html deleted file mode 100644 index 2347d75af..000000000 --- a/doc/html/include_2api_8php.html +++ /dev/null @@ -1,1709 +0,0 @@ - - - - - - -The Red Matrix: include/api.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        api.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

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

        -Variables

         $API = array()
         
         $called_api = Null
         
        -

        Function Documentation

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

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

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        api_albums ($a,
         $type 
        )
        -
        - -
        -
        - - - -
        -
        - - - - - - - - -
        api_call ($a)
        -
        - -

        Referenced by api_content().

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

        Referenced by api_followers_ids(), and api_friends_ids().

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

        Referenced by api_format_items().

        - -
        -
        - -
        -
        - - - - - - - - -
        api_login ($a)
        -
        -

        Simple HTTP Login

        - -

        Referenced by api_call(), and api_get_user().

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

        Referenced by api_statuses_mediap(), and api_statuses_update().

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

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

        - -

        Referenced by api_statuses_followers(), and api_statuses_friends().

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

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

        -

        TODO: Optional parameters TODO: Add reply info

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

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

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        red_item_new ($a,
         $type 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        requestdata ( $k)
        -
        -

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

        - -

        Referenced by api_statuses_mediap(), and api_statuses_update().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $API = array()
        -
        -

        TWITTER API

        - -

        Referenced by api_call(), and api_register_func().

        - -
        -
        - -
        -
        - - - - -
        $called_api = Null
        -
        - -

        Referenced by api_call(), and api_get_user().

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

        -Functions

         get_system_apps ()
         
         app_name_compare ($a, $b)
         
         parse_app_description ($f)
         
         translate_system_apps (&$arr)
         
         app_render ($papp, $mode= 'view')
         
         app_install ($uid, $app)
         
         app_destroy ($uid, $app)
         
         app_installed ($uid, $app)
         
         app_list ($uid)
         
         app_decode ($s)
         
         app_store ($arr)
         
         app_update ($arr)
         
         app_encode ($app, $embed=false)
         
         papp_encode ($papp)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        app_decode ( $s)
        -
        - -

        Referenced by appman_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_destroy ( $uid,
         $app 
        )
        -
        - -

        Referenced by appman_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_encode ( $app,
         $embed = false 
        )
        -
        - -

        Referenced by appman_content(), and apps_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_install ( $uid,
         $app 
        )
        -
        - -

        Referenced by appman_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_installed ( $uid,
         $app 
        )
        -
        - -

        Referenced by app_install(), app_render(), and appman_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        app_list ( $uid)
        -
        - -

        Referenced by apps_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_name_compare ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        app_render ( $papp,
         $mode = 'view' 
        )
        -
        -

        modes: view: normal mode for viewing an app via bbcode from a conversation or page provides install/update button if you're logged in locally list: normal mode for viewing an app on the app page no buttons are shown edit: viewing the app page in editing mode provides a delete button

        - -

        Referenced by apps_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        app_store ( $arr)
        -
        - -

        Referenced by app_install().

        - -
        -
        - -
        -
        - - - - - - - - -
        app_update ( $arr)
        -
        - -

        Referenced by app_install().

        - -
        -
        - -
        -
        - - - - - - - -
        get_system_apps ()
        -
        -

        apps

        - -

        Referenced by apps_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        papp_encode ( $papp)
        -
        - -

        Referenced by app_render().

        - -
        -
        - -
        -
        - - - - - - - - -
        parse_app_description ( $f)
        -
        - -

        Referenced by get_system_apps().

        - -
        -
        - -
        -
        - - - - - - - - -
        translate_system_apps ($arr)
        -
        - -

        Referenced by parse_app_description().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2apps_8php.js b/doc/html/include_2apps_8php.js deleted file mode 100644 index 1be75a9e0..000000000 --- a/doc/html/include_2apps_8php.js +++ /dev/null @@ -1,17 +0,0 @@ -var include_2apps_8php = -[ - [ "app_decode", "include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185", null ], - [ "app_destroy", "include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f", null ], - [ "app_encode", "include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7", null ], - [ "app_install", "include_2apps_8php.html#a72756e1601489eb77971eeda011446d0", null ], - [ "app_installed", "include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2", null ], - [ "app_list", "include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0", null ], - [ "app_name_compare", "include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658", null ], - [ "app_render", "include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66", null ], - [ "app_store", "include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9", null ], - [ "app_update", "include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46", null ], - [ "get_system_apps", "include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca", null ], - [ "papp_encode", "include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680", null ], - [ "parse_app_description", "include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83", null ], - [ "translate_system_apps", "include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2attach_8php.html b/doc/html/include_2attach_8php.html deleted file mode 100644 index 4b7a6513e..000000000 --- a/doc/html/include_2attach_8php.html +++ /dev/null @@ -1,1015 +0,0 @@ - - - - - - -The Red Matrix: include/attach.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        attach.php File Reference
        -
        -
        - -

        File/attach API with the potential for revision control. -More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         z_mime_content_type ($filename)
         Guess the mimetype from file ending. More...
         
         attach_count_files ($channel_id, $observer, $hash= '', $filename= '', $filetype= '')
         Count files/attachments. More...
         
         attach_list_files ($channel_id, $observer, $hash= '', $filename= '', $filetype= '', $orderby= 'created desc', $start=0, $entries=0)
         Returns a list of files/attachments. More...
         
         attach_by_hash ($hash, $rev=0)
         Find an attachment by hash and revision. More...
         
         attach_by_hash_nodata ($hash, $rev=0)
         Find an attachment by hash and revision. More...
         
         attach_store ($channel, $observer_hash, $options= '', $arr=null)
         
         z_readdir ($channel_id, $observer_hash, $pathname, $parent_hash= '')
         
         attach_mkdir ($channel, $observer_hash, $arr=null)
         Create directory. More...
         
         attach_change_permissions ($channel_id, $resource, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $recurse=false)
         Changes permissions of a file. More...
         
         attach_delete ($channel_id, $resource)
         Delete a file/directory from a channel. More...
         
         get_cloudpath ($arr)
         Returns path to file in cloud/. This function cannot be used with mod/dav as it always returns a path valid under mod/cloud. More...
         
         get_parent_cloudpath ($channel_id, $channel_name, $attachHash)
         Returns path to parent folder in cloud/. This function cannot be used with mod/dav as it always returns a path valid under mod/cloud. More...
         
         find_folder_hash_by_attach_hash ($channel_id, $attachHash)
         Return the hash of an attachment's folder. More...
         
         find_filename_by_hash ($channel_id, $attachHash)
         Returns the filename of an attachment in a given channel. More...
         
         pipe_streams ($in, $out)
         
         file_activity ($channel_id, $object, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $verb, $no_activity)
         
         get_file_activity_object ($channel_id, $hash, $cloudpath)
         
         recursive_activity_recipients ($allow_cid, $allow_gid, $deny_cid, $deny_gid, $folder_hash)
         
         in_group ($group_id)
         
        -

        Detailed Description

        -

        File/attach API with the potential for revision control.

        -

        TODO: a filesystem storage abstraction which maintains security (and 'data' contains a system filename which is inaccessible from the web). This could get around PHP storage limits and store videos and larger items, using fread or OS methods or native code to read/write or chunk it through. Also an 'append' option to the storage function might be a useful addition.

        -

        Function Documentation

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

        Find an attachment by hash and revision.

        -

        Returns the entire attach structure including data.

        -

        This could exhaust memory so most useful only when immediately sending the data.

        -
        Parameters
        - - - -
        $hash
        $rev
        -
        -
        - -

        Referenced by attach_init().

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

        Find an attachment by hash and revision.

        -

        Returns the entire attach structure excluding data.

        -
        See Also
        attach_by_hash()
        -
        Parameters
        - - - -
        $hash
        $ref
        -
        -
        - -

        Referenced by item_post(), and send_message().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attach_change_permissions ( $channel_id,
         $resource,
         $allow_cid,
         $allow_gid,
         $deny_cid,
         $deny_gid,
         $recurse = false 
        )
        -
        - -

        Changes permissions of a file.

        -
        Parameters
        - - - - - - - - -
        $channel_id
        $resource
        $allow_cid
        $allow_gid
        $deny_cid
        $deny_gid
        $recurse
        -
        -
        - -

        Referenced by filestorage_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attach_count_files ( $channel_id,
         $observer,
         $hash = '',
         $filename = '',
         $filetype = '' 
        )
        -
        - -

        Count files/attachments.

        -
        Parameters
        - - - - - - -
        $channel_id
        $observer
        $hash(optional)
        $filename(optional)
        $filetype(optional)
        -
        -
        -
        Returns
        array $ret['success'] boolean $ret['results'] amount of found results, or false $ret['message'] string with error messages if any
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        attach_delete ( $channel_id,
         $resource 
        )
        -
        - -

        Delete a file/directory from a channel.

        -

        If the provided resource hash is from a directory it will delete everything recursively under this directory.

        -
        Parameters
        - - - -
        int$channel_idThe id of the channel
        string$resourceThe hash to delete
        -
        -
        -
        Returns
        void
        - -

        Referenced by RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), filestorage_content(), and RedMatrix\RedDAV\RedFile\put().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attach_list_files ( $channel_id,
         $observer,
         $hash = '',
         $filename = '',
         $filetype = '',
         $orderby = 'created desc',
         $start = 0,
         $entries = 0 
        )
        -
        - -

        Returns a list of files/attachments.

        -
        Parameters
        - - - - - - - - - -
        $channel_id
        $observer
        $hash(optional)
        $filename(optional)
        $filetype(optional)
        $orderby
        $start
        $entries
        -
        -
        -
        Returns
        array $ret['success'] boolean $ret['results'] array with results, or false $ret['message'] string with error messages if any
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        attach_mkdir ( $channel,
         $observer_hash,
         $arr = null 
        )
        -
        - -

        Create directory.

        -

        attach_mkdir($channel,$observer_hash,$arr);

        -
        Parameters
        - - - - -
        array$channelchannel array of owner
        string$observer_hashhash of current observer
        array$arrparameter array to fulfil request Required: $arr['filename'] $arr['folder'] // hash of parent directory, empty string for root directory Optional: $arr['hash'] // precumputed hash for this node $arr['allow_cid'] $arr['allow_gid'] $arr['deny_cid'] $arr['deny_gid']
        -
        -
        - -

        Referenced by RedMatrix\RedDAV\RedDirectory\createDirectory().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        attach_store ( $channel,
         $observer_hash,
         $options = '',
         $arr = null 
        )
        -
        -
        Parameters
        - - - - - -
        $channelchannel array of owner
        $observer_hashhash of current observer
        $options(optional)
        $arr(optional)
        -
        -
        - -

        Referenced by fix_attached_file_permissions(), importelm_post(), send_message(), and wall_attach_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        file_activity ( $channel_id,
         $object,
         $allow_cid,
         $allow_gid,
         $deny_cid,
         $deny_gid,
         $verb,
         $no_activity 
        )
        -
        - -

        Referenced by attach_delete(), and filestorage_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        find_filename_by_hash ( $channel_id,
         $attachHash 
        )
        -
        - -

        Returns the filename of an attachment in a given channel.

        -
        Parameters
        - - - -
        mixed$channel_idThe id of the channel
        mixed$attachHashThe hash of the attachment
        -
        -
        -
        Returns
        string The filename of the attachment
        - -

        Referenced by get_parent_cloudpath().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        find_folder_hash_by_attach_hash ( $channel_id,
         $attachHash 
        )
        -
        - -

        Return the hash of an attachment's folder.

        -
        Parameters
        - - - -
        int$channel_idThe id of the channel
        string$attachHashThe hash of the attachment
        -
        -
        -
        Returns
        string
        - -

        Referenced by get_parent_cloudpath().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_cloudpath ( $arr)
        -
        - -

        Returns path to file in cloud/. This function cannot be used with mod/dav as it always returns a path valid under mod/cloud.

        -
        Parameters
        - - -
        array$arr,[uid]int the channels uid $arr[folder] string $arr[filename]] string
        -
        -
        -
        Returns
        string path to the file in cloud/
        - -

        Referenced by filestorage_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_file_activity_object ( $channel_id,
         $hash,
         $cloudpath 
        )
        -
        - -

        Referenced by attach_delete(), and filestorage_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_parent_cloudpath ( $channel_id,
         $channel_name,
         $attachHash 
        )
        -
        - -

        Returns path to parent folder in cloud/. This function cannot be used with mod/dav as it always returns a path valid under mod/cloud.

        -
        Parameters
        - - - - -
        int$channel_idThe id of the channel
        string$channel_nameThe name of the channel
        string$attachHash
        -
        -
        -
        Returns
        string with the full folder path
        - -

        Referenced by attach_delete(), filestorage_content(), and filestorage_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        in_group ( $group_id)
        -
        - -

        Referenced by recursive_activity_recipients().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pipe_streams ( $in,
         $out 
        )
        -
        -
        Parameters
        - - - -
        $in
        $out
        -
        -
        - -

        Referenced by attach_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        recursive_activity_recipients ( $allow_cid,
         $allow_gid,
         $deny_cid,
         $deny_gid,
         $folder_hash 
        )
        -
        - -

        Referenced by file_activity().

        - -
        -
        - -
        -
        - - - - - - - - -
        z_mime_content_type ( $filename)
        -
        - -

        Guess the mimetype from file ending.

        -

        This function takes a file name and guess the mimetype from the filename extension.

        -
        Parameters
        - - -
        $filenamea string filename
        -
        -
        -
        Returns
        string The mimetype according to a file ending.
        - -

        Referenced by attach_store(), and RedMatrix\RedDAV\RedDirectory\createFile().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        z_readdir ( $channel_id,
         $observer_hash,
         $pathname,
         $parent_hash = '' 
        )
        -
        -

        Read a virtual directory and return contents, checking permissions of all parent components. z_readdir

        -
        Parameters
        - - - - - -
        integer$channel_id
        string$observer_hashhash of current observer
        string$pathname
        string$parent_hash(optional)
        -
        -
        -
        Returns
        array $ret $ret['success'] = boolean true or false $ret['message'] = error message if success is false $ret['data'] = array of attach DB entries without data component
        - -
        -
        -
        -
        - diff --git a/doc/html/include_2attach_8php.js b/doc/html/include_2attach_8php.js deleted file mode 100644 index 845494e68..000000000 --- a/doc/html/include_2attach_8php.js +++ /dev/null @@ -1,22 +0,0 @@ -var include_2attach_8php = -[ - [ "attach_by_hash", "include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36", null ], - [ "attach_by_hash_nodata", "include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932", null ], - [ "attach_change_permissions", "include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221", null ], - [ "attach_count_files", "include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3", null ], - [ "attach_delete", "include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd", null ], - [ "attach_list_files", "include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d", null ], - [ "attach_mkdir", "include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc", null ], - [ "attach_store", "include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f", null ], - [ "file_activity", "include_2attach_8php.html#aa23ba65e5bb732be71fdd27ccff7d46e", null ], - [ "find_filename_by_hash", "include_2attach_8php.html#a4dbfd7e1cef52aa9ef52f4b88929fa86", null ], - [ "find_folder_hash_by_attach_hash", "include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997", null ], - [ "get_cloudpath", "include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce", null ], - [ "get_file_activity_object", "include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db", null ], - [ "get_parent_cloudpath", "include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f", null ], - [ "in_group", "include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355", null ], - [ "pipe_streams", "include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34", null ], - [ "recursive_activity_recipients", "include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886", null ], - [ "z_mime_content_type", "include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a", null ], - [ "z_readdir", "include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2bookmarks_8php.html b/doc/html/include_2bookmarks_8php.html deleted file mode 100644 index 40c828965..000000000 --- a/doc/html/include_2bookmarks_8php.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - -The Red Matrix: include/bookmarks.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        bookmarks.php File Reference
        -
        -
        - - - - - - -

        -Functions

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

        Function Documentation

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

        Referenced by bookmarks_init(), and rbmark_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_bookmark_link ( $observer)
        -
        - -

        Referenced by chat_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2bookmarks_8php.js b/doc/html/include_2bookmarks_8php.js deleted file mode 100644 index e1884bb55..000000000 --- a/doc/html/include_2bookmarks_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var include_2bookmarks_8php = -[ - [ "bookmark_add", "include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323", null ], - [ "get_bookmark_link", "include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2chanman_8php.html b/doc/html/include_2chanman_8php.html deleted file mode 100644 index b6e21596d..000000000 --- a/doc/html/include_2chanman_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: include/chanman.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chanman.php File Reference
        -
        -
        - - - - -

        -Functions

         chanman_remove_everything_from_network ($channel_id)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        chanman_remove_everything_from_network ( $channel_id)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/include_2chanman_8php.js b/doc/html/include_2chanman_8php.js deleted file mode 100644 index 8d5f2da29..000000000 --- a/doc/html/include_2chanman_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var include_2chanman_8php = -[ - [ "chanman_remove_everything_from_network", "include_2chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2chat_8php.html b/doc/html/include_2chat_8php.html deleted file mode 100644 index cadccebf3..000000000 --- a/doc/html/include_2chat_8php.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - -The Red Matrix: include/chat.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chat.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - -

        -Functions

         chatroom_create ($channel, $arr)
         
         chatroom_destroy ($channel, $arr)
         
         chatroom_enter ($observer_xchan, $room_id, $status, $client)
         
         chatroom_leave ($observer_xchan, $room_id, $client)
         
         chatroom_list ($uid)
         
         chatroom_list_count ($uid)
         
         chat_message ($uid, $room_id, $xchan, $text)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        chat_message ( $uid,
         $room_id,
         $xchan,
         $text 
        )
        -
        -

        create a chat message via API. It is the caller's responsibility to enter the room.

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        chatroom_create ( $channel,
         $arr 
        )
        -
        - -

        Referenced by chat_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        chatroom_destroy ( $channel,
         $arr 
        )
        -
        - -

        Referenced by chat_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        chatroom_enter ( $observer_xchan,
         $room_id,
         $status,
         $client 
        )
        -
        - -

        Referenced by chat_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        chatroom_leave ( $observer_xchan,
         $room_id,
         $client 
        )
        -
        - -

        Referenced by chat_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        chatroom_list ( $uid)
        -
        - -

        Referenced by widget_chatroom_list().

        - -
        -
        - -
        -
        - - - - - - - - -
        chatroom_list_count ( $uid)
        -
        - -

        Referenced by nav().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2chat_8php.js b/doc/html/include_2chat_8php.js deleted file mode 100644 index 176f640cb..000000000 --- a/doc/html/include_2chat_8php.js +++ /dev/null @@ -1,10 +0,0 @@ -var include_2chat_8php = -[ - [ "chat_message", "include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3", null ], - [ "chatroom_create", "include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422", null ], - [ "chatroom_destroy", "include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639", null ], - [ "chatroom_enter", "include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91", null ], - [ "chatroom_leave", "include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f", null ], - [ "chatroom_list", "include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a", null ], - [ "chatroom_list_count", "include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html deleted file mode 100644 index ae703a490..000000000 --- a/doc/html/include_2config_8php.html +++ /dev/null @@ -1,725 +0,0 @@ - - - - - - -The Red Matrix: include/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - -

        Arbitrary configuration storage. -More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         load_config ($family)
         Loads the hub's configuration from database to a cached storage. More...
         
         get_config ($family, $key)
         Get a particular config variable given the category name ($family) and a key. More...
         
         get_config_from_storage ($family, $key)
         Returns a value directly from the database configuration storage. More...
         
         set_config ($family, $key, $value)
         Sets a configuration value for the hub. More...
         
         del_config ($family, $key)
         Deletes the given key from the hub's configuration database. More...
         
         load_pconfig ($uid)
         Loads all configuration values of a channel into a cached storage. More...
         
         get_pconfig ($uid, $family, $key, $instore=false)
         Get a particular channel's config variable given the category name ($family) and a key. More...
         
         set_pconfig ($uid, $family, $key, $value)
         Sets a configuration value for a channel. More...
         
         del_pconfig ($uid, $family, $key)
         Deletes the given key from the channel's configuration. More...
         
         load_xconfig ($xchan)
         Loads a full xchan's configuration into a cached storage. More...
         
         get_xconfig ($xchan, $family, $key)
         Get a particular observer's config variable given the category name ($family) and a key. More...
         
         set_xconfig ($xchan, $family, $key, $value)
         Sets a configuration value for an observer. More...
         
         del_xconfig ($xchan, $family, $key)
         Deletes the given key from the observer's config. More...
         
        -

        Detailed Description

        -

        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.
        -
          -
        • config is used for hub specific configurations. It overrides the configurations from .htconfig file. The storage is of size TEXT.
        • -
        • pconfig is used for channel specific configurations and takes a channel_id as identifier. It stores for example which features are enabled per channel. The storage is of size MEDIUMTEXT.
          $var = get_pconfig(local_channel(), 'category', 'key');
          -
        • -
        • xconfig is the same as pconfig, except that it uses xchan as an identifier. This is for example for people who do not have a local account. The storage is of size MEDIUMTEXT.
          $observer = $a->get_observer_hash();
          -
          if ($observer) {
          -
          $var = get_xconfig($observer, 'category', 'key');
          -
          }
          -
        • -
        - -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        del_config ( $family,
         $key 
        )
        -
        - -

        Deletes the given key from the hub's configuration database.

        -

        Removes the configured value from the stored cache in $a->config[$family] and removes it from the database.

        -
        Parameters
        - - - -
        string$familyThe category of the configuration value
        string$keyThe configuration key to delete
        -
        -
        -
        Returns
        mixed
        - -

        Referenced by admin_page_site_post(), and FKOAuthDataStore\new_access_token().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        del_pconfig ( $uid,
         $family,
         $key 
        )
        -
        - -

        Deletes the given key from the channel's configuration.

        -

        Removes the configured value from the stored cache in $a->config[$uid] and removes it from the database.

        -
        Parameters
        - - - - -
        string$uidThe channel_id
        string$familyThe category of the configuration value
        string$keyThe configuration key to delete
        -
        -
        -
        Returns
        mixed
        - -

        Referenced by pdledit_post(), and settings_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        del_xconfig ( $xchan,
         $family,
         $key 
        )
        -
        - -

        Deletes the given key from the observer's config.

        -

        Removes the configured value from the stored cache in $a->config[$xchan] and removes it from the database.

        -
        Parameters
        - - - - -
        string$xchanThe observer's hash
        string$familyThe category of the configuration value
        string$keyThe configuration key to delete
        -
        -
        -
        Returns
        mixed
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_config ( $family,
         $key 
        )
        -
        - -

        Get a particular config variable given the category name ($family) and a key.

        -

        Get a particular config variable from the given category ($family) and the $key from a cached storage in $a->config[$family]. If a key is found in the DB but does not exist in local config cache, pull it into the cache so we do not have to hit the DB again for this item.

        -

        Returns false if not set.

        -
        Parameters
        - - - -
        string$familyThe category of the configuration value
        string$keyThe configuration key to query
        -
        -
        -
        Returns
        mixed Return value or false on error or if not set
        - -

        Referenced by account_service_class_allows(), account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), AES256CBC_decrypt(), AES256CBC_encrypt(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), apps_content(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), check_webbie(), cli_startup(), connedit_content(), create_account(), create_identity(), create_sys_channel(), RedMatrix\RedDAV\RedDirectory\createFile(), detect_language(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_process_outbound(), diaspora_send_followup(), diaspora_send_mail(), diaspora_send_relay(), diaspora_transmit(), directory_content(), directory_run(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_primary(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_poller_runtime(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), ical_wrapper(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), log_failed_login(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_init(), photo_upload(), photos_content(), photos_init(), poco(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), random_profile(), rate_content(), ratenotif_run(), ratings_content(), ratings_init(), ratingsearch_init(), receive_post(), ref_session_gc(), regdir_init(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), sync_directories(), tag_deliver(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), widget_rating(), z_fetch_url(), z_get_temp_dir(), z_get_upload_dir(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_config_from_storage ( $family,
         $key 
        )
        -
        - -

        Returns a value directly from the database configuration storage.

        -

        This function queries directly the database and bypasses the chached storage from get_config($family, $key).

        -
        Parameters
        - - - -
        string$familyThe category of the configuration value
        string$keyThe configuration key to query
        -
        -
        -
        Returns
        mixed
        - -

        Referenced by set_config().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        get_pconfig ( $uid,
         $family,
         $key,
         $instore = false 
        )
        -
        - -

        Get a particular channel's config variable given the category name ($family) and a key.

        -

        Get a particular channel's config value from the given category ($family) and the $key from a cached storage in $a->config[$uid].

        -

        Returns false if not set.

        -
        Parameters
        - - - - - -
        string$uidThe channel_id
        string$familyThe category of the configuration value
        string$keyThe configuration key to query
        boolean$instore(deprecated, without function)
        -
        -
        -
        Returns
        mixed Stored value or false if it does not exist
        - -

        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_comment(), 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_linkified_perms(), set_pconfig(), settings_post(), smilies(), tag_deliver(), theme_content(), webpages_content(), widget_archive(), widget_notes(), widget_settings_menu(), zfinger_init(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_xconfig ( $xchan,
         $family,
         $key 
        )
        -
        - -

        Get a particular observer's config variable given the category name ($family) and a key.

        -

        Get a particular observer's config value from the given category ($family) and the $key from a cached storage in $a->config[$xchan].

        -

        Returns false if not set.

        -
        Parameters
        - - - - -
        string$xchanThe observer's hash
        string$familyThe category of the configuration value
        string$keyThe configuration key to query
        -
        -
        -
        Returns
        mixed Stored $value or false if it does not exist
        - -

        Referenced by dir_safe_mode(), directory_content(), set_xconfig(), and toggle_safesearch_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        load_config ( $family)
        -
        - -

        Loads the hub's configuration from database to a cached storage.

        -

        Retrieve a category ($family) of config variables from database to a cached storage in the global $a->config[$family].

        -
        Parameters
        - - -
        string$familyThe category of the configuration value
        -
        -
        - -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        load_pconfig ( $uid)
        -
        - -

        Loads all configuration values of a channel into a cached storage.

        -

        All configuration values of the given channel are stored in global cache which is available under the global variable $a->config[$uid].

        -
        Parameters
        - - -
        string$uidThe channel_id
        -
        -
        -
        Returns
        void|false Nothing or false if $uid is false
        - -

        Referenced by conversation(), and get_pconfig().

        - -
        -
        - -
        -
        - - - - - - - - -
        load_xconfig ( $xchan)
        -
        - -

        Loads a full xchan's configuration into a cached storage.

        -

        All configuration values of the given observer hash are stored in global cache which is available under the global variable $a->config[$xchan].

        -
        Parameters
        - - -
        string$xchanThe observer's hash
        -
        -
        -
        Returns
        void|false Returns false if xchan is not set
        - -

        Referenced by get_xconfig().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        set_config ( $family,
         $key,
         $value 
        )
        -
        - -

        Sets a configuration value for the hub.

        -

        Stores a config value ($value) in the category ($family) under the key ($key).

        -

        Please do not store booleans - convert to 0/1 integer values!

        -
        Parameters
        - - - - -
        string$familyThe category of the configuration value
        string$keyThe configuration key to set
        mixed$valueThe value to store in the configuration
        -
        -
        -
        Returns
        mixed Return the set value, or false if the database update failed
        - -

        Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), api_content(), check_config(), check_upstream_directory(), create_account(), create_sys_channel(), find_upstream_directory(), poller_run(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_local_posts_stat(), and what_next().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        set_pconfig ( $uid,
         $family,
         $key,
         $value 
        )
        -
        - -

        Sets a configuration value for a channel.

        -

        Stores a config value ($value) in the category ($family) under the key ($key) for the channel_id $uid.

        -

        Please do not store booleans - convert to 0/1 integer values!

        -
        Parameters
        - - - - -
        string$uidThe channel_id
        string$familyThe category of the configuration value
        string$keyThe configuration key to query
        -
        -
        -
        Returns
        mixed Stored $value or false
        - -

        Referenced by connect_post(), connedit_post(), create_identity(), invite_post(), notes_init(), pdledit_post(), process_channel_sync_delivery(), register_post(), settings_post(), and theme_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        set_xconfig ( $xchan,
         $family,
         $key,
         $value 
        )
        -
        - -

        Sets a configuration value for an observer.

        -

        Stores a config value ($value) in the category ($family) under the key ($key) for the observer's $xchan hash.

        -

        Please do not store booleans - convert to 0/1 integer values!

        -
        Parameters
        - - - - -
        string$xchanThe observer's hash
        string$familyThe category of the configuration value
        string$keyThe configuration key to set
        -
        -
        -
        Returns
        mixed Stored $value or false
        - -

        Referenced by openid_content(), and toggle_safesearch_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2config_8php.js b/doc/html/include_2config_8php.js deleted file mode 100644 index 5ba8c47a5..000000000 --- a/doc/html/include_2config_8php.js +++ /dev/null @@ -1,16 +0,0 @@ -var include_2config_8php = -[ - [ "del_config", "include_2config_8php.html#a549910227348003efc3c05c9105c42da", null ], - [ "del_pconfig", "include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941", null ], - [ "del_xconfig", "include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72", null ], - [ "get_config", "include_2config_8php.html#af02c96e6b37335774b548914ede1d22e", null ], - [ "get_config_from_storage", "include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74", null ], - [ "get_pconfig", "include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad", null ], - [ "get_xconfig", "include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e", null ], - [ "load_config", "include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1", null ], - [ "load_pconfig", "include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b", null ], - [ "load_xconfig", "include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52", null ], - [ "set_config", "include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a", null ], - [ "set_pconfig", "include_2config_8php.html#a61591371cb18764138655d67dc817ab2", null ], - [ "set_xconfig", "include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2directory_8php.html b/doc/html/include_2directory_8php.html deleted file mode 100644 index eaa201077..000000000 --- a/doc/html/include_2directory_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/directory.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        directory.php File Reference
        -
        -
        - - - - -

        -Functions

         directory_run ($argv, $argc)
         
        -

        Function Documentation

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

        -Functions

         new_contact ($uid, $url, $channel, $interactive=false, $confirm=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        new_contact ( $uid,
         $url,
         $channel,
         $interactive = false,
         $confirm = false 
        )
        -
        -

        If there is a default group for this channel, add this member to it

        - -

        Referenced by create_identity(), and follow_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2follow_8php.js b/doc/html/include_2follow_8php.js deleted file mode 100644 index 7d72af074..000000000 --- a/doc/html/include_2follow_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var include_2follow_8php = -[ - [ "new_contact", "include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2group_8php.html b/doc/html/include_2group_8php.html deleted file mode 100644 index 2f442e6c2..000000000 --- a/doc/html/include_2group_8php.html +++ /dev/null @@ -1,493 +0,0 @@ - - - - - - -The Red Matrix: include/group.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        group.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         group_add ($uid, $name, $public=0)
         
         group_rmv ($uid, $name)
         
         group_byname ($uid, $name)
         
         group_rec_byhash ($uid, $hash)
         
         group_rmv_member ($uid, $name, $member)
         
         group_add_member ($uid, $name, $member, $gid=0)
         
         group_get_members ($gid)
         
         mini_group_select ($uid, $group= '')
         
         group_side ($every="connections", $each="group", $edit=false, $group_id=0, $cid= '', $mode=1)
         
         expand_groups ($a)
         
         member_of ($c)
         
         groups_containing ($uid, $c)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        expand_groups ( $a)
        -
        - -

        Referenced by collect_recipients(), and enumerate_permissions().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        group_add ( $uid,
         $name,
         $public = 0 
        )
        -
        - -

        Referenced by create_identity(), group_post(), and settings_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        group_add_member ( $uid,
         $name,
         $member,
         $gid = 0 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        group_byname ( $uid,
         $name 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        group_get_members ( $gid)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        group_rec_byhash ( $uid,
         $hash 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        group_rmv ( $uid,
         $name 
        )
        -
        - -

        Referenced by group_content().

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

        Referenced by contactgroup_content(), and group_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        group_side ( $every = "connections",
         $each = "group",
         $edit = false,
         $group_id = 0,
         $cid = '',
         $mode = 1 
        )
        -
        - -

        Referenced by widget_collections().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        groups_containing ( $uid,
         $c 
        )
        -
        - -

        Referenced by group_side().

        - -
        -
        - -
        -
        - - - - - - - - -
        member_of ( $c)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        mini_group_select ( $uid,
         $group = '' 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/include_2group_8php.js b/doc/html/include_2group_8php.js deleted file mode 100644 index d9a775ade..000000000 --- a/doc/html/include_2group_8php.js +++ /dev/null @@ -1,15 +0,0 @@ -var include_2group_8php = -[ - [ "expand_groups", "include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345", null ], - [ "group_add", "include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce", null ], - [ "group_add_member", "include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b", null ], - [ "group_byname", "include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb", null ], - [ "group_get_members", "include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09", null ], - [ "group_rec_byhash", "include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245", null ], - [ "group_rmv", "include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5", null ], - [ "group_rmv_member", "include_2group_8php.html#a540e3ef36f47d47532646be4241f6518", null ], - [ "group_side", "include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9", null ], - [ "groups_containing", "include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f", null ], - [ "member_of", "include_2group_8php.html#a048f6892bfd28852de1b76470df411de", null ], - [ "mini_group_select", "include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2menu_8php.html b/doc/html/include_2menu_8php.html deleted file mode 100644 index ad434f83d..000000000 --- a/doc/html/include_2menu_8php.html +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - -The Red Matrix: include/menu.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        menu.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         menu_fetch ($name, $uid, $observer_xchan)
         
         menu_render ($menu, $class='', $edit=false)
         
         menu_fetch_id ($menu_id, $channel_id)
         
         menu_create ($arr)
         
         menu_list ($channel_id, $name= '', $flags=0)
         
         menu_list_count ($channel_id, $name= '', $flags=0)
         
         menu_edit ($arr)
         
         menu_delete ($menu_name, $uid)
         
         menu_delete_id ($menu_id, $uid)
         
         menu_add_item ($menu_id, $uid, $arr)
         
         menu_edit_item ($menu_id, $uid, $arr)
         
         menu_del_item ($menu_id, $uid, $item_id)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_add_item ( $menu_id,
         $uid,
         $arr 
        )
        -
        - -

        Referenced by bookmark_add(), and mitem_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        menu_create ( $arr)
        -
        - -

        Referenced by bookmark_add(), and menu_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_del_item ( $menu_id,
         $uid,
         $item_id 
        )
        -
        - -

        Referenced by mitem_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        menu_delete ( $menu_name,
         $uid 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        menu_delete_id ( $menu_id,
         $uid 
        )
        -
        - -

        Referenced by menu_content(), and menu_delete().

        - -
        -
        - -
        -
        - - - - - - - - -
        menu_edit ( $arr)
        -
        - -

        Referenced by menu_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_edit_item ( $menu_id,
         $uid,
         $arr 
        )
        -
        - -

        Referenced by mitem_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_fetch ( $name,
         $uid,
         $observer_xchan 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        menu_fetch_id ( $menu_id,
         $channel_id 
        )
        -
        - -

        Referenced by menu_content(), and mitem_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_list ( $channel_id,
         $name = '',
         $flags = 0 
        )
        -
        -

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

        - -

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

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_list_count ( $channel_id,
         $name = '',
         $flags = 0 
        )
        -
        - -

        Referenced by nav().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        menu_render ( $menu,
         $class = '',
         $edit = false 
        )
        -
        -
        -
        -
        - diff --git a/doc/html/include_2menu_8php.js b/doc/html/include_2menu_8php.js deleted file mode 100644 index 0db36147b..000000000 --- a/doc/html/include_2menu_8php.js +++ /dev/null @@ -1,15 +0,0 @@ -var include_2menu_8php = -[ - [ "menu_add_item", "include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8", null ], - [ "menu_create", "include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98", null ], - [ "menu_del_item", "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a", null ], - [ "menu_delete", "include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8", null ], - [ "menu_delete_id", "include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804", null ], - [ "menu_edit", "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571", null ], - [ "menu_edit_item", "include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa", null ], - [ "menu_fetch", "include_2menu_8php.html#a68ebbf492470c930f652013656f9071d", null ], - [ "menu_fetch_id", "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7", null ], - [ "menu_list", "include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d", null ], - [ "menu_list_count", "include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485", null ], - [ "menu_render", "include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2message_8php.html b/doc/html/include_2message_8php.html deleted file mode 100644 index feacd5b3a..000000000 --- a/doc/html/include_2message_8php.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - -The Red Matrix: include/message.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        message.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Functions

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

        Function Documentation

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

        Referenced by mail_content(), and message_content().

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

        Referenced by mail_content().

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

        Referenced by message_content().

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

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

        - -

        Referenced by api_direct_messages_new(), and mail_post().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2message_8php.js b/doc/html/include_2message_8php.js deleted file mode 100644 index 01478930f..000000000 --- a/doc/html/include_2message_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var include_2message_8php = -[ - [ "private_messages_drop", "include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1", null ], - [ "private_messages_fetch_conversation", "include_2message_8php.html#a5f8de9847e203329e317ac38dc646898", null ], - [ "private_messages_fetch_message", "include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091", null ], - [ "private_messages_list", "include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e", null ], - [ "send_message", "include_2message_8php.html#a751ffd6635022b2190f56154ee745752", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html deleted file mode 100644 index 9a60ed5fe..000000000 --- a/doc/html/include_2network_8php.html +++ /dev/null @@ -1,875 +0,0 @@ - - - - - - -The Red Matrix: include/network.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        network.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         get_capath ()
         
         z_fetch_url ($url, $binary=false, $redirects=0, $opts=array())
         
         z_post_url ($url, $params, $redirects=0, $opts=array())
         
         z_post_url_json ($url, $params, $redirects=0, $opts=array())
         
         json_return_and_die ($x)
         
         xml_status ($st, $message= '')
         
         http_status_exit ($val, $msg= '')
         
         convert_xml_element_to_array ($xml_element, &$recursion_depth=0)
         
         validate_url (&$url)
         
         validate_email ($addr)
         
         allowed_url ($url)
         
         allowed_email ($email)
         
         avatar_img ($email)
         
         parse_xml_string ($s, $strict=true)
         
         scale_external_images ($s, $include_link=true, $scale_replace=false)
         
         xml2array ($contents, $namespaces=true, $get_attributes=1, $priority= 'attribute')
         
         email_header_encode ($in_str, $charset= 'UTF-8')
         
         email_send ($addr, $subject, $headers, $item)
         
         discover_by_url ($url, $arr=null)
         
         discover_by_webbie ($webbie)
         
         webfinger_rfc7033 ($webbie)
         
         old_webfinger ($webbie)
         
         fetch_lrdd_template ($host)
         
         fetch_xrd_links ($url)
         
         scrape_vcard ($url)
         
         scrape_feed ($url)
         
         service_plink ($contact, $guid)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        allowed_email ( $email)
        -
        - -

        Referenced by check_account_email().

        - -
        -
        - -
        -
        - - - - - - - - -
        allowed_url ( $url)
        -
        - -

        Referenced by new_contact().

        - -
        -
        - -
        -
        - - - - - - - - -
        avatar_img ( $email)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        convert_xml_element_to_array ( $xml_element,
        $recursion_depth = 0 
        )
        -
        - -

        Referenced by fetch_xrd_links().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        discover_by_url ( $url,
         $arr = null 
        )
        -
        - -

        Referenced by new_contact().

        - -
        -
        - -
        -
        - - - - - - - - -
        discover_by_webbie ( $webbie)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        email_header_encode ( $in_str,
         $charset = 'UTF-8' 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        email_send ( $addr,
         $subject,
         $headers,
         $item 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        fetch_lrdd_template ( $host)
        -
        - -

        Referenced by old_webfinger().

        - -
        -
        - -
        -
        - - - - - - - - -
        fetch_xrd_links ( $url)
        -
        - -

        Referenced by fetch_lrdd_template(), and old_webfinger().

        - -
        -
        - -
        -
        - - - - - - - -
        get_capath ()
        -
        - -

        Referenced by z_fetch_url(), and z_post_url().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        http_status_exit ( $val,
         $msg = '' 
        )
        -
        -

        http_status_exit

        -

        Send HTTP status header and exit

        -
        Parameters
        - - - -
        int$valinteger HTTP status result value
        string$msgoptional message
        -
        -
        -
        Returns
        (does not return, process is terminated)
        - -

        Referenced by _well_known_init(), cloud_init(), dav_init(), diaspora_decode(), get_feed_for(), p_init(), poco(), pubsubhubbub_init(), and receive_post().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        old_webfinger ( $webbie)
        -
        - -

        Referenced by discover_by_webbie().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        parse_xml_string ( $s,
         $strict = true 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        scale_external_images ( $s,
         $include_link = true,
         $scale_replace = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        scrape_feed ( $url)
        -
        - -

        Referenced by discover_by_url().

        - -
        -
        - -
        -
        - - - - - - - - -
        scrape_vcard ( $url)
        -
        - -

        Referenced by discover_by_webbie().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        service_plink ( $contact,
         $guid 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        validate_email ( $addr)
        -
        - -

        Referenced by check_account_email(), and zid_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        validate_url ($url)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        webfinger_rfc7033 ( $webbie)
        -
        - -

        Referenced by discover_by_webbie().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        xml2array ( $contents,
         $namespaces = true,
         $get_attributes = 1,
         $priority = 'attribute' 
        )
        -
        -

        xml2array() will convert the given XML text to an array in the XML structure. Link: http://www.bin-co.com/php/scripts/xml2array/ Portions significantly re-written by mike@.nosp@m.macg.nosp@m.irvin.nosp@m..com for Friendica (namespaces, lowercase tags, get_attribute default changed, more...) Arguments : $contents - The XML text $namespaces - true or false include namespace information in the returned array as array elements. $get_attributes - 1 or 0. If this is 1 the function will get the attributes as well as the tag values - this results in a different array structure in the return value. $priority - Can be 'tag' or 'attribute'. This will change the way the resulting array sturcture. For 'tag', the tags are given more importance. Return: The parsed XML in an array form. Use print_r() to see the resulting array structure. Examples: $array = xml2array(file_get_contents('feed.xml')); $array = xml2array(file_get_contents('feed.xml', true, 1, 'attribute'));

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        xml_status ( $st,
         $message = '' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        z_fetch_url ( $url,
         $binary = false,
         $redirects = 0,
         $opts = array() 
        )
        -
        -

        z_fetch_url

        -
        Parameters
        - - - - - -
        string$urlURL to fetch
        boolean$binary= false TRUE if asked to return binary results (file download)
        int$redirects= 0 internal use, recursion counter
        array$opts(optional parameters) 'accept_content' => supply Accept: header with 'accept_content' as the value 'timeout' => int seconds, default system config value or 60 seconds 'http_auth' => username:password 'novalidate' => do not validate SSL certs, default is to validate using our CA list
        -
        -
        -
        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(), 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(), poller_run(), pubsites_content(), random_profile(), ratenotif_run(), ratings_init(), 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().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        z_post_url ( $url,
         $params,
         $redirects = 0,
         $opts = array() 
        )
        -
        -

        z_post_url

        -
        Parameters
        - - - - - -
        string$urlURL to post
        mixed$paramsThe full data to post in a HTTP "POST" operation. This parameter can either be passed as a urlencoded string like 'para1=val1&para2=val2&...' or as an array with the field name as key and field data as value. If value is an array, the Content-Type header will be set to multipart/form-data.
        int$redirects= 0 internal use, recursion counter
        array$opts(optional parameters) 'accept_content' => supply Accept: header with 'accept_content' as the value 'timeout' => int seconds, default system config value or 60 seconds 'http_auth' => username:password 'novalidate' => do not validate SSL certs, default is to validate using our CA list
        -
        -
        -
        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 deliver_run(), oexchange_content(), queue_run(), share_init(), z_post_url_json(), zot_finger(), zot_refresh(), and zot_zot().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        z_post_url_json ( $url,
         $params,
         $redirects = 0,
         $opts = array() 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/include_2network_8php.js b/doc/html/include_2network_8php.js deleted file mode 100644 index 78b3a2158..000000000 --- a/doc/html/include_2network_8php.js +++ /dev/null @@ -1,30 +0,0 @@ -var include_2network_8php = -[ - [ "allowed_email", "include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694", null ], - [ "allowed_url", "include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7", null ], - [ "avatar_img", "include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7", null ], - [ "convert_xml_element_to_array", "include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246", null ], - [ "discover_by_url", "include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48", null ], - [ "discover_by_webbie", "include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe", null ], - [ "email_header_encode", "include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b", null ], - [ "email_send", "include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0", null ], - [ "fetch_lrdd_template", "include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0", null ], - [ "fetch_xrd_links", "include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d", null ], - [ "get_capath", "include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7", null ], - [ "http_status_exit", "include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2", null ], - [ "json_return_and_die", "include_2network_8php.html#a4c5d50079e089168d9248427018fffd4", null ], - [ "old_webfinger", "include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec", null ], - [ "parse_xml_string", "include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6", null ], - [ "scale_external_images", "include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f", null ], - [ "scrape_feed", "include_2network_8php.html#a316f318167a039c89719afbd129a8f3c", null ], - [ "scrape_vcard", "include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070", null ], - [ "service_plink", "include_2network_8php.html#adf741da85aa82493f2084eca63092dd5", null ], - [ "validate_email", "include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02", null ], - [ "validate_url", "include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2", null ], - [ "webfinger_rfc7033", "include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a", null ], - [ "xml2array", "include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff", null ], - [ "xml_status", "include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6", null ], - [ "z_fetch_url", "include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37", null ], - [ "z_post_url", "include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc", null ], - [ "z_post_url_json", "include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2notify_8php.html b/doc/html/include_2notify_8php.html deleted file mode 100644 index 1ea576fa0..000000000 --- a/doc/html/include_2notify_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: include/notify.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        notify.php File Reference
        -
        -
        - - - - -

        -Functions

         format_notification ($item)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        format_notification ( $item)
        -
        - -

        Referenced by ping_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2notify_8php.js b/doc/html/include_2notify_8php.js deleted file mode 100644 index 7e82eaf72..000000000 --- a/doc/html/include_2notify_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var include_2notify_8php = -[ - [ "format_notification", "include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2oembed_8php.html b/doc/html/include_2oembed_8php.html deleted file mode 100644 index 6a4a63546..000000000 --- a/doc/html/include_2oembed_8php.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - -The Red Matrix: include/oembed.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        oembed.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - -

        -Functions

         oembed_replacecb ($matches)
         
         oembed_fetch_url ($embedurl)
         
         oembed_format_object ($j)
         
         oembed_iframe ($src, $width, $height)
         
         oembed_bbcode2html ($text)
         
         oe_build_xpath ($attr, $value)
         
         oe_get_inner_html ($node)
         
         oembed_html2bbcode ($text)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        oe_build_xpath ( $attr,
         $value 
        )
        -
        - -

        Referenced by oembed_fetch_url(), and oembed_html2bbcode().

        - -
        -
        - -
        -
        - - - - - - - - -
        oe_get_inner_html ( $node)
        -
        - -

        Referenced by oembed_html2bbcode().

        - -
        -
        - -
        -
        - - - - - - - - -
        oembed_bbcode2html ( $text)
        -
        - -

        Referenced by bbcode().

        - -
        -
        - -
        -
        - - - - - - - - -
        oembed_fetch_url ( $embedurl)
        -
        - -

        Referenced by oembed_init(), oembed_replacecb(), and tryoembed().

        - -
        -
        - -
        -
        - - - - - - - - -
        oembed_format_object ( $j)
        -
        - -

        Referenced by oembed_replacecb(), and tryoembed().

        - -
        -
        - -
        -
        - - - - - - - - -
        oembed_html2bbcode ( $text)
        -
        -

        Find .... and replace it with [embed]url[/embed]

        - -

        Referenced by get_atom_elements(), and oembed_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        oembed_iframe ( $src,
         $width,
         $height 
        )
        -
        - -

        Referenced by oembed_format_object().

        - -
        -
        - -
        -
        - - - - - - - - -
        oembed_replacecb ( $matches)
        -
        - -

        Referenced by oembed_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2oembed_8php.js b/doc/html/include_2oembed_8php.js deleted file mode 100644 index 5f1e16330..000000000 --- a/doc/html/include_2oembed_8php.js +++ /dev/null @@ -1,11 +0,0 @@ -var include_2oembed_8php = -[ - [ "oe_build_xpath", "include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319", null ], - [ "oe_get_inner_html", "include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487", null ], - [ "oembed_bbcode2html", "include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2", null ], - [ "oembed_fetch_url", "include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2", null ], - [ "oembed_format_object", "include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3", null ], - [ "oembed_html2bbcode", "include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172", null ], - [ "oembed_iframe", "include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a", null ], - [ "oembed_replacecb", "include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2photos_8php.html b/doc/html/include_2photos_8php.html deleted file mode 100644 index 81047d3e7..000000000 --- a/doc/html/include_2photos_8php.html +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - -The Red Matrix: include/photos.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photos.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - -

        -Functions

         photo_upload ($channel, $observer, $args)
         
         photos_albums_list ($channel, $observer)
         
         photos_album_widget ($channelx, $observer, $albums=null)
         
         photos_list_photos ($channel, $observer, $album= '')
         
         photos_album_exists ($channel_id, $album)
         
         photos_album_rename ($channel_id, $oldname, $newname)
         
         photos_album_get_db_idstr ($channel_id, $album, $remote_xchan= '')
         
         photos_create_item ($channel, $creator_hash, $photo, $visible=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        photo_upload ( $channel,
         $observer,
         $args 
        )
        -
        -

        Determine the album to use

        -

        We create a wall item for every photo, but we don't want to overwhelm the data stream with a hundred newly uploaded photos. So we will make the first photo uploaded to this album in the last several hours visible by default, the rest will become visible over time when and if they acquire comments, likes, dislikes, and/or tags

        - -

        Referenced by photos_post(), reflect_photo_callback(), and wall_upload_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photos_album_exists ( $channel_id,
         $album 
        )
        -
        - -

        Referenced by photos_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        photos_album_get_db_idstr ( $channel_id,
         $album,
         $remote_xchan = '' 
        )
        -
        - -

        Referenced by photos_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        photos_album_rename ( $channel_id,
         $oldname,
         $newname 
        )
        -
        - -

        Referenced by photos_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        photos_album_widget ( $channelx,
         $observer,
         $albums = null 
        )
        -
        - -

        Referenced by widget_photo_albums().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photos_albums_list ( $channel,
         $observer 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        photos_create_item ( $channel,
         $creator_hash,
         $photo,
         $visible = false 
        )
        -
        - -

        Referenced by photos_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        photos_list_photos ( $channel,
         $observer,
         $album = '' 
        )
        -
        - -

        Referenced by api_photos(), and widget_photo_rand().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2photos_8php.js b/doc/html/include_2photos_8php.js deleted file mode 100644 index f96bfc915..000000000 --- a/doc/html/include_2photos_8php.js +++ /dev/null @@ -1,11 +0,0 @@ -var include_2photos_8php = -[ - [ "photo_upload", "include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109", null ], - [ "photos_album_exists", "include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35", null ], - [ "photos_album_get_db_idstr", "include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe", null ], - [ "photos_album_rename", "include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab", null ], - [ "photos_album_widget", "include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979", null ], - [ "photos_albums_list", "include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9", null ], - [ "photos_create_item", "include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274", null ], - [ "photos_list_photos", "include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2probe_8php.html b/doc/html/include_2probe_8php.html deleted file mode 100644 index 451b9c780..000000000 --- a/doc/html/include_2probe_8php.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - -The Red Matrix: include/probe.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        probe.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - -

        -Functions

         net_have_driver ($net)
         
         probe_well_known ($addr)
         
         probe_webfinger ($addr)
         
         probe_legacy_webfinger ($addr)
         
         probe_zot ($addr)
         
         probe_dfrn ($addr)
         
         probe_diaspora ($addr)
         
         probe_legacy_feed ($addr)
         
         probe_activity_stream ($addr)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        net_have_driver ( $net)
        -
        -

        Functions to assist in probing various legacy networks to figure out what kind of capabilities might be present.

        - -

        Referenced by probe_well_known().

        - -
        -
        - -
        -
        - - - - - - - - -
        probe_activity_stream ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_dfrn ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_diaspora ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_legacy_feed ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_legacy_webfinger ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_webfinger ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_well_known ( $addr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        probe_zot ( $addr)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/include_2probe_8php.js b/doc/html/include_2probe_8php.js deleted file mode 100644 index 99cf171e1..000000000 --- a/doc/html/include_2probe_8php.js +++ /dev/null @@ -1,12 +0,0 @@ -var include_2probe_8php = -[ - [ "net_have_driver", "include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8", null ], - [ "probe_activity_stream", "include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c", null ], - [ "probe_dfrn", "include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0", null ], - [ "probe_diaspora", "include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a", null ], - [ "probe_legacy_feed", "include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7", null ], - [ "probe_legacy_webfinger", "include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481", null ], - [ "probe_webfinger", "include_2probe_8php.html#a950a200372393f706851103cd3fffcba", null ], - [ "probe_well_known", "include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d", null ], - [ "probe_zot", "include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85", null ] -]; \ No newline at end of file diff --git a/doc/html/include_2settings_8php.html b/doc/html/include_2settings_8php.html deleted file mode 100644 index c938f95cf..000000000 --- a/doc/html/include_2settings_8php.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - -The Red Matrix: include/settings.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        settings.php File Reference
        -
        -
        - - - - -

        -Functions

         build_sync_packet ($uid=0, $packet=null)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        build_sync_packet ( $uid = 0,
         $packet = null 
        )
        -
        -

        Send a zot packet to all hubs where this channel is duplicated, refreshing such things as personal settings, channel permissions, address book updates, etc.

        - -

        Referenced by connections_clone(), and settings_post().

        - -
        -
        -
        -
        - diff --git a/doc/html/include_2settings_8php.js b/doc/html/include_2settings_8php.js deleted file mode 100644 index 9bca76f88..000000000 --- a/doc/html/include_2settings_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var include_2settings_8php = -[ - [ "build_sync_packet", "include_2settings_8php.html#ac34e479d27f32b82dd6b33542f81a6a7", null ] -]; \ No newline at end of file diff --git a/doc/html/index.html b/doc/html/index.html deleted file mode 100644 index 3d2dc4d76..000000000 --- a/doc/html/index.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - -The Red Matrix: Main Page - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        The Red Matrix Documentation
        -
        -
        -
        -
        - diff --git a/doc/html/index.php b/doc/html/index.php new file mode 100644 index 000000000..10b363818 --- /dev/null +++ b/doc/html/index.php @@ -0,0 +1,15 @@ + + + + RedMatrix Doxygen API Documentation + + +

        RedMatrix Doxygen API Documentation not rendered

        +To get the Doxygen API Documentation you must render it with the program Doxygen (included in most distributions). +
        +$ doxygen util/Doxyfile
        +
        +
        +back + + diff --git a/doc/html/interfaceITemplateEngine-members.html b/doc/html/interfaceITemplateEngine-members.html deleted file mode 100644 index d0f6d96cb..000000000 --- a/doc/html/interfaceITemplateEngine-members.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - -The Red Matrix: Member List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        ITemplateEngine Member List
        -
        -
        - -

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

        - - - -
        get_markup_template($file, $root='')ITemplateEngine
        replace_macros($s, $v)ITemplateEngine
        -
        - diff --git a/doc/html/interfaceITemplateEngine.html b/doc/html/interfaceITemplateEngine.html deleted file mode 100644 index ae3452db8..000000000 --- a/doc/html/interfaceITemplateEngine.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -The Red Matrix: ITemplateEngine Interface Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ITemplateEngine Interface Reference
        -
        -
        -
        -Inheritance diagram for ITemplateEngine:
        -
        -
        - - -FriendicaSmartyEngine -Template - -
        - - - - - - -

        -Public Member Functions

         replace_macros ($s, $v)
         
         get_markup_template ($file, $root='')
         
        -

        Detailed Description

        -

        Interface for template engines

        -

        Member Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ITemplateEngine::get_markup_template ( $file,
         $root = '' 
        )
        -
        - -

        Implemented in Template, and FriendicaSmartyEngine.

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ITemplateEngine::replace_macros ( $s,
         $v 
        )
        -
        - -

        Implemented in Template, and FriendicaSmartyEngine.

        - -
        -
        -
        The documentation for this interface was generated from the following file: -
        -
        - diff --git a/doc/html/interfaceITemplateEngine.js b/doc/html/interfaceITemplateEngine.js deleted file mode 100644 index b6e108520..000000000 --- a/doc/html/interfaceITemplateEngine.js +++ /dev/null @@ -1,5 +0,0 @@ -var interfaceITemplateEngine = -[ - [ "get_markup_template", "interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442", null ], - [ "replace_macros", "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243", null ] -]; \ No newline at end of file diff --git a/doc/html/interfaceITemplateEngine.png b/doc/html/interfaceITemplateEngine.png deleted file mode 100644 index f61b50d22..000000000 Binary files a/doc/html/interfaceITemplateEngine.png and /dev/null differ diff --git a/doc/html/intro_8php.html b/doc/html/intro_8php.html deleted file mode 100644 index 50850d8f6..000000000 --- a/doc/html/intro_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/intro.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        intro.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         intro_post (&$a)
         
         intro_aside (&$a)
         
         intro_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        intro_aside ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        intro_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        intro_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/intro_8php.js b/doc/html/intro_8php.js deleted file mode 100644 index f93a2dcdc..000000000 --- a/doc/html/intro_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var intro_8php = -[ - [ "intro_aside", "intro_8php.html#abc3abf25da64f98f215126eb08c7936b", null ], - [ "intro_content", "intro_8php.html#a3e2a523697633ddb4517b9266a515f5b", null ], - [ "intro_post", "intro_8php.html#af3681062183ccbdf065ae2647b07d6f1", null ] -]; \ No newline at end of file diff --git a/doc/html/invite_8php.html b/doc/html/invite_8php.html deleted file mode 100644 index e52b88602..000000000 --- a/doc/html/invite_8php.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -The Red Matrix: mod/invite.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        invite.php File Reference
        -
        -
        - - - - - - -

        -Functions

         invite_post (&$a)
         
         invite_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        invite_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        invite_post ($a)
        -
        -

        module: invite.php

        -

        send email invitations to join social network

        - -
        -
        -
        -
        - diff --git a/doc/html/invite_8php.js b/doc/html/invite_8php.js deleted file mode 100644 index 35604353d..000000000 --- a/doc/html/invite_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var invite_8php = -[ - [ "invite_content", "invite_8php.html#a244385b28cfd021d308715f01158bfd9", null ], - [ "invite_post", "invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5", null ] -]; \ No newline at end of file diff --git a/doc/html/iquery_8php.html b/doc/html/iquery_8php.html deleted file mode 100644 index f508cdcf3..000000000 --- a/doc/html/iquery_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Project: include/iquery.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        iquery.php File Reference
        -
        -
        - - - - -

        -Functions

         network_query ($a, $arr)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        network_query ( $a,
         $arr 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/iquery_8php.js b/doc/html/iquery_8php.js deleted file mode 100644 index d56bfffa6..000000000 --- a/doc/html/iquery_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var iquery_8php = -[ - [ "network_query", "iquery_8php.html#aa41c07bf856eb8b386430cc53d80d4ac", null ] -]; \ No newline at end of file diff --git a/doc/html/item_8php.html b/doc/html/item_8php.html deleted file mode 100644 index 196d733bb..000000000 --- a/doc/html/item_8php.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -The Red Matrix: mod/item.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        item.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Functions

         item_post (&$a)
         
         item_content (&$a)
         
         fix_attached_photo_permissions ($uid, $xchan_hash, $body, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)
         
         fix_attached_file_permissions ($channel, $observer_hash, $body, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)
         
         item_check_service_class ($channel_id, $iswebpage)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        fix_attached_file_permissions ( $channel,
         $observer_hash,
         $body,
         $str_contact_allow,
         $str_group_allow,
         $str_contact_deny,
         $str_group_deny 
        )
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        fix_attached_photo_permissions ( $uid,
         $xchan_hash,
         $body,
         $str_contact_allow,
         $str_group_allow,
         $str_contact_deny,
         $str_group_deny 
        )
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        item_check_service_class ( $channel_id,
         $iswebpage 
        )
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        item_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        item_post ($a)
        -
        -

        This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through item_store() instead of this function.

        -

        Is this a reply to something?

        -

        fix naked links by passing through a callback to see if this is a red site (already known to us) which will get a zrl, otherwise link with url, add bookmark tag to both. First protect any url inside certain bbcode tags so we don't double link it.

        -

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

        -

        If the post was end-to-end encrypted we can't find images and attachments in the body, use our media_str input instead which only contains these elements - but only do this when encrypted content exists because the photo/attachment may have been removed from the post and we should keep it private. If it's encrypted we have no way of knowing so we'll set the permissions regardless and realise that the media may not be referenced in the post.

        -

        What is preventing us from being able to upload photos into comments is dealing with the photo and attachment permissions, since we don't always know who was in the distribution for the top level post.

        -

        We might be able to provide this functionality with a lot of fiddling:

        -
          -
        • if the top level post is public (make the photo public)
        • -
        • if the top level post was written by us or a wall post that belongs to us (match the top level post)
        • -
        • if the top level post has privacy mentions, add those to the permissions.
        • -
        • otherwise disallow the photo or make the photo public. This is the part that gets messy.
        • -
        -

        Fold multi-line [code] sequences

        - -

        Referenced by api_statuses_mediap(), api_statuses_repeat(), api_statuses_update(), oexchange_content(), and red_item_new().

        - -
        -
        -
        -
        - diff --git a/doc/html/item_8php.js b/doc/html/item_8php.js deleted file mode 100644 index 4cf9b1b0b..000000000 --- a/doc/html/item_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var item_8php = -[ - [ "fix_attached_file_permissions", "item_8php.html#a3daae7944f737bd30412a0d042207c0f", null ], - [ "fix_attached_photo_permissions", "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10", null ], - [ "item_check_service_class", "item_8php.html#a5b1b36cb301a94b38150074f0d424e74", null ], - [ "item_content", "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221", null ], - [ "item_post", "item_8php.html#a693cd09805755ab85bbb5ecae69a48c3", null ] -]; \ No newline at end of file diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html deleted file mode 100644 index 74d573346..000000000 --- a/doc/html/items_8php.html +++ /dev/null @@ -1,2269 +0,0 @@ - - - - - - -The Red Matrix: include/items.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        items.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         collect_recipients ($item, &$private_envelope)
         
         filter_insecure ($channel_id, $arr)
         
         comments_are_now_closed ($item)
         
         can_comment_on_post ($observer_xchan, $item)
         
         add_source_route ($iid, $hash)
         
         red_zrl_callback ($matches)
         
         red_escape_zrl_callback ($matches)
         
         red_escape_codeblock ($m)
         
         red_unescape_codeblock ($m)
         
         red_zrlify_img_callback ($matches)
         
         post_activity_item ($arr)
         
         get_public_feed ($channel, $params)
         
         get_feed_for ($channel, $observer_hash, $params)
         
         construct_verb ($item)
         
         construct_activity_object ($item)
         
         construct_activity_target ($item)
         
         limit_body_size ($body)
         
         title_is_body ($title, $body)
         
         get_item_elements ($x)
         
         import_author_xchan ($x)
         
         import_author_diaspora ($x)
         
         import_author_rss ($x)
         
         import_author_unknown ($x)
         
         encode_item ($item, $mirror=false)
         
         map_scope ($scope, $strip=false)
         
         translate_scope ($scope)
         
         encode_item_xchan ($xchan)
         
         encode_item_terms ($terms)
         
         termtype ($t)
         
         decode_tags ($t)
         
         activity_sanitise ($arr)
         
         array_sanitise ($arr)
         
         encode_item_flags ($item)
         
         encode_mail ($item)
         
         get_mail_elements ($x)
         
         get_profile_elements ($x)
         
         get_atom_elements ($feed, $item, &$author)
         
         encode_rel_links ($links)
         
         item_store ($arr, $allow_exec=false)
         
         item_store_update ($arr, $allow_exec=false)
         
         store_diaspora_comment_sig ($datarray, $channel, $parent_item, $post_id, $walltowall=false)
         
         send_status_notifications ($post_id, $item)
         
         get_item_contact ($item, $contacts)
         
         tag_deliver ($uid, $item_id)
         
         tgroup_check ($uid, $item)
         
         start_delivery_chain ($channel, $item, $item_id, $parent)
         
         check_item_source ($uid, $item)
         
         mail_store ($arr)
         
         consume_feed ($xml, $importer, &$contact, $pass=0)
         
         update_feed_item ($uid, $datarray)
         
         handle_feed ($uid, $abook_id, $url)
         
         atom_author ($tag, $name, $uri, $h, $w, $type, $photo)
         
         atom_entry ($item, $type, $author, $owner, $comment=false, $cid=0)
         
         fix_private_photos ($s, $uid, $item=null, $cid=0)
         
         has_permissions ($obj)
         
         compare_permissions ($obj1, $obj2)
         
         enumerate_permissions ($obj)
         
         item_getfeedtags ($item)
         
         item_getfeedattach ($item)
         
         item_expire ($uid, $days)
         
         retain_item ($id)
         
         drop_items ($items)
         
         drop_item ($id, $interactive=true, $stage=DROPITEM_NORMAL, $force=false)
         
         delete_item_lowlevel ($item, $stage=DROPITEM_NORMAL, $force=false)
         
         first_post_date ($uid, $wall=false)
         
         list_post_dates ($uid, $wall, $mindate)
         
         posted_dates ($uid, $wall)
         
         fetch_post_tags ($items, $link=false)
         
         zot_feed ($uid, $observer_xchan, $arr)
         
         items_fetch ($arr, $channel=null, $observer_hash=null, $client_mode=CLIENT_MODE_NORMAL, $module= 'network')
         
         update_remote_id ($channel, $post_id, $webpage, $pagetitle, $namespace, $remote_id, $mid)
         
         item_add_cid ($xchan_hash, $mid, $uid)
         
         item_remove_cid ($xchan_hash, $mid, $uid)
         
         set_linkified_perms ($linkified, &$str_contact_allow, &$str_group_allow, $profile_uid, $parent_item=false)
         
         comment_local_origin ($item)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        activity_sanitise ( $arr)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        add_source_route ( $iid,
         $hash 
        )
        -
        -

        add_source_route($iid,$hash) Adds $hash to the item source route specified by $iid

        -
        Parameters
        - - - -
        integer$iiditem['id'] of target item
        string$hashxchan_hash of the channel that sent the item Modifies item pointed to by $iid
        -
        -
        -

        $item['route'] contains a comma-separated list of xchans that sent the current message, somewhat analogous to the * Received: header line in email. We can use this to perform loop detection and to avoid sending a particular item to any "upstream" sender (they already have a copy because they sent it to us).

        - -

        Referenced by process_delivery().

        - -
        -
        - -
        -
        - - - - - - - - -
        array_sanitise ( $arr)
        -
        - -

        Referenced by get_profile_elements().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        atom_author ( $tag,
         $name,
         $uri,
         $h,
         $w,
         $type,
         $photo 
        )
        -
        - -

        Referenced by atom_entry().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        atom_entry ( $item,
         $type,
         $author,
         $owner,
         $comment = false,
         $cid = 0 
        )
        -
        - -

        Referenced by get_feed_for().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        can_comment_on_post ( $observer_xchan,
         $item 
        )
        -
        -

        can_comment_on_post($observer_xchan,$item);

        -

        This function examines the comment_policy attached to an item and decides if the current observer has sufficient privileges to comment. This will normally be called on a remote site where perm_is_allowed() will not be suitable because the post owner does not have a local channel_id. Generally we should look at the item - in particular the author['book_flags'] and see if ABOOK_FLAG_SELF is set. If it is, you should be able to use perm_is_allowed( ... 'post_comments'), and if it isn't you need to call can_comment_on_post() We also check the comments_closed date/time on the item if this is set.

        - -

        Referenced by Conversation\add_thread(), and item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        check_item_source ( $uid,
         $item 
        )
        -
        -

        check_item_source($uid,$item)

        -
        Parameters
        - - - -
        $uid
        $itemChecks to see if this item owner is referenced as a source for this channel and if the post matches the rules for inclusion in this channel. Returns true if we should create a second delivery chain and false if none of the rules apply, or if the item is private.
        -
        -
        - -

        Referenced by process_delivery(), and tag_deliver().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        collect_recipients ( $item,
        $private_envelope 
        )
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        comment_local_origin ( $item)
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        comments_are_now_closed ( $item)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        compare_permissions ( $obj1,
         $obj2 
        )
        -
        - -

        Referenced by fix_private_photos().

        - -
        -
        - -
        -
        - - - - - - - - -
        construct_activity_object ( $item)
        -
        - -

        Referenced by atom_entry().

        - -
        -
        - -
        -
        - - - - - - - - -
        construct_activity_target ( $item)
        -
        - -

        Referenced by atom_entry().

        - -
        -
        - -
        -
        - - - - - - - - -
        construct_verb ( $item)
        -
        - -

        Referenced by atom_entry().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        consume_feed ( $xml,
         $importer,
        $contact,
         $pass = 0 
        )
        -
        -

        consume_feed - process atom feed and update anything/everything we might need to update

        -

        $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.

        -

        $importer = the contact_record (joined to user_record) of the local user who owns this relationship. It is this person's stuff that is going to be updated. $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity from an external network and MAY create an appropriate contact record. Otherwise, we MUST have a contact record. $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or might not) try and subscribe to it. $datedir sorts in reverse order $pass - by default ($pass = 0) we cannot guarantee that a parent item has been imported prior to its children being seen in the stream unless we are certain of how the feed is arranged/ordered. With $pass = 1, we only pull parent items out of the stream. With $pass = 2, we only pull children (comments/likes).

        -

        So running this twice, first with pass 1 and then with pass 2 will do the right thing regardless of feed ordering. This won't be adequate in a fully-threaded model where comments can have sub-threads. That would require some massive sorting to get all the feed items into a mostly linear ordering, and might still require recursion.

        - -

        Referenced by handle_feed(), and pubsub_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        decode_tags ( $t)
        -
        - -

        Referenced by get_item_elements().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        delete_item_lowlevel ( $item,
         $stage = DROPITEM_NORMAL,
         $force = false 
        )
        -
        - -

        Referenced by drop_item().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        drop_item ( $id,
         $interactive = true,
         $stage = DROPITEM_NORMAL,
         $force = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        drop_items ( $items)
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        encode_item ( $item,
         $mirror = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        encode_item_flags ( $item)
        -
        - -

        Referenced by encode_item().

        - -
        -
        - -
        -
        - - - - - - - - -
        encode_item_terms ( $terms)
        -
        - -

        Referenced by encode_item().

        - -
        -
        - -
        -
        - - - - - - - - -
        encode_item_xchan ( $xchan)
        -
        - -

        Referenced by encode_item(), and encode_mail().

        - -
        -
        - -
        -
        - - - - - - - - -
        encode_mail ( $item)
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        encode_rel_links ( $links)
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - - - - - -
        enumerate_permissions ( $obj)
        -
        - -

        Referenced by compare_permissions(), and fix_private_photos().

        - -
        -
        - - - -
        -
        - - - - - - - - - - - - - - - - - - -
        filter_insecure ( $channel_id,
         $arr 
        )
        -
        -

        If channel is configured to filter insecure members of privacy groups (those whose networks leak privacy via email notifications or other criteria) remove them from any privacy groups (collections) that were included in a post. They can still be addressed individually. Networks may need to be added or removed from this list as circumstances change.

        -

        Update: this may need to be the default, which will force people to opt-in to sending stuff privately to insecure platforms.

        - -

        Referenced by collect_recipients().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        first_post_date ( $uid,
         $wall = false 
        )
        -
        - -

        Referenced by list_post_dates(), and posted_dates().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        fix_private_photos ( $s,
         $uid,
         $item = null,
         $cid = 0 
        )
        -
        - -

        Referenced by atom_entry().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_atom_elements ( $feed,
         $item,
        $author 
        )
        -
        -

        If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.

        - -

        Referenced by consume_feed().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_feed_for ( $channel,
         $observer_hash,
         $params 
        )
        -
        - -

        Referenced by get_public_feed().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_item_contact ( $item,
         $contacts 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        get_item_elements ( $x)
        -
        -
        - -
        -
        - - - - - - - - -
        get_mail_elements ( $x)
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_profile_elements ( $x)
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_public_feed ( $channel,
         $params 
        )
        -
        -

        get_public_feed($channel,$params) generate an Atom feed

        - -

        Referenced by feed_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        handle_feed ( $uid,
         $abook_id,
         $url 
        )
        -
        - -

        Referenced by onepoll_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        has_permissions ( $obj)
        -
        - -

        Referenced by fix_private_photos().

        - -
        -
        - -
        -
        - - - - - - - - -
        import_author_diaspora ( $x)
        -
        - -

        Referenced by import_author_xchan(), and poco_load().

        - -
        -
        - -
        -
        - - - - - - - - -
        import_author_rss ( $x)
        -
        - -

        Referenced by import_author_xchan().

        - -
        -
        - -
        -
        - - - - - - - - -
        import_author_unknown ( $x)
        -
        - -

        Referenced by consume_feed(), and import_author_xchan().

        - -
        -
        - -
        -
        - - - - - - - - -
        import_author_xchan ( $x)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        item_add_cid ( $xchan_hash,
         $mid,
         $uid 
        )
        -
        -

        change access control for item with message_id $mid and channel_id $uid

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        item_expire ( $uid,
         $days 
        )
        -
        - -

        Referenced by expire_run().

        - -
        -
        - -
        -
        - - - - - - - - -
        item_getfeedattach ( $item)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        item_getfeedtags ( $item)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        item_remove_cid ( $xchan_hash,
         $mid,
         $uid 
        )
        -
        - -
        -
        - - - -
        -
        - - - - - - - - - - - - - - - - - - -
        item_store_update ( $arr,
         $allow_exec = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        items_fetch ( $arr,
         $channel = null,
         $observer_hash = null,
         $client_mode = CLIENT_MODE_NORMAL,
         $module = 'network' 
        )
        -
        - -

        Referenced by api_statuses_user_timeline(), and get_feed_for().

        - -
        -
        - -
        -
        - - - - - - - - -
        limit_body_size ( $body)
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        list_post_dates ( $uid,
         $wall,
         $mindate 
        )
        -
        -

        modified posted_dates() {below} to arrange the list in years, which we'll eventually use to make a menu of years with collapsible sub-menus for the months instead of the current flat list of all representative dates.

        - -

        Referenced by widget_archive().

        - -
        -
        - -
        -
        - - - - - - - - -
        mail_store ( $arr)
        -
        - -

        Referenced by process_mail_delivery().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        map_scope ( $scope,
         $strip = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        post_activity_item ( $arr)
        -
        -

        post_activity_item($arr)

        -
        post an activity
        -
        Parameters
        - - -
        array$arrIn its simplest form one needs only to set $arr['body'] to post a note to the logged in channel's wall. Much more complex activities can be created. Permissions are checked. No filtering, tag expansion or other processing is performed.
        -
        -
        -
        Returns
        array 'success' => true or false 'activity' => the resulting activity if successful
        - -

        Referenced by api_channel_stream(), connedit_post(), poke_init(), tagger_content(), and thing_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        posted_dates ( $uid,
         $wall 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_escape_codeblock ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_escape_zrl_callback ( $matches)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_unescape_codeblock ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_zrl_callback ( $matches)
        -
        -

        red_zrl_callback preg_match function when fixing 'naked' links in mod item.php Check if we've got a hubloc for the site and use a zrl if we do, a url if we don't. Remove any existing zid= param which may have been pasted by mistake - and will have the author's credentials. zid's are dynamic and can't really be passed around like that.

        - -
        -
        - -
        -
        - - - - - - - - -
        red_zrlify_img_callback ( $matches)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        retain_item ( $id)
        -
        - -

        Referenced by item_expire().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        send_status_notifications ( $post_id,
         $item 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        set_linkified_perms ( $linkified,
        $str_contact_allow,
        $str_group_allow,
         $profile_uid,
         $parent_item = false 
        )
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        start_delivery_chain ( $channel,
         $item,
         $item_id,
         $parent 
        )
        -
        -

        Sourced and tag-delivered posts are re-targetted for delivery to the connections of the channel receiving the post. This starts the second delivery chain, by resetting permissions and ensuring that ITEM_UPLINK is set on the parent post, and storing the current owner_xchan as the source_xchan. We'll become the new owner. If called without $parent, this is the parent post.

        - -

        Referenced by tag_deliver().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        store_diaspora_comment_sig ( $datarray,
         $channel,
         $parent_item,
         $post_id,
         $walltowall = false 
        )
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        tag_deliver ( $uid,
         $item_id 
        )
        -
        -

        Fetch stuff we need - a channel and an item

        -

        Seems like a good place to plug in a poke notification.

        -

        Do community tagging

        -

        A "union" is a message which our channel has sourced from another channel. This sets up a second delivery chain just like forum tags do. Find out if this is a source-able post.

        -

        Now we've got those out of the way. Let's see if this is a post that's tagged for re-delivery

        -

        Kill two birds with one stone. As long as we're here, send a mention notification.

        - -

        Referenced by delete_imported_item(), item_content(), item_store(), and item_store_update().

        - -
        -
        - -
        -
        - - - - - - - - -
        termtype ( $t)
        -
        - -

        Referenced by encode_item_terms().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        tgroup_check ( $uid,
         $item 
        )
        -
        -

        tgroup_check($uid,$item)

        -

        This function is called pre-deliver to see if a post matches the criteria to be tag delivered. We don't actually do anything except check that it matches the criteria. This is so that the channel with tag_delivery enabled can receive the post even if they turn off permissions for the sender to send their stream. tag_deliver() can't be called until the post is actually stored. By then it would be too late to reject it.

        - -

        Referenced by process_delivery().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        title_is_body ( $title,
         $body 
        )
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - - - - - -
        translate_scope ( $scope)
        -
        - -

        Referenced by lockview_content(), and profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        update_feed_item ( $uid,
         $datarray 
        )
        -
        - -

        Referenced by consume_feed().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        update_remote_id ( $channel,
         $post_id,
         $webpage,
         $pagetitle,
         $namespace,
         $remote_id,
         $mid 
        )
        -
        - -

        Referenced by impel_init(), and item_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        zot_feed ( $uid,
         $observer_xchan,
         $arr 
        )
        -
        - -

        Referenced by zot_process_message_request(), and zotfeed_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js deleted file mode 100644 index 1066f072e..000000000 --- a/doc/html/items_8php.js +++ /dev/null @@ -1,78 +0,0 @@ -var items_8php = -[ - [ "activity_sanitise", "items_8php.html#a36e656667193c83aa2cc03a024fc131b", null ], - [ "add_source_route", "items_8php.html#a81565acf729e629e588d823308448e3c", null ], - [ "array_sanitise", "items_8php.html#abf7a1b73eb352d79acd36309b0dababd", null ], - [ "atom_author", "items_8php.html#a016dd86c827d08db89061ea81d15c6cb", null ], - [ "atom_entry", "items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6", null ], - [ "can_comment_on_post", "items_8php.html#a1e75047cf175aaee8dd16aa761913ff9", null ], - [ "check_item_source", "items_8php.html#a87ac9e359591721a824ecd23bbb56296", null ], - [ "collect_recipients", "items_8php.html#a772f0ae77ad77c8ab68ed918a3870946", null ], - [ "comment_local_origin", "items_8php.html#ada03c12bfd247c9972844e2daa270b52", null ], - [ "comments_are_now_closed", "items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723", null ], - [ "compare_permissions", "items_8php.html#a0790a4550b829e85504af548623002ca", null ], - [ "construct_activity_object", "items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee", null ], - [ "construct_activity_target", "items_8php.html#aa579bc4445d60098b1410961ca8e96b7", null ], - [ "construct_verb", "items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8", null ], - [ "consume_feed", "items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6", null ], - [ "decode_tags", "items_8php.html#a56b2a4abcadfac71175cd50555528cc3", null ], - [ "delete_item_lowlevel", "items_8php.html#a6b448675b71b00ee5ef798468dde4d22", null ], - [ "drop_item", "items_8php.html#ad65e3d4d8c537e560286b735a285e33e", null ], - [ "drop_items", "items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55", null ], - [ "encode_item", "items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86", null ], - [ "encode_item_flags", "items_8php.html#a5f690fc2484abec07840b4f9dd525bd9", null ], - [ "encode_item_terms", "items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a", null ], - [ "encode_item_xchan", "items_8php.html#a566c601726697e044e75284af7fb6f17", null ], - [ "encode_mail", "items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7", null ], - [ "encode_rel_links", "items_8php.html#aa723c0571e314a1853a24c5854b4f54f", null ], - [ "enumerate_permissions", "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67", null ], - [ "fetch_post_tags", "items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9", null ], - [ "filter_insecure", "items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a", null ], - [ "first_post_date", "items_8php.html#a0cf98bb619f07dd18f602683a55a5f59", null ], - [ "fix_private_photos", "items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87", null ], - [ "get_atom_elements", "items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1", null ], - [ "get_feed_for", "items_8php.html#a04a35b610acfe54434df08adec39c0c7", null ], - [ "get_item_contact", "items_8php.html#aab9c6bae4c40799867596bdaae9829fd", null ], - [ "get_item_elements", "items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361", null ], - [ "get_mail_elements", "items_8php.html#a94ddb1d6c8fa21dd7433677e85168037", null ], - [ "get_profile_elements", "items_8php.html#a251343637ff40a50cca93452cd530c26", null ], - [ "get_public_feed", "items_8php.html#a079e099e15d88d47aeb6ca6d60da7107", null ], - [ "handle_feed", "items_8php.html#a52c24114b73c0bdb605a03cd29712223", null ], - [ "has_permissions", "items_8php.html#a77051724d1784074ff187e73a4db93fe", null ], - [ "import_author_diaspora", "items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc", null ], - [ "import_author_rss", "items_8php.html#a6bee35961f2e32905f20367a9309d627", null ], - [ "import_author_unknown", "items_8php.html#a37f79991f36811cf847446ff60e8e11f", null ], - [ "import_author_xchan", "items_8php.html#ae73794179b62d39bb597ff670ab1c1e5", null ], - [ "item_add_cid", "items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df", null ], - [ "item_expire", "items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc", null ], - [ "item_getfeedattach", "items_8php.html#a09d425596b9f8663472cf7474ad36d96", null ], - [ "item_getfeedtags", "items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7", null ], - [ "item_remove_cid", "items_8php.html#a5ed782ff5b9cf050bec931e06de12c00", null ], - [ "item_store", "items_8php.html#a2541e6861a56d145c9281877cc501615", null ], - [ "item_store_update", "items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484", null ], - [ "items_fetch", "items_8php.html#a756738301f2ed96be50232500677d58a", null ], - [ "limit_body_size", "items_8php.html#af94c281016c6c912d06e064113336c5c", null ], - [ "list_post_dates", "items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00", null ], - [ "mail_store", "items_8php.html#a77da7ce9a117601d49ac4a67c71b514f", null ], - [ "map_scope", "items_8php.html#a8675e62674de6fb7c42e4a408c7116cc", null ], - [ "post_activity_item", "items_8php.html#a410f9c743877c125ca06312373346903", null ], - [ "posted_dates", "items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0", null ], - [ "red_escape_codeblock", "items_8php.html#a49905ea75adfe8a2d110be344d18d6a6", null ], - [ "red_escape_zrl_callback", "items_8php.html#a83a349062945d585edb4b3c5d763ab6e", null ], - [ "red_unescape_codeblock", "items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a", null ], - [ "red_zrl_callback", "items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b", null ], - [ "red_zrlify_img_callback", "items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a", null ], - [ "retain_item", "items_8php.html#af6237605c60d69abdd959ddbbee3420c", null ], - [ "send_status_notifications", "items_8php.html#aab9e0c58247427126de0699c729c3b6c", null ], - [ "set_linkified_perms", "items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c", null ], - [ "start_delivery_chain", "items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2", null ], - [ "store_diaspora_comment_sig", "items_8php.html#a25221826fa4621f523c68483e3b6af26", null ], - [ "tag_deliver", "items_8php.html#ab1bce4261bcf75ad62753b498a144d17", null ], - [ "termtype", "items_8php.html#ad34827ed330898456783fb14c7b46154", null ], - [ "tgroup_check", "items_8php.html#a88c6cf7649ac836fbbed82a7a0315110", null ], - [ "title_is_body", "items_8php.html#aa371905f0a211b307cb3f7188c6cba04", null ], - [ "translate_scope", "items_8php.html#aabfaa193b83154c2a81e91284e5d5e59", null ], - [ "update_feed_item", "items_8php.html#a9b449eeae50003414b8b30ca927af434", null ], - [ "update_remote_id", "items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6", null ], - [ "zot_feed", "items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92", null ] -]; \ No newline at end of file diff --git a/doc/html/jquery.js b/doc/html/jquery.js deleted file mode 100644 index 78ad0bdff..000000000 --- a/doc/html/jquery.js +++ /dev/null @@ -1,77 +0,0 @@ -/*! jQuery v1.7.1 jquery.com | jquery.org/license */ -(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
        a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
        "+""+"
        ",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
        t
        ",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
        ",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; -f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

        ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
        ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
        ","
        "],thead:[1,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],col:[2,"","
        "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
        ","
        "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")), -f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() -{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
        ").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c) -{if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); -/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(a,b){function d(b){return!a(b).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}function c(b,c){var e=b.nodeName.toLowerCase();if("area"===e){var f=b.parentNode,g=f.name,h;if(!b.href||!g||f.nodeName.toLowerCase()!=="map")return!1;h=a("img[usemap=#"+g+"]")[0];return!!h&&d(h)}return(/input|select|textarea|button|object/.test(e)?!b.disabled:"a"==e?b.href||c:c)&&d(b)}a.ui=a.ui||{};a.ui.version||(a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}}),a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(b,c){return typeof b=="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus(),c&&c.call(d)},b)}):this._focus.apply(this,arguments)},scrollParent:function(){var b;a.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?b=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(a.curCSS(this,"position",1))&&/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0):b=this.parents().filter(function(){return/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!b.length?a(document):b},zIndex:function(c){if(c!==b)return this.css("zIndex",c);if(this.length){var d=a(this[0]),e,f;while(d.length&&d[0]!==document){e=d.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){f=parseInt(d.css("zIndex"),10);if(!isNaN(f)&&f!==0)return f}d=d.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),a.each(["Width","Height"],function(c,d){function h(b,c,d,f){a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)});return c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){if(c===b)return g["inner"+d].call(this);return this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){if(typeof b!="number")return g["outer"+d].call(this,b);return this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!!d&&!!a.element[0].parentNode)for(var e=0;e0)return!0;b[d]=1,e=b[d]>0,b[d]=0;return e},isOverAxis:function(a,b,c){return a>b&&a=9)&&!b.button)return this._mouseUp(b);if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b));return!this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b));return!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})})(jQuery); -/* - * jQuery UI Resizable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Resizables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */ -(function(a,b){a.widget("ui.resizable",a.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var b=this,c=this.options;this.element.addClass("ui-resizable"),a.extend(this,{_aspectRatio:!!c.aspectRatio,aspectRatio:c.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:c.helper||c.ghost||c.animate?c.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(a('
        ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e
        ');/sw|se|ne|nw/.test(f)&&h.css({zIndex:++c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){c.disabled||(a(this).removeClass("ui-resizable-autohide"),b._handles.show())},function(){c.disabled||b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement);return this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b);return!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui());return!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove();return!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null);return a},_proportionallyResize:function(){var b=this.options;if(!!this._proportionallyResizeElements.length){var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.18"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!!i){e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/e.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*e.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p -&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery); -/* - * jQuery hashchange event - v1.3 - 7/21/2010 - * http://benalman.com/projects/jquery-hashchange-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' - - -
        - -
        -
        lang.php File Reference
        -
        -
        -
        - - - -

        -Functions

         lang_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        lang_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/lang_8php.js b/doc/html/lang_8php.js deleted file mode 100644 index 4311ee90c..000000000 --- a/doc/html/lang_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var lang_8php = -[ - [ "lang_content", "lang_8php.html#a4c5c1140f51a638f224275cd618c2f37", null ] -]; \ No newline at end of file diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html deleted file mode 100644 index 104787f04..000000000 --- a/doc/html/language_8php.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - -The Red Matrix: include/language.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        language.php File Reference
        -
        -
        - -

        translation support -More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         get_browser_language ()
         Get the browser's submitted preferred languages. More...
         
         get_best_language ()
         Returns the best language for which also a translation exists. More...
         
         push_lang ($language)
         
         pop_lang ()
         
         load_translation_table ($lang, $install=false)
         
         t ($s, $ctx= '')
         translate string if translation exists. More...
         
         tt ($singular, $plural, $count, $ctx= '')
         
         string_plural_select_default ($n)
         
         detect_language ($s)
         Takes a string and tries to identify the language. More...
         
         get_language_name ($s, $l=null)
         
        -

        Detailed Description

        -

        translation support

        -

        This file contains functions to work with translations and other language related tasks.

        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        detect_language ( $s)
        -
        - -

        Takes a string and tries to identify the language.

        -

        It uses the pear library Text_LanguageDetect and it can identify 52 human languages. It returns the identified languges and a confidence score for each.

        -

        Strings need to have a min length config['system']['language_detect_min_length'] and you can influence the confidence that must be met before a result will get returned through config['system']['language_detect_min_confidence'].

        -
        See Also
        http://pear.php.net/package/Text_LanguageDetect
        -
        Parameters
        - - -
        sA string to examine
        -
        -
        -
        Returns
        Language code in 2-letter ISO 639-1 (en, de, fr) format
        - -

        Referenced by item_store(), and item_store_update().

        - -
        -
        - -
        -
        - - - - - - - -
        get_best_language ()
        -
        - -

        Returns the best language for which also a translation exists.

        -

        This function takes the results from get_browser_language() and compares it with the available translations and returns the best fitting language for which there exists a translation.

        -

        If there is no match fall back to config['system']['language']

        -
        Returns
        Language code in 2-letter ISO 639-1 (en).
        - -

        Referenced by create_account().

        - -
        -
        - -
        -
        - - - - - - - -
        get_browser_language ()
        -
        - -

        Get the browser's submitted preferred languages.

        -

        This functions parses the HTTP_ACCEPT_LANGUAGE header sent by the browser and extracts the preferred languages and their priority.

        -

        Get the language setting directly from system variables, bypassing get_config() as database may not yet be configured.

        -

        If possible, we use the value from the browser.

        -
        Returns
        array with ordered list of preferred languages from browser
        - -

        Referenced by get_best_language().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_language_name ( $s,
         $l = null 
        )
        -
        - -

        Referenced by lang_selector().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        load_translation_table ( $lang,
         $install = false 
        )
        -
        - -

        Referenced by push_lang().

        - -
        -
        - -
        -
        - - - - - - - -
        pop_lang ()
        -
        -
        - -
        -
        - - - - - - - - -
        push_lang ( $language)
        -
        -
        - -
        -
        - - - - - - - - -
        string_plural_select_default ( $n)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        t ( $s,
         $ctx = '' 
        )
        -
        - -

        translate string if translation exists.

        -
        Parameters
        - - - -
        $sstring that should get translated
        $ctxoptional context to appear in po file
        -
        -
        -
        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_queue(), 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(), bb_replace_images(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), builtin_activity_puller(), 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(), datetimesel(), dav_init(), 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(), get_roles(), Item\get_template_data(), get_timezones(), getIconFromType(), 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(), 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(), rate_content(), ratings_content(), ratings_init(), rbmark_content(), rbmark_post(), redbasic_form(), regdir_init(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), sharedwithme_content(), 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(), uexport_content(), update_birthdays(), update_channel_content(), update_display_content(), update_home_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_photo(), widget_photo_rand(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), xchan_content(), z_readdir(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tt ( $singular,
         $plural,
         $count,
         $ctx = '' 
        )
        -
        -
        -
        -
        - diff --git a/doc/html/language_8php.js b/doc/html/language_8php.js deleted file mode 100644 index 23b8a292a..000000000 --- a/doc/html/language_8php.js +++ /dev/null @@ -1,13 +0,0 @@ -var language_8php = -[ - [ "detect_language", "language_8php.html#a632da17c7ac0d2dc1a00a4706870194b", null ], - [ "get_best_language", "language_8php.html#a980dee1d8715a98ab02e36b59facf8ed", null ], - [ "get_browser_language", "language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e", null ], - [ "get_language_name", "language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7", null ], - [ "load_translation_table", "language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05", null ], - [ "pop_lang", "language_8php.html#a78bd204955ec4cc3a9ac651285a1689d", null ], - [ "push_lang", "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a", null ], - [ "string_plural_select_default", "language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0", null ], - [ "t", "language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96", null ], - [ "tt", "language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997", null ] -]; \ No newline at end of file diff --git a/doc/html/lastpost_8php.html b/doc/html/lastpost_8php.html deleted file mode 100644 index 36b01df45..000000000 --- a/doc/html/lastpost_8php.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - -The Red Matrix: mod/lastpost.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        lastpost.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         lastpost_init (&$a)
         
         lastpost_aside (&$a)
         
         lastpost_content (&$a, $update=0, $load=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        lastpost_aside ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        lastpost_content ($a,
         $update = 0,
         $load = false 
        )
        -
        -

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

        - -
        -
        - -
        -
        - - - - - - - - -
        lastpost_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/lastpost_8php.js b/doc/html/lastpost_8php.js deleted file mode 100644 index aed5ab589..000000000 --- a/doc/html/lastpost_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var lastpost_8php = -[ - [ "lastpost_aside", "lastpost_8php.html#a6108289ef2a767495c7c85a24f364983", null ], - [ "lastpost_content", "lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493", null ], - [ "lastpost_init", "lastpost_8php.html#ab4c6ebd25736af678e64d55ce508ce8c", null ] -]; \ No newline at end of file diff --git a/doc/html/layouts_8php.html b/doc/html/layouts_8php.html deleted file mode 100644 index 7287e9147..000000000 --- a/doc/html/layouts_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/layouts.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        layouts.php File Reference
        -
        -
        - - - - - - -

        -Functions

         layouts_init (&$a)
         
         layouts_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        layouts_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        layouts_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/layouts_8php.js b/doc/html/layouts_8php.js deleted file mode 100644 index 5c56bc6c3..000000000 --- a/doc/html/layouts_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var layouts_8php = -[ - [ "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/like_8php.html b/doc/html/like_8php.html deleted file mode 100644 index 7e6a1db83..000000000 --- a/doc/html/like_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/like.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        like.php File Reference
        -
        -
        - - - - -

        -Functions

         like_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        like_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/like_8php.js b/doc/html/like_8php.js deleted file mode 100644 index 9706955e1..000000000 --- a/doc/html/like_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var like_8php = -[ - [ "like_content", "like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538", null ] -]; \ No newline at end of file diff --git a/doc/html/lockview_8php.html b/doc/html/lockview_8php.html deleted file mode 100644 index 9db692f74..000000000 --- a/doc/html/lockview_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/lockview.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        lockview.php File Reference
        -
        -
        - - - - -

        -Functions

         lockview_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        lockview_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/lockview_8php.js b/doc/html/lockview_8php.js deleted file mode 100644 index 7a5d6a5a8..000000000 --- a/doc/html/lockview_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var lockview_8php = -[ - [ "lockview_content", "lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44", null ] -]; \ No newline at end of file diff --git a/doc/html/locs_8php.html b/doc/html/locs_8php.html deleted file mode 100644 index 229d5978f..000000000 --- a/doc/html/locs_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/locs.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        locs.php File Reference
        -
        -
        - - - - - - -

        -Functions

         locs_post (&$a)
         
         locs_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        locs_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        locs_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/locs_8php.js b/doc/html/locs_8php.js deleted file mode 100644 index 6444a590f..000000000 --- a/doc/html/locs_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var locs_8php = -[ - [ "locs_content", "locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44", null ], - [ "locs_post", "locs_8php.html#a6b43654592919ac863d67a1f787a69b9", null ] -]; \ No newline at end of file diff --git a/doc/html/login_8php.html b/doc/html/login_8php.html deleted file mode 100644 index 361ce22f6..000000000 --- a/doc/html/login_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/login.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        login.php File Reference
        -
        -
        - - - - -

        -Functions

         login_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        login_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/login_8php.js b/doc/html/login_8php.js deleted file mode 100644 index 7acaf7886..000000000 --- a/doc/html/login_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var login_8php = -[ - [ "login_content", "login_8php.html#a1d69ca88eb9005a7026e128b9a645904", null ] -]; \ No newline at end of file diff --git a/doc/html/lostpass_8php.html b/doc/html/lostpass_8php.html deleted file mode 100644 index 1df357a61..000000000 --- a/doc/html/lostpass_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/lostpass.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        lostpass.php File Reference
        -
        -
        - - - - - - -

        -Functions

         lostpass_post (&$a)
         
         lostpass_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        lostpass_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        lostpass_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/lostpass_8php.js b/doc/html/lostpass_8php.js deleted file mode 100644 index a6f1eb8ff..000000000 --- a/doc/html/lostpass_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var lostpass_8php = -[ - [ "lostpass_content", "lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3", null ], - [ "lostpass_post", "lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc", null ] -]; \ No newline at end of file diff --git a/doc/html/magic_8php.html b/doc/html/magic_8php.html deleted file mode 100644 index 7fc8c7597..000000000 --- a/doc/html/magic_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/magic.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        magic.php File Reference
        -
        -
        - - - - -

        -Functions

         magic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        magic_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/magic_8php.js b/doc/html/magic_8php.js deleted file mode 100644 index 331687144..000000000 --- a/doc/html/magic_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var magic_8php = -[ - [ "magic_init", "magic_8php.html#acea2cc792849ca2d71d4b689f66518bf", null ] -]; \ No newline at end of file diff --git a/doc/html/mail_8php.html b/doc/html/mail_8php.html deleted file mode 100644 index 830975bf1..000000000 --- a/doc/html/mail_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/mail.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mail.php File Reference
        -
        -
        - - - - - - -

        -Functions

         mail_post (&$a)
         
         mail_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        mail_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        mail_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mail_8php.js b/doc/html/mail_8php.js deleted file mode 100644 index 8c79edcb0..000000000 --- a/doc/html/mail_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mail_8php = -[ - [ "mail_content", "mail_8php.html#a3c7c485fc69f92371e8b20936040eca1", null ], - [ "mail_post", "mail_8php.html#acfc2cc0bf4e0b178207758384977f25a", null ] -]; \ No newline at end of file diff --git a/doc/html/manage_8php.html b/doc/html/manage_8php.html deleted file mode 100644 index b7bb732e7..000000000 --- a/doc/html/manage_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/manage.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        manage.php File Reference
        -
        -
        - - - - -

        -Functions

         manage_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        manage_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/manage_8php.js b/doc/html/manage_8php.js deleted file mode 100644 index 222f22c2a..000000000 --- a/doc/html/manage_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var manage_8php = -[ - [ "manage_content", "manage_8php.html#a2bca247b5296827638959138367db4f5", null ] -]; \ No newline at end of file diff --git a/doc/html/match_8php.html b/doc/html/match_8php.html deleted file mode 100644 index 6e5794287..000000000 --- a/doc/html/match_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/match.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        match.php File Reference
        -
        -
        - - - - -

        -Functions

         match_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        match_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/match_8php.js b/doc/html/match_8php.js deleted file mode 100644 index 2634e9eaa..000000000 --- a/doc/html/match_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var match_8php = -[ - [ "match_content", "match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d", null ] -]; \ No newline at end of file diff --git a/doc/html/md_README.html b/doc/html/md_README.html deleted file mode 100644 index 0b2875d59..000000000 --- a/doc/html/md_README.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - -The Red Matrix: apw - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        apw
        -
        -
        -

        A Polymorphic Wapentake theme for the Red Matrix.

        -
        -Image -
        -
        -
        - diff --git a/doc/html/md_config.html b/doc/html/md_config.html deleted file mode 100644 index db80ea68c..000000000 --- a/doc/html/md_config.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: CLI config utility - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        CLI config utility
        -
        -
        -

        Usage:

        -

        config displays all config entries

        -

        config family displays all config entries for family (system, database, etc)

        -

        config family key displays single config entry for specified family and key

        -

        config family key value set config entry for specified family and key to value and display result

        -

        Notes: Setting config entries which are manually set in .htconfig.php may result in conflict between database settings and the manual startup settings.

        -
        -
        - diff --git a/doc/html/md_fresh.html b/doc/html/md_fresh.html deleted file mode 100644 index 636f58b97..000000000 --- a/doc/html/md_fresh.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -The Red Matrix: Fresh - The Freaking REd Shell - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Fresh - The Freaking REd Shell
        -
        -
        -

        This will only work on Unix/Linux. If the readline module is installed, we will use that for input, otherwise we will just read from stdin and write to stdout.

        -

        Commands are processed sequentially until the command "exit", "quit", or end of file is reached.

        -

        Commands:

        -
          -
        • version Report current fresh version
        • -
        -
          -
        • login email_address Prompts for a password, and authenticates email_address as the current user.
        • -
        -
          -
        • finger channel_address performs a lookup of channel_address and reports the result.
        • -
        -
          -
        • channel channel_nickname switches the current channel to the channel with nickname specified.
        • -
        -
          -
        • conn [id1 id2 ...] With no arguments lists all connections of the current channel, with an id. If IDs are provided the connections details of each will be displayed.
        • -
        -
        -
        - diff --git a/doc/html/minimal_8php.html b/doc/html/minimal_8php.html deleted file mode 100644 index 6b37d2cc0..000000000 --- a/doc/html/minimal_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/php/minimal.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        minimal.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/minimalisticdarkness_8php.html b/doc/html/minimalisticdarkness_8php.html deleted file mode 100644 index 4b3a6fe34..000000000 --- a/doc/html/minimalisticdarkness_8php.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/minimalisticdarkness.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        minimalisticdarkness.php File Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Variables

         $width = '90%'
         
         $minwidth = '90%'
         
         $itemfloat = 'none'
         
         $aside = 'off'
         
         $sectionwidth = '80%'
         
         $sectionleft = '10px'
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $aside = 'off'
        -
        - -

        Referenced by admin_content(), apw_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $itemfloat = 'none'
        -
        - -

        Referenced by apw_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $minwidth = '90%'
        -
        - -

        Referenced by apw_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $sectionleft = '10px'
        -
        - -

        Referenced by apw_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $sectionwidth = '80%'
        -
        - -

        Referenced by apw_form(), and theme_content().

        - -
        -
        - - -
        -
        - diff --git a/doc/html/minimalisticdarkness_8php.js b/doc/html/minimalisticdarkness_8php.js deleted file mode 100644 index ec5ce866d..000000000 --- a/doc/html/minimalisticdarkness_8php.js +++ /dev/null @@ -1,9 +0,0 @@ -var minimalisticdarkness_8php = -[ - [ "$aside", "minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf", null ], - [ "$itemfloat", "minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b", null ], - [ "$minwidth", "minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb", null ], - [ "$sectionleft", "minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead", null ], - [ "$sectionwidth", "minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f", null ], - [ "$width", "minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57", null ] -]; \ No newline at end of file diff --git a/doc/html/mitem_8php.html b/doc/html/mitem_8php.html deleted file mode 100644 index 83570dc4b..000000000 --- a/doc/html/mitem_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/mitem.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mitem.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         mitem_init (&$a)
         
         mitem_post (&$a)
         
         mitem_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        mitem_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        mitem_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        mitem_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mitem_8php.js b/doc/html/mitem_8php.js deleted file mode 100644 index 35bca9217..000000000 --- a/doc/html/mitem_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var mitem_8php = -[ - [ "mitem_content", "mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e", null ], - [ "mitem_init", "mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518", null ], - [ "mitem_post", "mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2api_8php.html b/doc/html/mod_2api_8php.html deleted file mode 100644 index d9d6febdd..000000000 --- a/doc/html/mod_2api_8php.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -The Red Matrix: mod/api.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        api.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         oauth_get_client ($request)
         
         api_post (&$a)
         
         api_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        api_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        api_post ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        oauth_get_client ( $request)
        -
        - -

        Referenced by api_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2api_8php.js b/doc/html/mod_2api_8php.js deleted file mode 100644 index 61f9c7f58..000000000 --- a/doc/html/mod_2api_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var mod_2api_8php = -[ - [ "api_content", "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d", null ], - [ "api_post", "mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2", null ], - [ "oauth_get_client", "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2apps_8php.html b/doc/html/mod_2apps_8php.html deleted file mode 100644 index 705905828..000000000 --- a/doc/html/mod_2apps_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/apps.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        apps.php File Reference
        -
        -
        - - - - -

        -Functions

         apps_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        apps_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2apps_8php.js b/doc/html/mod_2apps_8php.js deleted file mode 100644 index f34d11714..000000000 --- a/doc/html/mod_2apps_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod_2apps_8php = -[ - [ "apps_content", "mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2attach_8php.html b/doc/html/mod_2attach_8php.html deleted file mode 100644 index 575cd97e1..000000000 --- a/doc/html/mod_2attach_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/attach.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        attach.php File Reference
        -
        -
        - - - - -

        -Functions

         attach_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        attach_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2attach_8php.js b/doc/html/mod_2attach_8php.js deleted file mode 100644 index 19c8c722e..000000000 --- a/doc/html/mod_2attach_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod_2attach_8php = -[ - [ "attach_init", "mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2bookmarks_8php.html b/doc/html/mod_2bookmarks_8php.html deleted file mode 100644 index 2a1782120..000000000 --- a/doc/html/mod_2bookmarks_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/bookmarks.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        bookmarks.php File Reference
        -
        -
        - - - - - - -

        -Functions

         bookmarks_init (&$a)
         
         bookmarks_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        bookmarks_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        bookmarks_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2bookmarks_8php.js b/doc/html/mod_2bookmarks_8php.js deleted file mode 100644 index d0b12a7f8..000000000 --- a/doc/html/mod_2bookmarks_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2bookmarks_8php = -[ - [ "bookmarks_content", "mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a", null ], - [ "bookmarks_init", "mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2chanman_8php.html b/doc/html/mod_2chanman_8php.html deleted file mode 100644 index 1e9aa9a48..000000000 --- a/doc/html/mod_2chanman_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: mod/chanman.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        chanman.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/mod_2chat_8php.html b/doc/html/mod_2chat_8php.html deleted file mode 100644 index 283c554d2..000000000 --- a/doc/html/mod_2chat_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/chat.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        chat.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         chat_init (&$a)
         
         chat_post (&$a)
         
         chat_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        chat_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        chat_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        chat_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2chat_8php.js b/doc/html/mod_2chat_8php.js deleted file mode 100644 index 73a2b18d6..000000000 --- a/doc/html/mod_2chat_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var mod_2chat_8php = -[ - [ "chat_content", "mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f", null ], - [ "chat_init", "mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e", null ], - [ "chat_post", "mod_2chat_8php.html#a999d594745597c656c9760253ae297ad", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2directory_8php.html b/doc/html/mod_2directory_8php.html deleted file mode 100644 index cca2ed279..000000000 --- a/doc/html/mod_2directory_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/directory.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        directory.php File Reference
        -
        -
        - - - - - - -

        -Functions

         directory_init (&$a)
         
         directory_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        directory_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        directory_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2directory_8php.js b/doc/html/mod_2directory_8php.js deleted file mode 100644 index 783c03a81..000000000 --- a/doc/html/mod_2directory_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2directory_8php = -[ - [ "directory_content", "mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44", null ], - [ "directory_init", "mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2follow_8php.html b/doc/html/mod_2follow_8php.html deleted file mode 100644 index 8ec4d4051..000000000 --- a/doc/html/mod_2follow_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/follow.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        follow.php File Reference
        -
        -
        - - - - - - -

        -Functions

         follow_init (&$a)
         
         follow_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        follow_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        follow_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2follow_8php.js b/doc/html/mod_2follow_8php.js deleted file mode 100644 index 8ca687406..000000000 --- a/doc/html/mod_2follow_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2follow_8php = -[ - [ "follow_content", "mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592", null ], - [ "follow_init", "mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2group_8php.html b/doc/html/mod_2group_8php.html deleted file mode 100644 index e2e9f1fe1..000000000 --- a/doc/html/mod_2group_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/group.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        group.php File Reference
        -
        -
        - - - - - - -

        -Functions

         group_post (&$a)
         
         group_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        group_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        group_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2group_8php.js b/doc/html/mod_2group_8php.js deleted file mode 100644 index 4484dd52d..000000000 --- a/doc/html/mod_2group_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2group_8php = -[ - [ "group_content", "mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83", null ], - [ "group_post", "mod_2group_8php.html#aed1f009b1221348021bb34761160ef35", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2menu_8php.html b/doc/html/mod_2menu_8php.html deleted file mode 100644 index 4e6574c40..000000000 --- a/doc/html/mod_2menu_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/menu.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        menu.php File Reference
        -
        -
        - - - - - - -

        -Functions

         menu_post (&$a)
         
         menu_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        menu_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        menu_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2menu_8php.js b/doc/html/mod_2menu_8php.js deleted file mode 100644 index a1f6e1d9f..000000000 --- a/doc/html/mod_2menu_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2menu_8php = -[ - [ "menu_content", "mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf", null ], - [ "menu_post", "mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2message_8php.html b/doc/html/mod_2message_8php.html deleted file mode 100644 index 459ddb125..000000000 --- a/doc/html/mod_2message_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/message.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        message.php File Reference
        -
        -
        - - - - -

        -Functions

         message_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        message_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2message_8php.js b/doc/html/mod_2message_8php.js deleted file mode 100644 index 4be200bf0..000000000 --- a/doc/html/mod_2message_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod_2message_8php = -[ - [ "message_content", "mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2network_8php.html b/doc/html/mod_2network_8php.html deleted file mode 100644 index bfbd5bd2c..000000000 --- a/doc/html/mod_2network_8php.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -The Red Matrix: mod/network.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        network.php File Reference
        -
        -
        - - - - - - -

        -Functions

         network_init (&$a)
         
         network_content (&$a, $update=0, $load=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        network_content ($a,
         $update = 0,
         $load = false 
        )
        -
        -

        in "list mode", only mark the parent item and any like activities as "seen". We won't distinguish between comment likes and post likes. The important thing is that the number of unseen comments will be accurate. The SQL to separate the comment likes could also get somewhat hairy.

        - -

        Referenced by update_network_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        network_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2network_8php.js b/doc/html/mod_2network_8php.js deleted file mode 100644 index 651e6f6bd..000000000 --- a/doc/html/mod_2network_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2network_8php = -[ - [ "network_content", "mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4", null ], - [ "network_init", "mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2notify_8php.html b/doc/html/mod_2notify_8php.html deleted file mode 100644 index dae4949c1..000000000 --- a/doc/html/mod_2notify_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/notify.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        notify.php File Reference
        -
        -
        - - - - - - -

        -Functions

         notify_init (&$a)
         
         notify_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        notify_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        notify_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2notify_8php.js b/doc/html/mod_2notify_8php.js deleted file mode 100644 index cb5e5e71e..000000000 --- a/doc/html/mod_2notify_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mod_2notify_8php = -[ - [ "notify_content", "mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3", null ], - [ "notify_init", "mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2oembed_8php.html b/doc/html/mod_2oembed_8php.html deleted file mode 100644 index 539616a76..000000000 --- a/doc/html/mod_2oembed_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/oembed.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        oembed.php File Reference
        -
        -
        - - - - -

        -Functions

         oembed_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        oembed_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2oembed_8php.js b/doc/html/mod_2oembed_8php.js deleted file mode 100644 index fa9f10f16..000000000 --- a/doc/html/mod_2oembed_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod_2oembed_8php = -[ - [ "oembed_init", "mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2photos_8php.html b/doc/html/mod_2photos_8php.html deleted file mode 100644 index f81b628f5..000000000 --- a/doc/html/mod_2photos_8php.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - -The Red Matrix: mod/photos.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photos.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         photos_init (&$a)
         
         photos_post (&$a)
         
         photos_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        photos_content ($a)
        -
        -

        Display upload form

        -

        Display one photo

        - -
        -
        - -
        -
        - - - - - - - - -
        photos_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        photos_post ($a)
        -
        -

        default post action - upload a photo

        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2photos_8php.js b/doc/html/mod_2photos_8php.js deleted file mode 100644 index 5048ba9c1..000000000 --- a/doc/html/mod_2photos_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var mod_2photos_8php = -[ - [ "photos_content", "mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812", null ], - [ "photos_init", "mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014", null ], - [ "photos_post", "mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2probe_8php.html b/doc/html/mod_2probe_8php.html deleted file mode 100644 index 7494517a8..000000000 --- a/doc/html/mod_2probe_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/probe.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        probe.php File Reference
        -
        -
        - - - - -

        -Functions

         probe_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        probe_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2probe_8php.js b/doc/html/mod_2probe_8php.js deleted file mode 100644 index b1a10e1fe..000000000 --- a/doc/html/mod_2probe_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod_2probe_8php = -[ - [ "probe_content", "mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99", null ] -]; \ No newline at end of file diff --git a/doc/html/mod_2settings_8php.html b/doc/html/mod_2settings_8php.html deleted file mode 100644 index 4e3633c56..000000000 --- a/doc/html/mod_2settings_8php.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -The Red Matrix: mod/settings.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        settings.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

         get_theme_config_file ($theme)
         
         settings_init (&$a)
         
         settings_aside (&$a)
         
         settings_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        get_theme_config_file ( $theme)
        -
        - -

        Referenced by settings_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        settings_aside ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        settings_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        settings_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod_2settings_8php.js b/doc/html/mod_2settings_8php.js deleted file mode 100644 index 272bdc623..000000000 --- a/doc/html/mod_2settings_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var mod_2settings_8php = -[ - [ "get_theme_config_file", "mod_2settings_8php.html#a39abc76ff5459c57e3b957664f273f18", null ], - [ "settings_aside", "mod_2settings_8php.html#ae5aebccb006bee1300078576baaf5582", null ], - [ "settings_init", "mod_2settings_8php.html#a3a4cde287482fced008583f54ba2a722", null ], - [ "settings_post", "mod_2settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586", null ] -]; \ No newline at end of file diff --git a/doc/html/mod__chanview_8php.html b/doc/html/mod__chanview_8php.html deleted file mode 100644 index 112b8b61b..000000000 --- a/doc/html/mod__chanview_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/css/mod_chanview.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        mod_chanview.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/mod__filestorage_8php.html b/doc/html/mod__filestorage_8php.html deleted file mode 100644 index d1bfc3b26..000000000 --- a/doc/html/mod__filestorage_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/js/mod_filestorage.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        mod_filestorage.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/mod__import_8php.html b/doc/html/mod__import_8php.html deleted file mode 100644 index 6f1e15632..000000000 --- a/doc/html/mod__import_8php.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - -The Red Matrix: view/php/mod_import.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mod_import.php File Reference
        -
        -
        - - - - -

        -Variables

        $a page ['template'] = 'full'
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a page['template'] = 'full'
        -
        - -

        Referenced by App\__construct(), and App\build_pagehead().

        - -
        -
        -
        -
        - diff --git a/doc/html/mod__import_8php.js b/doc/html/mod__import_8php.js deleted file mode 100644 index 906263adf..000000000 --- a/doc/html/mod__import_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod__import_8php = -[ - [ "page", "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] -]; \ No newline at end of file diff --git a/doc/html/mod__new__channel_8php.html b/doc/html/mod__new__channel_8php.html deleted file mode 100644 index 82bfb3f1e..000000000 --- a/doc/html/mod__new__channel_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/php/mod_new_channel.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mod_new_channel.php File Reference
        -
        -
        - - - - -

        -Variables

        $a page ['template'] = 'full'
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a page['template'] = 'full'
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod__new__channel_8php.js b/doc/html/mod__new__channel_8php.js deleted file mode 100644 index 81be48cb5..000000000 --- a/doc/html/mod__new__channel_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod__new__channel_8php = -[ - [ "page", "mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] -]; \ No newline at end of file diff --git a/doc/html/mod__register_8php.html b/doc/html/mod__register_8php.html deleted file mode 100644 index e42a107a2..000000000 --- a/doc/html/mod__register_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/php/mod_register.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mod_register.php File Reference
        -
        -
        - - - - -

        -Variables

        $a page ['template'] = 'full'
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a page['template'] = 'full'
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mod__register_8php.js b/doc/html/mod__register_8php.js deleted file mode 100644 index ac5d5ab70..000000000 --- a/doc/html/mod__register_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mod__register_8php = -[ - [ "page", "mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] -]; \ No newline at end of file diff --git a/doc/html/mood_8php.html b/doc/html/mood_8php.html deleted file mode 100644 index 2a4ba4f5b..000000000 --- a/doc/html/mood_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/mood.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        mood.php File Reference
        -
        -
        - - - - - - -

        -Functions

         mood_init (&$a)
         
         mood_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        mood_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        mood_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/mood_8php.js b/doc/html/mood_8php.js deleted file mode 100644 index 48b12ef8f..000000000 --- a/doc/html/mood_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var mood_8php = -[ - [ "mood_content", "mood_8php.html#a721b9b6703b3234a005641c92d409b8f", null ], - [ "mood_init", "mood_8php.html#a7ae136dd7476865b4828136175db5022", null ] -]; \ No newline at end of file diff --git a/doc/html/msearch_8php.html b/doc/html/msearch_8php.html deleted file mode 100644 index be2a16b75..000000000 --- a/doc/html/msearch_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/msearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        msearch.php File Reference
        -
        -
        - - - - -

        -Functions

         msearch_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        msearch_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/msearch_8php.js b/doc/html/msearch_8php.js deleted file mode 100644 index 16b349389..000000000 --- a/doc/html/msearch_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var msearch_8php = -[ - [ "msearch_post", "msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8", null ] -]; \ No newline at end of file diff --git a/doc/html/mytheme_2php_2style_8php.html b/doc/html/mytheme_2php_2style_8php.html deleted file mode 100644 index 84c8eadcf..000000000 --- a/doc/html/mytheme_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/mytheme_2php_2theme_8php.html b/doc/html/mytheme_2php_2theme_8php.html deleted file mode 100644 index 8988f4f05..000000000 --- a/doc/html/mytheme_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         mytheme_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        mytheme_init ($a)
        -
        -
          -
        • Name: Mytheme
        • -
        • Description: Sample Derived theme
        • -
        • Version: 1.0
        • -
        • Author: Your Name
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/mytheme_2php_2theme_8php.js b/doc/html/mytheme_2php_2theme_8php.js deleted file mode 100644 index 6818df4fe..000000000 --- a/doc/html/mytheme_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var mytheme_2php_2theme_8php = -[ - [ "mytheme_init", "mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8", null ] -]; \ No newline at end of file diff --git a/doc/html/namespaceFriendica.html b/doc/html/namespaceFriendica.html deleted file mode 100644 index 6d350cbbf..000000000 --- a/doc/html/namespaceFriendica.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - -The Red Matrix: Friendica Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Friendica Namespace Reference
        -
        -
        -

        Detailed Description

        -
        -
        - diff --git a/doc/html/namespaceRedMatrix.html b/doc/html/namespaceRedMatrix.html deleted file mode 100644 index 873af1168..000000000 --- a/doc/html/namespaceRedMatrix.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix Namespace Reference
        -
        -
        - -

        Class Import. -More...

        - - - - - - -

        -Namespaces

        namespace  Import
         
        namespace  RedDAV
         
        -

        Detailed Description

        -

        Class Import.

        -
        -
        - diff --git a/doc/html/namespaceRedMatrix.js b/doc/html/namespaceRedMatrix.js deleted file mode 100644 index f08741c6c..000000000 --- a/doc/html/namespaceRedMatrix.js +++ /dev/null @@ -1,5 +0,0 @@ -var namespaceRedMatrix = -[ - [ "Import", "namespaceRedMatrix_1_1Import.html", "namespaceRedMatrix_1_1Import" ], - [ "RedDAV", "namespaceRedMatrix_1_1RedDAV.html", "namespaceRedMatrix_1_1RedDAV" ] -]; \ No newline at end of file diff --git a/doc/html/namespaceRedMatrix_1_1Import.html b/doc/html/namespaceRedMatrix_1_1Import.html deleted file mode 100644 index a0ab85227..000000000 --- a/doc/html/namespaceRedMatrix_1_1Import.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\Import Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\Import Namespace Reference
        -
        -
        - - - - -

        -Classes

        class  Import
         
        -
        -
        - diff --git a/doc/html/namespaceRedMatrix_1_1Import.js b/doc/html/namespaceRedMatrix_1_1Import.js deleted file mode 100644 index c26a05140..000000000 --- a/doc/html/namespaceRedMatrix_1_1Import.js +++ /dev/null @@ -1,4 +0,0 @@ -var namespaceRedMatrix_1_1Import = -[ - [ "Import", "classRedMatrix_1_1Import_1_1Import.html", "classRedMatrix_1_1Import_1_1Import" ] -]; \ No newline at end of file diff --git a/doc/html/namespaceRedMatrix_1_1RedDAV.html b/doc/html/namespaceRedMatrix_1_1RedDAV.html deleted file mode 100644 index f078431e9..000000000 --- a/doc/html/namespaceRedMatrix_1_1RedDAV.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -The Red Matrix: RedMatrix\RedDAV Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        RedMatrix\RedDAV Namespace Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Classes

        class  RedBasicAuth
         Authentication backend class for RedDAV. More...
         
        class  RedBrowser
         Provides a DAV frontend for the webbrowser. More...
         
        class  RedDirectory
         RedDirectory class. More...
         
        class  RedFile
         This class represents a file in DAV. More...
         
        -
        -
        - diff --git a/doc/html/namespaceRedMatrix_1_1RedDAV.js b/doc/html/namespaceRedMatrix_1_1RedDAV.js deleted file mode 100644 index b0d685e01..000000000 --- a/doc/html/namespaceRedMatrix_1_1RedDAV.js +++ /dev/null @@ -1,7 +0,0 @@ -var namespaceRedMatrix_1_1RedDAV = -[ - [ "RedBasicAuth", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html", "classRedMatrix_1_1RedDAV_1_1RedBasicAuth" ], - [ "RedBrowser", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html", "classRedMatrix_1_1RedDAV_1_1RedBrowser" ], - [ "RedDirectory", "classRedMatrix_1_1RedDAV_1_1RedDirectory.html", "classRedMatrix_1_1RedDAV_1_1RedDirectory" ], - [ "RedFile", "classRedMatrix_1_1RedDAV_1_1RedFile.html", "classRedMatrix_1_1RedDAV_1_1RedFile" ] -]; \ No newline at end of file diff --git a/doc/html/namespaceacl__selectors.html b/doc/html/namespaceacl__selectors.html deleted file mode 100644 index 72ecab5ed..000000000 --- a/doc/html/namespaceacl__selectors.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: acl_selectors Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        acl_selectors Namespace Reference
        -
        -
        -
        -
        - diff --git a/doc/html/namespaceeasywebdav.html b/doc/html/namespaceeasywebdav.html deleted file mode 100644 index 6a12dddd3..000000000 --- a/doc/html/namespaceeasywebdav.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: easywebdav Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        easywebdav Namespace Reference
        -
        -
        - - - - - - -

        -Namespaces

        namespace  __version__
         
        namespace  client
         
        - - - -

        -Functions

        def connect
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        def easywebdav.connect ( args,
         kwargs 
        )
        -
        -
        connect(host, port=0, auth=None, username=None, password=None, protocol='http', path="/")
        -
        -
        -
        -
        - diff --git a/doc/html/namespaceeasywebdav.js b/doc/html/namespaceeasywebdav.js deleted file mode 100644 index db1108c06..000000000 --- a/doc/html/namespaceeasywebdav.js +++ /dev/null @@ -1,5 +0,0 @@ -var namespaceeasywebdav = -[ - [ "__version__", "namespaceeasywebdav_1_1____version____.html", null ], - [ "client", "namespaceeasywebdav_1_1client.html", "namespaceeasywebdav_1_1client" ] -]; \ No newline at end of file diff --git a/doc/html/namespaceeasywebdav_1_1____version____.html b/doc/html/namespaceeasywebdav_1_1____version____.html deleted file mode 100644 index 62070bc2d..000000000 --- a/doc/html/namespaceeasywebdav_1_1____version____.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.__version__ Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        easywebdav.__version__ Namespace Reference
        -
        -
        - - - - -

        -Variables

        string __version__ = "1.2.0"
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        string easywebdav.__version__.__version__ = "1.2.0"
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/namespaceeasywebdav_1_1client.html b/doc/html/namespaceeasywebdav_1_1client.html deleted file mode 100644 index d3edd2c62..000000000 --- a/doc/html/namespaceeasywebdav_1_1client.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - -The Red Matrix: easywebdav.client Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        easywebdav.client Namespace Reference
        -
        -
        - - - - - - - - - - -

        -Classes

        class  WebdavException
         
        class  ConnectionFailed
         
        class  OperationFailed
         
        class  Client
         
        - - - - - - - -

        -Functions

        def codestr
         
        def prop
         
        def elem2file
         
        - - - - - -

        -Variables

        int DOWNLOAD_CHUNK_SIZE_BYTES = 1
         
        tuple File = namedtuple('File', ['name', 'size', 'mtime', 'ctime', 'contenttype'])
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        def easywebdav.client.codestr ( code)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def easywebdav.client.elem2file ( elem)
        -
        - -

        Referenced by easywebdav.client.Client.ls().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def easywebdav.client.prop ( elem,
         name,
         default = None 
        )
        -
        - -

        Referenced by easywebdav.client.elem2file().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        int easywebdav.client.DOWNLOAD_CHUNK_SIZE_BYTES = 1
        -
        - -
        -
        - -
        -
        - - - - -
        tuple easywebdav.client.File = namedtuple('File', ['name', 'size', 'mtime', 'ctime', 'contenttype'])
        -
        -
        -
        -
        - diff --git a/doc/html/namespaceeasywebdav_1_1client.js b/doc/html/namespaceeasywebdav_1_1client.js deleted file mode 100644 index 7209e146e..000000000 --- a/doc/html/namespaceeasywebdav_1_1client.js +++ /dev/null @@ -1,7 +0,0 @@ -var namespaceeasywebdav_1_1client = -[ - [ "WebdavException", "classeasywebdav_1_1client_1_1WebdavException.html", null ], - [ "ConnectionFailed", "classeasywebdav_1_1client_1_1ConnectionFailed.html", null ], - [ "OperationFailed", "classeasywebdav_1_1client_1_1OperationFailed.html", "classeasywebdav_1_1client_1_1OperationFailed" ], - [ "Client", "classeasywebdav_1_1client_1_1Client.html", "classeasywebdav_1_1client_1_1Client" ] -]; \ No newline at end of file diff --git a/doc/html/namespacefriendica-to-smarty-tpl.html b/doc/html/namespacefriendica-to-smarty-tpl.html deleted file mode 100644 index dc2d9796a..000000000 --- a/doc/html/namespacefriendica-to-smarty-tpl.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - -The Red Matrix: friendica-to-smarty-tpl Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        friendica-to-smarty-tpl Namespace Reference
        -
        -
        - - - - - - - - - - -

        -Functions

        def fToSmarty
         
        def fix_element
         
        def convert
         
        def help
         
        - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

        string ldelim = '{{'
         
        string rdelim = '}}'
         
        string path = ''
         
        string outpath = path+'smarty3/'
         
        tuple files = os.listdir(path)
         
         php_tpl = True
         
        tuple filename = os.path.join(path,a_file)
         
        tuple ext = a_file.split('.')
         
        tuple f = open(filename, 'r')
         
        tuple newfilename = os.path.join(outpath,a_file)
         
        tuple outf = open(newfilename, 'w')
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        def friendica-to-smarty-tpl.convert ( filename,
         tofilename,
         php_tpl 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def friendica-to-smarty-tpl.fix_element ( element)
        -
        - -

        Referenced by convert().

        - -
        -
        - -
        -
        - - - - - - - - -
        def friendica-to-smarty-tpl.fToSmarty ( matches)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        def friendica-to-smarty-tpl.help ( pname)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.ext = a_file.split('.')
        -
        - -
        -
        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.f = open(filename, 'r')
        -
        - -
        -
        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.filename = os.path.join(path,a_file)
        -
        - -

        Referenced by FriendicaSmarty.parsed().

        - -
        -
        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.files = os.listdir(path)
        -
        - -
        -
        - -
        -
        - - - - -
        string friendica-to-smarty-tpl.ldelim = '{{'
        -
        - -

        Referenced by App.get_template_ldelim().

        - -
        -
        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.newfilename = os.path.join(outpath,a_file)
        -
        - -
        -
        - -
        -
        - - - - -
        tuple friendica-to-smarty-tpl.outf = open(newfilename, 'w')
        -
        - -
        -
        - -
        -
        - - - - -
        string friendica-to-smarty-tpl.outpath = path+'smarty3/'
        -
        - -
        -
        - -
        -
        - - - - -
        string friendica-to-smarty-tpl.path = ''
        -
        -
        - -
        -
        - - - - -
        friendica-to-smarty-tpl.php_tpl = True
        -
        - -
        -
        - -
        -
        - - - - -
        string friendica-to-smarty-tpl.rdelim = '}}'
        -
        - -

        Referenced by App.get_template_rdelim().

        - -
        -
        -
        -
        - diff --git a/doc/html/namespacemembers.html b/doc/html/namespacemembers.html deleted file mode 100644 index 07adbe418..000000000 --- a/doc/html/namespacemembers.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - -The Red Matrix: Namespace Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        Here is a list of all namespace members with links to the namespace documentation for each member:
        - -

        - _ -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - h -

        - - -

        - l -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

          -
        • VERIFY_SSL -: zotsh -
        • -
        - - -

        - z -

        -
        -
        - diff --git a/doc/html/namespacemembers_func.html b/doc/html/namespacemembers_func.html deleted file mode 100644 index 128f9adb0..000000000 --- a/doc/html/namespacemembers_func.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -The Red Matrix: Namespace Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        - diff --git a/doc/html/namespacemembers_vars.html b/doc/html/namespacemembers_vars.html deleted file mode 100644 index 61fc43e59..000000000 --- a/doc/html/namespacemembers_vars.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - -The Red Matrix: Namespace Members - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        - diff --git a/doc/html/namespaces.html b/doc/html/namespaces.html deleted file mode 100644 index 4fff3a60f..000000000 --- a/doc/html/namespaces.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - -The Red Matrix: Namespace List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Namespace List
        -
        -
        -
        Here is a list of all namespaces with brief descriptions:
        -
        -
        - diff --git a/doc/html/namespaces.js b/doc/html/namespaces.js deleted file mode 100644 index 8e5a53515..000000000 --- a/doc/html/namespaces.js +++ /dev/null @@ -1,11 +0,0 @@ -var namespaces = -[ - [ "acl_selectors", "namespaceacl__selectors.html", null ], - [ "easywebdav", "namespaceeasywebdav.html", "namespaceeasywebdav" ], - [ "Friendica", "namespaceFriendica.html", null ], - [ "friendica-to-smarty-tpl", "namespacefriendica-to-smarty-tpl.html", null ], - [ "RedMatrix", "namespaceRedMatrix.html", "namespaceRedMatrix" ], - [ "updatetpl", "namespaceupdatetpl.html", null ], - [ "util", "namespaceutil.html", null ], - [ "zotsh", "namespacezotsh.html", null ] -]; \ No newline at end of file diff --git a/doc/html/namespaceupdatetpl.html b/doc/html/namespaceupdatetpl.html deleted file mode 100644 index 4dd30a85c..000000000 --- a/doc/html/namespaceupdatetpl.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -The Red Matrix: updatetpl Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        updatetpl Namespace Reference
        -
        -
        - - - - -

        -Functions

        def help
         
        - - - - - - - - - - - -

        -Variables

        string path = ''
         
        list excludepaths = ['css', 'img', 'js', 'php', 'theme']
         
        list tplpaths = []
         
        tuple names = os.listdir(path + 'view/')
         
        tuple fnull = open(os.devnull, "w")
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        def updatetpl.help ( pname)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        list updatetpl.excludepaths = ['css', 'img', 'js', 'php', 'theme']
        -
        - -
        -
        - -
        -
        - - - - -
        tuple updatetpl.fnull = open(os.devnull, "w")
        -
        - -
        -
        - -
        -
        - - - - -
        tuple updatetpl.names = os.listdir(path + 'view/')
        -
        - -
        -
        - -
        -
        - - - - -
        string updatetpl.path = ''
        -
        - -
        -
        - -
        -
        - - - - -
        list updatetpl.tplpaths = []
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/namespaceutil.html b/doc/html/namespaceutil.html deleted file mode 100644 index 9991102cd..000000000 --- a/doc/html/namespaceutil.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: util Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        util Namespace Reference
        -
        -
        -

        Detailed Description

        -

        When I installed docblox, I had the experience that it does not generate any output at all. This script may be used to find that kind of problems with the documentation build process. If docblox generates output, use another approach for debugging.

        -

        Basically, docblox takes a list of files to build documentation from. This script assumes there is a file or set of files breaking the build when it is included in that list. It tries to calculate the smallest list containing these files. Unfortunatly, the original problem is NP-complete, so what the script does is a best guess only.

        -

        So it starts with a list of all files in the project. If that list can't be build, it cuts it in two parts and tries both parts independently. If only one of them breaks, it takes that one and tries the same independently. If both break, it assumes this is the smallest set. This assumption is not necessarily true. Maybe the smallest set consists of two files and both of them were in different parts when the list was divided, but by now it is my best guess. To make this assumption better, the list is shuffled after every step.

        -

        After that, the script tries to remove a file from the list. It tests if the list breaks and if so, it assumes that the file it removed belongs to the set of errorneous files. This is done for all files, so, in the end removing one file leads to a working doc build.

        -
        Author
        Alexander Kampmann
        -

        This function generates a comma seperated list of file names.

        -
        Parameters
        - - -
        array$filesetSet of file names
        -
        -
        -
        Returns
        string comma-seperated list of the file names
        -

        This functions runs phpdoc on the provided list of files

        -
        Parameters
        - - -
        array$filesetSet of filenames
        -
        -
        -
        Returns
        bool true, if that set can be built
        -

        This functions cuts down a fileset by removing files until it finally works. it was meant to be recursive, but php's maximum stack size is to small. So it just simulates recursion.

        -

        In that version, it does not necessarily generate the smallest set, because it may not alter the elements order enough.

        -
        Parameters
        - - - -
        array$filesetset of filenames
        int$psnumber of files in subsets
        -
        -
        -
        Returns
        array a part of $fileset, that crashes
        -
        -
        - diff --git a/doc/html/namespacezotsh.html b/doc/html/namespacezotsh.html deleted file mode 100644 index 9f4bcb947..000000000 --- a/doc/html/namespacezotsh.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - -The Red Matrix: zotsh Namespace Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zotsh Namespace Reference
        -
        -
        - - - - - - -

        -Classes

        class  CommandNotFound
         
        class  ZotSH
         
        - - - - - -

        -Functions

        def load_conf
         
        def zotsh
         
        - - - - - - - - - - - -

        -Variables

        string __version__ = "0.0.2"
         
         SERVER = None
         
         USER = None
         
         PASSWD = None
         
         VERIFY_SSL = True
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        def zotsh.load_conf ()
        -
        - -

        Referenced by zotsh().

        - -
        -
        - -
        -
        - - - - - - - -
        def zotsh.zotsh ()
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        string zotsh.__version__ = "0.0.2"
        -
        - -
        -
        - -
        -
        - - - - -
        zotsh.PASSWD = None
        -
        - -
        -
        - -
        -
        - - - - -
        zotsh.SERVER = None
        -
        - -
        -
        - -
        -
        - - - - -
        zotsh.USER = None
        -
        - -
        -
        - -
        -
        - - - - -
        zotsh.VERIFY_SSL = True
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/namespacezotsh.js b/doc/html/namespacezotsh.js deleted file mode 100644 index f0e5d271c..000000000 --- a/doc/html/namespacezotsh.js +++ /dev/null @@ -1,5 +0,0 @@ -var namespacezotsh = -[ - [ "CommandNotFound", "classzotsh_1_1CommandNotFound.html", null ], - [ "ZotSH", "classzotsh_1_1ZotSH.html", "classzotsh_1_1ZotSH" ] -]; \ No newline at end of file diff --git a/doc/html/nav_8php.html b/doc/html/nav_8php.html deleted file mode 100644 index 8c0646ae0..000000000 --- a/doc/html/nav_8php.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - -The Red Matrix: include/nav.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        nav.php File Reference
        -
        -
        - - - - - - -

        -Functions

         nav (&$a)
         
         nav_set_selected ($item)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        nav ($a)
        -
        -

        Build page header and site navigation bars

        -

        Provide a banner/logo/whatever

        -

        Display login or logout

        -

        "Home" should also take you home from an authenticated remote profile connection

        -

        The following nav links are only show to logged in users

        -

        Admin page

        -

        Provide a banner/logo/whatever

        - -

        Referenced by construct_page().

        - -
        -
        - - -
        -
        - diff --git a/doc/html/nav_8php.js b/doc/html/nav_8php.js deleted file mode 100644 index 09cec55d1..000000000 --- a/doc/html/nav_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var nav_8php = -[ - [ "nav", "nav_8php.html#a43be0df73b90647ea70947ce004e231e", null ], - [ "nav_set_selected", "nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a", null ] -]; \ No newline at end of file diff --git a/doc/html/nav_f.png b/doc/html/nav_f.png deleted file mode 100644 index 72a58a529..000000000 Binary files a/doc/html/nav_f.png and /dev/null differ diff --git a/doc/html/nav_g.png b/doc/html/nav_g.png deleted file mode 100644 index 2093a237a..000000000 Binary files a/doc/html/nav_g.png and /dev/null differ diff --git a/doc/html/nav_h.png b/doc/html/nav_h.png deleted file mode 100644 index 33389b101..000000000 Binary files a/doc/html/nav_h.png and /dev/null differ diff --git a/doc/html/navtree.css b/doc/html/navtree.css deleted file mode 100644 index 41a9cb969..000000000 --- a/doc/html/navtree.css +++ /dev/null @@ -1,143 +0,0 @@ -#nav-tree .children_ul { - margin:0; - padding:4px; -} - -#nav-tree ul { - list-style:none outside none; - margin:0px; - padding:0px; -} - -#nav-tree li { - white-space:nowrap; - margin:0px; - padding:0px; -} - -#nav-tree .plus { - margin:0px; -} - -#nav-tree .selected { - background-image: url('tab_a.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); -} - -#nav-tree img { - margin:0px; - padding:0px; - border:0px; - vertical-align: middle; -} - -#nav-tree a { - text-decoration:none; - padding:0px; - margin:0px; - outline:none; -} - -#nav-tree .label { - margin:0px; - padding:0px; - font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; -} - -#nav-tree .label a { - padding:2px; -} - -#nav-tree .selected a { - text-decoration:none; - color:#fff; -} - -#nav-tree .children_ul { - margin:0px; - padding:0px; -} - -#nav-tree .item { - margin:0px; - padding:0px; -} - -#nav-tree { - padding: 0px 0px; - background-color: #FAFAFF; - font-size:14px; - overflow:auto; -} - -#doc-content { - overflow:auto; - display:block; - padding:0px; - margin:0px; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#side-nav { - padding:0 6px 0 0; - margin: 0px; - display:block; - position: absolute; - left: 0px; - width: 250px; -} - -.ui-resizable .ui-resizable-handle { - display:block; -} - -.ui-resizable-e { - background:url("ftv2splitbar.png") repeat scroll right center transparent; - cursor:e-resize; - height:100%; - right:0; - top:0; - width:6px; -} - -.ui-resizable-handle { - display:none; - font-size:0.1px; - position:absolute; - z-index:1; -} - -#nav-tree-contents { - margin: 6px 0px 0px 0px; -} - -#nav-tree { - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#nav-sync { - position:absolute; - top:5px; - right:24px; - z-index:0; -} - -#nav-sync img { - opacity:0.3; -} - -#nav-sync img:hover { - opacity:0.9; -} - -@media print -{ - #nav-tree { display: none; } - div.ui-resizable-handle { display: none; position: relative; } -} - diff --git a/doc/html/navtree.js b/doc/html/navtree.js deleted file mode 100644 index 30d209836..000000000 --- a/doc/html/navtree.js +++ /dev/null @@ -1,547 +0,0 @@ -var NAVTREE = -[ - [ "The Red Matrix", "index.html", [ - [ "CLI config utility", "md_config.html", null ], - [ "Fresh - The Freaking REd Shell", "md_fresh.html", null ], - [ "apw", "md_README.html", null ], - [ "Todo List", "todo.html", null ], - [ "Deprecated List", "deprecated.html", null ], - [ "Namespaces", null, [ - [ "Namespace List", "namespaces.html", "namespaces" ], - [ "Namespace Members", "namespacemembers.html", [ - [ "All", "namespacemembers.html", null ], - [ "Functions", "namespacemembers_func.html", null ], - [ "Variables", "namespacemembers_vars.html", null ] - ] ] - ] ], - [ "Classes", null, [ - [ "Class List", "annotated.html", "annotated" ], - [ "Class Index", "classes.html", null ], - [ "Class Hierarchy", "hierarchy.html", "hierarchy" ], - [ "Class Members", "functions.html", [ - [ "All", "functions.html", "functions_dup" ], - [ "Functions", "functions_func.html", "functions_func" ], - [ "Variables", "functions_vars.html", null ] - ] ] - ] ], - [ "Files", null, [ - [ "File List", "files.html", "files" ], - [ "File Members", "globals.html", [ - [ "All", "globals.html", "globals_dup" ], - [ "Functions", "globals_func.html", "globals_func" ], - [ "Variables", "globals_vars.html", "globals_vars" ] - ] ] - ] ] - ] ] -]; - -var NAVTREEINDEX = -[ -"BS-Default_8php.html", -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", -"classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7", -"classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e", -"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b", -"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a", -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3", -"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92", -"pdledit_8php.html", -"sitelist_8php.html", -"vote_8php.html" -]; - -var SYNCONMSG = 'click to disable panel synchronisation'; -var SYNCOFFMSG = 'click to enable panel synchronisation'; -var navTreeSubIndices = new Array(); - -function getData(varName) -{ - var i = varName.lastIndexOf('/'); - var n = i>=0 ? varName.substring(i+1) : varName; - return eval(n.replace(/\-/g,'_')); -} - -function stripPath(uri) -{ - return uri.substring(uri.lastIndexOf('/')+1); -} - -function stripPath2(uri) -{ - var i = uri.lastIndexOf('/'); - var s = uri.substring(i+1); - var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); - return m ? uri.substring(i-6) : s; -} - -function localStorageSupported() -{ - try { - return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; - } - catch(e) { - return false; - } -} - - -function storeLink(link) -{ - if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { - window.localStorage.setItem('navpath',link); - } -} - -function deleteLink() -{ - if (localStorageSupported()) { - window.localStorage.setItem('navpath',''); - } -} - -function cachedLink() -{ - if (localStorageSupported()) { - return window.localStorage.getItem('navpath'); - } else { - return ''; - } -} - -function getScript(scriptName,func,show) -{ - var head = document.getElementsByTagName("head")[0]; - var script = document.createElement('script'); - script.id = scriptName; - script.type = 'text/javascript'; - script.onload = func; - script.src = scriptName+'.js'; - if ($.browser.msie && $.browser.version<=8) { - // script.onload does not work with older versions of IE - script.onreadystatechange = function() { - if (script.readyState=='complete' || script.readyState=='loaded') { - func(); if (show) showRoot(); - } - } - } - head.appendChild(script); -} - -function createIndent(o,domNode,node,level) -{ - var level=-1; - var n = node; - while (n.parentNode) { level++; n=n.parentNode; } - var imgNode = document.createElement("img"); - imgNode.style.paddingLeft=(16*level).toString()+'px'; - imgNode.width = 16; - imgNode.height = 22; - imgNode.border = 0; - if (node.childrenData) { - node.plus_img = imgNode; - node.expandToggle = document.createElement("a"); - node.expandToggle.href = "javascript:void(0)"; - node.expandToggle.onclick = function() { - if (node.expanded) { - $(node.getChildrenUL()).slideUp("fast"); - node.plus_img.src = node.relpath+"ftv2pnode.png"; - node.expanded = false; - } else { - expandNode(o, node, false, false); - } - } - node.expandToggle.appendChild(imgNode); - domNode.appendChild(node.expandToggle); - imgNode.src = node.relpath+"ftv2pnode.png"; - } else { - imgNode.src = node.relpath+"ftv2node.png"; - domNode.appendChild(imgNode); - } -} - -var animationInProgress = false; - -function gotoAnchor(anchor,aname,updateLocation) -{ - var pos, docContent = $('#doc-content'); - if (anchor.parent().attr('class')=='memItemLeft' || - anchor.parent().attr('class')=='fieldtype' || - anchor.parent().is(':header')) - { - pos = anchor.parent().position().top; - } else if (anchor.position()) { - pos = anchor.position().top; - } - if (pos) { - var dist = Math.abs(Math.min( - pos-docContent.offset().top, - docContent[0].scrollHeight- - docContent.height()-docContent.scrollTop())); - animationInProgress=true; - docContent.animate({ - scrollTop: pos + docContent.scrollTop() - docContent.offset().top - },Math.max(50,Math.min(500,dist)),function(){ - if (updateLocation) window.location.href=aname; - animationInProgress=false; - }); - } -} - -function newNode(o, po, text, link, childrenData, lastNode) -{ - var node = new Object(); - node.children = Array(); - node.childrenData = childrenData; - node.depth = po.depth + 1; - node.relpath = po.relpath; - node.isLast = lastNode; - - node.li = document.createElement("li"); - po.getChildrenUL().appendChild(node.li); - node.parentNode = po; - - node.itemDiv = document.createElement("div"); - node.itemDiv.className = "item"; - - node.labelSpan = document.createElement("span"); - node.labelSpan.className = "label"; - - createIndent(o,node.itemDiv,node,0); - node.itemDiv.appendChild(node.labelSpan); - node.li.appendChild(node.itemDiv); - - var a = document.createElement("a"); - node.labelSpan.appendChild(a); - node.label = document.createTextNode(text); - node.expanded = false; - a.appendChild(node.label); - if (link) { - var url; - if (link.substring(0,1)=='^') { - url = link.substring(1); - link = url; - } else { - url = node.relpath+link; - } - a.className = stripPath(link.replace('#',':')); - if (link.indexOf('#')!=-1) { - var aname = '#'+link.split('#')[1]; - var srcPage = stripPath($(location).attr('pathname')); - var targetPage = stripPath(link.split('#')[0]); - a.href = srcPage!=targetPage ? url : "javascript:void(0)"; - a.onclick = function(){ - storeLink(link); - if (!$(a).parent().parent().hasClass('selected')) - { - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - $(a).parent().parent().addClass('selected'); - $(a).parent().parent().attr('id','selected'); - } - var anchor = $(aname); - gotoAnchor(anchor,aname,true); - }; - } else { - a.href = url; - a.onclick = function() { storeLink(link); } - } - } else { - if (childrenData != null) - { - a.className = "nolink"; - a.href = "javascript:void(0)"; - a.onclick = node.expandToggle.onclick; - } - } - - node.childrenUL = null; - node.getChildrenUL = function() { - if (!node.childrenUL) { - node.childrenUL = document.createElement("ul"); - node.childrenUL.className = "children_ul"; - node.childrenUL.style.display = "none"; - node.li.appendChild(node.childrenUL); - } - return node.childrenUL; - }; - - return node; -} - -function showRoot() -{ - var headerHeight = $("#top").height(); - var footerHeight = $("#nav-path").height(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - (function (){ // retry until we can scroll to the selected item - try { - var navtree=$('#nav-tree'); - navtree.scrollTo('#selected',0,{offset:-windowHeight/2}); - } catch (err) { - setTimeout(arguments.callee, 0); - } - })(); -} - -function expandNode(o, node, imm, showRoot) -{ - if (node.childrenData && !node.expanded) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - expandNode(o, node, imm, showRoot); - }, showRoot); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } if (imm || ($.browser.msie && $.browser.version>8)) { - // somehow slideDown jumps to the start of tree for IE9 :-( - $(node.getChildrenUL()).show(); - } else { - $(node.getChildrenUL()).slideDown("fast"); - } - if (node.isLast) { - node.plus_img.src = node.relpath+"ftv2mlastnode.png"; - } else { - node.plus_img.src = node.relpath+"ftv2mnode.png"; - } - node.expanded = true; - } - } -} - -function glowEffect(n,duration) -{ - n.addClass('glow').delay(duration).queue(function(next){ - $(this).removeClass('glow');next(); - }); -} - -function highlightAnchor() -{ - var aname = $(location).attr('hash'); - var anchor = $(aname); - if (anchor.parent().attr('class')=='memItemLeft'){ - var rows = $('.memberdecls tr[class$="'+ - window.location.hash.substring(1)+'"]'); - glowEffect(rows.children(),300); // member without details - } else if (anchor.parents().slice(2).prop('tagName')=='TR') { - glowEffect(anchor.parents('div.memitem'),1000); // enum value - } else if (anchor.parent().attr('class')=='fieldtype'){ - glowEffect(anchor.parent().parent(),1000); // struct field - } else if (anchor.parent().is(":header")) { - glowEffect(anchor.parent(),1000); // section header - } else { - glowEffect(anchor.next(),1000); // normal member - } - gotoAnchor(anchor,aname,false); -} - -function selectAndHighlight(hash,n) -{ - var a; - if (hash) { - var link=stripPath($(location).attr('pathname'))+':'+hash.substring(1); - a=$('.item a[class$="'+link+'"]'); - } - if (a && a.length) { - a.parent().parent().addClass('selected'); - a.parent().parent().attr('id','selected'); - highlightAnchor(); - } else if (n) { - $(n.itemDiv).addClass('selected'); - $(n.itemDiv).attr('id','selected'); - } - if ($('#nav-tree-contents .item:first').hasClass('selected')) { - $('#nav-sync').css('top','30px'); - } else { - $('#nav-sync').css('top','5px'); - } - showRoot(); -} - -function showNode(o, node, index, hash) -{ - if (node && node.childrenData) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - showNode(o,node,index,hash); - },true); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).show(); - if (node.isLast) { - node.plus_img.src = node.relpath+"ftv2mlastnode.png"; - } else { - node.plus_img.src = node.relpath+"ftv2mnode.png"; - } - node.expanded = true; - var n = node.children[o.breadcrumbs[index]]; - if (index+11) hash = '#'+parts[1]; - else hash=''; - } - if (hash.match(/^#l\d+$/)) { - var anchor=$('a[name='+hash.substring(1)+']'); - glowEffect(anchor.parent(),1000); // line number - hash=''; // strip line number anchors - //root=root.replace(/_source\./,'.'); // source link to doc link - } - var url=root+hash; - var i=-1; - while (NAVTREEINDEX[i+1]<=url) i++; - if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath) - } else { - getScript(relpath+'navtreeindex'+i,function(){ - navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath); - } - },true); - } -} - -function showSyncOff(n,relpath) -{ - n.html(''); -} - -function showSyncOn(n,relpath) -{ - n.html(''); -} - -function toggleSyncButton(relpath) -{ - var navSync = $('#nav-sync'); - if (navSync.hasClass('sync')) { - navSync.removeClass('sync'); - showSyncOff(navSync,relpath); - storeLink(stripPath2($(location).attr('pathname'))+$(location).attr('hash')); - } else { - navSync.addClass('sync'); - showSyncOn(navSync,relpath); - deleteLink(); - } -} - -function initNavTree(toroot,relpath) -{ - var o = new Object(); - o.toroot = toroot; - o.node = new Object(); - o.node.li = document.getElementById("nav-tree-contents"); - o.node.childrenData = NAVTREE; - o.node.children = new Array(); - o.node.childrenUL = document.createElement("ul"); - o.node.getChildrenUL = function() { return o.node.childrenUL; }; - o.node.li.appendChild(o.node.childrenUL); - o.node.depth = 0; - o.node.relpath = relpath; - o.node.expanded = false; - o.node.isLast = true; - o.node.plus_img = document.createElement("img"); - o.node.plus_img.src = relpath+"ftv2pnode.png"; - o.node.plus_img.width = 16; - o.node.plus_img.height = 22; - - if (localStorageSupported()) { - var navSync = $('#nav-sync'); - if (cachedLink()) { - showSyncOff(navSync,relpath); - navSync.removeClass('sync'); - } else { - showSyncOn(navSync,relpath); - } - navSync.click(function(){ toggleSyncButton(relpath); }); - } - - navTo(o,toroot,window.location.hash,relpath); - - $(window).bind('hashchange', function(){ - if (window.location.hash && window.location.hash.length>1){ - var a; - if ($(location).attr('hash')){ - var clslink=stripPath($(location).attr('pathname'))+':'+ - $(location).attr('hash').substring(1); - a=$('.item a[class$="'+clslink+'"]'); - } - if (a==null || !$(a).parent().parent().hasClass('selected')){ - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - } - var link=stripPath2($(location).attr('pathname')); - navTo(o,link,$(location).attr('hash'),relpath); - } else if (!animationInProgress) { - $('#doc-content').scrollTop(0); - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - navTo(o,toroot,window.location.hash,relpath); - } - }) - - $(window).load(showRoot); -} - diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js deleted file mode 100644 index 443139db8..000000000 --- a/doc/html/navtreeindex0.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX0 = -{ -"BS-Default_8php.html":[7,0,4,1,2,1,1], -"BaseObject_8php.html":[7,0,1,11], -"Contact_8php.html":[7,0,1,21], -"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[7,0,1,21,2], -"Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8":[7,0,1,21,9], -"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[7,0,1,21,8], -"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[7,0,1,21,11], -"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[7,0,1,21,14], -"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[7,0,1,21,6], -"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[7,0,1,21,5], -"Contact_8php.html#a4e8af0f0525161da74583c04b8b03097":[7,0,1,21,4], -"Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33":[7,0,1,21,3], -"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[7,0,1,21,15], -"Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713":[7,0,1,21,10], -"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[7,0,1,21,7], -"Contact_8php.html#ab5895b75a3b2abdddf1cb351a8c6b58b":[7,0,1,21,13], -"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[7,0,1,21,12], -"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[7,0,1,21,1], -"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[7,0,1,21,0], -"ConversationObject_8php.html":[7,0,1,25], -"ITemplateEngine_8php.html":[7,0,1,47], -"Importer_8php.html":[7,0,1,1,0], -"ItemObject_8php.html":[7,0,1,46], -"ProtoDriver_8php.html":[7,0,1,67], -"RedBasicAuth_8php.html":[7,0,1,3,0], -"RedBrowser_8php.html":[7,0,1,3,1], -"RedDirectory_8php.html":[7,0,1,3,2], -"RedFile_8php.html":[7,0,1,3,3], -"____init_____8py.html":[7,0,3,1,0,0], -"____init_____8py.html#a5c8aedf2077889acfc76e11d3cb0dc77":[7,0,3,1,0,0,0], -"____version_____8py.html":[7,0,3,1,0,1], -"____version_____8py.html#a79e00ae40b23fd17c38e3fb7a0feeddb":[7,0,3,1,0,1,0], -"__well__known_8php.html":[7,0,2,0], -"__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0":[7,0,2,0,0], -"account_8php.html":[7,0,1,4], -"account_8php.html#a014de2d5d5c9785de5bf547a485822fa":[7,0,1,4,9], -"account_8php.html#a030cec6793b909c439c0336ba39b1571":[7,0,1,4,11], -"account_8php.html#a0d183a3cb4c67a0f5e906811df7a1fc9":[7,0,1,4,8], -"account_8php.html#a141fe579c351c78209d425473f978eb5":[7,0,1,4,7], -"account_8php.html#a144b4891022567668375b58ea61cfff0":[7,0,1,4,6], -"account_8php.html#a4328c40ee4b3d68630cf1ebb7b9d4d89":[7,0,1,4,1], -"account_8php.html#a43e3042b2723d76915a030bac3c668b6":[7,0,1,4,2], -"account_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[7,0,1,4,14], -"account_8php.html#a754d7f53b3abc557b753c057dc4e021d":[7,0,1,4,13], -"account_8php.html#a901657dd078e070516cf97285e0bada7":[7,0,1,4,15], -"account_8php.html#a905b54e10704b283ac64680a8abc0971":[7,0,1,4,12], -"account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f":[7,0,1,4,3], -"account_8php.html#aa9c29c497c17d8f9344dce8631ad8761":[7,0,1,4,10], -"account_8php.html#aaff7720423417a4333697894ffd9ddeb":[7,0,1,4,5], -"account_8php.html#ac1653efba62493b9d87513e1b6c04c83":[7,0,1,4,18], -"account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1":[7,0,1,4,16], -"account_8php.html#ac70e1d198246b029a3cedb7d6f7868bd":[7,0,1,4,0], -"account_8php.html#acd6b8d2124ba5ea4f4794d2c58ae8bf5":[7,0,1,4,19], -"account_8php.html#ad07be417ac7eda939768804106ddea3d":[7,0,1,4,17], -"account_8php.html#ae052bd5558847bd38e89c213561a9771":[7,0,1,4,4], -"achievements_8php.html":[7,0,2,1], -"achievements_8php.html#a35ae04ada0e227d19671f289a32fb30e":[7,0,2,1,0], -"acl_8php.html":[7,0,2,2], -"acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f":[7,0,2,2,1], -"acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a":[7,0,2,2,0], -"acl__selectors_8php.html":[7,0,1,5], -"acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91":[7,0,1,5,0], -"acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0":[7,0,1,5,2], -"acl__selectors_8php.html#ad25bba63a51a2b0b5b463efae50df528":[7,0,1,5,3], -"acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e":[7,0,1,5,1], -"activities_8php.html":[7,0,1,6], -"activities_8php.html#a80134e807719b3c54aba971958d2e132":[7,0,1,6,0], -"admin_8php.html":[7,0,2,3], -"admin_8php.html#a1d1362698af14d209aa3a0fb655551dd":[7,0,2,3,6], -"admin_8php.html#a233b7c8c31776b7020532003c6e44e1c":[7,0,2,3,7], -"admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057":[7,0,2,3,10], -"admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89":[7,0,2,3,11], -"admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a":[7,0,2,3,9], -"admin_8php.html#a42e628f367c168add8013352ac74d33f":[7,0,2,3,2], -"admin_8php.html#a54128076986ba80c4a103de3fc3e19a8":[7,0,2,3,8], -"admin_8php.html#a5a696706a3869800e65fb365214241b7":[7,0,2,3,17], -"admin_8php.html#a60ba9783ad14545814919970bc3fb725":[7,0,2,3,5], -"admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2":[7,0,2,3,16], -"admin_8php.html#a6943543f3138f6ee182cb701f415d1cc":[7,0,2,3,4], -"admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade":[7,0,2,3,3], -"admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e":[7,0,2,3,12], -"admin_8php.html#ac6e95b920b5abd030cc522964987087a":[7,0,2,3,14], -"admin_8php.html#acf51f5837a7427832144c2bf7308ada3":[7,0,2,3,18], -"admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4":[7,0,2,3,20], -"admin_8php.html#ad6f87a764fd35f522c7b4c351d7878ec":[7,0,2,3,1], -"admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f":[7,0,2,3,13], -"admin_8php.html#ae46311a3fefc21abc838a26e91789de6":[7,0,2,3,19], -"admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb":[7,0,2,3,15], -"admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[7,0,2,3,21], -"admin_8php.html#afef415e4011607fbb665610441595015":[7,0,2,3,0], -"annotated.html":[6,0], -"appman_8php.html":[7,0,2,5], -"appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39":[7,0,2,5,1], -"appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f":[7,0,2,5,0], -"auth_8php.html":[7,0,1,10], -"auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[7,0,1,10,0], -"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[7,0,1,10,3], -"auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2":[7,0,1,10,2], -"auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f":[7,0,1,10,4], -"auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1":[7,0,1,10,1], -"bb2diaspora_8php.html":[7,0,1,12], -"bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93":[7,0,1,12,13], -"bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863":[7,0,1,12,9], -"bb2diaspora_8php.html#a4a27604f0745f1efda672966aaca9a3b":[7,0,1,12,6], -"bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2":[7,0,1,12,10], -"bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c":[7,0,1,12,0], -"bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34":[7,0,1,12,3], -"bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747":[7,0,1,12,14], -"bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4":[7,0,1,12,7], -"bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083":[7,0,1,12,2], -"bb2diaspora_8php.html#ab27761069ea1275f0fc4c543099c5519":[7,0,1,12,1], -"bb2diaspora_8php.html#ab61b4f8c065e97b151411858bb2f209a":[7,0,1,12,12], -"bb2diaspora_8php.html#ac9061ee10fcfcdac69566b649614e625":[7,0,1,12,5], -"bb2diaspora_8php.html#ad033be99e87a2aaa05e569c68f30792d":[7,0,1,12,11], -"bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[7,0,1,12,4], -"bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[7,0,1,12,8], -"bbcode_8php.html":[7,0,1,13], -"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[7,0,1,13,14], -"bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24":[7,0,1,13,2], -"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[7,0,1,13,13], -"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[7,0,1,13,10], -"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[7,0,1,13,11], -"bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd":[7,0,1,13,1], -"bbcode_8php.html#a35f52b106a3d522f1c0783e78223f402":[7,0,1,13,8], -"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[7,0,1,13,18], -"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[7,0,1,13,9], -"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[7,0,1,13,16], -"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[7,0,1,13,17], -"bbcode_8php.html#a583bf904481db2623ead8cbd28f16d32":[7,0,1,13,0], -"bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d":[7,0,1,13,3], -"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[7,0,1,13,15], -"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[7,0,1,13,12], -"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[7,0,1,13,7], -"bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9":[7,0,1,13,6], -"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[7,0,1,13,19], -"bbcode_8php.html#aaaae933e2563558db886b820075c93c8":[7,0,1,13,5], -"bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2":[7,0,1,13,4], -"block_8php.html":[7,0,2,8], -"block_8php.html#a8a82a470acdfbc7a8e749509caeeea45":[7,0,2,8,0], -"block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[7,0,2,8,1], -"blocks_8php.html":[7,0,2,9], -"blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[7,0,2,9,0], -"blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9":[7,0,2,9,1], -"boot_8php.html":[7,0,5], -"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[7,0,5,163], -"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[7,0,5,324], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[7,0,5,176], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[7,0,5,282], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[7,0,5,155], -"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[7,0,5,64], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[7,0,5,195], -"boot_8php.html#a0450389f24c632906fbc24347700a543":[7,0,5,55], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[7,0,5,127], -"boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9":[7,0,5,17], -"boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[7,0,5,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[7,0,5,237], -"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[7,0,5,85], -"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[7,0,5,315], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[7,0,5,199], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[7,0,5,302], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[7,0,5,298], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[7,0,5,301], -"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[7,0,5,24], -"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[7,0,5,77], -"boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[7,0,5,15], -"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[7,0,5,97], -"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[7,0,5,48], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[7,0,5,287], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[7,0,5,157], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[7,0,5,286], -"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[7,0,5,101], -"boot_8php.html#a137f161c8ca8d51ef58f2e1b6781905b":[7,0,5,73], -"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[7,0,5,98], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[7,0,5,226], -"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[7,0,5,80], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[7,0,5,175], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[7,0,5,171], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[7,0,5,198], -"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[7,0,5,165], -"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[7,0,5,314], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[7,0,5,321], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[7,0,5,276], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[7,0,5,323], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[7,0,5,202], -"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[7,0,5,96], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[7,0,5,252], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[7,0,5,129], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[7,0,5,182], -"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[7,0,5,246], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[7,0,5,219], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[7,0,5,278], -"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[7,0,5,49], -"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[7,0,5,23], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[7,0,5,122], -"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[7,0,5,112], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[7,0,5,290], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[7,0,5,222], -"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[7,0,5,103], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[7,0,5,156], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[7,0,5,250], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[7,0,5,130], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[7,0,5,274], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[7,0,5,218], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[7,0,5,152], -"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[7,0,5,86], -"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[7,0,5,93], -"boot_8php.html#a329400dcb29897cdaae3020109272285":[7,0,5,18], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[7,0,5,257], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[7,0,5,169], -"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[7,0,5,52], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[7,0,5,145], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[7,0,5,184], -"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[7,0,5,234], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[7,0,5,328], -"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[7,0,5,313], -"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[7,0,5,116], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[7,0,5,207], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[7,0,5,133], -"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[7,0,5,138], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[7,0,5,327], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[7,0,5,204], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[7,0,5,248], -"boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[7,0,5,12], -"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[7,0,5,78], -"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[7,0,5,110], -"boot_8php.html#a3fff33eae4da657d433bafedc55cb2c5":[7,0,5,74], -"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[7,0,5,62], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[7,0,5,159], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[7,0,5,241], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[7,0,5,217], -"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[7,0,5,109], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[7,0,5,192], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[7,0,5,179], -"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[7,0,5,91], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[7,0,5,185], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[7,0,5,299], -"boot_8php.html#a476c499e15caf75972fed134a8f23b2e":[7,0,5,45], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[7,0,5,205], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[7,0,5,128], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[7,0,5,268], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[7,0,5,203], -"boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[7,0,5,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[7,0,5,239], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[7,0,5,68], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[7,0,5,262], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[7,0,5,229], -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[7,0,5,32], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[7,0,5,183], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[7,0,5,50], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[7,0,5,102] -}; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js deleted file mode 100644 index ba8c76e2b..000000000 --- a/doc/html/navtreeindex1.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX1 = -{ -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[7,0,5,40], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[7,0,5,221], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[7,0,5,261], -"boot_8php.html#a59717d02602a4babf2a54da8b33d93a5":[7,0,5,44], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[7,0,5,325], -"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[7,0,5,22], -"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[7,0,5,79], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[7,0,5,211], -"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[7,0,5,99], -"boot_8php.html#a5d8d55cf192d1d50ad188411d58bd404":[7,0,5,75], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[7,0,5,190], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[7,0,5,235], -"boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[7,0,5,37], -"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[7,0,5,20], -"boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[7,0,5,27], -"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[7,0,5,95], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[7,0,5,126], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[7,0,5,295], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[7,0,5,196], -"boot_8php.html#a670c35028dda5a20dfdb48bb863253a5":[7,0,5,143], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[7,0,5,167], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[7,0,5,170], -"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[7,0,5,54], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[7,0,5,173], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[7,0,5,280], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[7,0,5,265], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[7,0,5,259], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[7,0,5,123], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[7,0,5,113], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[7,0,5,245], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[7,0,5,154], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[7,0,5,240], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[7,0,5,124], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[7,0,5,279], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[7,0,5,189], -"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[7,0,5,31], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[7,0,5,212], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[7,0,5,161], -"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[7,0,5,92], -"boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[7,0,5,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[7,0,5,303], -"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[7,0,5,312], -"boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[7,0,5,4], -"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[7,0,5,94], -"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[7,0,5,107], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[7,0,5,270], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[7,0,5,139], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[7,0,5,83], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[7,0,5,160], -"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[7,0,5,310], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[7,0,5,191], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[7,0,5,88], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[7,0,5,131], -"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[7,0,5,69], -"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[7,0,5,318], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[7,0,5,193], -"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[7,0,5,56], -"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[7,0,5,59], -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[7,0,5,104], -"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[7,0,5,142], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[7,0,5,232], -"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[7,0,5,63], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[7,0,5,136], -"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[7,0,5,67], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[7,0,5,243], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[7,0,5,150], -"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[7,0,5,141], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[7,0,5,294], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[7,0,5,293], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[7,0,5,210], -"boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[7,0,5,16], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[7,0,5,120], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[7,0,5,263], -"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[7,0,5,115], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[7,0,5,153], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[7,0,5,147], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[7,0,5,272], -"boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c":[7,0,5,72], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[7,0,5,322], -"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[7,0,5,266], -"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[7,0,5,36], -"boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[7,0,5,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[7,0,5,174], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[7,0,5,151], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[7,0,5,149], -"boot_8php.html#a9687c702656af105e9a09048c21aec4c":[7,0,5,90], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[7,0,5,306], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[7,0,5,277], -"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[7,0,5,19], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[7,0,5,224], -"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[7,0,5,316], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[7,0,5,264], -"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[7,0,5,58], -"boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[7,0,5,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[7,0,5,255], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[7,0,5,225], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[7,0,5,320], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[7,0,5,296], -"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[7,0,5,308], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[7,0,5,254], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[7,0,5,213], -"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[7,0,5,28], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[7,0,5,233], -"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[7,0,5,53], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[7,0,5,181], -"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[7,0,5,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[7,0,5,178], -"boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17":[7,0,5,21], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[7,0,5,135], -"boot_8php.html#aa726114f13c1119ae77c3464d6afeaed":[7,0,5,87], -"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[7,0,5,106], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[7,0,5,117], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[7,0,5,260], -"boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb":[7,0,5,76], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[7,0,5,242], -"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[7,0,5,84], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[7,0,5,216], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[7,0,5,140], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[7,0,5,244], -"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[7,0,5,38], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[7,0,5,238], -"boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f":[7,0,5,267], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[7,0,5,269], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[7,0,5,209], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[7,0,5,249], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[7,0,5,134], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[7,0,5,166], -"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[7,0,5,65], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[7,0,5,227], -"boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3":[7,0,5,71], -"boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[7,0,5,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[7,0,5,119], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[7,0,5,305], -"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[7,0,5,46], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[7,0,5,273], -"boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[7,0,5,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[7,0,5,300], -"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[7,0,5,82], -"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[7,0,5,137], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[7,0,5,118], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[7,0,5,148], -"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[7,0,5,26], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[7,0,5,194], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[7,0,5,271], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[7,0,5,158], -"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[7,0,5,114], -"boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[7,0,5,29], -"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[7,0,5,42], -"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[7,0,5,66], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[7,0,5,307], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[7,0,5,144], -"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[7,0,5,309], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[7,0,5,146], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[7,0,5,223], -"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[7,0,5,41], -"boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[7,0,5,13], -"boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[7,0,5,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[7,0,5,197], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[7,0,5,319], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[7,0,5,256], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[7,0,5,292], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[7,0,5,230], -"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[7,0,5,81], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[7,0,5,177], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[7,0,5,187], -"boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[7,0,5,10], -"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[7,0,5,89], -"boot_8php.html#ad34c1547020a305915bcc39707744690":[7,0,5,105], -"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[7,0,5,34], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[7,0,5,251], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[7,0,5,281], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[7,0,5,275], -"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[7,0,5,311], -"boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458":[7,0,5,39], -"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[7,0,5,111], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[7,0,5,162], -"boot_8php.html#adb4c9bd011f9aaeb253742da18373b64":[7,0,5,231], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[7,0,5,284], -"boot_8php.html#add517a0958ac684792c62142a3877f81":[7,0,5,47], -"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[7,0,5,25], -"boot_8php.html#ae09767b94688657978ff9366ec63684b":[7,0,5,317], -"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[7,0,5,51], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[7,0,5,125], -"boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb":[7,0,5,33], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[7,0,5,291], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[7,0,5,206], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[7,0,5,180], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[7,0,5,214], -"boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[7,0,5,43], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[7,0,5,304], -"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[7,0,5,30], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[7,0,5,297], -"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[7,0,5,60], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[7,0,5,253], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[7,0,5,285], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[7,0,5,188], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[7,0,5,121], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[7,0,5,200], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[7,0,5,215], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[7,0,5,164], -"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[7,0,5,132], -"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[7,0,5,35], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[7,0,5,288], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[7,0,5,208], -"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[7,0,5,70], -"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[7,0,5,61], -"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[7,0,5,258], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[7,0,5,168], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[7,0,5,228], -"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[7,0,5,186], -"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[7,0,5,108], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[7,0,5,283], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[7,0,5,220], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[7,0,5,201], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[7,0,5,289], -"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[7,0,5,57], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[7,0,5,236], -"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[7,0,5,100], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[7,0,5,172], -"boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[7,0,5,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[7,0,5,326], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[7,0,5,247], -"boxy_8php.html":[7,0,4,1,2,1,0], -"cache_8php.html":[7,0,1,15], -"channel_8php.html":[7,0,2,11], -"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[7,0,2,11,0], -"channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[7,0,2,11,1], -"chanview_8php.html":[7,0,2,12], -"chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b":[7,0,2,12,0], -"chatsvc_8php.html":[7,0,2,14], -"chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116":[7,0,2,14,1], -"chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9":[7,0,2,14,0], -"chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03":[7,0,2,14,2], -"choklet_8php.html":[7,0,4,0,0], -"classApp.html":[6,0,8], -"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[6,0,8,51], -"classApp.html#a050b0696118da47e8b30859ad1a2c149":[6,0,8,38], -"classApp.html#a084e03c77686d8c13390fef3f7428a2b":[6,0,8,5], -"classApp.html#a08bc87aff64f39fbc084e9d6545cee4d":[6,0,8,2], -"classApp.html#a08c24d6a6fc52fcc784b0f765f13b820":[6,0,8,71], -"classApp.html#a08f0537964d98958d218066364cff785":[6,0,8,1], -"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[6,0,8,46], -"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[6,0,8,56], -"classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[6,0,8,30], -"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[6,0,8,75], -"classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3":[6,0,8,32], -"classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[6,0,8,69], -"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[6,0,8,57], -"classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2":[6,0,8,8], -"classApp.html#a1f60d19d47021629faac7a0a6d917e94":[6,0,8,55] -}; diff --git a/doc/html/navtreeindex10.js b/doc/html/navtreeindex10.js deleted file mode 100644 index 66df60907..000000000 --- a/doc/html/navtreeindex10.js +++ /dev/null @@ -1,112 +0,0 @@ -var NAVTREEINDEX10 = -{ -"vote_8php.html":[7,0,2,141], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[7,0,2,141,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[7,0,2,141,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[7,0,2,141,1], -"wall__attach_8php.html":[7,0,2,142], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[7,0,2,142,0], -"wall__upload_8php.html":[7,0,2,143], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[7,0,2,143,0], -"webfinger_8php.html":[7,0,2,144], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[7,0,2,144,0], -"webpages_8php.html":[7,0,2,145], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[7,0,2,145,0], -"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[7,0,2,145,1], -"wfinger_8php.html":[7,0,2,146], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[7,0,2,146,0], -"widedarkness_8php.html":[7,0,4,1,0,2,10], -"widgets_8php.html":[7,0,1,82], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[7,0,1,82,12], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[7,0,1,82,31], -"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[7,0,1,82,3], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[7,0,1,82,9], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[7,0,1,82,10], -"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[7,0,1,82,17], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[7,0,1,82,19], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[7,0,1,82,20], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[7,0,1,82,6], -"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[7,0,1,82,30], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[7,0,1,82,13], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[7,0,1,82,32], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[7,0,1,82,22], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[7,0,1,82,16], -"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[7,0,1,82,2], -"widgets_8php.html#a7d0724165067077ff46484e4610e4323":[7,0,1,82,27], -"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[7,0,1,82,26], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[7,0,1,82,28], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[7,0,1,82,11], -"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[7,0,1,82,21], -"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[7,0,1,82,7], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[7,0,1,82,8], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[7,0,1,82,29], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[7,0,1,82,24], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[7,0,1,82,34], -"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[7,0,1,82,1], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[7,0,1,82,15], -"widgets_8php.html#add9b24d3304e529a7975e96122315554":[7,0,1,82,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[7,0,1,82,14], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[7,0,1,82,33], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[7,0,1,82,5], -"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[7,0,1,82,23], -"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[7,0,1,82,4], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[7,0,1,82,18], -"widgets_8php.html#afc7a579877414f4eb6f59698d3f69492":[7,0,1,82,25], -"xchan_8php.html":[7,0,2,147], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[7,0,2,147,0], -"xpoco_8php.html":[7,0,2,148], -"xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2":[7,0,2,148,0], -"xrd_8php.html":[7,0,2,149], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[7,0,2,149,0], -"xref_8php.html":[7,0,2,150], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[7,0,2,150,0], -"zfinger_8php.html":[7,0,2,151], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[7,0,2,151,0], -"zot_8php.html":[7,0,1,83], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[7,0,1,83,16], -"zot_8php.html#a084c581d534e7e3b759488b46602288f":[7,0,1,83,21], -"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[7,0,1,83,11], -"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[7,0,1,83,9], -"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[7,0,1,83,6], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[7,0,1,83,7], -"zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b":[7,0,1,83,2], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[7,0,1,83,19], -"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[7,0,1,83,29], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[7,0,1,83,5], -"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[7,0,1,83,8], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[7,0,1,83,26], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[7,0,1,83,32], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[7,0,1,83,23], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[7,0,1,83,0], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[7,0,1,83,31], -"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[7,0,1,83,3], -"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[7,0,1,83,12], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[7,0,1,83,30], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[7,0,1,83,14], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[7,0,1,83,13], -"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[7,0,1,83,1], -"zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7":[7,0,1,83,24], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[7,0,1,83,17], -"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[7,0,1,83,18], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[7,0,1,83,28], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[7,0,1,83,20], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[7,0,1,83,33], -"zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181":[7,0,1,83,15], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[7,0,1,83,10], -"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[7,0,1,83,4], -"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[7,0,1,83,22], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[7,0,1,83,25], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[7,0,1,83,27], -"zotfeed_8php.html":[7,0,2,152], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[7,0,2,152,0], -"zotsh_8py.html":[7,0,3,1,1], -"zotsh_8py.html#a0004a83d69a4b175b6829d8377305df2":[7,0,3,1,1,3], -"zotsh_8py.html#a12660918ec1a79487c98172e0d74d064":[7,0,3,1,1,7], -"zotsh_8py.html#a31d85cca46babd5138e15a19167617b1":[7,0,3,1,1,4], -"zotsh_8py.html#a562892f8907e608886f70a872671c0b5":[7,0,3,1,1,2], -"zotsh_8py.html#a701660e74baf39d745d202f282240f3c":[7,0,3,1,1,6], -"zotsh_8py.html#a9b17c9ddf6c3b49c00d74ba46f54398e":[7,0,3,1,1,8], -"zotsh_8py.html#af095a954e499000ad500a47ebea3f3ce":[7,0,3,1,1,5], -"zping_8php.html":[7,0,2,153], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[7,0,2,153,0] -}; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js deleted file mode 100644 index 8dac6ad77..000000000 --- a/doc/html/navtreeindex2.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX2 = -{ -"classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[6,0,8,29], -"classApp.html#a230e975296cf164da2fee35ef720964f":[6,0,8,33], -"classApp.html#a244b2d53b21be269aad2269d23192f95":[6,0,8,73], -"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[6,0,8,72], -"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[6,0,8,12], -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[6,0,8,62], -"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[6,0,8,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[6,0,8,50], -"classApp.html#a3d84af5e42082098672531cd1a618853":[6,0,8,22], -"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[6,0,8,6], -"classApp.html#a4776d9322edea17fae56afa5d01a323e":[6,0,8,24], -"classApp.html#a487332f8de40414ca1a54a4265570b70":[6,0,8,81], -"classApp.html#a495ec082c2719314e536070ca1ce073d":[6,0,8,40], -"classApp.html#a4b67935096f66d1f14b657399a8461ac":[6,0,8,64], -"classApp.html#a4bdd7bfed62f50515fce652127bf481b":[6,0,8,25], -"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[6,0,8,54], -"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[6,0,8,63], -"classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[6,0,8,9], -"classApp.html#a557d7b779d8259027f4724ebf7b248dc":[6,0,8,28], -"classApp.html#a560189f048d3db2f526841963cc43e97":[6,0,8,26], -"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[6,0,8,84], -"classApp.html#a576ecb1c5b4a283221e6f2f0ec248251":[6,0,8,53], -"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[6,0,8,70], -"classApp.html#a58ac598544892ff7c32890291b72635e":[6,0,8,58], -"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[6,0,8,59], -"classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad":[6,0,8,3], -"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[6,0,8,37], -"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[6,0,8,76], -"classApp.html#a604d659d6977a99de42a160343e5289a":[6,0,8,4], -"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[6,0,8,43], -"classApp.html#a622eace13f8fc9f4b5672a68e2bc4396":[6,0,8,7], -"classApp.html#a6844aedad10e201b8c3d80cfc9e876d3":[6,0,8,77], -"classApp.html#a6859a4848a5c0049b4134cc4b34228b6":[6,0,8,78], -"classApp.html#a6bcb19cdc4907077da72864686d5a780":[6,0,8,65], -"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[6,0,8,61], -"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[6,0,8,45], -"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[6,0,8,79], -"classApp.html#a78788f6e9d8b713b138f81e457c5cd08":[6,0,8,20], -"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[6,0,8,52], -"classApp.html#a871898becd0697d778f36d9336253ae8":[6,0,8,14], -"classApp.html#a8863703a0305eaa45eb970dbd2046291":[6,0,8,16], -"classApp.html#a89e9feb2bfb5253883a9720beaffe876":[6,0,8,21], -"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[6,0,8,83], -"classApp.html#a94a1ed2dc493c58612d17035b74ae736":[6,0,8,31], -"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[6,0,8,42], -"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[6,0,8,60], -"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[6,0,8,86], -"classApp.html#aab23c59172310fd30f2d60dc039d3eea":[6,0,8,13], -"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[6,0,8,82], -"classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[6,0,8,35], -"classApp.html#ab47de68fa39806d1fb0976407e188b77":[6,0,8,67], -"classApp.html#abea5a4f77dcd53c928dc4eed86616637":[6,0,8,19], -"classApp.html#abf46a653d8499e7c253cc1be894a6d83":[6,0,8,17], -"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[6,0,8,47], -"classApp.html#ac1d80a14492acc932715d54567d8a589":[6,0,8,44], -"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[6,0,8,49], -"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[6,0,8,41], -"classApp.html#acad5896b7a79ae31433ad8f89606c728":[6,0,8,66], -"classApp.html#acb27e607fe4c82603444676e25c36b70":[6,0,8,11], -"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[6,0,8,74], -"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[6,0,8,39], -"classApp.html#ad5175536561021548ae8188e24c7b80c":[6,0,8,36], -"classApp.html#adb060d5c7f35a521ec7ec0effbe08097":[6,0,8,27], -"classApp.html#adb5a4bb657881e553978ff390babd01f":[6,0,8,10], -"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[6,0,8,85], -"classApp.html#ae3f47830543d0d902f66913def8db66b":[6,0,8,48], -"classApp.html#ae9f96338f32187d308b67b980eea0008":[6,0,8,68], -"classApp.html#aeb1fe1c8ad9aa639909bd183ce578536":[6,0,8,18], -"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[6,0,8,80], -"classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166":[6,0,8,15], -"classApp.html#af58db526040829b1c8bd95561b329262":[6,0,8,34], -"classApp.html#af6d39f63fb7116bbeb04e51696f99474":[6,0,8,0], -"classBaseObject.html":[6,0,9], -"classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2":[6,0,9,0], -"classCache.html":[6,0,10], -"classConversation.html":[6,0,11], -"classConversation.html#a2f12724ef0244e9049fe1bb9641b516d":[6,0,11,19], -"classConversation.html#a41f4a549e6a99f98935c4742addd22c8":[6,0,11,20], -"classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901":[6,0,11,2], -"classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8":[6,0,11,7], -"classConversation.html#a5879199008b96bee7550b576d614e1c1":[6,0,11,10], -"classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2":[6,0,11,17], -"classConversation.html#a5effe8ad3007e01333df44b81432b813":[6,0,11,5], -"classConversation.html#a66f121ca4026246f86a732e5faa0682c":[6,0,11,11], -"classConversation.html#a8335cdd43f1836e3c255638e61a09e16":[6,0,11,1], -"classConversation.html#a8748445aa26047ebed5141f3c3cbc244":[6,0,11,16], -"classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd":[6,0,11,3], -"classConversation.html#a8898bddc1e8990e81dab9a13a532cc93":[6,0,11,12], -"classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3":[6,0,11,8], -"classConversation.html#aa95c1a62af38bdfba7add9549bec083b":[6,0,11,13], -"classConversation.html#ac5900b46e6a1c93360bb8e58f8b3540b":[6,0,11,6], -"classConversation.html#adf25ce023b69a166c63c6e84e02c136a":[6,0,11,9], -"classConversation.html#ae3d4190142e12b57051f11f2911f77a0":[6,0,11,4], -"classConversation.html#ae81221251307e315f566a11f921ce0a9":[6,0,11,21], -"classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae":[6,0,11,18], -"classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09":[6,0,11,0], -"classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a":[6,0,11,15], -"classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6":[6,0,11,14], -"classFKOAuth1.html":[6,0,17], -"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[6,0,17,1], -"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[6,0,17,0], -"classFKOAuthDataStore.html":[6,0,18], -"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[6,0,18,1], -"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[6,0,18,5], -"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[6,0,18,4], -"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[6,0,18,2], -"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[6,0,18,3], -"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[6,0,18,0], -"classFriendicaSmarty.html":[6,0,19], -"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[6,0,19,2], -"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[6,0,19,1], -"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[6,0,19,0], -"classFriendicaSmartyEngine.html":[6,0,20], -"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[6,0,20,1], -"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[6,0,20,2], -"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[6,0,20,0], -"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[6,0,20,3], -"classItem.html":[6,0,21], -"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[6,0,21,37], -"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[6,0,21,41], -"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[6,0,21,9], -"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[6,0,21,43], -"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[6,0,21,46], -"classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0":[6,0,21,12], -"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[6,0,21,0], -"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[6,0,21,26], -"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[6,0,21,7], -"classItem.html#a428f448f89a8629055ea3294eb942aea":[6,0,21,18], -"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[6,0,21,48], -"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[6,0,21,17], -"classItem.html#a50d0fdf47006f47a0dc89cfd0d7e690d":[6,0,21,20], -"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[6,0,21,22], -"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[6,0,21,44], -"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[6,0,21,47], -"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[6,0,21,49], -"classItem.html#a632185dd25c5caf277067c76230a4320":[6,0,21,5], -"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[6,0,21,14], -"classItem.html#a7f7bc059de377319282cb4ef4a828480":[6,0,21,45], -"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[6,0,21,34], -"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[6,0,21,1], -"classItem.html#a88a99e2d1245925867f249f543358e72":[6,0,21,39], -"classItem.html#a904421c7a427411bb2ab473bca872f63":[6,0,21,8], -"classItem.html#a90743c8348b13213275c223bb9333aa0":[6,0,21,35], -"classItem.html#a9594df6014b0b6f45364ea7a34510130":[6,0,21,40], -"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[6,0,21,24], -"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[6,0,21,31], -"classItem.html#a9f2d219da712390f59012fc32a342074":[6,0,21,16], -"classItem.html#aa0ee775ec94abccec6c798428835d001":[6,0,21,6], -"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[6,0,21,28], -"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[6,0,21,36], -"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[6,0,21,27], -"classItem.html#aa49e40f961dff66da32c5ae110e32993":[6,0,21,23], -"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[6,0,21,15], -"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[6,0,21,29], -"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[6,0,21,25], -"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[6,0,21,19], -"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[6,0,21,2], -"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[6,0,21,21], -"classItem.html#ac09a4728d37b7783714243f7f8167214":[6,0,21,30], -"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[6,0,21,13], -"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[6,0,21,11], -"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[6,0,21,3], -"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[6,0,21,33], -"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[6,0,21,10], -"classItem.html#ae0c48b2fed5558642549cabd547fc4f3":[6,0,21,4], -"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[6,0,21,38], -"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[6,0,21,32], -"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[6,0,21,42], -"classProtoDriver.html":[6,0,26], -"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[6,0,26,0], -"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[6,0,26,2], -"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[6,0,26,1], -"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[6,0,26,6], -"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[6,0,26,4], -"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[6,0,26,5], -"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[6,0,26,3], -"classRedMatrix_1_1Import_1_1Import.html":[6,0,4,0,0], -"classRedMatrix_1_1Import_1_1Import.html#a0a05dac405ccc5b617b7b7b3c8ed783c":[6,0,4,0,0,13], -"classRedMatrix_1_1Import_1_1Import.html#a107703a43a1b0ceb2af7ae470cb3f218":[6,0,4,0,0,1], -"classRedMatrix_1_1Import_1_1Import.html#a24134929d9a8a682da2036a0bf326367":[6,0,4,0,0,4], -"classRedMatrix_1_1Import_1_1Import.html#a27987a41cb703a796f1821baeb4774a2":[6,0,4,0,0,5], -"classRedMatrix_1_1Import_1_1Import.html#a33ed595de044c0ec1cd84cca719e31dc":[6,0,4,0,0,10], -"classRedMatrix_1_1Import_1_1Import.html#a5434325afb2c633c52540127d717800a":[6,0,4,0,0,0], -"classRedMatrix_1_1Import_1_1Import.html#a57561904b0f127e0d9a3e2c33688daf8":[6,0,4,0,0,3], -"classRedMatrix_1_1Import_1_1Import.html#a772c28edf36aaf8e66007a95004c4059":[6,0,4,0,0,6], -"classRedMatrix_1_1Import_1_1Import.html#a855cd5a79b95d269ae8737fae774e3bc":[6,0,4,0,0,7], -"classRedMatrix_1_1Import_1_1Import.html#a864aac9fadb4846f5d9f840e8e0f440f":[6,0,4,0,0,11], -"classRedMatrix_1_1Import_1_1Import.html#a88c2eeba8d0cba3e7c12a2c45ba0fbc6":[6,0,4,0,0,14], -"classRedMatrix_1_1Import_1_1Import.html#a8d138a9a7d4f79b81d3446ca216a602c":[6,0,4,0,0,9], -"classRedMatrix_1_1Import_1_1Import.html#ad0d2bdc3b388220479063915b4f5c2fc":[6,0,4,0,0,12], -"classRedMatrix_1_1Import_1_1Import.html#addf6e53dacd971eaab49be4b17a767d6":[6,0,4,0,0,2], -"classRedMatrix_1_1Import_1_1Import.html#ae3c6472bea1a44025bc2e152604eb20c":[6,0,4,0,0,8], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html":[6,0,4,1,0], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0":[6,0,4,1,0,9], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3":[6,0,4,1,0,8], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a1a23c349cc4699a8474505972684ea9c":[6,0,4,1,0,13], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a2926fe923baade564f2663632fa8c633":[6,0,4,1,0,3], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a605aa09565a097316b80f0d17d6b5823":[6,0,4,1,0,12], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6333c8ce58998bd11bf8102afe3b0748":[6,0,4,1,0,1], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6ece02655b780469e59e204c5979a624":[6,0,4,1,0,7], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a76fdb7fd5dd7376155abb5a58cd6fd69":[6,0,4,1,0,11], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e":[6,0,4,1,0,15], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aa0b2a5fa9186d7dc0e637f1ecb379c42":[6,0,4,1,0,0], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aad0ef0cc05c407de84dbfbf2050bbbbe":[6,0,4,1,0,14], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aadce020fb595c7943829d7f995d3f998":[6,0,4,1,0,5], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abe1defedb90ac8e3b6487e124e625521":[6,0,4,1,0,10], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b":[6,0,4,1,0,2], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#adc72f36f0b2b17b20ea4df900afcd697":[6,0,4,1,0,4], -"classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#af6d239fefed05859327ee8db626703f9":[6,0,4,1,0,6], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html":[6,0,4,1,1], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd":[6,0,4,1,1,2], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf":[6,0,4,1,1,5], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a8161f2a0be205412e263c947b5ec46c5":[6,0,4,1,1,0], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19":[6,0,4,1,1,6], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d":[6,0,4,1,1,4], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142":[6,0,4,1,1,7], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad4bc0516533c62733f38043a37267d78":[6,0,4,1,1,1], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09":[6,0,4,1,1,3], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html":[6,0,4,1,2], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a14ac61d31a031d139956763db4e03956":[6,0,4,1,2,11], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a17ea47e34cb76b6e79f36ebed790d76a":[6,0,4,1,2,15], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a1a37850bdd1f188abd6160559698d5d7":[6,0,4,1,2,4], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a2fc4e6b9be2108bbaa1ca1a03fd6d44e":[6,0,4,1,2,14], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a438066fb1565fbcffa22c12d5ce23695":[6,0,4,1,2,17], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d":[6,0,4,1,2,16], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df":[6,0,4,1,2,8], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a58e750256cdc2f0f79fbe8d5463ffefe":[6,0,4,1,2,3], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db443ed3c84938b4352fe515bf8d68":[6,0,4,1,2,9], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5":[6,0,4,1,2,7], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a76b58fe5223e565c97f1b9af93031a99":[6,0,4,1,2,0], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a825dc5f3e0f83f50736c16daa6a4809d":[6,0,4,1,2,6], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a964b13fde1a5da6f76b51ca5519234dc":[6,0,4,1,2,1], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a9b9a0b5bfa4de1f78e6cafaa534b6f6a":[6,0,4,1,2,5], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9":[6,0,4,1,2,12], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aca0e8d574ea66a0e210f571700663c62":[6,0,4,1,2,2], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9":[6,0,4,1,2,13], -"classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59":[6,0,4,1,2,10], -"classRedMatrix_1_1RedDAV_1_1RedFile.html":[6,0,4,1,3], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a0350cb4e0327e1f9922869a48ee04f1d":[6,0,4,1,3,9], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a05798eac84c578152ff21758261c6ac6":[6,0,4,1,3,0], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a07e1b19e7aaf3dcce822e9be8823a87d":[6,0,4,1,3,7], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215":[6,0,4,1,3,10], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc":[6,0,4,1,3,11], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0":[6,0,4,1,3,8], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8":[6,0,4,1,3,2], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689":[6,0,4,1,3,4], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2":[6,0,4,1,3,12], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe":[6,0,4,1,3,1], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25":[6,0,4,1,3,5], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d":[6,0,4,1,3,6] -}; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js deleted file mode 100644 index b15a4e9db..000000000 --- a/doc/html/navtreeindex3.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX3 = -{ -"classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e":[6,0,4,1,3,3], -"classTemplate.html":[6,0,27], -"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[6,0,27,13], -"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[6,0,27,12], -"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[6,0,27,22], -"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[6,0,27,2], -"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[6,0,27,3], -"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[6,0,27,6], -"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[6,0,27,21], -"classTemplate.html#a6f0efc256688c36110180b501067ff11":[6,0,27,23], -"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[6,0,27,15], -"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[6,0,27,9], -"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[6,0,27,19], -"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[6,0,27,4], -"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[6,0,27,10], -"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[6,0,27,20], -"classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[6,0,27,1], -"classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[6,0,27,14], -"classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[6,0,27,17], -"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[6,0,27,7], -"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[6,0,27,0], -"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[6,0,27,18], -"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[6,0,27,8], -"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[6,0,27,5], -"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[6,0,27,16], -"classTemplate.html#afd97b4b1e7754a550e67c0ea79159059":[6,0,27,11], -"classZotDriver.html":[6,0,28], -"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[6,0,28,3], -"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[6,0,28,0], -"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[6,0,28,6], -"classZotDriver.html#a6776935156accb0f170e2e24577133db":[6,0,28,1], -"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[6,0,28,4], -"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[6,0,28,2], -"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[6,0,28,5], -"classdba__driver.html":[6,0,12], -"classdba__driver.html#a02165fc4bee63d040ebd963a4fa82a14":[6,0,12,10], -"classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721":[6,0,12,1], -"classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[6,0,12,17], -"classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6":[6,0,12,18], -"classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746":[6,0,12,11], -"classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555":[6,0,12,13], -"classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975":[6,0,12,2], -"classdba__driver.html#a65a5c7b355ab5529a43049e160006426":[6,0,12,9], -"classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092":[6,0,12,12], -"classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd":[6,0,12,7], -"classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c":[6,0,12,20], -"classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48":[6,0,12,8], -"classdba__driver.html#a98d8523dcedda316085b4d4f856b6583":[6,0,12,21], -"classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8":[6,0,12,23], -"classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155":[6,0,12,15], -"classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4":[6,0,12,3], -"classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9":[6,0,12,14], -"classdba__driver.html#ad700712879719bee23752b8f424d97d0":[6,0,12,16], -"classdba__driver.html#adcc1f8955120fec0708bce39202d0422":[6,0,12,5], -"classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc":[6,0,12,4], -"classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186":[6,0,12,0], -"classdba__driver.html#af48e2afeded5285766bf92e22123ed03":[6,0,12,19], -"classdba__driver.html#afc95ffa103a3290581b537670cde5311":[6,0,12,6], -"classdba__driver.html#afce39394c010ea589d99a21579b2c31e":[6,0,12,22], -"classdba__mysql.html":[6,0,13], -"classdba__mysql.html#a1887338627ce0e28786839363014bd0b":[6,0,13,1], -"classdba__mysql.html#a31011edd67b6b394355bf04cedb498d0":[6,0,13,3], -"classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e":[6,0,13,0], -"classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e":[6,0,13,2], -"classdba__mysql.html#ac3fd60c278f400907322dac578754a99":[6,0,13,4], -"classdba__mysqli.html":[6,0,14], -"classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64":[6,0,14,2], -"classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec":[6,0,14,4], -"classdba__mysqli.html#a6eb6c578c6928908321e5e6da866e1db":[6,0,14,3], -"classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55":[6,0,14,0], -"classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1":[6,0,14,1], -"classdba__postgres.html":[6,0,15], -"classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90":[6,0,15,7], -"classdba__postgres.html#a56f926f218155c88807e0e06f6817a72":[6,0,15,9], -"classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9":[6,0,15,10], -"classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a":[6,0,15,8], -"classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f":[6,0,15,3], -"classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7":[6,0,15,11], -"classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058":[6,0,15,0], -"classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa":[6,0,15,1], -"classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc":[6,0,15,5], -"classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127":[6,0,15,4], -"classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e":[6,0,15,2], -"classdba__postgres.html#ace80a204e34b20b9907650399cce02a3":[6,0,15,13], -"classdba__postgres.html#ae0f834413e57cf0735ae7b64b2f71e68":[6,0,15,6], -"classdba__postgres.html#aeb404a85974d6c5df30c21650888000b":[6,0,15,12], -"classeasywebdav_1_1client_1_1Client.html":[6,0,1,1,3], -"classeasywebdav_1_1client_1_1Client.html#a01e56f6f57b17cbc6e4b759175cb6204":[6,0,1,1,3,2], -"classeasywebdav_1_1client_1_1Client.html#a0601c37a357cccb10fa05af95fbf306f":[6,0,1,1,3,10], -"classeasywebdav_1_1client_1_1Client.html#a0a5c361cb58763f5a363f786480c29cc":[6,0,1,1,3,13], -"classeasywebdav_1_1client_1_1Client.html#a119e2f4cdd0e266a747bf8e92de51997":[6,0,1,1,3,4], -"classeasywebdav_1_1client_1_1Client.html#a1bcdcd91226e9c014556bb3eb2a37a55":[6,0,1,1,3,6], -"classeasywebdav_1_1client_1_1Client.html#a37094196d06e70b0ed6f41322f599faf":[6,0,1,1,3,1], -"classeasywebdav_1_1client_1_1Client.html#a3ae2c2f4b07692c2e81fa4c9643fd4cf":[6,0,1,1,3,16], -"classeasywebdav_1_1client_1_1Client.html#a57116f274a2b4bf0c3a21978558bfe96":[6,0,1,1,3,11], -"classeasywebdav_1_1client_1_1Client.html#a5af2c65d101a6d6a9cd557a4e2945755":[6,0,1,1,3,5], -"classeasywebdav_1_1client_1_1Client.html#a65654cbf48e7d123ce52d8bd3335b03d":[6,0,1,1,3,12], -"classeasywebdav_1_1client_1_1Client.html#a6b4ef9c67ea641e4e42eb04123876a5f":[6,0,1,1,3,14], -"classeasywebdav_1_1client_1_1Client.html#a7a98a4a257becc7fa7fc8e0c8ed9fbd1":[6,0,1,1,3,8], -"classeasywebdav_1_1client_1_1Client.html#a8129b9db86535dd99218cdba49fe3fb4":[6,0,1,1,3,15], -"classeasywebdav_1_1client_1_1Client.html#aa17aa551ee348830d09dbf3a5616aebb":[6,0,1,1,3,0], -"classeasywebdav_1_1client_1_1Client.html#ad843202f103b9ab9fbc70014dcb0049c":[6,0,1,1,3,9], -"classeasywebdav_1_1client_1_1Client.html#adc879105d0991fe6bc4e97888e547356":[6,0,1,1,3,7], -"classeasywebdav_1_1client_1_1Client.html#ae6c8e7680e2c76df128e2c5ec4b79516":[6,0,1,1,3,3], -"classeasywebdav_1_1client_1_1ConnectionFailed.html":[6,0,1,1,1], -"classeasywebdav_1_1client_1_1OperationFailed.html":[6,0,1,1,2], -"classeasywebdav_1_1client_1_1OperationFailed.html#a3c42e9edf259eca30ac7fbcb7e181eac":[6,0,1,1,2,1], -"classeasywebdav_1_1client_1_1OperationFailed.html#a606a07fbfc1fd05d94c12695c831ae77":[6,0,1,1,2,3], -"classeasywebdav_1_1client_1_1OperationFailed.html#a95d48cca4944cc68a6220f6f9030ad70":[6,0,1,1,2,4], -"classeasywebdav_1_1client_1_1OperationFailed.html#aa2fb71a2b07dfc6edd208059463d4052":[6,0,1,1,2,2], -"classeasywebdav_1_1client_1_1OperationFailed.html#acfdca9ff27c865ea1c07449ce4e8d339":[6,0,1,1,2,0], -"classeasywebdav_1_1client_1_1OperationFailed.html#ad1026cc529cf839da18542f6907df022":[6,0,1,1,2,5], -"classeasywebdav_1_1client_1_1WebdavException.html":[6,0,1,1,0], -"classenotify.html":[6,0,16], -"classes.html":[6,1], -"classphoto__driver.html":[6,0,23], -"classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03":[6,0,23,27], -"classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9":[6,0,23,28], -"classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712":[6,0,23,13], -"classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce":[6,0,23,20], -"classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3":[6,0,23,17], -"classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832":[6,0,23,5], -"classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e":[6,0,23,2], -"classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec":[6,0,23,15], -"classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1":[6,0,23,29], -"classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03":[6,0,23,26], -"classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d":[6,0,23,14], -"classphoto__driver.html#a56634842b071b96502716e9843ea5361":[6,0,23,19], -"classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[6,0,23,16], -"classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[6,0,23,22], -"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[6,0,23,9], -"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[6,0,23,23], -"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[6,0,23,25], -"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[6,0,23,12], -"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[6,0,23,6], -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[6,0,23,8], -"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[6,0,23,11], -"classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[6,0,23,0], -"classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[6,0,23,10], -"classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f":[6,0,23,4], -"classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813":[6,0,23,3], -"classphoto__driver.html#ae4501abdc9651359f81d036b63625686":[6,0,23,1], -"classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143":[6,0,23,21], -"classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80":[6,0,23,24], -"classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0":[6,0,23,18], -"classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468":[6,0,23,7], -"classphoto__gd.html":[6,0,24], -"classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00":[6,0,24,5], -"classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd":[6,0,24,9], -"classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[6,0,24,8], -"classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[6,0,24,2], -"classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[6,0,24,6], -"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[6,0,24,3], -"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[6,0,24,1], -"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[6,0,24,7], -"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[6,0,24,4], -"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[6,0,24,0], -"classphoto__imagick.html":[6,0,25], -"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[6,0,25,10], -"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[6,0,25,7], -"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[6,0,25,0], -"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[6,0,25,2], -"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[6,0,25,6], -"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[6,0,25,8], -"classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[6,0,25,5], -"classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[6,0,25,4], -"classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[6,0,25,9], -"classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[6,0,25,1], -"classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[6,0,25,3], -"classzotsh_1_1CommandNotFound.html":[6,0,7,0], -"classzotsh_1_1ZotSH.html":[6,0,7,1], -"classzotsh_1_1ZotSH.html#a02e7a436389baa6c2c1f7a530760606e":[6,0,7,1,22], -"classzotsh_1_1ZotSH.html#a0fe85d1e5e662e0d60fc6a749c5c8ee6":[6,0,7,1,6], -"classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612":[6,0,7,1,18], -"classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612":[6,0,7,1,19], -"classzotsh_1_1ZotSH.html#a32d6a43f22b5e1e2c172a10775ab83db":[6,0,7,1,12], -"classzotsh_1_1ZotSH.html#a3c857c942309ecea9b2bad2dd0dfc410":[6,0,7,1,1], -"classzotsh_1_1ZotSH.html#a40f05be2cd1eec8da7237e73e6ed4cd6":[6,0,7,1,32], -"classzotsh_1_1ZotSH.html#a42e3d635a25a65cd4a0fd7586473a9d1":[6,0,7,1,16], -"classzotsh_1_1ZotSH.html#a49d42aee1a0b1a98c5a523434fe99973":[6,0,7,1,29], -"classzotsh_1_1ZotSH.html#a51592d441bd2ab61a7841c31fef3af0e":[6,0,7,1,14], -"classzotsh_1_1ZotSH.html#a5fe9615eb84aa7f5c932b8ac5e08594d":[6,0,7,1,2], -"classzotsh_1_1ZotSH.html#a65623483056d05833d1edfe714dfac96":[6,0,7,1,26], -"classzotsh_1_1ZotSH.html#a668d46a5dd96ae7d390273c187b0c3bc":[6,0,7,1,0], -"classzotsh_1_1ZotSH.html#a6e5ab6ac97a89b18761120bab26a397a":[6,0,7,1,25], -"classzotsh_1_1ZotSH.html#a709c4d5135a7c45fea12af1b2bae911c":[6,0,7,1,8], -"classzotsh_1_1ZotSH.html#a72f4c37d4786c52b593c37c4a1b23b06":[6,0,7,1,15], -"classzotsh_1_1ZotSH.html#a778a232b947fa563a21bf09e992589ad":[6,0,7,1,27], -"classzotsh_1_1ZotSH.html#a7d75b322c19fc685a654641a873b2ea3":[6,0,7,1,28], -"classzotsh_1_1ZotSH.html#a817b058af7f90c6d4bbbe590b3f7faaf":[6,0,7,1,31], -"classzotsh_1_1ZotSH.html#a85d0155ee6f6116c16c3c0091805b144":[6,0,7,1,17], -"classzotsh_1_1ZotSH.html#a9a7c98256c6b5ef2c56fc5f7a76580d5":[6,0,7,1,5], -"classzotsh_1_1ZotSH.html#a9abc50b9215a544bdbc2b0bfd511a70a":[6,0,7,1,10], -"classzotsh_1_1ZotSH.html#a9d40211e408798c3aaceecfe9f611d8f":[6,0,7,1,7], -"classzotsh_1_1ZotSH.html#ab6b1c88a142f39a579b024f44aa24ccd":[6,0,7,1,13], -"classzotsh_1_1ZotSH.html#acdafbe4f32089bf3dc9f14d82ba5054a":[6,0,7,1,9], -"classzotsh_1_1ZotSH.html#ada686b83017bfe450e367cfdb89d084e":[6,0,7,1,3], -"classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506":[6,0,7,1,23], -"classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506":[6,0,7,1,24], -"classzotsh_1_1ZotSH.html#ae4f4079edcfbd2f86f423137f5dcffec":[6,0,7,1,11], -"classzotsh_1_1ZotSH.html#aef5c2b2a549ec923314dce9d1badcaac":[6,0,7,1,30], -"classzotsh_1_1ZotSH.html#af98a32d48748f4fa96caec1f6a33d3d0":[6,0,7,1,4], -"classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea":[6,0,7,1,20], -"classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea":[6,0,7,1,21], -"cli__startup_8php.html":[7,0,1,17], -"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[7,0,1,17,0], -"cli__suggest_8php.html":[7,0,1,18], -"cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[7,0,1,18,0], -"client_8py.html":[7,0,3,1,0,2], -"client_8py.html#a1cc63f6c4dd4e5e6c8c8324b75e78b9d":[7,0,3,1,0,2,8], -"client_8py.html#a4ef6158e600484fda44b88391b74ec2f":[7,0,3,1,0,2,5], -"client_8py.html#a5e093458640c0bd98f7ef39adc2fe159":[7,0,3,1,0,2,6], -"client_8py.html#a6be7601c21385a35feb357dcc7fd22bd":[7,0,3,1,0,2,7], -"client_8py.html#afd5d5d10ff07ed6fcda7e3c6b8771a16":[7,0,3,1,0,2,4], -"cloud_8php.html":[7,0,2,15], -"cloud_8php.html#ad2e96e917852f27dedfc263d37e13756":[7,0,2,15,0], -"comanche_8php.html":[7,0,1,19], -"comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[7,0,1,19,5], -"comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[7,0,1,19,3], -"comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f":[7,0,1,19,9], -"comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[7,0,1,19,4], -"comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[7,0,1,19,0], -"comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[7,0,1,19,7], -"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[7,0,1,19,2], -"comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[7,0,1,19,6], -"comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[7,0,1,19,1], -"comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[7,0,1,19,8], -"common_8php.html":[7,0,2,16], -"common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[7,0,2,16,0], -"common_8php.html#aca62f113655809f41f49042ce9b123c2":[7,0,2,16,1], -"connect_8php.html":[7,0,2,17], -"connect_8php.html#a417ec27afe33f21a929667a665e32ee2":[7,0,2,17,2], -"connect_8php.html#a489f0a66c660de6ec4d6917b27674f07":[7,0,2,17,0], -"connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36":[7,0,2,17,1], -"connections_8php.html":[7,0,2,18], -"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[7,0,2,18,3], -"connections_8php.html#a15af118efee9c948b6f8294e54a73bb2":[7,0,2,18,0], -"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[7,0,2,18,2], -"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[7,0,2,18,1], -"connedit_8php.html":[7,0,2,19], -"connedit_8php.html#a234c48426b652bf4d37053f2af329ac5":[7,0,2,19,3], -"connedit_8php.html#a4da871e075597a09a8b374b9171dd92e":[7,0,2,19,2], -"connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5":[7,0,2,19,0], -"connedit_8php.html#a795acb3d9d841f55c255d7611681ab67":[7,0,2,19,1], -"contact__selectors_8php.html":[7,0,1,22], -"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[7,0,1,22,1], -"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[7,0,1,22,0], -"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[7,0,1,22,2], -"contact__widgets_8php.html":[7,0,1,23], -"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[7,0,1,23,0] -}; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js deleted file mode 100644 index e472b5c8c..000000000 --- a/doc/html/navtreeindex4.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX4 = -{ -"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[7,0,1,23,2], -"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[7,0,1,23,1], -"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[7,0,1,23,3], -"contactgroup_8php.html":[7,0,2,20], -"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[7,0,2,20,0], -"conversation_8php.html":[7,0,1,24], -"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[7,0,1,24,8], -"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[7,0,1,24,12], -"conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[7,0,1,24,18], -"conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a":[7,0,1,24,24], -"conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3":[7,0,1,24,7], -"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[7,0,1,24,19], -"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[7,0,1,24,17], -"conversation_8php.html#a54d5247d645b320191052283bee06c34":[7,0,1,24,2], -"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[7,0,1,24,25], -"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[7,0,1,24,9], -"conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4":[7,0,1,24,16], -"conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c":[7,0,1,24,15], -"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[7,0,1,24,23], -"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[7,0,1,24,21], -"conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3":[7,0,1,24,13], -"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[7,0,1,24,5], -"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[7,0,1,24,3], -"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[7,0,1,24,22], -"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[7,0,1,24,0], -"conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7":[7,0,1,24,1], -"conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533":[7,0,1,24,14], -"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[7,0,1,24,6], -"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[7,0,1,24,20], -"conversation_8php.html#afb16b867934dbc5f7e68f21925f9e71e":[7,0,1,24,10], -"conversation_8php.html#afb69613cf71dc5a21c23f3430ce3c229":[7,0,1,24,11], -"conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81":[7,0,1,24,4], -"cronhooks_8php.html":[7,0,1,26], -"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[7,0,1,26,0], -"crypto_8php.html":[7,0,1,27], -"crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5":[7,0,1,27,5], -"crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2":[7,0,1,27,17], -"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[7,0,1,27,2], -"crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287":[7,0,1,27,19], -"crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c":[7,0,1,27,4], -"crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8":[7,0,1,27,12], -"crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9":[7,0,1,27,14], -"crypto_8php.html#a573f02517abe4ac9241268263063b2a0":[7,0,1,27,9], -"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[7,0,1,27,1], -"crypto_8php.html#a630e1574554f34e7c38511585d9e71a2":[7,0,1,27,6], -"crypto_8php.html#a7427a18417341aa35e2207bfa205e432":[7,0,1,27,18], -"crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c":[7,0,1,27,11], -"crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26":[7,0,1,27,22], -"crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5":[7,0,1,27,13], -"crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5":[7,0,1,27,23], -"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[7,0,1,27,20], -"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[7,0,1,27,10], -"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[7,0,1,27,21], -"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[7,0,1,27,0], -"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[7,0,1,27,16], -"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[7,0,1,27,3], -"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[7,0,1,27,15], -"crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839":[7,0,1,27,7], -"crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85":[7,0,1,27,8], -"dark_8php.html":[7,0,4,1,2,1,2], -"darkness_8php.html":[7,0,4,1,0,2,0], -"darknessleftaside_8php.html":[7,0,4,1,0,2,1], -"darknessrightaside_8php.html":[7,0,4,1,0,2,2], -"datetime_8php.html":[7,0,1,28], -"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[7,0,1,28,10], -"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[7,0,1,28,5], -"datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7":[7,0,1,28,4], -"datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766":[7,0,1,28,2], -"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[7,0,1,28,6], -"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[7,0,1,28,9], -"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[7,0,1,28,11], -"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[7,0,1,28,13], -"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[7,0,1,28,7], -"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[7,0,1,28,0], -"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[7,0,1,28,3], -"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[7,0,1,28,1], -"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[7,0,1,28,12], -"datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1":[7,0,1,28,8], -"dav_8php.html":[7,0,2,21], -"dav_8php.html#addd46b5ec6cd6c23e065634462b7f040":[7,0,2,21,0], -"db__update_8php.html":[7,0,3,2], -"dba__driver_8php.html":[7,0,1,0,0], -"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[7,0,1,0,0,2], -"dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[7,0,1,0,0,11], -"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[7,0,1,0,0,17], -"dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78":[7,0,1,0,0,12], -"dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645":[7,0,1,0,0,5], -"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[7,0,1,0,0,16], -"dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0":[7,0,1,0,0,6], -"dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[7,0,1,0,0,8], -"dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e":[7,0,1,0,0,3], -"dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee":[7,0,1,0,0,1], -"dba__driver_8php.html#aa051799567690a124a3b865bf902f58a":[7,0,1,0,0,10], -"dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee":[7,0,1,0,0,14], -"dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[7,0,1,0,0,13], -"dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e":[7,0,1,0,0,7], -"dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a":[7,0,1,0,0,4], -"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[7,0,1,0,0,9], -"dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e":[7,0,1,0,0,15], -"dba__mysql_8php.html":[7,0,1,0,1], -"dba__mysqli_8php.html":[7,0,1,0,2], -"dba__postgres_8php.html":[7,0,1,0,3], -"delegate_8php.html":[7,0,2,22], -"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[7,0,2,22,0], -"deliver_8php.html":[7,0,1,29], -"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[7,0,1,29,0], -"deprecated.html":[4], -"diaspora_8php.html":[7,0,1,30], -"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[7,0,1,30,0], -"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[7,0,1,30,24], -"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[7,0,1,30,1], -"diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605":[7,0,1,30,15], -"diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a":[7,0,1,30,25], -"diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31":[7,0,1,30,14], -"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[7,0,1,30,19], -"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668":[7,0,1,30,26], -"diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b":[7,0,1,30,12], -"diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa":[7,0,1,30,17], -"diaspora_8php.html#a5d57518545baa31cf8a85a937a267681":[7,0,1,30,10], -"diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff":[7,0,1,30,7], -"diaspora_8php.html#a69f250b078a46e405647428ec3399a16":[7,0,1,30,27], -"diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c":[7,0,1,30,13], -"diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46":[7,0,1,30,11], -"diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36":[7,0,1,30,3], -"diaspora_8php.html#a858f70153c384f8778082cf7843a19da":[7,0,1,30,8], -"diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f":[7,0,1,30,16], -"diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9":[7,0,1,30,20], -"diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e":[7,0,1,30,32], -"diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055":[7,0,1,30,28], -"diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56":[7,0,1,30,29], -"diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4":[7,0,1,30,6], -"diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b":[7,0,1,30,31], -"diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200":[7,0,1,30,30], -"diaspora_8php.html#ab99505944728d46585b8312989de533d":[7,0,1,30,5], -"diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598":[7,0,1,30,18], -"diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7":[7,0,1,30,33], -"diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690":[7,0,1,30,9], -"diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f":[7,0,1,30,2], -"diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b":[7,0,1,30,22], -"diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c":[7,0,1,30,23], -"diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc":[7,0,1,30,21], -"diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66":[7,0,1,30,4], -"dimport_8php.html":[7,0,1,31], -"dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[7,0,1,31,0], -"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[7,0,4,1,2,0], -"dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[7,0,4,1,0,2], -"dir_0d5ac3124d787e6297f47179aec2cdad.html":[7,0,0,0,0,2], -"dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[7,0,3,0], -"dir_1586f67ab5300c2995f38a68fc5c4b7d.html":[7,0,0,0,0,5], -"dir_172e021ddcd8632dc2b797c4a4961924.html":[7,0,0,0,0,5,0], -"dir_21bc5169ff11430004758be31dcfc6c4.html":[7,0,1,0], -"dir_2222f31d7a61e527af3624100548cf57.html":[7,0,0], -"dir_23ec12649285f9fabf3a6b7380226c28.html":[7,0,3], -"dir_2b01166339035d109f34f44565eac444.html":[7,0,0,0], -"dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html":[7,0,4,1,2,1], -"dir_3de62e6fc7b5905e890806571f832581.html":[7,0,0,0,0,7], -"dir_3f87478dd9b9ff2b54bc96c9063f79a0.html":[7,0,0,0,0,3,0], -"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[7,0,4,1,2], -"dir_5adc1a22d666400f49fcc8826e30cd6d.html":[7,0,0,0,0,1,0], -"dir_5b50d2dc059442371252f4f6fa0b8ef6.html":[7,0,0,0,0,0], -"dir_7edbbd0f8c514efef79942dcdc21f738.html":[7,0,1,1], -"dir_80b621040c90c64e1a3ba8df441fb198.html":[7,0,0,0,0,7,0], -"dir_817f6d302394b98e59575acdb59998bc.html":[7,0,4,0], -"dir_8543001e5d25368a6edede3e63efb554.html":[7,0,4,1], -"dir_863cdfcaa3c256fef8de0dcc53d6311a.html":[7,0,0,0,0,6], -"dir_887fdc94312ba7b057b6bfe7fdd27ea5.html":[7,0,4,1,1,0], -"dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[7,0,4,1,1], -"dir_94ce3c0aa655f52cbce858751688d328.html":[7,0,0,0,0,2,0], -"dir__fns_8php.html":[7,0,1,32], -"dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16":[7,0,1,32,0], -"dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[7,0,1,32,6], -"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[7,0,1,32,3], -"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[7,0,1,32,5], -"dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e":[7,0,1,32,4], -"dir__fns_8php.html#acf621621e929d49441da30aad76a58cf":[7,0,1,32,1], -"dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[7,0,1,32,2], -"dir_aae29906d7bfc07d076125f669c8352e.html":[7,0,1,2], -"dir_b2f003339c516cc00c8cadcafbe82f13.html":[7,0,4], -"dir_b6f208674a96d24af8106c998c637d76.html":[7,0,3,1,0], -"dir_b8abe7ef07ecd5203a481d38354dbb5c.html":[7,0,0,0,0,4], -"dir_bf49406b6a987836ba4fe5618afdb371.html":[7,0,0,0,0], -"dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html":[7,0,4,1,0,1], -"dir_d41ce877eb409a4791b288730010abe2.html":[7,0,2], -"dir_d44c64559bbebec7f509842c48db8b23.html":[7,0,1], -"dir_d520c5cf583201d9437764f209363c22.html":[7,0,4,1,0], -"dir_d53802940ab180b2c59d9e30e9e33e5b.html":[7,0,0,0,0,1], -"dir_da7dee9003bbd0df28447261834d7815.html":[7,0,0,0,0,0,0], -"dir_dcbba3cf1f9c80ab791fdcb3d0e78672.html":[7,0,0,0,0,3], -"dir_e7f045be8bb383d8447c6a6b84145083.html":[7,0,1,3], -"dir_f19da925ee886ec38f19b0e8c19779bc.html":[7,0,4,1,0,0], -"dir_f20b1a70c98162efa33fce7214fb9665.html":[7,0,0,0,0,4,0], -"dir_f6607f4f29fa266cde007631e2b0eade.html":[7,0,0,0,0,6,0], -"dir_fbbac2f976ce3830c063dc14fc87781a.html":[7,0,3,1], -"dirsearch_8php.html":[7,0,2,24], -"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[7,0,2,24,4], -"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[7,0,2,24,2], -"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[7,0,2,24,1], -"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[7,0,2,24,5], -"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[7,0,2,24,3], -"dirsearch_8php.html#ab6d5fefa98da249a994b910434a669c2":[7,0,2,24,0], -"display_8php.html":[7,0,2,25], -"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[7,0,2,25,0], -"docblox__errorchecker_8php.html":[7,0,3,3], -"docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[7,0,3,3,3], -"docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[7,0,3,3,2], -"docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b":[7,0,3,3,0], -"docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5":[7,0,3,3,8], -"docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b":[7,0,3,3,5], -"docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085":[7,0,3,3,9], -"docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f":[7,0,3,3,6], -"docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73":[7,0,3,3,7], -"docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[7,0,3,3,4], -"docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[7,0,3,3,1], -"docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[7,0,3,3,10], -"editblock_8php.html":[7,0,2,26], -"editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e":[7,0,2,26,1], -"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[7,0,2,26,0], -"editlayout_8php.html":[7,0,2,27], -"editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7":[7,0,2,27,1], -"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[7,0,2,27,0], -"editpost_8php.html":[7,0,2,28], -"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[7,0,2,28,0], -"editwebpage_8php.html":[7,0,2,29], -"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[7,0,2,29,0], -"editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f":[7,0,2,29,1], -"enotify_8php.html":[7,0,1,34], -"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[7,0,1,34,1], -"event_8php.html":[7,0,1,35], -"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[7,0,1,35,11], -"event_8php.html#a05073cd4ab837bd4a0149e8ed23ce688":[7,0,1,35,9], -"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[7,0,1,35,0], -"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[7,0,1,35,1], -"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[7,0,1,35,7], -"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[7,0,1,35,2], -"event_8php.html#a3ff7f1824540a38f4a3991a59a9542d4":[7,0,1,35,8], -"event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92":[7,0,1,35,5], -"event_8php.html#ab8cc2825013e724dc26229026711cf93":[7,0,1,35,10], -"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[7,0,1,35,6], -"event_8php.html#ac9f206819186b65952ac1869f0da8c6e":[7,0,1,35,3], -"event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c":[7,0,1,35,4], -"events_8php.html":[7,0,2,30], -"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[7,0,2,30,0], -"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[7,0,2,30,1], -"expire_8php.html":[7,0,1,36], -"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[7,0,1,36,0], -"extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html":[7,0,0,0,0,0,0,0], -"extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html":[7,0,0,0,0,0,0,1], -"extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29":[7,0,0,0,0,0,0,1,0], -"extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html":[7,0,0,0,0,1,0,0], -"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html":[7,0,0,0,0,1,0,1] -}; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js deleted file mode 100644 index 5c30bb39a..000000000 --- a/doc/html/navtreeindex5.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX5 = -{ -"extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a":[7,0,0,0,0,1,0,1,0], -"extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html":[7,0,0,0,0,2,0,0], -"extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html":[7,0,0,0,0,2,0,1], -"extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8":[7,0,0,0,0,2,0,1,0], -"extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html":[7,0,0,0,0,3,0,0], -"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html":[7,0,0,0,0,3,0,1], -"extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6":[7,0,0,0,0,3,0,1,0], -"extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html":[7,0,0,0,0,4,0,0], -"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html":[7,0,0,0,0,4,0,1], -"extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[7,0,0,0,0,4,0,1,0], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html":[7,0,0,0,0,5,0,0], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html":[7,0,0,0,0,5,0,1], -"extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[7,0,0,0,0,5,0,1,0], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html":[7,0,0,0,0,6,0,0], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html":[7,0,0,0,0,6,0,1], -"extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525":[7,0,0,0,0,6,0,1,0], -"extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html":[7,0,0,0,0,7,0,0], -"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html":[7,0,0,0,0,7,0,1], -"extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da":[7,0,0,0,0,7,0,1,0], -"externals_8php.html":[7,0,1,37], -"externals_8php.html#a4df44079e6f915286088b7a0d44db926":[7,0,1,37,0], -"extract_8php.html":[7,0,3,4], -"extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44":[7,0,3,4,3], -"extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[7,0,3,4,2], -"extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[7,0,3,4,0], -"extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[7,0,3,4,1], -"fbrowser_8php.html":[7,0,2,31], -"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[7,0,2,31,0], -"features_8php.html":[7,0,1,38], -"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[7,0,1,38,0], -"features_8php.html#ab9a273de13a12a1c561b380cabaea090":[7,0,1,38,1], -"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[7,0,1,38,2], -"feed_8php.html":[7,0,2,32], -"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[7,0,2,32,0], -"filer_8php.html":[7,0,2,33], -"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[7,0,2,33,0], -"filerm_8php.html":[7,0,2,34], -"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[7,0,2,34,0], -"files.html":[7,0], -"filestorage_8php.html":[7,0,2,35], -"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[7,0,2,35,0], -"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[7,0,2,35,1], -"fpostit_8php.html":[7,0,3,0,0], -"fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[7,0,3,0,0,0], -"fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[7,0,3,0,0,1], -"friendica-to-smarty-tpl_8py.html":[7,0,3,5], -"friendica-to-smarty-tpl_8py.html#a005c1b7a69cac31fad72a941974ba7bb":[7,0,3,5,11], -"friendica-to-smarty-tpl_8py.html#a0b4cf73d1a8d201a28d269eeb62a5d5c":[7,0,3,5,8], -"friendica-to-smarty-tpl_8py.html#a3719dd46e286a57d315e6adae1845854":[7,0,3,5,1], -"friendica-to-smarty-tpl_8py.html#a38503e37fe68ac27c88cce91a9ac9efa":[7,0,3,5,0], -"friendica-to-smarty-tpl_8py.html#a5dfc21ab8282dda8e3a7dff43cd0e283":[7,0,3,5,13], -"friendica-to-smarty-tpl_8py.html#a5f9bf7a67d955c0d6be70a82097611c5":[7,0,3,5,6], -"friendica-to-smarty-tpl_8py.html#a68d15934660cd1f4301ce251b1646f09":[7,0,3,5,12], -"friendica-to-smarty-tpl_8py.html#a8540514fb7c4aa18ad2dffa2a975036b":[7,0,3,5,14], -"friendica-to-smarty-tpl_8py.html#a87182a9bab47640428bd0b2b9946bef9":[7,0,3,5,10], -"friendica-to-smarty-tpl_8py.html#a89388ea9b2826e8218ed480e917d8105":[7,0,3,5,2], -"friendica-to-smarty-tpl_8py.html#a965e1d6d6293654a56e029a7e454dec7":[7,0,3,5,5], -"friendica-to-smarty-tpl_8py.html#ad9ef87ccb2c9960501f5e02424a22d80":[7,0,3,5,9], -"friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[7,0,3,5,7], -"friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[7,0,3,5,4], -"friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[7,0,3,5,3], -"fsuggest_8php.html":[7,0,2,37], -"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[7,0,2,37,1], -"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[7,0,2,37,0], -"full_8php.html":[7,0,4,0,2], -"full_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,0,2,0], -"functions.html":[6,3,0,0], -"functions.html":[6,3,0], -"functions_0x5f.html":[6,3,0,1], -"functions_0x61.html":[6,3,0,2], -"functions_0x62.html":[6,3,0,3], -"functions_0x63.html":[6,3,0,4], -"functions_0x64.html":[6,3,0,5], -"functions_0x65.html":[6,3,0,6], -"functions_0x66.html":[6,3,0,7], -"functions_0x67.html":[6,3,0,8], -"functions_0x68.html":[6,3,0,9], -"functions_0x69.html":[6,3,0,10], -"functions_0x6c.html":[6,3,0,11], -"functions_0x6d.html":[6,3,0,12], -"functions_0x6e.html":[6,3,0,13], -"functions_0x6f.html":[6,3,0,14], -"functions_0x70.html":[6,3,0,15], -"functions_0x71.html":[6,3,0,16], -"functions_0x72.html":[6,3,0,17], -"functions_0x73.html":[6,3,0,18], -"functions_0x74.html":[6,3,0,19], -"functions_0x75.html":[6,3,0,20], -"functions_0x76.html":[6,3,0,21], -"functions_8php.html":[7,0,4,1,0,1,1], -"functions_8php.html#adefe514c95680928b3aae250cbc3c663":[7,0,4,1,0,1,1,0], -"functions_func.html":[6,3,1], -"functions_func.html":[6,3,1,0], -"functions_func_0x61.html":[6,3,1,1], -"functions_func_0x62.html":[6,3,1,2], -"functions_func_0x63.html":[6,3,1,3], -"functions_func_0x64.html":[6,3,1,4], -"functions_func_0x65.html":[6,3,1,5], -"functions_func_0x66.html":[6,3,1,6], -"functions_func_0x67.html":[6,3,1,7], -"functions_func_0x68.html":[6,3,1,8], -"functions_func_0x69.html":[6,3,1,9], -"functions_func_0x6c.html":[6,3,1,10], -"functions_func_0x6d.html":[6,3,1,11], -"functions_func_0x6e.html":[6,3,1,12], -"functions_func_0x6f.html":[6,3,1,13], -"functions_func_0x70.html":[6,3,1,14], -"functions_func_0x71.html":[6,3,1,15], -"functions_func_0x72.html":[6,3,1,16], -"functions_func_0x73.html":[6,3,1,17], -"functions_func_0x74.html":[6,3,1,18], -"functions_func_0x75.html":[6,3,1,19], -"functions_func_0x76.html":[6,3,1,20], -"functions_vars.html":[6,3,2], -"globals.html":[7,1,0], -"globals.html":[7,1,0,0], -"globals_0x5f.html":[7,1,0,1], -"globals_0x61.html":[7,1,0,2], -"globals_0x62.html":[7,1,0,3], -"globals_0x63.html":[7,1,0,4], -"globals_0x64.html":[7,1,0,5], -"globals_0x65.html":[7,1,0,6], -"globals_0x66.html":[7,1,0,7], -"globals_0x67.html":[7,1,0,8], -"globals_0x68.html":[7,1,0,9], -"globals_0x69.html":[7,1,0,10], -"globals_0x6a.html":[7,1,0,11], -"globals_0x6b.html":[7,1,0,12], -"globals_0x6c.html":[7,1,0,13], -"globals_0x6d.html":[7,1,0,14], -"globals_0x6e.html":[7,1,0,15], -"globals_0x6f.html":[7,1,0,16], -"globals_0x70.html":[7,1,0,17], -"globals_0x71.html":[7,1,0,18], -"globals_0x72.html":[7,1,0,19], -"globals_0x73.html":[7,1,0,20], -"globals_0x74.html":[7,1,0,21], -"globals_0x75.html":[7,1,0,22], -"globals_0x76.html":[7,1,0,23], -"globals_0x77.html":[7,1,0,24], -"globals_0x78.html":[7,1,0,25], -"globals_0x79.html":[7,1,0,26], -"globals_0x7a.html":[7,1,0,27], -"globals_func.html":[7,1,1], -"globals_func.html":[7,1,1,0], -"globals_func_0x61.html":[7,1,1,1], -"globals_func_0x62.html":[7,1,1,2], -"globals_func_0x63.html":[7,1,1,3], -"globals_func_0x64.html":[7,1,1,4], -"globals_func_0x65.html":[7,1,1,5], -"globals_func_0x66.html":[7,1,1,6], -"globals_func_0x67.html":[7,1,1,7], -"globals_func_0x68.html":[7,1,1,8], -"globals_func_0x69.html":[7,1,1,9], -"globals_func_0x6a.html":[7,1,1,10], -"globals_func_0x6b.html":[7,1,1,11], -"globals_func_0x6c.html":[7,1,1,12], -"globals_func_0x6d.html":[7,1,1,13], -"globals_func_0x6e.html":[7,1,1,14], -"globals_func_0x6f.html":[7,1,1,15], -"globals_func_0x70.html":[7,1,1,16], -"globals_func_0x71.html":[7,1,1,17], -"globals_func_0x72.html":[7,1,1,18], -"globals_func_0x73.html":[7,1,1,19], -"globals_func_0x74.html":[7,1,1,20], -"globals_func_0x75.html":[7,1,1,21], -"globals_func_0x76.html":[7,1,1,22], -"globals_func_0x77.html":[7,1,1,23], -"globals_func_0x78.html":[7,1,1,24], -"globals_func_0x79.html":[7,1,1,25], -"globals_func_0x7a.html":[7,1,1,26], -"globals_vars.html":[7,1,2,0], -"globals_vars.html":[7,1,2], -"globals_vars_0x61.html":[7,1,2,1], -"globals_vars_0x63.html":[7,1,2,2], -"globals_vars_0x64.html":[7,1,2,3], -"globals_vars_0x65.html":[7,1,2,4], -"globals_vars_0x66.html":[7,1,2,5], -"globals_vars_0x67.html":[7,1,2,6], -"globals_vars_0x68.html":[7,1,2,7], -"globals_vars_0x69.html":[7,1,2,8], -"globals_vars_0x6a.html":[7,1,2,9], -"globals_vars_0x6b.html":[7,1,2,10], -"globals_vars_0x6c.html":[7,1,2,11], -"globals_vars_0x6d.html":[7,1,2,12], -"globals_vars_0x6e.html":[7,1,2,13], -"globals_vars_0x70.html":[7,1,2,14], -"globals_vars_0x72.html":[7,1,2,15], -"globals_vars_0x73.html":[7,1,2,16], -"globals_vars_0x74.html":[7,1,2,17], -"globals_vars_0x75.html":[7,1,2,18], -"globals_vars_0x76.html":[7,1,2,19], -"globals_vars_0x77.html":[7,1,2,20], -"globals_vars_0x78.html":[7,1,2,21], -"globals_vars_0x7a.html":[7,1,2,22], -"gprobe_8php.html":[7,0,1,40], -"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[7,0,1,40,0], -"greenthumbnails_8php.html":[7,0,4,1,0,2,3], -"hcard_8php.html":[7,0,2,39], -"hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[7,0,2,39,0], -"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[7,0,2,39,1], -"help_8php.html":[7,0,2,40], -"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[7,0,2,40,1], -"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[7,0,2,40,0], -"hierarchy.html":[6,2], -"home_8php.html":[7,0,2,41], -"home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f":[7,0,2,41,0], -"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[7,0,2,41,1], -"hostxrd_8php.html":[7,0,2,42], -"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[7,0,2,42,0], -"html2bbcode_8php.html":[7,0,1,42], -"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[7,0,1,42,3], -"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[7,0,1,42,1], -"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[7,0,1,42,0], -"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[7,0,1,42,2], -"html2plain_8php.html":[7,0,1,43], -"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[7,0,1,43,0], -"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[7,0,1,43,3], -"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[7,0,1,43,2], -"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[7,0,1,43,1], -"hubloc_8php.html":[7,0,1,44], -"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[7,0,1,44,3], -"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[7,0,1,44,5], -"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[7,0,1,44,2], -"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[7,0,1,44,0], -"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[7,0,1,44,1], -"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[7,0,1,44,4], -"identity_8php.html":[7,0,1,45], -"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[7,0,1,45,3], -"identity_8php.html#a224710dfb7465b706c91134247c20afa":[7,0,1,45,12], -"identity_8php.html#a293f416ce9050220b183e08ff5890216":[7,0,1,45,6], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[7,0,1,45,18], -"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[7,0,1,45,23], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[7,0,1,45,11], -"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[7,0,1,45,2], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[7,0,1,45,27], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[7,0,1,45,26], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[7,0,1,45,28], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[7,0,1,45,9], -"identity_8php.html#a4e996e44b50330098a04b467367a559f":[7,0,1,45,21], -"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[7,0,1,45,13], -"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[7,0,1,45,24], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[7,0,1,45,31], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[7,0,1,45,32], -"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[7,0,1,45,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[7,0,1,45,29], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[7,0,1,45,20], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[7,0,1,45,10], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[7,0,1,45,22], -"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[7,0,1,45,0] -}; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js deleted file mode 100644 index 35247b8b1..000000000 --- a/doc/html/navtreeindex6.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX6 = -{ -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[7,0,1,45,15], -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[7,0,1,45,14], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[7,0,1,45,7], -"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[7,0,1,45,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[7,0,1,45,17], -"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[7,0,1,45,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[7,0,1,45,25], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[7,0,1,45,19], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[7,0,1,45,8], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[7,0,1,45,30], -"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[7,0,1,45,16], -"impel_8php.html":[7,0,2,43], -"impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[7,0,2,43,0], -"import_8php.html":[7,0,2,44], -"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[7,0,2,44,1], -"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[7,0,2,44,0], -"importelm_8php.html":[7,0,2,45], -"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[7,0,2,45,0], -"include_2api_8php.html":[7,0,1,7], -"include_2api_8php.html#a0991f72554f821255397d615e76f3203":[7,0,1,7,12], -"include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[7,0,1,7,5], -"include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879":[7,0,1,7,18], -"include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f":[7,0,1,7,15], -"include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b":[7,0,1,7,0], -"include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283":[7,0,1,7,47], -"include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8":[7,0,1,7,16], -"include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e":[7,0,1,7,53], -"include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95":[7,0,1,7,41], -"include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea":[7,0,1,7,19], -"include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60":[7,0,1,7,32], -"include_2api_8php.html#a528d8070ee74ea800102936ce73cf366":[7,0,1,7,40], -"include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74":[7,0,1,7,21], -"include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d":[7,0,1,7,13], -"include_2api_8php.html#a5990101034e7abf6404feba3cd273629":[7,0,1,7,4], -"include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08":[7,0,1,7,48], -"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[7,0,1,7,35], -"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[7,0,1,7,38], -"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[7,0,1,7,34], -"include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[7,0,1,7,6], -"include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[7,0,1,7,9], -"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[7,0,1,7,2], -"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[7,0,1,7,49], -"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[7,0,1,7,42], -"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[7,0,1,7,10], -"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[7,0,1,7,8], -"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[7,0,1,7,37], -"include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3":[7,0,1,7,30], -"include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa":[7,0,1,7,23], -"include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1":[7,0,1,7,27], -"include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d":[7,0,1,7,55], -"include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f":[7,0,1,7,31], -"include_2api_8php.html#aa9dc5350b26d6c7727d6c4b641ecba18":[7,0,1,7,3], -"include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898":[7,0,1,7,52], -"include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b":[7,0,1,7,17], -"include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76":[7,0,1,7,51], -"include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a":[7,0,1,7,33], -"include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23":[7,0,1,7,26], -"include_2api_8php.html#acafd2899309a005fcb725289173dc7fe":[7,0,1,7,22], -"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[7,0,1,7,43], -"include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[7,0,1,7,11], -"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[7,0,1,7,36], -"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[7,0,1,7,46], -"include_2api_8php.html#ad5fe62d6c25c86999f627b2e6cfde536":[7,0,1,7,24], -"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[7,0,1,7,39], -"include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53":[7,0,1,7,14], -"include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[7,0,1,7,44], -"include_2api_8php.html#ae46f964e5a9c80b96dc78df61c09ed3a":[7,0,1,7,25], -"include_2api_8php.html#ae82608c317421f27446465aa6724733d":[7,0,1,7,20], -"include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5":[7,0,1,7,1], -"include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25":[7,0,1,7,7], -"include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8":[7,0,1,7,54], -"include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63":[7,0,1,7,45], -"include_2api_8php.html#afb99daa6b731bf497b81f2128084852c":[7,0,1,7,50], -"include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73":[7,0,1,7,28], -"include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0":[7,0,1,7,29], -"include_2apps_8php.html":[7,0,1,8], -"include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0":[7,0,1,8,5], -"include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9":[7,0,1,8,8], -"include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2":[7,0,1,8,4], -"include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66":[7,0,1,8,7], -"include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7":[7,0,1,8,2], -"include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83":[7,0,1,8,12], -"include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030":[7,0,1,8,13], -"include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f":[7,0,1,8,1], -"include_2apps_8php.html#a72756e1601489eb77971eeda011446d0":[7,0,1,8,3], -"include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658":[7,0,1,8,6], -"include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185":[7,0,1,8,0], -"include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680":[7,0,1,8,11], -"include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca":[7,0,1,8,10], -"include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46":[7,0,1,8,9], -"include_2attach_8php.html":[7,0,1,9], -"include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997":[7,0,1,9,10], -"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[7,0,1,9,0], -"include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f":[7,0,1,9,13], -"include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[7,0,1,9,5], -"include_2attach_8php.html#a4dbfd7e1cef52aa9ef52f4b88929fa86":[7,0,1,9,9], -"include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221":[7,0,1,9,2], -"include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34":[7,0,1,9,15], -"include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce":[7,0,1,9,11], -"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[7,0,1,9,17], -"include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd":[7,0,1,9,4], -"include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f":[7,0,1,9,7], -"include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3":[7,0,1,9,3], -"include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355":[7,0,1,9,14], -"include_2attach_8php.html#aa23ba65e5bb732be71fdd27ccff7d46e":[7,0,1,9,8], -"include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db":[7,0,1,9,12], -"include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886":[7,0,1,9,16], -"include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc":[7,0,1,9,6], -"include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[7,0,1,9,1], -"include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[7,0,1,9,18], -"include_2bookmarks_8php.html":[7,0,1,14], -"include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[7,0,1,14,1], -"include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[7,0,1,14,0], -"include_2chat_8php.html":[7,0,1,16], -"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[7,0,1,16,4], -"include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049":[7,0,1,16,6], -"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[7,0,1,16,2], -"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[7,0,1,16,3], -"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[7,0,1,16,1], -"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[7,0,1,16,0], -"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[7,0,1,16,5], -"include_2config_8php.html":[7,0,1,20], -"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[7,0,1,20,7], -"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[7,0,1,20,0], -"include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[7,0,1,20,8], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[7,0,1,20,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[7,0,1,20,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[7,0,1,20,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[7,0,1,20,6], -"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[7,0,1,20,5], -"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[7,0,1,20,10], -"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[7,0,1,20,9], -"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[7,0,1,20,3], -"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[7,0,1,20,4], -"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[7,0,1,20,12], -"include_2directory_8php.html":[7,0,1,33], -"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[7,0,1,33,0], -"include_2follow_8php.html":[7,0,1,39], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[7,0,1,39,0], -"include_2group_8php.html":[7,0,1,41], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[7,0,1,41,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[7,0,1,41,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[7,0,1,41,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[7,0,1,41,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[7,0,1,41,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[7,0,1,41,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[7,0,1,41,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[7,0,1,41,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[7,0,1,41,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[7,0,1,41,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[7,0,1,41,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[7,0,1,41,9], -"include_2menu_8php.html":[7,0,1,50], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[7,0,1,50,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[7,0,1,50,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[7,0,1,50,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[7,0,1,50,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[7,0,1,50,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[7,0,1,50,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[7,0,1,50,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[7,0,1,50,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[7,0,1,50,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[7,0,1,50,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[7,0,1,50,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[7,0,1,50,0], -"include_2message_8php.html":[7,0,1,51], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[7,0,1,51,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[7,0,1,51,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[7,0,1,51,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[7,0,1,51,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[7,0,1,51,0], -"include_2network_8php.html":[7,0,1,53], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[7,0,1,53,7], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[7,0,1,53,14], -"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[7,0,1,53,16], -"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[7,0,1,53,21], -"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[7,0,1,53,6], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[7,0,1,53,12], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[7,0,1,53,11], -"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[7,0,1,53,4], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[7,0,1,53,20], -"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[7,0,1,53,5], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[7,0,1,53,10], -"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[7,0,1,53,9], -"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[7,0,1,53,13], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[7,0,1,53,19], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[7,0,1,53,8], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[7,0,1,53,25], -"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[7,0,1,53,26], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[7,0,1,53,22], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[7,0,1,53,23], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[7,0,1,53,24], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[7,0,1,53,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[7,0,1,53,0], -"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[7,0,1,53,17], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[7,0,1,53,3], -"include_2network_8php.html#adf741da85aa82493f2084eca63092dd5":[7,0,1,53,18], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[7,0,1,53,15], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[7,0,1,53,1], -"include_2notify_8php.html":[7,0,1,55], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[7,0,1,55,0], -"include_2oembed_8php.html":[7,0,1,57], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[7,0,1,57,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[7,0,1,57,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[7,0,1,57,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[7,0,1,57,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[7,0,1,57,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[7,0,1,57,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[7,0,1,57,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[7,0,1,57,2], -"include_2photos_8php.html":[7,0,1,62], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[7,0,1,62,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[7,0,1,62,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[7,0,1,62,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[7,0,1,62,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[7,0,1,62,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[7,0,1,62,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[7,0,1,62,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[7,0,1,62,4], -"include_2probe_8php.html":[7,0,1,65], -"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[7,0,1,65,3], -"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[7,0,1,65,4], -"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[7,0,1,65,1], -"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[7,0,1,65,8], -"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[7,0,1,65,0], -"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[7,0,1,65,6], -"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[7,0,1,65,2], -"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[7,0,1,65,7], -"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[7,0,1,65,5], -"index.html":[], -"interfaceITemplateEngine.html":[6,0,22], -"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[6,0,22,1], -"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[6,0,22,0], -"invite_8php.html":[7,0,2,46], -"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[7,0,2,46,0], -"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[7,0,2,46,1], -"item_8php.html":[7,0,2,47], -"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[7,0,2,47,0], -"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[7,0,2,47,2], -"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[7,0,2,47,4], -"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[7,0,2,47,3], -"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[7,0,2,47,1], -"items_8php.html":[7,0,1,48], -"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[7,0,1,48,3], -"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[7,0,1,48,43], -"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[7,0,1,48,31], -"items_8php.html#a0790a4550b829e85504af548623002ca":[7,0,1,48,10], -"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[7,0,1,48,36], -"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[7,0,1,48,45], -"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[7,0,1,48,28] -}; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js deleted file mode 100644 index 3c4a583d9..000000000 --- a/doc/html/navtreeindex7.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX7 = -{ -"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[7,0,1,48,74], -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[7,0,1,48,5], -"items_8php.html#a251343637ff40a50cca93452cd530c26":[7,0,1,48,35], -"items_8php.html#a25221826fa4621f523c68483e3b6af26":[7,0,1,48,66], -"items_8php.html#a2541e6861a56d145c9281877cc501615":[7,0,1,48,48], -"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[7,0,1,48,4], -"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[7,0,1,48,73], -"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[7,0,1,48,39], -"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[7,0,1,48,23], -"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[7,0,1,48,0], -"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[7,0,1,48,41], -"items_8php.html#a410f9c743877c125ca06312373346903":[7,0,1,48,55], -"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[7,0,1,48,57], -"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[7,0,1,48,60], -"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[7,0,1,48,37], -"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[7,0,1,48,33], -"items_8php.html#a566c601726697e044e75284af7fb6f17":[7,0,1,48,22], -"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[7,0,1,48,19], -"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[7,0,1,48,15], -"items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c":[7,0,1,48,64], -"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[7,0,1,48,30], -"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[7,0,1,48,47], -"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[7,0,1,48,20], -"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[7,0,1,48,46], -"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[7,0,1,48,18], -"items_8php.html#a6b448675b71b00ee5ef798468dde4d22":[7,0,1,48,16], -"items_8php.html#a6bee35961f2e32905f20367a9309d627":[7,0,1,48,40], -"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[7,0,1,48,44], -"items_8php.html#a756738301f2ed96be50232500677d58a":[7,0,1,48,50], -"items_8php.html#a77051724d1784074ff187e73a4db93fe":[7,0,1,48,38], -"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[7,0,1,48,7], -"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[7,0,1,48,53], -"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[7,0,1,48,61], -"items_8php.html#a81565acf729e629e588d823308448e3c":[7,0,1,48,1], -"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[7,0,1,48,58], -"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[7,0,1,48,54], -"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[7,0,1,48,6], -"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[7,0,1,48,69], -"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[7,0,1,48,27], -"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[7,0,1,48,13], -"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[7,0,1,48,34], -"items_8php.html#a9b449eeae50003414b8b30ca927af434":[7,0,1,48,72], -"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[7,0,1,48,70], -"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[7,0,1,48,12], -"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[7,0,1,48,24], -"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[7,0,1,48,11], -"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[7,0,1,48,32], -"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[7,0,1,48,63], -"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[7,0,1,48,71], -"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[7,0,1,48,67], -"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[7,0,1,48,52], -"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[7,0,1,48,29], -"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[7,0,1,48,9], -"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[7,0,1,48,2], -"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[7,0,1,48,21], -"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[7,0,1,48,49], -"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[7,0,1,48,56], -"items_8php.html#ad34827ed330898456783fb14c7b46154":[7,0,1,48,68], -"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[7,0,1,48,59], -"items_8php.html#ad65e3d4d8c537e560286b735a285e33e":[7,0,1,48,17], -"items_8php.html#ada03c12bfd247c9972844e2daa270b52":[7,0,1,48,8], -"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[7,0,1,48,14], -"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[7,0,1,48,65], -"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[7,0,1,48,26], -"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[7,0,1,48,42], -"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[7,0,1,48,62], -"items_8php.html#af94c281016c6c912d06e064113336c5c":[7,0,1,48,51], -"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[7,0,1,48,25], -"lang_8php.html":[7,0,2,48], -"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[7,0,2,48,0], -"language_8php.html":[7,0,1,49], -"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[7,0,1,49,7], -"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[7,0,1,49,3], -"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[7,0,1,49,0], -"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[7,0,1,49,9], -"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[7,0,1,49,5], -"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[7,0,1,49,4], -"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[7,0,1,49,1], -"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[7,0,1,49,8], -"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[7,0,1,49,6], -"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[7,0,1,49,2], -"layouts_8php.html":[7,0,2,49], -"layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[7,0,2,49,1], -"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[7,0,2,49,0], -"like_8php.html":[7,0,2,50], -"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[7,0,2,50,0], -"lockview_8php.html":[7,0,2,51], -"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[7,0,2,51,0], -"locs_8php.html":[7,0,2,52], -"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[7,0,2,52,1], -"locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[7,0,2,52,0], -"login_8php.html":[7,0,2,53], -"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[7,0,2,53,0], -"lostpass_8php.html":[7,0,2,54], -"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[7,0,2,54,0], -"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[7,0,2,54,1], -"magic_8php.html":[7,0,2,55], -"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[7,0,2,55,0], -"mail_8php.html":[7,0,2,56], -"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[7,0,2,56,0], -"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[7,0,2,56,1], -"manage_8php.html":[7,0,2,57], -"manage_8php.html#a2bca247b5296827638959138367db4f5":[7,0,2,57,0], -"match_8php.html":[7,0,2,58], -"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[7,0,2,58,0], -"md_README.html":[2], -"md_config.html":[0], -"md_fresh.html":[1], -"minimal_8php.html":[7,0,4,0,3], -"minimalisticdarkness_8php.html":[7,0,4,1,0,2,4], -"minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f":[7,0,4,1,0,2,4,4], -"minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead":[7,0,4,1,0,2,4,3], -"minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57":[7,0,4,1,0,2,4,5], -"minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[7,0,4,1,0,2,4,0], -"minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[7,0,4,1,0,2,4,2], -"minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[7,0,4,1,0,2,4,1], -"mitem_8php.html":[7,0,2,61], -"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[7,0,2,61,2], -"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[7,0,2,61,0], -"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[7,0,2,61,1], -"mod_2api_8php.html":[7,0,2,4], -"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[7,0,2,4,2], -"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[7,0,2,4,0], -"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[7,0,2,4,1], -"mod_2apps_8php.html":[7,0,2,6], -"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[7,0,2,6,0], -"mod_2attach_8php.html":[7,0,2,7], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[7,0,2,7,0], -"mod_2bookmarks_8php.html":[7,0,2,10], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[7,0,2,10,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[7,0,2,10,0], -"mod_2chat_8php.html":[7,0,2,13], -"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[7,0,2,13,0], -"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[7,0,2,13,2], -"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[7,0,2,13,1], -"mod_2directory_8php.html":[7,0,2,23], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[7,0,2,23,1], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[7,0,2,23,0], -"mod_2follow_8php.html":[7,0,2,36], -"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[7,0,2,36,1], -"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[7,0,2,36,0], -"mod_2group_8php.html":[7,0,2,38], -"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[7,0,2,38,0], -"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[7,0,2,38,1], -"mod_2menu_8php.html":[7,0,2,59], -"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[7,0,2,59,0], -"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[7,0,2,59,1], -"mod_2message_8php.html":[7,0,2,60], -"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[7,0,2,60,0], -"mod_2network_8php.html":[7,0,2,65], -"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[7,0,2,65,1], -"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[7,0,2,65,0], -"mod_2notify_8php.html":[7,0,2,69], -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[7,0,2,69,1], -"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[7,0,2,69,0], -"mod_2oembed_8php.html":[7,0,2,70], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[7,0,2,70,0], -"mod_2photos_8php.html":[7,0,2,80], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[7,0,2,80,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[7,0,2,80,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[7,0,2,80,1], -"mod_2probe_8php.html":[7,0,2,89], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[7,0,2,89,0], -"mod__chanview_8php.html":[7,0,4,1,0,0,0], -"mod__import_8php.html":[7,0,4,0,4], -"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[7,0,4,0,4,0], -"mood_8php.html":[7,0,2,62], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[7,0,2,62,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[7,0,2,62,1], -"msearch_8php.html":[7,0,2,63], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[7,0,2,63,0], -"namespaceFriendica.html":[5,0,2], -"namespaceFriendica.html":[6,0,2], -"namespaceRedMatrix.html":[6,0,4], -"namespaceRedMatrix.html":[5,0,4], -"namespaceRedMatrix_1_1Import.html":[5,0,4,0], -"namespaceRedMatrix_1_1Import.html":[6,0,4,0], -"namespaceRedMatrix_1_1RedDAV.html":[6,0,4,1], -"namespaceRedMatrix_1_1RedDAV.html":[5,0,4,1], -"namespaceacl__selectors.html":[5,0,0], -"namespaceacl__selectors.html":[6,0,0], -"namespaceeasywebdav.html":[5,0,1], -"namespaceeasywebdav.html":[6,0,1], -"namespaceeasywebdav_1_1____version____.html":[5,0,1,0], -"namespaceeasywebdav_1_1____version____.html":[6,0,1,0], -"namespaceeasywebdav_1_1client.html":[5,0,1,1], -"namespaceeasywebdav_1_1client.html":[6,0,1,1], -"namespacefriendica-to-smarty-tpl.html":[5,0,3], -"namespacefriendica-to-smarty-tpl.html":[6,0,3], -"namespacemembers.html":[5,1,0], -"namespacemembers_func.html":[5,1,1], -"namespacemembers_vars.html":[5,1,2], -"namespaces.html":[5,0], -"namespaceupdatetpl.html":[6,0,5], -"namespaceupdatetpl.html":[5,0,5], -"namespaceutil.html":[6,0,6], -"namespaceutil.html":[5,0,6], -"namespacezotsh.html":[6,0,7], -"namespacezotsh.html":[5,0,7], -"nav_8php.html":[7,0,1,52], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[7,0,1,52,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[7,0,1,52,1], -"netgrowth_8php.html":[7,0,2,64], -"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[7,0,2,64,0], -"new__channel_8php.html":[7,0,2,66], -"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[7,0,2,66,2], -"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[7,0,2,66,1], -"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[7,0,2,66,0], -"none_8php.html":[7,0,4,0,5], -"notes_8php.html":[7,0,2,67], -"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[7,0,2,67,0], -"notifications_8php.html":[7,0,2,68], -"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[7,0,2,68,1], -"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[7,0,2,68,0], -"notifier_8php.html":[7,0,1,54], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[7,0,1,54,0], -"notred_8php.html":[7,0,4,1,2,1,3], -"oauth_8php.html":[7,0,1,56], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[7,0,1,56,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[7,0,1,56,2], -"oexchange_8php.html":[7,0,2,71], -"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[7,0,2,71,0], -"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[7,0,2,71,1], -"olddefault_8php.html":[7,0,4,1,0,2,5], -"onedirsync_8php.html":[7,0,1,58], -"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[7,0,1,58,0], -"onepoll_8php.html":[7,0,1,59], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[7,0,1,59,0], -"online_8php.html":[7,0,2,72], -"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[7,0,2,72,0], -"openid_8php.html":[7,0,2,73], -"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[7,0,2,73,0], -"opensearch_8php.html":[7,0,2,74], -"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[7,0,2,74,0], -"p_8php.html":[7,0,2,75], -"p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e":[7,0,2,75,0], -"page_8php.html":[7,0,2,76], -"page_8php.html#a4d89800c0366a239191b1692c09635cf":[7,0,2,76,1], -"page_8php.html#a91a5f649f68406149108bded1dc90b22":[7,0,2,76,0], -"page__widgets_8php.html":[7,0,1,60], -"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[7,0,1,60,1], -"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[7,0,1,60,0], -"pages.html":[], -"parse__url_8php.html":[7,0,2,77], -"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[7,0,2,77,2], -"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[7,0,2,77,3], -"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[7,0,2,77,1], -"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[7,0,2,77,0], -"passion_8php.html":[7,0,4,1,0,2,6], -"passionwide_8php.html":[7,0,4,1,0,2,7] -}; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js deleted file mode 100644 index 1311d48ba..000000000 --- a/doc/html/navtreeindex8.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX8 = -{ -"pdledit_8php.html":[7,0,2,78], -"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[7,0,2,78,0], -"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[7,0,2,78,1], -"permissions_8php.html":[7,0,1,61], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[7,0,1,61,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[7,0,1,61,0], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[7,0,1,61,5], -"permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991":[7,0,1,61,4], -"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[7,0,1,61,3], -"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[7,0,1,61,6], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[7,0,1,61,1], -"photo_8php.html":[7,0,2,79], -"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[7,0,2,79,0], -"photo__driver_8php.html":[7,0,1,2,0], -"photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[7,0,1,2,0,2], -"photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa":[7,0,1,2,0,1], -"photo__driver_8php.html#a32e2817faa25d7f11f60a8abff565035":[7,0,1,2,0,4], -"photo__driver_8php.html#a78f5a10c568d2a9bbbb129dc96548887":[7,0,1,2,0,3], -"photo__gd_8php.html":[7,0,1,2,1], -"photo__imagick_8php.html":[7,0,1,2,2], -"php2po_8php.html":[7,0,3,6], -"php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b":[7,0,3,6,7], -"php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1":[7,0,3,6,5], -"php2po_8php.html#a45b05625748f412ec97afcd61cf7980b":[7,0,3,6,6], -"php2po_8php.html#a48cb304902320d173a4eaa41543327b9":[7,0,3,6,3], -"php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214":[7,0,3,6,0], -"php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0":[7,0,3,6,1], -"php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4":[7,0,3,6,4], -"php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178":[7,0,3,6,2], -"php_2default_8php.html":[7,0,4,0,1], -"php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,0,1,0], -"php_2theme__init_8php.html":[7,0,4,0,7], -"php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[7,0,4,0,7,0], -"php_8php.html":[7,0,2,81], -"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[7,0,2,81,0], -"pine_8php.html":[7,0,4,1,0,2,8], -"ping_8php.html":[7,0,2,82], -"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[7,0,2,82,0], -"plugin_8php.html":[7,0,1,63], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[7,0,1,63,24], -"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[7,0,1,63,22], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[7,0,1,63,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[7,0,1,63,17], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[7,0,1,63,20], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[7,0,1,63,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[7,0,1,63,16], -"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[7,0,1,63,14], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[7,0,1,63,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[7,0,1,63,26], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[7,0,1,63,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[7,0,1,63,23], -"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[7,0,1,63,12], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[7,0,1,63,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[7,0,1,63,0], -"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[7,0,1,63,19], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[7,0,1,63,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[7,0,1,63,25], -"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[7,0,1,63,13], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[7,0,1,63,18], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[7,0,1,63,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[7,0,1,63,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[7,0,1,63,2], -"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[7,0,1,63,15], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[7,0,1,63,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[7,0,1,63,21], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[7,0,1,63,5], -"po2php_8php.html":[7,0,3,7], -"po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[7,0,3,7,0], -"po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334":[7,0,3,7,1], -"poco_8php.html":[7,0,2,83], -"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[7,0,2,83,0], -"poke_8php.html":[7,0,2,84], -"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[7,0,2,84,1], -"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[7,0,2,84,0], -"poll_8php.html":[7,0,2,85], -"poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[7,0,2,85,2], -"poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[7,0,2,85,0], -"poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[7,0,2,85,1], -"poller_8php.html":[7,0,1,64], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[7,0,1,64,0], -"post_8php.html":[7,0,2,86], -"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[7,0,2,86,0], -"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[7,0,2,86,1], -"prate_8php.html":[7,0,2,87], -"prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d":[7,0,2,87,0], -"prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd":[7,0,2,87,1], -"pretheme_8php.html":[7,0,2,88], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[7,0,2,88,0], -"profile_8php.html":[7,0,2,90], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[7,0,2,90,0], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[7,0,2,90,1], -"profile__photo_8php.html":[7,0,2,91], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[7,0,2,91,0], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[7,0,2,91,1], -"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[7,0,2,91,2], -"profile__selectors_8php.html":[7,0,1,66], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[7,0,1,66,4], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[7,0,1,66,2], -"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[7,0,1,66,1], -"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[7,0,1,66,5], -"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[7,0,1,66,3], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[7,0,1,66,0], -"profiles_8php.html":[7,0,2,92], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[7,0,2,92,1], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[7,0,2,92,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[7,0,2,92,2], -"profperm_8php.html":[7,0,2,93], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[7,0,2,93,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[7,0,2,93,0], -"pubsites_8php.html":[7,0,2,94], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[7,0,2,94,0], -"pubsub_8php.html":[7,0,2,95], -"pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb":[7,0,2,95,1], -"pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e":[7,0,2,95,2], -"pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123":[7,0,2,95,3], -"pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945":[7,0,2,95,0], -"pubsubhubbub_8php.html":[7,0,2,96], -"pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd":[7,0,2,96,0], -"pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0":[7,0,2,96,1], -"queue_8php.html":[7,0,1,68], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[7,0,1,68,0], -"queue__fn_8php.html":[7,0,1,69], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[7,0,1,69,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[7,0,1,69,0], -"randprof_8php.html":[7,0,2,97], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[7,0,2,97,0], -"rate_8php.html":[7,0,2,98], -"rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771":[7,0,2,98,1], -"rate_8php.html#a22fc66202522acb53fb3746fc21d80f2":[7,0,2,98,0], -"rate_8php.html#acae9f41835b07e3c977464030e8831fc":[7,0,2,98,2], -"ratenotif_8php.html":[7,0,1,70], -"ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37":[7,0,1,70,0], -"ratings_8php.html":[7,0,2,99], -"ratings_8php.html#a25f835d136b884354cf1fa4d897c857b":[7,0,2,99,0], -"ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3":[7,0,2,99,1], -"ratingsearch_8php.html":[7,0,2,100], -"ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466":[7,0,2,100,0], -"rbmark_8php.html":[7,0,2,101], -"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[7,0,2,101,0], -"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[7,0,2,101,1], -"receive_8php.html":[7,0,2,102], -"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[7,0,2,102,0], -"redable_8php.html":[7,0,4,0,6], -"redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,0,6,0], -"redbasic_8php.html":[7,0,4,1,0,2,9], -"reddav_8php.html":[7,0,1,71], -"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[7,0,1,71,1], -"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[7,0,1,71,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[7,0,1,71,0], -"refimport_8php.html":[7,0,1,1,1], -"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[7,0,1,1,1,2], -"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[7,0,1,1,1,1], -"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[7,0,1,1,1,6], -"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[7,0,1,1,1,12], -"refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c":[7,0,1,1,1,4], -"refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f":[7,0,1,1,1,8], -"refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f":[7,0,1,1,1,10], -"refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d":[7,0,1,1,1,3], -"refimport_8php.html#ac43699d8ae86175e049aa4e87853caac":[7,0,1,1,1,7], -"refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025":[7,0,1,1,1,9], -"refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29":[7,0,1,1,1,0], -"refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5":[7,0,1,1,1,5], -"refimport_8php.html#aeec793cefa260f788b7d005adcb35796":[7,0,1,1,1,11], -"regdir_8php.html":[7,0,2,103], -"regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd":[7,0,2,103,0], -"register_8php.html":[7,0,2,104], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[7,0,2,104,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[7,0,2,104,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[7,0,2,104,1], -"regmod_8php.html":[7,0,2,105], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[7,0,2,105,0], -"regver_8php.html":[7,0,2,106], -"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[7,0,2,106,0], -"removeaccount_8php.html":[7,0,2,107], -"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[7,0,2,107,1], -"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[7,0,2,107,0], -"removeme_8php.html":[7,0,2,108], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[7,0,2,108,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[7,0,2,108,1], -"rmagic_8php.html":[7,0,2,109], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[7,0,2,109,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[7,0,2,109,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[7,0,2,109,1], -"rpost_8php.html":[7,0,2,110], -"rpost_8php.html#a8190354d789000806d9879aea276728f":[7,0,2,110,0], -"rsd__xml_8php.html":[7,0,2,111], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[7,0,2,111,0], -"search_8php.html":[7,0,2,112], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[7,0,2,112,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[7,0,2,112,1], -"search__ac_8php.html":[7,0,2,113], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[7,0,2,113,0], -"security_8php.html":[7,0,1,72], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[7,0,1,72,2], -"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[7,0,1,72,11], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[7,0,1,72,4], -"security_8php.html#a6126c77a1267e046ac59cf864613f011":[7,0,1,72,10], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[7,0,1,72,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[7,0,1,72,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[7,0,1,72,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[7,0,1,72,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[7,0,1,72,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[7,0,1,72,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[7,0,1,72,0], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[7,0,1,72,8], -"service__limits_8php.html":[7,0,2,114], -"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[7,0,2,114,0], -"session_8php.html":[7,0,1,73], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[7,0,1,73,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[7,0,1,73,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[7,0,1,73,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[7,0,1,73,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[7,0,1,73,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[7,0,1,73,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[7,0,1,73,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[7,0,1,73,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[7,0,1,73,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[7,0,1,73,2], -"settings_8php.html":[7,0,2,115], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[7,0,2,115,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[7,0,2,115,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[7,0,2,115,2], -"setup_8php.html":[7,0,2,116], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[7,0,2,116,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[7,0,2,116,14], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[7,0,2,116,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[7,0,2,116,13], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[7,0,2,116,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[7,0,2,116,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[7,0,2,116,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[7,0,2,116,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[7,0,2,116,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[7,0,2,116,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[7,0,2,116,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[7,0,2,116,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[7,0,2,116,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[7,0,2,116,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[7,0,2,116,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[7,0,2,116,15], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[7,0,2,116,6], -"share_8php.html":[7,0,2,117], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[7,0,2,117,0], -"sharedwithme_8php.html":[7,0,2,118], -"sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190":[7,0,2,118,0], -"simple__black__on__white_8php.html":[7,0,4,1,2,1,4], -"simple__green__on__black_8php.html":[7,0,4,1,2,1,5], -"simple__white__on__black_8php.html":[7,0,4,1,2,1,6], -"siteinfo_8php.html":[7,0,2,119], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[7,0,2,119,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[7,0,2,119,0] -}; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js deleted file mode 100644 index 9cecfb38b..000000000 --- a/doc/html/navtreeindex9.js +++ /dev/null @@ -1,253 +0,0 @@ -var NAVTREEINDEX9 = -{ -"sitelist_8php.html":[7,0,2,120], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[7,0,2,120,0], -"smarty_8php.html":[7,0,1,74], -"smilies_8php.html":[7,0,2,121], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[7,0,2,121,0], -"socgraph_8php.html":[7,0,1,75], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[7,0,1,75,0], -"socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1":[7,0,1,75,6], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[7,0,1,75,7], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[7,0,1,75,8], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[7,0,1,75,9], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[7,0,1,75,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[7,0,1,75,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[7,0,1,75,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[7,0,1,75,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[7,0,1,75,3], -"sources_8php.html":[7,0,2,122], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[7,0,2,122,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[7,0,2,122,1], -"spam_8php.html":[7,0,1,76], -"spam_8php.html#a05861201147b9a538d006f0269255cf9":[7,0,1,76,1], -"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[7,0,1,76,0], -"sslify_8php.html":[7,0,2,123], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[7,0,2,123,0], -"starred_8php.html":[7,0,2,124], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[7,0,2,124,0], -"statistics__fns_8php.html":[7,0,1,77], -"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[7,0,1,77,2], -"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[7,0,1,77,0], -"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[7,0,1,77,3], -"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[7,0,1,77,1], -"subthread_8php.html":[7,0,2,125], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[7,0,2,125,0], -"suggest_8php.html":[7,0,2,126], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[7,0,2,126,0], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[7,0,2,126,1], -"system__unavailable_8php.html":[7,0,1,78], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[7,0,1,78,0], -"tagger_8php.html":[7,0,2,127], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[7,0,2,127,0], -"tagrm_8php.html":[7,0,2,128], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[7,0,2,128,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[7,0,2,128,0], -"taxonomy_8php.html":[7,0,1,79], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[7,0,1,79,10], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[7,0,1,79,1], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[7,0,1,79,3], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[7,0,1,79,7], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[7,0,1,79,5], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[7,0,1,79,4], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[7,0,1,79,11], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[7,0,1,79,2], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[7,0,1,79,8], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[7,0,1,79,15], -"taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287":[7,0,1,79,16], -"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[7,0,1,79,0], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[7,0,1,79,14], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[7,0,1,79,12], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[7,0,1,79,13], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[7,0,1,79,6], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[7,0,1,79,9], -"template__processor_8php.html":[7,0,1,80], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[7,0,1,80,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[7,0,1,80,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[7,0,1,80,2], -"text_8php.html":[7,0,1,81], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[7,0,1,81,45], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[7,0,1,81,53], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[7,0,1,81,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[7,0,1,81,16], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[7,0,1,81,11], -"text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0":[7,0,1,81,50], -"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[7,0,1,81,78], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[7,0,1,81,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[7,0,1,81,89], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[7,0,1,81,38], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[7,0,1,81,41], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[7,0,1,81,57], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[7,0,1,81,60], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[7,0,1,81,54], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[7,0,1,81,55], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[7,0,1,81,48], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[7,0,1,81,79], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[7,0,1,81,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[7,0,1,81,98], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[7,0,1,81,86], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[7,0,1,81,56], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[7,0,1,81,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[7,0,1,81,83], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[7,0,1,81,100], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[7,0,1,81,24], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[7,0,1,81,95], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[7,0,1,81,81], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[7,0,1,81,34], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[7,0,1,81,47], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[7,0,1,81,26], -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[7,0,1,81,19], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[7,0,1,81,80], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[7,0,1,81,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[7,0,1,81,96], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[7,0,1,81,39], -"text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc":[7,0,1,81,52], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[7,0,1,81,35], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[7,0,1,81,49], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[7,0,1,81,69], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[7,0,1,81,58], -"text_8php.html#a4e4045a07c55cacf3e4b63bde190d954":[7,0,1,81,51], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[7,0,1,81,25], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[7,0,1,81,68], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[7,0,1,81,92], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[7,0,1,81,9], -"text_8php.html#a5ee0715f7fa144b1307a3ff10222c609":[7,0,1,81,36], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[7,0,1,81,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[7,0,1,81,91], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[7,0,1,81,46], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[7,0,1,81,31], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[7,0,1,81,87], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[7,0,1,81,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[7,0,1,81,40], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[7,0,1,81,30], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[7,0,1,81,88], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[7,0,1,81,8], -"text_8php.html#a876e94892867019935b348b573299352":[7,0,1,81,76], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[7,0,1,81,82], -"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[7,0,1,81,15], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[7,0,1,81,21], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[7,0,1,81,67], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[7,0,1,81,20], -"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[7,0,1,81,93], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[7,0,1,81,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[7,0,1,81,62], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[7,0,1,81,73], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[7,0,1,81,71], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[7,0,1,81,75], -"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[7,0,1,81,37], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[7,0,1,81,33], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[7,0,1,81,17], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[7,0,1,81,63], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[7,0,1,81,42], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[7,0,1,81,32], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[7,0,1,81,99], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[7,0,1,81,77], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[7,0,1,81,94], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[7,0,1,81,97], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[7,0,1,81,64], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[7,0,1,81,43], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[7,0,1,81,84], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[7,0,1,81,22], -"text_8php.html#acedb584f65114a33f389efb796172a91":[7,0,1,81,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[7,0,1,81,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[7,0,1,81,72], -"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[7,0,1,81,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[7,0,1,81,59], -"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[7,0,1,81,28], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[7,0,1,81,44], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[7,0,1,81,74], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[7,0,1,81,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[7,0,1,81,65], -"text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b":[7,0,1,81,29], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[7,0,1,81,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[7,0,1,81,85], -"text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb":[7,0,1,81,90], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[7,0,1,81,70], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[7,0,1,81,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[7,0,1,81,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[7,0,1,81,66], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[7,0,1,81,61], -"theme_2apw_2php_2theme__init_8php.html":[7,0,4,1,0,1,4], -"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[7,0,4,1,0,1,4,0], -"theme_2mytheme_2php_2default_8php.html":[7,0,4,1,1,0,0], -"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[7,0,4,1,1,0,0,0], -"theme_2redbasic_2php_2theme__init_8php.html":[7,0,4,1,2,0,3], -"thing_8php.html":[7,0,2,129], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[7,0,2,129,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[7,0,2,129,1], -"todo.html":[3], -"toggle__mobile_8php.html":[7,0,2,130], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[7,0,2,130,0], -"toggle__safesearch_8php.html":[7,0,2,131], -"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[7,0,2,131,0], -"tpldebug_8php.html":[7,0,3,8], -"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[7,0,3,8,0], -"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[7,0,3,8,1], -"tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c":[7,0,3,8,2], -"typo_8php.html":[7,0,3,9], -"typo_8php.html#a1b709c1d79631ebc8320b41bda028b54":[7,0,3,9,1], -"typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5":[7,0,3,9,4], -"typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd":[7,0,3,9,3], -"typo_8php.html#a9590b15215a21e9b42eb546aeef79704":[7,0,3,9,2], -"typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f":[7,0,3,9,0], -"typohelper_8php.html":[7,0,3,10], -"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[7,0,3,10,0], -"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[7,0,3,10,1], -"uexport_8php.html":[7,0,2,132], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[7,0,2,132,1], -"uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84":[7,0,2,132,0], -"update__channel_8php.html":[7,0,2,133], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[7,0,2,133,0], -"update__display_8php.html":[7,0,2,134], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[7,0,2,134,0], -"update__home_8php.html":[7,0,2,135], -"update__home_8php.html#a668340089acd150b830134476a647d05":[7,0,2,135,0], -"update__network_8php.html":[7,0,2,136], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[7,0,2,136,0], -"update__search_8php.html":[7,0,2,137], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[7,0,2,137,0], -"updatetpl_8py.html":[7,0,3,11], -"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[7,0,3,11,5], -"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[7,0,3,11,2], -"updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94":[7,0,3,11,1], -"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[7,0,3,11,3], -"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[7,0,3,11,0], -"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[7,0,3,11,4], -"view_2theme_2apw_2php_2config_8php.html":[7,0,4,1,0,1,0], -"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[7,0,4,1,0,1,0,1], -"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[7,0,4,1,0,1,0,2], -"view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0":[7,0,4,1,0,1,0,0], -"view_2theme_2apw_2php_2style_8php.html":[7,0,4,1,0,1,2], -"view_2theme_2apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30":[7,0,4,1,0,1,2,2], -"view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[7,0,4,1,0,1,2,8], -"view_2theme_2apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872":[7,0,4,1,0,1,2,3], -"view_2theme_2apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0":[7,0,4,1,0,1,2,4], -"view_2theme_2apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d":[7,0,4,1,0,1,2,10], -"view_2theme_2apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9":[7,0,4,1,0,1,2,0], -"view_2theme_2apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea":[7,0,4,1,0,1,2,7], -"view_2theme_2apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc":[7,0,4,1,0,1,2,1], -"view_2theme_2apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a":[7,0,4,1,0,1,2,5], -"view_2theme_2apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425":[7,0,4,1,0,1,2,6], -"view_2theme_2apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[7,0,4,1,0,1,2,9], -"view_2theme_2apw_2php_2theme_8php.html":[7,0,4,1,0,1,3], -"view_2theme_2apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89":[7,0,4,1,0,1,3,0], -"view_2theme_2mytheme_2php_2style_8php.html":[7,0,4,1,1,0,1], -"view_2theme_2mytheme_2php_2theme_8php.html":[7,0,4,1,1,0,2], -"view_2theme_2mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[7,0,4,1,1,0,2,0], -"view_2theme_2redbasic_2php_2config_8php.html":[7,0,4,1,2,0,0], -"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[7,0,4,1,2,0,0,0], -"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[7,0,4,1,2,0,0,1], -"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[7,0,4,1,2,0,0,2], -"view_2theme_2redbasic_2php_2style_8php.html":[7,0,4,1,2,0,1], -"view_2theme_2redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[7,0,4,1,2,0,1,0], -"view_2theme_2redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[7,0,4,1,2,0,1,1], -"view_2theme_2redbasic_2php_2theme_8php.html":[7,0,4,1,2,0,2], -"view_2theme_2redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[7,0,4,1,2,0,2,0], -"view_8php.html":[7,0,2,138], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[7,0,2,138,0], -"viewconnections_8php.html":[7,0,2,139], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[7,0,2,139,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[7,0,2,139,0], -"viewsrc_8php.html":[7,0,2,140], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[7,0,2,140,0] -}; diff --git a/doc/html/netgrowth_8php.html b/doc/html/netgrowth_8php.html deleted file mode 100644 index d880731bb..000000000 --- a/doc/html/netgrowth_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/netgrowth.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        netgrowth.php File Reference
        -
        -
        - - - - -

        -Functions

         netgrowth_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        netgrowth_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/netgrowth_8php.js b/doc/html/netgrowth_8php.js deleted file mode 100644 index 74b895e6d..000000000 --- a/doc/html/netgrowth_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var netgrowth_8php = -[ - [ "netgrowth_content", "netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919", null ] -]; \ No newline at end of file diff --git a/doc/html/new__channel_8php.html b/doc/html/new__channel_8php.html deleted file mode 100644 index 90ff4a197..000000000 --- a/doc/html/new__channel_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/new_channel.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        new_channel.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         new_channel_init (&$a)
         
         new_channel_post (&$a)
         
         new_channel_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        new_channel_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        new_channel_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        new_channel_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/new__channel_8php.js b/doc/html/new__channel_8php.js deleted file mode 100644 index b087d0df8..000000000 --- a/doc/html/new__channel_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var new__channel_8php = -[ - [ "new_channel_content", "new__channel_8php.html#ae585191610f79da129492482ce8e2fee", null ], - [ "new_channel_init", "new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164", null ], - [ "new_channel_post", "new__channel_8php.html#a180b0646957db8290482f02454ad7f23", null ] -]; \ No newline at end of file diff --git a/doc/html/nogroup_8php.html b/doc/html/nogroup_8php.html deleted file mode 100644 index 313b10074..000000000 --- a/doc/html/nogroup_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/nogroup.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        nogroup.php File Reference
        -
        -
        - - - - - - -

        -Functions

         nogroup_init (&$a)
         
         nogroup_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        nogroup_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        nogroup_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/nogroup_8php.js b/doc/html/nogroup_8php.js deleted file mode 100644 index 73cbeccad..000000000 --- a/doc/html/nogroup_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var nogroup_8php = -[ - [ "nogroup_content", "nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30", null ], - [ "nogroup_init", "nogroup_8php.html#a099cb353bf62e8453069ce107b763212", null ] -]; \ No newline at end of file diff --git a/doc/html/none_8php.html b/doc/html/none_8php.html deleted file mode 100644 index b844d9f92..000000000 --- a/doc/html/none_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/php/none.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        none.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/notes_8php.html b/doc/html/notes_8php.html deleted file mode 100644 index 55c8c2cae..000000000 --- a/doc/html/notes_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/notes.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        notes.php File Reference
        -
        -
        - - - - -

        -Functions

         notes_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        notes_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/notes_8php.js b/doc/html/notes_8php.js deleted file mode 100644 index d0433afa8..000000000 --- a/doc/html/notes_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var notes_8php = -[ - [ "notes_init", "notes_8php.html#a4dbd7b1f906440746af48b484d66535a", null ] -]; \ No newline at end of file diff --git a/doc/html/notifications_8php.html b/doc/html/notifications_8php.html deleted file mode 100644 index 92995ca3d..000000000 --- a/doc/html/notifications_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/notifications.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        notifications.php File Reference
        -
        -
        - - - - - - -

        -Functions

         notifications_post (&$a)
         
         notifications_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        notifications_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        notifications_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/notifications_8php.js b/doc/html/notifications_8php.js deleted file mode 100644 index f4360984e..000000000 --- a/doc/html/notifications_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var notifications_8php = -[ - [ "notifications_content", "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62", null ], - [ "notifications_post", "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33", null ] -]; \ No newline at end of file diff --git a/doc/html/notifier_8php.html b/doc/html/notifier_8php.html deleted file mode 100644 index 0dba5aef4..000000000 --- a/doc/html/notifier_8php.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -The Red Matrix: include/notifier.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        notifier.php File Reference
        -
        -
        - - - - -

        -Functions

         notifier_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        notifier_run ( $argv,
         $argc 
        )
        -
        -

        Reduce the hubs to those that are unique. For zot hubs, we need to verify uniqueness by the sitekey, since it may have been a re-install which has not yet been detected and pruned. For other networks which don't have or require sitekeys, we'll have to use the URL

        - -
        -
        -
        -
        - diff --git a/doc/html/notifier_8php.js b/doc/html/notifier_8php.js deleted file mode 100644 index a06169542..000000000 --- a/doc/html/notifier_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var notifier_8php = -[ - [ "notifier_run", "notifier_8php.html#a568c502f626cff95e344c0748938b85d", null ] -]; \ No newline at end of file diff --git a/doc/html/notred_8php.html b/doc/html/notred_8php.html deleted file mode 100644 index 551b63e02..000000000 --- a/doc/html/notred_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/notred.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        notred.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/oauth_8php.html b/doc/html/oauth_8php.html deleted file mode 100644 index a9e782687..000000000 --- a/doc/html/oauth_8php.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - -The Red Matrix: include/oauth.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        oauth.php File Reference
        -
        -
        - - - - - - -

        -Classes

        class  FKOAuthDataStore
         
        class  FKOAuth1
         
        - - - - - -

        -Variables

        const REQUEST_TOKEN_DURATION 300
         
        const ACCESS_TOKEN_DURATION 31536000
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        const ACCESS_TOKEN_DURATION 31536000
        -
        -
        - -
        -
        - - - - -
        const REQUEST_TOKEN_DURATION 300
        -
        -

        OAuth server Based on oauth2-php http://code.google.com/p/oauth2-php/

        - -

        Referenced by FKOAuthDataStore\new_request_token().

        - -
        -
        -
        -
        - diff --git a/doc/html/oauth_8php.js b/doc/html/oauth_8php.js deleted file mode 100644 index da8061a29..000000000 --- a/doc/html/oauth_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var oauth_8php = -[ - [ "FKOAuthDataStore", "classFKOAuthDataStore.html", "classFKOAuthDataStore" ], - [ "FKOAuth1", "classFKOAuth1.html", "classFKOAuth1" ], - [ "ACCESS_TOKEN_DURATION", "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6", null ], - [ "REQUEST_TOKEN_DURATION", "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16", null ] -]; \ No newline at end of file diff --git a/doc/html/oexchange_8php.html b/doc/html/oexchange_8php.html deleted file mode 100644 index 7207c36be..000000000 --- a/doc/html/oexchange_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/oexchange.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        oexchange.php File Reference
        -
        -
        - - - - - - -

        -Functions

         oexchange_init (&$a)
         
         oexchange_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        oexchange_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        oexchange_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/oexchange_8php.js b/doc/html/oexchange_8php.js deleted file mode 100644 index 1bf271058..000000000 --- a/doc/html/oexchange_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var oexchange_8php = -[ - [ "oexchange_content", "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26", null ], - [ "oexchange_init", "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59", null ] -]; \ No newline at end of file diff --git a/doc/html/olddefault_8php.html b/doc/html/olddefault_8php.html deleted file mode 100644 index d7a533f92..000000000 --- a/doc/html/olddefault_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/olddefault.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        olddefault.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/onedirsync_8php.html b/doc/html/onedirsync_8php.html deleted file mode 100644 index 21915dc38..000000000 --- a/doc/html/onedirsync_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/onedirsync.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        onedirsync.php File Reference
        -
        -
        - - - - -

        -Functions

         onedirsync_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        onedirsync_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/onedirsync_8php.js b/doc/html/onedirsync_8php.js deleted file mode 100644 index 06f15a3c2..000000000 --- a/doc/html/onedirsync_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var onedirsync_8php = -[ - [ "onedirsync_run", "onedirsync_8php.html#a411aedd47c57476099647961e6a86691", null ] -]; \ No newline at end of file diff --git a/doc/html/onepoll_8php.html b/doc/html/onepoll_8php.html deleted file mode 100644 index 812fd6fbd..000000000 --- a/doc/html/onepoll_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/onepoll.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        onepoll.php File Reference
        -
        -
        - - - - -

        -Functions

         onepoll_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        onepoll_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/onepoll_8php.js b/doc/html/onepoll_8php.js deleted file mode 100644 index 7624f85df..000000000 --- a/doc/html/onepoll_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var onepoll_8php = -[ - [ "onepoll_run", "onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d", null ] -]; \ No newline at end of file diff --git a/doc/html/online_8php.html b/doc/html/online_8php.html deleted file mode 100644 index 12f732c7c..000000000 --- a/doc/html/online_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/online.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        online.php File Reference
        -
        -
        - - - - -

        -Functions

         online_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        online_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/online_8php.js b/doc/html/online_8php.js deleted file mode 100644 index cd680468b..000000000 --- a/doc/html/online_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var online_8php = -[ - [ "online_init", "online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7", null ] -]; \ No newline at end of file diff --git a/doc/html/open.png b/doc/html/open.png deleted file mode 100644 index 30f75c7ef..000000000 Binary files a/doc/html/open.png and /dev/null differ diff --git a/doc/html/openid_8php.html b/doc/html/openid_8php.html deleted file mode 100644 index ac541c9bc..000000000 --- a/doc/html/openid_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/openid.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        openid.php File Reference
        -
        -
        - - - - -

        -Functions

         openid_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        openid_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/openid_8php.js b/doc/html/openid_8php.js deleted file mode 100644 index f5d89e346..000000000 --- a/doc/html/openid_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var openid_8php = -[ - [ "openid_content", "openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43", null ] -]; \ No newline at end of file diff --git a/doc/html/opensearch_8php.html b/doc/html/opensearch_8php.html deleted file mode 100644 index 6cba2519b..000000000 --- a/doc/html/opensearch_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/opensearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        opensearch.php File Reference
        -
        -
        - - - - -

        -Functions

         opensearch_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        opensearch_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/opensearch_8php.js b/doc/html/opensearch_8php.js deleted file mode 100644 index e9492cfcb..000000000 --- a/doc/html/opensearch_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var opensearch_8php = -[ - [ "opensearch_init", "opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9", null ] -]; \ No newline at end of file diff --git a/doc/html/p_8php.html b/doc/html/p_8php.html deleted file mode 100644 index 2246ccadd..000000000 --- a/doc/html/p_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/p.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        p.php File Reference
        -
        -
        - - - - -

        -Functions

         p_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        p_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/p_8php.js b/doc/html/p_8php.js deleted file mode 100644 index 5f4d00b0c..000000000 --- a/doc/html/p_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var p_8php = -[ - [ "p_init", "p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e", null ] -]; \ No newline at end of file diff --git a/doc/html/page_8php.html b/doc/html/page_8php.html deleted file mode 100644 index 462d8a853..000000000 --- a/doc/html/page_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/page.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        page.php File Reference
        -
        -
        - - - - - - -

        -Functions

         page_init (&$a)
         
         page_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        page_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        page_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/page_8php.js b/doc/html/page_8php.js deleted file mode 100644 index de145d448..000000000 --- a/doc/html/page_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var page_8php = -[ - [ "page_content", "page_8php.html#a91a5f649f68406149108bded1dc90b22", null ], - [ "page_init", "page_8php.html#a4d89800c0366a239191b1692c09635cf", null ] -]; \ No newline at end of file diff --git a/doc/html/page__widgets_8php.html b/doc/html/page__widgets_8php.html deleted file mode 100644 index bd07c7c98..000000000 --- a/doc/html/page__widgets_8php.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - -The Red Matrix: include/page_widgets.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        page_widgets.php File Reference
        -
        -
        - - - - - - -

        -Functions

         writepages_widget ($who, $which)
         
         pagelist_widget ($owner, $which)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        pagelist_widget ( $owner,
         $which 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        writepages_widget ( $who,
         $which 
        )
        -
        - -

        Referenced by page_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/page__widgets_8php.js b/doc/html/page__widgets_8php.js deleted file mode 100644 index b835d5293..000000000 --- a/doc/html/page__widgets_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var page__widgets_8php = -[ - [ "pagelist_widget", "page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2", null ], - [ "writepages_widget", "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f", null ] -]; \ No newline at end of file diff --git a/doc/html/pages.html b/doc/html/pages.html deleted file mode 100644 index 33dc02d97..000000000 --- a/doc/html/pages.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - -The Red Matrix: Related Pages - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Related Pages
        -
        -
        -
        Here is a list of all related documentation pages:
        -
        -
        - diff --git a/doc/html/parse__url_8php.html b/doc/html/parse__url_8php.html deleted file mode 100644 index 2de21ed62..000000000 --- a/doc/html/parse__url_8php.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - -The Red Matrix: mod/parse_url.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        parse_url.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

        if(!function_exists('deletenode')) completeurl ($url, $scheme)
         
         parseurl_getsiteinfo ($url)
         
         arr_add_hashes (&$item, $k)
         
         parse_url_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        arr_add_hashes ($item,
         $k 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        if (!function_exists('deletenode')) completeurl ( $url,
         $scheme 
        )
        -
        - -

        Referenced by parseurl_getsiteinfo().

        - -
        -
        - -
        -
        - - - - - - - - -
        parse_url_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        parseurl_getsiteinfo ( $url)
        -
        - -

        Referenced by parse_url_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/parse__url_8php.js b/doc/html/parse__url_8php.js deleted file mode 100644 index a30c00e5b..000000000 --- a/doc/html/parse__url_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var parse__url_8php = -[ - [ "arr_add_hashes", "parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868", null ], - [ "completeurl", "parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a", null ], - [ "parse_url_content", "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b", null ], - [ "parseurl_getsiteinfo", "parse__url_8php.html#a25635549f2c22955d72465f4d2e58993", null ] -]; \ No newline at end of file diff --git a/doc/html/passion_8php.html b/doc/html/passion_8php.html deleted file mode 100644 index 18df80d20..000000000 --- a/doc/html/passion_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/passion.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        passion.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/passionwide_8php.html b/doc/html/passionwide_8php.html deleted file mode 100644 index d7e908cb2..000000000 --- a/doc/html/passionwide_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/passionwide.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        passionwide.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/pdledit_8php.html b/doc/html/pdledit_8php.html deleted file mode 100644 index e9a3b43b9..000000000 --- a/doc/html/pdledit_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/pdledit.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        pdledit.php File Reference
        -
        -
        - - - - - - -

        -Functions

         pdledit_post (&$a)
         
         pdledit_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        pdledit_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        pdledit_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/pdledit_8php.js b/doc/html/pdledit_8php.js deleted file mode 100644 index cbcd45a62..000000000 --- a/doc/html/pdledit_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var pdledit_8php = -[ - [ "pdledit_content", "pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619", null ], - [ "pdledit_post", "pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7", null ] -]; \ No newline at end of file diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html deleted file mode 100644 index 5e01b9c5b..000000000 --- a/doc/html/permissions_8php.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - -The Red Matrix: include/permissions.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        permissions.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - -

        -Functions

         get_perms ()
         Return an array with all available permissions. More...
         
         get_all_perms ($uid, $observer_xchan, $internal_use=true)
         
         perm_is_allowed ($uid, $observer_xchan, $permission)
         Checks if given permission is allowed for given observer on a channel. More...
         
         check_list_permissions ($uid, $arr, $perm)
         
         site_default_perms ()
         Sets site wide default permissions. More...
         
         get_role_perms ($role)
         
         get_roles ()
         Returns a list or roles, grouped by type. More...
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        check_list_permissions ( $uid,
         $arr,
         $perm 
        )
        -
        - -

        Referenced by collect_recipients(), and file_activity().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        get_all_perms ( $uid,
         $observer_xchan,
         $internal_use = true 
        )
        -
        -

        get_all_perms($uid,$observer_xchan)

        -
        Parameters
        - - - - -
        int$uidThe channel_id associated with the resource owner
        string$observer_xchanThe xchan_hash representing the observer
        bool$internal_use(default true)
        -
        -
        -
        Returns
        array of all permissions, key is permission name, value is true or false
        - -

        Referenced by achievements_content(), blocks_content(), change_channel(), channel_content(), connedit_content(), editlayout_content(), editwebpage_content(), filestorage_content(), layouts_content(), like_content(), page_init(), webpages_content(), zfinger_init(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - - - - -
        get_perms ()
        -
        - -

        Return an array with all available permissions.

        -

        These are channel specific permissions. The list of available permissions can get manipulated by the hook global_permissions.

        -
        Returns
        array associative array containing all permissions
        - -

        Referenced by connedit_content(), create_identity(), get_all_perms(), mail_post(), new_contact(), perm_is_allowed(), settings_post(), site_default_perms(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_role_perms ( $role)
        -
        -

        get_role_perms($role)

        -
        Parameters
        - - -
        string$roleGiven a string for the channel role ('social','forum', etc) return an array of all permission fields pre-filled for this role. This includes the channel permission scope indicators (anything beginning with 'channel_') as well as perms_auto: true or false to create auto-permissions for this channel perms_follow: The permissions to apply when initiating a connection request to another channel perms_accept: The permissions to apply when accepting a connection request from another channel (not automatic) default_collection: true or false to make the default ACL include the channel's default collection directory_publish: true or false to publish this channel in the directory Any attributes may be extended (new roles defined) and modified (specific permissions altered) by plugins
        -
        -
        - -

        Referenced by connedit_content(), create_identity(), diaspora_request(), foofoo(), new_contact(), settings_post(), and zot_refresh().

        - -
        -
        - -
        -
        - - - - - - - -
        get_roles ()
        -
        - -

        Returns a list or roles, grouped by type.

        -
        Parameters
        - - -
        string$currentThe current role
        -
        -
        -
        Returns
        string Returns an array of roles, grouped by type
        - -

        Referenced by new_channel_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        perm_is_allowed ( $uid,
         $observer_xchan,
         $permission 
        )
        -
        - -

        Checks if given permission is allowed for given observer on a channel.

        -

        Checks if the given observer with the hash $observer_xchan has permission $permission on channel_id $uid. $permission is one defined in get_perms();

        -
        Parameters
        - - - - -
        int$uidThe channel_id associated with the resource owner
        string$observer_xchanThe xchan_hash representing the observer
        string$permission
        -
        -
        -
        Returns
        bool true if permission is allowed for observer on channel
        - -

        Referenced by acl_init(), 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(), 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(), tagadelic(), 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().

        - -
        -
        - -
        -
        - - - - - - - -
        site_default_perms ()
        -
        - -

        Sets site wide default permissions.

        -
        Returns
        array
        - -

        Referenced by create_identity().

        - -
        -
        -
        -
        - diff --git a/doc/html/permissions_8php.js b/doc/html/permissions_8php.js deleted file mode 100644 index 824057ac6..000000000 --- a/doc/html/permissions_8php.js +++ /dev/null @@ -1,10 +0,0 @@ -var permissions_8php = -[ - [ "check_list_permissions", "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7", null ], - [ "get_all_perms", "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008", null ], - [ "get_perms", "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972", null ], - [ "get_role_perms", "permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe", null ], - [ "get_roles", "permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991", null ], - [ "perm_is_allowed", "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835", null ], - [ "site_default_perms", "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d", null ] -]; \ No newline at end of file diff --git a/doc/html/photo_8php.html b/doc/html/photo_8php.html deleted file mode 100644 index 18f517a7c..000000000 --- a/doc/html/photo_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/photo.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo.php File Reference
        -
        -
        - - - - -

        -Functions

         photo_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        photo_init ($a)
        -
        -

        Profile photos - Access controls on default profile photos are not honoured since they need to be exchanged with remote sites.

        -

        Other photos

        - -
        -
        -
        -
        - diff --git a/doc/html/photo_8php.js b/doc/html/photo_8php.js deleted file mode 100644 index 1c070c3bc..000000000 --- a/doc/html/photo_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var photo_8php = -[ - [ "photo_init", "photo_8php.html#a582779d24882b0d31ee909a91d70a448", null ] -]; \ No newline at end of file diff --git a/doc/html/photo__driver_8php.html b/doc/html/photo__driver_8php.html deleted file mode 100644 index 204df52dd..000000000 --- a/doc/html/photo__driver_8php.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - -The Red Matrix: include/photo/photo_driver.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_driver.php File Reference
        -
        -
        - - - - -

        -Classes

        class  photo_driver
         
        - - - - - - - - - -

        -Functions

         photo_factory ($data, $type=null)
         
         guess_image_type ($filename, $headers= '')
         
         import_profile_photo ($photo, $xchan, $thing=false)
         
         import_channel_photo ($photo, $type, $aid, $uid)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        guess_image_type ( $filename,
         $headers = '' 
        )
        -
        -

        Guess image mimetype from filename or from Content-Type header

        -
          -
        • $filename string Image filename
        • -
        • $headers string Headers to check for Content-Type (from curl request)
        • -
        -

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

        - -

        Referenced by import_profile_photo(), openid_content(), photo_upload(), profile_photo_post(), and scale_external_images().

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

        Referenced by import_post(), and import_xchan().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        import_profile_photo ( $photo,
         $xchan,
         $thing = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        photo_factory ( $data,
         $type = null 
        )
        -
        -
        -
        -
        - diff --git a/doc/html/photo__driver_8php.js b/doc/html/photo__driver_8php.js deleted file mode 100644 index cabd3c93b..000000000 --- a/doc/html/photo__driver_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var photo__driver_8php = -[ - [ "photo_driver", "classphoto__driver.html", "classphoto__driver" ], - [ "guess_image_type", "photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa", null ], - [ "import_channel_photo", "photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a", null ], - [ "import_profile_photo", "photo__driver_8php.html#a78f5a10c568d2a9bbbb129dc96548887", null ], - [ "photo_factory", "photo__driver_8php.html#a32e2817faa25d7f11f60a8abff565035", null ] -]; \ No newline at end of file diff --git a/doc/html/photo__gd_8php.html b/doc/html/photo__gd_8php.html deleted file mode 100644 index 1af203cae..000000000 --- a/doc/html/photo__gd_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/photo/photo_gd.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_gd.php File Reference
        -
        -
        - - - - -

        -Classes

        class  photo_gd
         
        -
        -
        - diff --git a/doc/html/photo__imagick_8php.html b/doc/html/photo__imagick_8php.html deleted file mode 100644 index 608403c36..000000000 --- a/doc/html/photo__imagick_8php.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - -The Red Matrix: include/photo/photo_imagick.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        photo_imagick.php File Reference
        -
        -
        - - - - -

        -Classes

        class  photo_imagick
         
        -
        -
        - diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html deleted file mode 100644 index af7b65a26..000000000 --- a/doc/html/php2po_8php.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - -The Red Matrix: util/php2po.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        php2po.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - -

        -Variables

        if(!class_exists('App')) if($argc!=2) $phpfile = $argv[1]
         
         $pofile = dirname($phpfile)."/messages.po"
         
         if (!file_exists($phpfile))
         
        print Out to n
         
         $out = ""
         
         $infile = file($pofile)
         
         $k =""
         
         $ink = False
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $infile = file($pofile)
        -
        - -

        Referenced by po2php_run().

        - -
        -
        - -
        -
        - - - - -
        $ink = False
        -
        - -

        Referenced by po2php_run().

        - -
        -
        - - - -
        -
        - - - - -
        $out = ""
        -
        - -

        Referenced by directory_content(), pipe_streams(), and po2php_run().

        - -
        -
        - -
        -
        - - - - -
        if (!class_exists('App')) if ($argc!=2) $phpfile = $argv[1]
        -
        - -
        -
        - -
        -
        - - - - -
        $pofile = dirname($phpfile)."/messages.po"
        -
        - -

        Referenced by po2php_run().

        - -
        -
        - -
        -
        - - - - -
        if
        -
        -Initial value:
        {
        -
        showForm(null, $content)
        -
        -

        Referenced by oembed_format_object().

        - -
        -
        - -
        -
        - - - - -
        print Out to n
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/php2po_8php.js b/doc/html/php2po_8php.js deleted file mode 100644 index 679a631af..000000000 --- a/doc/html/php2po_8php.js +++ /dev/null @@ -1,11 +0,0 @@ -var php2po_8php = -[ - [ "$infile", "php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214", null ], - [ "$ink", "php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0", null ], - [ "$k", "php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178", null ], - [ "$out", "php2po_8php.html#a48cb304902320d173a4eaa41543327b9", null ], - [ "$phpfile", "php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4", null ], - [ "$pofile", "php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1", null ], - [ "if", "php2po_8php.html#a45b05625748f412ec97afcd61cf7980b", null ], - [ "n", "php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b", null ] -]; \ No newline at end of file diff --git a/doc/html/php_2default_8php.html b/doc/html/php_2default_8php.html deleted file mode 100644 index 35a9b50f1..000000000 --- a/doc/html/php_2default_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/php/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

        - -
        -
        - - - - -
        if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/php_2default_8php.js b/doc/html/php_2default_8php.js deleted file mode 100644 index 07c9212f9..000000000 --- a/doc/html/php_2default_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var php_2default_8php = -[ - [ "if", "php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a", null ] -]; \ No newline at end of file diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html deleted file mode 100644 index 4bec46ff2..000000000 --- a/doc/html/php_2theme__init_8php.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -The Red Matrix: view/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme_init.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

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

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

        - -

        Referenced by acl_init(), admin_page_channels(), api_call(), api_direct_messages_box(), api_user(), appman_content(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), dav_init(), design_tools(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_request(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), events_content(), events_post(), feed_init(), filestorage_content(), filestorage_post(), fix_attached_file_permissions(), get_feed_for(), get_public_feed(), handle_feed(), handle_tag(), hcard_init(), home_init(), impel_init(), import_post(), importelm_post(), invite_content(), is_public_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), locs_content(), locs_post(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), prate_init(), prate_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_content(), profiles_post(), profperm_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), rbmark_content(), rbmark_post(), refimport_content(), reflect_comment_store(), reflect_photo_callback(), rpost_content(), send_message(), settings_post(), sharedwithme_content(), sources_post(), start_delivery_chain(), store_diaspora_comment_sig(), tagger_content(), thing_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_rating(), widget_settings_menu(), zot_build_packet(), zot_encode_locations(), zot_finger(), and zot_refresh().

        - -
        -
        -
        -
        - diff --git a/doc/html/php_2theme__init_8php.js b/doc/html/php_2theme__init_8php.js deleted file mode 100644 index e5e495b9f..000000000 --- a/doc/html/php_2theme__init_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var php_2theme__init_8php = -[ - [ "$channel", "php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864", null ] -]; \ No newline at end of file diff --git a/doc/html/php_8php.html b/doc/html/php_8php.html deleted file mode 100644 index f49bb096f..000000000 --- a/doc/html/php_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/php.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        php.php File Reference
        -
        -
        - - - - -

        -Functions

         php_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        php_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/php_8php.js b/doc/html/php_8php.js deleted file mode 100644 index 77a9c0ac8..000000000 --- a/doc/html/php_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var php_8php = -[ - [ "php_init", "php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6", null ] -]; \ No newline at end of file diff --git a/doc/html/pine_8php.html b/doc/html/pine_8php.html deleted file mode 100644 index c4f964c33..000000000 --- a/doc/html/pine_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/pine.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        pine.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/ping_8php.html b/doc/html/ping_8php.html deleted file mode 100644 index 0fd7a5794..000000000 --- a/doc/html/ping_8php.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -The Red Matrix: mod/ping.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ping.php File Reference
        -
        -
        - - - - - -

        -Functions

         ping_init (&$a)
         do several updates when pinged. More...
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        ping_init ($a)
        -
        - -

        do several updates when pinged.

        -

        This function does several tasks. Whenever called it checks for new messages, introductions, notifications, etc. and returns a json with the results.

        -
        Parameters
        - - -
        App&$a
        -
        -
        -
        Returns
        JSON
        -

        If you have several windows open to this site and switch to a different channel in one of them, the others may get into a confused state showing you a page or options on that page which were only valid under the old identity. You session has changed. Therefore we send a notification of this fact back to the browser where it is picked up in javascript and which reloads the page it is on so that it is valid under the context of the now current channel.

        -

        Send all system messages (alerts) to the browser. Some are marked as informational and some represent errors or serious notifications. These typically will popup on the current page (no matter what page it is)

        -

        Update chat presence indication (if applicable)

        -

        Chatpresence continued... if somebody hasn't pinged recently, they've most likely left the page and shouldn't count as online anymore. We allow an expection for bots.

        -

        Everything following is only permitted under the context of a locally authenticated site member.

        -

        Handle "mark all xyz notifications read" requests.

        -

        URL ping/something will return detail for "something", e.g. a json list with which to populate a notification dropdown menu.

        -

        Normal ping - just the counts, no detail

        - -
        -
        -
        -
        - diff --git a/doc/html/ping_8php.js b/doc/html/ping_8php.js deleted file mode 100644 index 4fe2dcc0c..000000000 --- a/doc/html/ping_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var ping_8php = -[ - [ "ping_init", "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1", null ] -]; \ No newline at end of file diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html deleted file mode 100644 index 7a3cd563a..000000000 --- a/doc/html/plugin_8php.html +++ /dev/null @@ -1,882 +0,0 @@ - - - - - - -The Red Matrix: include/plugin.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        plugin.php File Reference
        -
        -
        - -

        Some functions to handle addons and themes. -More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         unload_plugin ($plugin)
         unloads an addon. More...
         
         uninstall_plugin ($plugin)
         uninstalls an addon. More...
         
         install_plugin ($plugin)
         installs an addon. More...
         
         load_plugin ($plugin)
         loads an addon by it's name. More...
         
         plugin_is_installed ($name)
         
         reload_plugins ()
         
         register_hook ($hook, $file, $function, $priority=0)
         registers a hook. More...
         
         unregister_hook ($hook, $file, $function)
         unregisters a hook. More...
         
         load_hooks ()
         
         insert_hook ($hook, $fn)
         
         call_hooks ($name, &$data=null)
         
         get_plugin_info ($plugin)
         parse plugin comment in search of plugin infos. More...
         
         get_theme_info ($theme)
         parse theme comment in search of theme infos. More...
         
         get_theme_screenshot ($theme)
         
         head_add_css ($src, $media= 'screen')
         add CSS to <head> More...
         
         head_remove_css ($src, $media= 'screen')
         
         head_get_css ()
         
         format_css_if_exists ($source)
         
         script_path ()
         
         head_add_js ($src)
         
         head_remove_js ($src)
         
         head_get_js ()
         
         head_get_main_js ()
         
         format_js_if_exists ($source)
         
         theme_include ($file, $root= '')
         
         get_intltext_template ($s, $root= '')
         
         get_markup_template ($s, $root= '')
         
        -

        Detailed Description

        -

        Some functions to handle addons and themes.

        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        call_hooks ( $name,
        $data = null 
        )
        -
        - -

        Referenced by _well_known_init(), api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), chat_message(), chatsvc_post(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), externals_run(), feature_enabled(), file_activity(), gender_selector(), gender_selector_min(), generate_map(), generate_named_map(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), get_role_perms(), Item\get_template_data(), App\get_widgets(), group_select(), home_content(), home_init(), hostxrd_init(), html2bbcode(), import_author_xchan(), import_directory_profile(), import_xchan(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), list_smilies(), login(), magic_init(), mail_store(), marital_selector(), marital_selector_min(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), poller_run(), populate_acl(), post_activity_item(), post_init(), prepare_body(), probe_well_known(), proc_run(), process_delivery(), profile_content(), profile_sidebar(), profiles_content(), profiles_post(), replace_macros(), rmagic_post(), settings_post(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), subthread_content(), tag_deliver(), validate_channelname(), wfinger_init(), widget_affinity(), xrd_init(), zfinger_init(), zid(), and zid_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_css_if_exists ( $source)
        -
        - -

        Referenced by head_get_css().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_js_if_exists ( $source)
        -
        - -

        Referenced by head_get_js(), and head_get_main_js().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_intltext_template ( $s,
         $root = '' 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_markup_template ( $s,
         $root = '' 
        )
        -
        - -

        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(), 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(), 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(), home_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(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rate_content(), ratings_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), sharedwithme_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_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().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_plugin_info ( $plugin)
        -
        - -

        parse plugin comment in search of plugin infos.

        -

        like

        -
          -
        • Name: Plugin
        • -
        • Description: A plugin which plugs in
        • -
        • Version: 1.2.3
        • -
        • Author: John <profile url>="">
        • -
        • Author: Jane <email>
        • -
        • Compat: Red [(version)], Friendica [(version)]
        • -
        • Parameters
          - - -
          string$pluginthe name of the plugin
          -
          -
          -
          Returns
          array with the plugin information
          -
        • -
        - -

        Referenced by admin_page_plugins().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_theme_info ( $theme)
        -
        - -

        parse theme comment in search of theme infos.

        -

        like

        -
          -
        • Name: My Theme
        • -
        • Description: My Cool Theme
        • -
        • Version: 1.2.3
        • -
        • Author: John <profile url>="">
        • -
        • Maintainer: Jane <profile url>="">
        • -
        • Compat: Friendica [(version)], Red [(version)]
        • -
        • Parameters
          - - -
          string$themethe name of the theme
          -
          -
          -
          Returns
          array
          -
        • -
        - -

        Referenced by admin_page_themes(), and pretheme_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_theme_screenshot ( $theme)
        -
        - -

        Referenced by admin_page_themes(), and pretheme_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        head_add_css ( $src,
         $media = 'screen' 
        )
        -
        - -

        add CSS to <head>

        -
        Parameters
        - - - -
        string$src
        string$mediachange media attribute (default to 'screen')
        -
        -
        -
        Returns
        void
        - -

        Referenced by construct_page().

        - -
        -
        - -
        -
        - - - - - - - - -
        head_add_js ( $src)
        -
        - -

        Referenced by construct_page(), and widget_rating().

        - -
        -
        - -
        -
        - - - - - - - -
        head_get_css ()
        -
        - -

        Referenced by App\build_pagehead().

        - -
        -
        - -
        -
        - - - - - - - -
        head_get_js ()
        -
        - -

        Referenced by App\build_pagehead().

        - -
        -
        - -
        -
        - - - - - - - -
        head_get_main_js ()
        -
        - -

        Referenced by App\build_pagehead().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        head_remove_css ( $src,
         $media = 'screen' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        head_remove_js ( $src)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        insert_hook ( $hook,
         $fn 
        )
        -
        -

        insert_hook($hook,$fn)

        -

        Insert a short-lived hook into the running page request. Hooks are normally persistent so that they can be called across asynchronous processes such as delivery and poll processes.

        -

        insert_hook lets you attach a hook callback immediately which will not persist beyond the life of this page request or the current process.

        -
        Parameters
        - - - -
        string$hook,;name of hook to attach callback
        string$fn,;function name of callback handler
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        install_plugin ( $plugin)
        -
        - -

        installs an addon.

        -
        Parameters
        - - -
        string$pluginname of the addon
        -
        -
        -
        Returns
        bool
        - -

        Referenced by admin_page_plugins().

        - -
        -
        - -
        -
        - - - - - - - -
        load_hooks ()
        -
        - -

        Referenced by check_config(), and cli_startup().

        - -
        -
        - -
        -
        - - - - - - - - -
        load_plugin ( $plugin)
        -
        - -

        loads an addon by it's name.

        -
        Parameters
        - - -
        string$pluginname of the addon
        -
        -
        -
        Returns
        bool
        - -

        Referenced by check_config(), and install_plugin().

        - -
        -
        - -
        -
        - - - - - - - - -
        plugin_is_installed ( $name)
        -
        - -

        Referenced by get_system_apps().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        register_hook ( $hook,
         $file,
         $function,
         $priority = 0 
        )
        -
        - -

        registers a hook.

        -
        Parameters
        - - - - - -
        string$hookthe name of the hook
        string$filethe name of the file that hooks into
        string$functionthe name of the function that the hook will call
        int$priorityA priority (defaults to 0)
        -
        -
        -
        Returns
        mixed|bool
        - -
        -
        - -
        -
        - - - - - - - -
        reload_plugins ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        script_path ()
        -
        - -

        Referenced by format_css_if_exists(), and format_js_if_exists().

        - -
        -
        - - - -
        -
        - - - - - - - - -
        uninstall_plugin ( $plugin)
        -
        - -

        uninstalls an addon.

        -
        Parameters
        - - -
        string$pluginname of the addon
        -
        -
        -
        Returns
        bool
        - -

        Referenced by admin_page_plugins().

        - -
        -
        - -
        -
        - - - - - - - - -
        unload_plugin ( $plugin)
        -
        - -

        unloads an addon.

        -
        Parameters
        - - -
        string$pluginname of the addon
        -
        -
        -
        Returns
        void
        - -

        Referenced by check_config(), and uninstall_plugin().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        unregister_hook ( $hook,
         $file,
         $function 
        )
        -
        - -

        unregisters a hook.

        -
        Parameters
        - - - - -
        string$hookthe name of the hook
        string$filethe name of the file that hooks into
        string$functionthe name of the function that the hook called
        -
        -
        -
        Returns
        mixed
        - -
        -
        -
        -
        - diff --git a/doc/html/plugin_8php.js b/doc/html/plugin_8php.js deleted file mode 100644 index 383143f66..000000000 --- a/doc/html/plugin_8php.js +++ /dev/null @@ -1,30 +0,0 @@ -var plugin_8php = -[ - [ "call_hooks", "plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c", null ], - [ "format_css_if_exists", "plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6", null ], - [ "format_js_if_exists", "plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f", null ], - [ "get_intltext_template", "plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295", null ], - [ "get_markup_template", "plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4", null ], - [ "get_plugin_info", "plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35", null ], - [ "get_theme_info", "plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405", null ], - [ "get_theme_screenshot", "plugin_8php.html#a48047edfbef770125a5508dcc2f9282f", null ], - [ "head_add_css", "plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a", null ], - [ "head_add_js", "plugin_8php.html#a516591850f4fd49fd1425cfa54089db8", null ], - [ "head_get_css", "plugin_8php.html#af92789f559b89a380e49d303218aeeca", null ], - [ "head_get_js", "plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1", null ], - [ "head_get_main_js", "plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff", null ], - [ "head_remove_css", "plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf", null ], - [ "head_remove_js", "plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4", null ], - [ "insert_hook", "plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b", null ], - [ "install_plugin", "plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5", null ], - [ "load_hooks", "plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813", null ], - [ "load_plugin", "plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d", null ], - [ "plugin_is_installed", "plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9", null ], - [ "register_hook", "plugin_8php.html#a425472c5f3afc137268b2ad45652b209", null ], - [ "reload_plugins", "plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025", null ], - [ "script_path", "plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3", null ], - [ "theme_include", "plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2", null ], - [ "uninstall_plugin", "plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76", null ], - [ "unload_plugin", "plugin_8php.html#a90538627db68605aeb6db17a8ead6523", null ], - [ "unregister_hook", "plugin_8php.html#a56f71fe5adf9586ce950523d8180443e", null ] -]; \ No newline at end of file diff --git a/doc/html/po2php_8php.html b/doc/html/po2php_8php.html deleted file mode 100644 index a1b50a4a1..000000000 --- a/doc/html/po2php_8php.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -The Red Matrix: util/po2php.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        po2php.php File Reference
        -
        -
        - - - - - - -

        -Functions

         po2php_run ($argv, $argc)
         
         trim_message ($str)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        po2php_run ( $argv,
         $argc 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        trim_message ( $str)
        -
        - -

        Referenced by po2php_run().

        - -
        -
        -
        -
        - diff --git a/doc/html/po2php_8php.js b/doc/html/po2php_8php.js deleted file mode 100644 index 9536e15bf..000000000 --- a/doc/html/po2php_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var po2php_8php = -[ - [ "po2php_run", "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4", null ], - [ "trim_message", "po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334", null ] -]; \ No newline at end of file diff --git a/doc/html/poco_8php.html b/doc/html/poco_8php.html deleted file mode 100644 index c9e29cfcb..000000000 --- a/doc/html/poco_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/poco.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        poco.php File Reference
        -
        -
        - - - - -

        -Functions

         poco_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        poco_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/poco_8php.js b/doc/html/poco_8php.js deleted file mode 100644 index 48ccaafb9..000000000 --- a/doc/html/poco_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var poco_8php = -[ - [ "poco_init", "poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498", null ] -]; \ No newline at end of file diff --git a/doc/html/poke_8php.html b/doc/html/poke_8php.html deleted file mode 100644 index b7033bde3..000000000 --- a/doc/html/poke_8php.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -The Red Matrix: mod/poke.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        poke.php File Reference
        -
        -
        - - - - - - -

        -Functions

         poke_init (&$a)
         
         poke_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        poke_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        poke_init ($a)
        -
        -

        Poke, prod, finger, or otherwise do unspeakable things to somebody - who must be a connection in your address book This function can be invoked with the required arguments (verb and cid and private and possibly parent) silently via ajax or other web request. You must be logged in and connected to a channel. If the required arguments aren't present, we'll display a simple form to choose a recipient and a verb. parent is a special argument which let's you attach this activity as a comment to an existing conversation, which may have started with somebody else poking (etc.) somebody, but this isn't necessary. This can be used in the adult plugin version to have entire conversations where Alice poked Bob, Bob fingered Alice, Alice hugged Bob, etc.

        -

        private creates a private conversation with the recipient. Otherwise your channel's default post privacy is used.

        - -
        -
        -
        -
        - diff --git a/doc/html/poke_8php.js b/doc/html/poke_8php.js deleted file mode 100644 index 3acebd0ae..000000000 --- a/doc/html/poke_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var poke_8php = -[ - [ "poke_content", "poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993", null ], - [ "poke_init", "poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b", null ] -]; \ No newline at end of file diff --git a/doc/html/poll_8php.html b/doc/html/poll_8php.html deleted file mode 100644 index c6d214a66..000000000 --- a/doc/html/poll_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/poll.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        poll.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         poll_init (&$a)
         
         poll_post (&$a)
         
         poll_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        poll_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        poll_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        poll_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/poll_8php.js b/doc/html/poll_8php.js deleted file mode 100644 index 48803281a..000000000 --- a/doc/html/poll_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var poll_8php = -[ - [ "poll_content", "poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263", null ], - [ "poll_init", "poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930", null ], - [ "poll_post", "poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77", null ] -]; \ No newline at end of file diff --git a/doc/html/poller_8php.html b/doc/html/poller_8php.html deleted file mode 100644 index 47675d6ad..000000000 --- a/doc/html/poller_8php.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -The Red Matrix: include/poller.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        poller.php File Reference
        -
        -
        - - - - -

        -Functions

         poller_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        poller_run ( $argv,
         $argc 
        )
        -
        -

        Cron Daily

        -

        Actions in the following block are executed once per day, not on every poller run

        -

        Cron Weekly

        -

        Actions in the following block are executed once per day only on Sunday (once per week).

        -

        End Cron Weekly

        -

        End Cron Daily

        - -
        -
        -
        -
        - diff --git a/doc/html/poller_8php.js b/doc/html/poller_8php.js deleted file mode 100644 index 94d6e67a4..000000000 --- a/doc/html/poller_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var poller_8php = -[ - [ "poller_run", "poller_8php.html#a5f12df3a4738124b6c039971e87e76da", null ] -]; \ No newline at end of file diff --git a/doc/html/post_8php.html b/doc/html/post_8php.html deleted file mode 100644 index ece06c97c..000000000 --- a/doc/html/post_8php.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - -The Red Matrix: mod/post.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        post.php File Reference
        -
        -
        - - - - - - -

        -Functions

         post_init (&$a)
         
         post_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        post_init ($a)
        -
        -

        Zot endpoint

        -

        Magic Auth

        -

        So-called "magic auth" takes place by a special exchange. On the site where the "channel to be authenticated" lives (e.g. $mysite), a redirection is made via $mysite/magic to the zot endpoint of the remote site ($remotesite) with special GET parameters.

        -

        The endpoint is typically https://$remotesite/post - or whatever was specified as the callback url in prior communications (we will bootstrap an address and fetch a zot info packet if possible where no prior communications exist)

        -

        Four GET parameters are supplied:

        -

        auth => the urlencoded webbie (chann.nosp@m.el@h.nosp@m.ost.d.nosp@m.omai.nosp@m.n) of the channel requesting access dest => the desired destination URL (urlencoded) sec => a random string which is also stored on $mysite for use during the verification phase. version => the zot revision

        -

        When this packet is received, an "auth-check" zot message is sent to $mysite. (e.g. if $_GET['auth'] is fooba.nosp@m.r@po.nosp@m.dunk..nosp@m.edu, a zot packet is sent to the podunk.edu zot endpoint, which is typically /post) If no information has been recorded about the requesting identity a zot information packet will be retrieved before continuing.

        -

        The sender of this packet is an arbitrary/random site channel. The recipients will be a single recipient corresponding to the guid and guid_sig we have associated with the requesting auth identity

        -

        { "type":"auth_check", "sender":{ "guid":"kgVFf_...", "guid_sig":"PT9-TApz...", "url":"http:\/\/podunk.edu", "url_sig":"T8Bp7j..." }, "recipients":{ { "guid":"ZHSqb...", "guid_sig":"JsAAXi..." } } "callback":"\/post", "version":1, "secret":"1eaa661", "secret_sig":"eKV968b1..." }

        -

        auth_check messages MUST use encapsulated encryption. This message is sent to the origination site, which checks the 'secret' to see if it is the same as the 'sec' which it passed originally. It also checks the secret_sig which is the secret signed by the destination channel's private key and base64url encoded. If everything checks out, a json packet is returned:

        -

        { "success":1, "confirm":"q0Ysovd1u..." "service_class":(optional) "level":(optional) }

        -

        'confirm' in this case is the base64url encoded RSA signature of the concatenation of 'secret' with the base64url encoded whirlpool hash of the requestor's guid and guid_sig; signed with the source channel private key. This prevents a man-in-the-middle from inserting a rogue success packet. Upon receipt and successful verification of this packet, the destination site will redirect to the original destination URL and indicate a successful remote login. Service_class can be used by cooperating sites to provide different access rights based on account rights and subscription plans. It is a string whose contents are not defined by protocol. Example: "basic" or "gold".

        - -
        -
        - -
        -
        - - - - - - - - -
        post_post ($a)
        -
        -

        post_post(&$a) zot communications and messaging

        -

        Sender HTTP posts to this endpoint ($site/post typically) with 'data' parameter set to json zot message packet. This packet is optionally encrypted, which we will discover if the json has an 'iv' element. $contents => array( 'alg' => 'aes256cbc', 'iv' => initialisation vector, 'key' => decryption key, 'data' => encrypted data); $contents->iv and $contents->key are random strings encrypted with this site's RSA public key and then base64url encoded. Currently only 'aes256cbc' is used, but this is extensible should that algorithm prove inadequate.

        -

        Once decrypted, one will find the normal json_encoded zot message packet.

        -

        Defined packet types are: notify, purge, refresh, force_refresh, auth_check, ping, and pickup

        -

        Standard packet: (used by notify, purge, refresh, force_refresh, and auth_check)

        -

        { "type": "notify", "sender":{ "guid":"kgVFf_1...", "guid_sig":"PT9-TApzp...", "url":"http:\/\/podunk.edu", "url_sig":"T8Bp7j5...", }, "recipients": { optional recipient array }, "callback":"\/post", "version":1, "secret":"1eaa...", "secret_sig": "df89025470fac8..." }

        -

        Signature fields are all signed with the sender channel private key and base64url encoded. Recipients are arrays of guid and guid_sig, which were previously signed with the recipients private key and base64url encoded and later obtained via channel discovery. Absence of recipients indicates a public message or visible to all potential listeners on this site.

        -

        "pickup" packet: The pickup packet is sent in response to a notify packet from another site

        -

        { "type":"pickup", "url":"http:\/\/example.com", "callback":"http:\/\/example.com\/post", "callback_sig":"teE1_fLI...", "secret":"1eaa...", "secret_sig":"O7nB4_..." }

        -

        In the pickup packet, the sig fields correspond to the respective data element signed with this site's system private key and then base64url encoded. The "secret" is the same as the original secret from the notify packet.

        -

        If verification is successful, a json structure is returned containing a success indicator and an array of type 'pickup'. Each pickup element contains the original notify request and a message field whose contents are dependent on the message type

        -

        This JSON array is AES encapsulated using the site public key of the site that sent the initial zot pickup packet. Using the above example, this would be example.com.

        -

        { "success":1, "pickup":{ "notify":{ "type":"notify", "sender":{ "guid":"kgVFf_...", "guid_sig":"PT9-TApz...", "url":"http:\/\/z.podunk.edu", "url_sig":"T8Bp7j5D..." }, "callback":"\/post", "version":1, "secret":"1eaa661..." }, "message":{ "type":"activity", "message_id":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", "message_top":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", "message_parent":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", "created":"2012-11-20 04:04:16", "edited":"2012-11-20 04:04:16", "title":"", "body":"Hi Nickordo", "app":"", "verb":"post", "object_type":"", "target_type":"", "permalink":"", "location":"", "longlat":"", "owner":{ "name":"Indigo", "address":"indigo@podunk.edu", "url":"http:\/\/podunk.edu", "photo":{ "mimetype":"image\/jpeg", "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5" }, "guid":"kgVFf_...", "guid_sig":"PT9-TAp...", }, "author":{ "name":"Indigo", "address":"indigo@podunk.edu", "url":"http:\/\/podunk.edu", "photo":{ "mimetype":"image\/jpeg", "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5" }, "guid":"kgVFf_...", "guid_sig":"PT9-TAp..." } } } }

        -

        Currently defined message types are 'activity', 'mail', 'profile', 'location' and 'channel_sync', which each have different content schemas.

        -

        Ping packet: A ping packet does not require any parameters except the type. It may or may not be encrypted.

        -

        { "type": "ping" }

        -

        On receipt of a ping packet a ping response will be returned:

        -

        { "success" : 1, "site" { "url":"http:\/\/podunk.edu", "url_sig":"T8Bp7j5...", "sitekey": "&ndash;&mdash;BEGIN PUBLIC KEY&ndash;&mdash; - MIICIjANBgkqhkiG9w0BAQE..." } }

        -

        The ping packet can be used to verify that a site has not been re-installed, and to initiate corrective action if it has. The url_sig is signed with the site private key and base64url encoded - and this should verify with the enclosed sitekey. Failure to verify indicates the site is corrupt or otherwise unable to communicate using zot. This return packet is not otherwise verified, so should be compared with other results obtained from this site which were verified prior to taking action. For instance if you have one verified result with this signature and key, and other records for this url which have different signatures and keys, it indicates that the site was re-installed and corrective action may commence (remove or mark invalid any entries with different signatures). If you have no records which match this url_sig and key - no corrective action should be taken as this packet may have been returned by an imposter.

        -

        Many message packets will arrive encrypted. The existence of an 'iv' element tells us we need to unencapsulate the AES-256-CBC content using the site private key

        -

        The 'pickup' message arrives with a tracking ID which is associated with a particular outq_hash First verify that that the returned signatures verify, then check that we have an outbound queue item with the correct hash. If everything verifies, find any/all outbound messages in the queue for this hubloc and send them back

        -

        If we made it to here, the signatures verify, but we still don't know if the tracking ID is valid. It wouldn't be an error if the tracking ID isn't found, because we may have sent this particular queue item with another pickup (after the tracking ID for the other pickup was verified).

        -

        Everything is good if we made it here, so find all messages that are going to this location and send them all.

        -

        pickup: end

        -

        All other message types require us to verify the sender. This is a generic check, so we will do it once here and bail if anything goes wrong.

        -

        Check if the sender is already verified here

        -

        Have never seen this guid or this guid coming from this location. Check it and register it.

        -

        This hub has now been proven to be valid. Any hub with the same URL and a different sitekey cannot be valid. Get rid of them (mark them deleted). There's a good chance they were re-installs.

        -

        Requestor visits /magic/?dest=somewhere on their own site with a browser magic redirects them to $destsite/post [with auth args....] $destsite sends an auth_check packet to originator site The auth_check packet is handled here by the originator's site

        -
          -
        • the browser session is still waiting inside $destsite/post for everything to verify If everything checks out we'll return a token to $destsite and then $destsite will verify the token, authenticate the browser session and then redirect to the original destination. If authentication fails, the redirection to the original destination will still take place but without authentication.
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/post_8php.js b/doc/html/post_8php.js deleted file mode 100644 index 9a5f6bcdb..000000000 --- a/doc/html/post_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var post_8php = -[ - [ "post_init", "post_8php.html#af4b48181ce773ef0cdfc972441445c34", null ], - [ "post_post", "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75", null ] -]; \ No newline at end of file diff --git a/doc/html/post__to__red_8php.html b/doc/html/post__to__red_8php.html deleted file mode 100644 index 8776a12c7..000000000 --- a/doc/html/post__to__red_8php.html +++ /dev/null @@ -1,549 +0,0 @@ - - - - - - -The Red Matrix: util/wp/post_to_red/post_to_red.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        post_to_red.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         post_to_red_deactivate ()
         
         post_to_red_get_seed_location ()
         
         post_to_red_get_acct_name ()
         
         post_to_red_get_channel_name ()
         
         post_to_red_get_password ()
         
         post_to_red_post ($post_id)
         
         post_to_red_delete_post ($post_id)
         
         post_to_red_delete_comment ($post_id)
         
         post_to_red_displayAdminContent ()
         
         post_to_red_post_checkbox ()
         
         post_to_red_post_meta_content ($post_id)
         
         post_to_red_post_field_data ($post_id)
         
         post_to_red_display_admin_page ()
         
         post_to_red_settings_link ($links)
         
         post_to_red_admin ()
         
         red_xmlrpc_methods ($methods)
         
         red_comment ($args)
         
         post_to_red_get_avatar ($avatar, $id_or_email, $size, $default, $alt)
         
        - - - - - - - - - - - -

        -Variables

        const post_to_red_path WP_PLUGIN_URL . "/" . str_replace(basename( __FILE__), "", plugin_basename(__FILE__))
         
        const post_to_red_version "1.2"
         
         $plugin_dir = basename(dirname(__FILE__))
         
         $plugin = plugin_basename(__FILE__)
         
        const post_to_red_acct_name "post_to_red_admin_options"
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        post_to_red_admin ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_deactivate ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_delete_comment ( $post_id)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_delete_post ( $post_id)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_display_admin_page ()
        -
        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_displayAdminContent ()
        -
        - -

        Referenced by post_to_red_display_admin_page().

        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_get_acct_name ()
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        post_to_red_get_avatar ( $avatar,
         $id_or_email,
         $size,
         $default,
         $alt 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_get_channel_name ()
        -
        -
        - -
        -
        - - - - - - - -
        post_to_red_get_password ()
        -
        -
        - -
        -
        - - - - - - - -
        post_to_red_get_seed_location ()
        -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_post ( $post_id)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        post_to_red_post_checkbox ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_post_field_data ( $post_id)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_post_meta_content ( $post_id)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        post_to_red_settings_link ( $links)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_comment ( $args)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        red_xmlrpc_methods ( $methods)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $plugin = plugin_basename(__FILE__)
        -
        -
        - -
        -
        - - - - -
        $plugin_dir = basename(dirname(__FILE__))
        -
        - -
        -
        - -
        -
        - - - - -
        const post_to_red_acct_name "post_to_red_admin_options"
        -
        - -
        -
        - -
        -
        - - - - -
        const post_to_red_path WP_PLUGIN_URL . "/" . str_replace(basename( __FILE__), "", plugin_basename(__FILE__))
        -
        - -
        -
        - -
        -
        - - - - -
        const post_to_red_version "1.2"
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/post__to__red_8php.js b/doc/html/post__to__red_8php.js deleted file mode 100644 index 9fa505b7e..000000000 --- a/doc/html/post__to__red_8php.js +++ /dev/null @@ -1,26 +0,0 @@ -var post__to__red_8php = -[ - [ "post_to_red_admin", "post__to__red_8php.html#aeec4125719184e7b097b3b9fba3101b5", null ], - [ "post_to_red_deactivate", "post__to__red_8php.html#a49fd35f7b1cdddfe6e26ddfcf8d3c4ec", null ], - [ "post_to_red_delete_comment", "post__to__red_8php.html#a5cc2a89a6d33cdb8e2ca557a69bef42d", null ], - [ "post_to_red_delete_post", "post__to__red_8php.html#a4674bb5ce2baa32c559607460c39a2c5", null ], - [ "post_to_red_display_admin_page", "post__to__red_8php.html#a8ec8f8809e3c5d1b2c9598c8185d63aa", null ], - [ "post_to_red_displayAdminContent", "post__to__red_8php.html#a75db5d87226a0287a0ac0fa315f2bcfd", null ], - [ "post_to_red_get_acct_name", "post__to__red_8php.html#ae6f3a2c0561cbeacda5be565b06de8a7", null ], - [ "post_to_red_get_avatar", "post__to__red_8php.html#ae0b881461afbdba93d9329068ea52136", null ], - [ "post_to_red_get_channel_name", "post__to__red_8php.html#aacba7a0646fc00ae6ac4f5dc383fccab", null ], - [ "post_to_red_get_password", "post__to__red_8php.html#a4d90ac085c14f53ff4d8ab4c23477ea6", null ], - [ "post_to_red_get_seed_location", "post__to__red_8php.html#a96d0ccecb96600ef1bfd50ab3f77315f", null ], - [ "post_to_red_post", "post__to__red_8php.html#af5fd50e2c42ede85f8a9e8d9ee3cf540", null ], - [ "post_to_red_post_checkbox", "post__to__red_8php.html#a0f139dea77a94c98f26007963eea639c", null ], - [ "post_to_red_post_field_data", "post__to__red_8php.html#a7e68a8d9c83cb28d032aad3ea85ce0a6", null ], - [ "post_to_red_post_meta_content", "post__to__red_8php.html#aa97aeda12ef080665f16311a4e1eb901", null ], - [ "post_to_red_settings_link", "post__to__red_8php.html#a906be8f72cf1aa2e199c0683ea6a4017", null ], - [ "red_comment", "post__to__red_8php.html#a085c250d4ceff5e4f10052f3d2039823", null ], - [ "red_xmlrpc_methods", "post__to__red_8php.html#a3a2af6ad845239f26e86fccabf8639e1", null ], - [ "$plugin", "post__to__red_8php.html#ada8a7130088351710bb02ed622d6bf65", null ], - [ "$plugin_dir", "post__to__red_8php.html#a99811555b30bde504a863e44015f2f19", null ], - [ "post_to_red_acct_name", "post__to__red_8php.html#a588cea66afe0b32f27f2713d44940119", null ], - [ "post_to_red_path", "post__to__red_8php.html#a6210f39392a5f0fa0255cc7d3760493a", null ], - [ "post_to_red_version", "post__to__red_8php.html#af3e7ebd361d4ed7cb6d43209970cd94a", null ] -]; \ No newline at end of file diff --git a/doc/html/prate_8php.html b/doc/html/prate_8php.html deleted file mode 100644 index b03402ff5..000000000 --- a/doc/html/prate_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/prate.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        prate.php File Reference
        -
        -
        - - - - - - -

        -Functions

         prate_init (&$a)
         
         prate_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        prate_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        prate_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/prate_8php.js b/doc/html/prate_8php.js deleted file mode 100644 index 61a21a7cb..000000000 --- a/doc/html/prate_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var prate_8php = -[ - [ "prate_init", "prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d", null ], - [ "prate_post", "prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd", null ] -]; \ No newline at end of file diff --git a/doc/html/prep_8php.html b/doc/html/prep_8php.html deleted file mode 100644 index 93091fda6..000000000 --- a/doc/html/prep_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/prep.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        prep.php File Reference
        -
        -
        - - - - - - -

        -Functions

         prep_init (&$a)
         
         prep_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        prep_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        prep_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/prep_8php.js b/doc/html/prep_8php.js deleted file mode 100644 index 2ac8f3f28..000000000 --- a/doc/html/prep_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var prep_8php = -[ - [ "prep_content", "prep_8php.html#a9a410206b7f229a4c3f6bdb2eb42690a", null ], - [ "prep_init", "prep_8php.html#a1889254cb50366e7d6637cf2bbb83799", null ] -]; \ No newline at end of file diff --git a/doc/html/pretheme_8php.html b/doc/html/pretheme_8php.html deleted file mode 100644 index e05e6a253..000000000 --- a/doc/html/pretheme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/pretheme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        pretheme.php File Reference
        -
        -
        - - - - -

        -Functions

         pretheme_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        pretheme_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/pretheme_8php.js b/doc/html/pretheme_8php.js deleted file mode 100644 index 850e68070..000000000 --- a/doc/html/pretheme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var pretheme_8php = -[ - [ "pretheme_init", "pretheme_8php.html#af5660943ee99db5fd75182316522eafe", null ] -]; \ No newline at end of file diff --git a/doc/html/probe_8php.html b/doc/html/probe_8php.html deleted file mode 100644 index f0aa7e854..000000000 --- a/doc/html/probe_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/probe.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        probe.php File Reference
        -
        -
        - - - - -

        -Functions

         probe_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        probe_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/probe_8php.js b/doc/html/probe_8php.js deleted file mode 100644 index 5c5c60b45..000000000 --- a/doc/html/probe_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var probe_8php = -[ - [ "probe_content", "probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99", null ] -]; \ No newline at end of file diff --git a/doc/html/profile_8php.html b/doc/html/profile_8php.html deleted file mode 100644 index 4e95ad2b8..000000000 --- a/doc/html/profile_8php.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -The Red Matrix: mod/profile.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profile.php File Reference
        -
        -
        - - - - - - -

        -Functions

         profile_init (&$a)
         
         profile_content (&$a, $update=0)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        profile_content ($a,
         $update = 0 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profile_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/profile_8php.js b/doc/html/profile_8php.js deleted file mode 100644 index 249035945..000000000 --- a/doc/html/profile_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var profile_8php = -[ - [ "profile_content", "profile_8php.html#a3775cf6eef6587e5143133356a7b76c0", null ], - [ "profile_init", "profile_8php.html#ab5d0246be0552e2182a585c1206d22a5", null ] -]; \ No newline at end of file diff --git a/doc/html/profile__advanced_8php.html b/doc/html/profile__advanced_8php.html deleted file mode 100644 index d94f42c1b..000000000 --- a/doc/html/profile__advanced_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: include/profile_advanced.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profile_advanced.php File Reference
        -
        -
        - - - - -

        -Functions

         advanced_profile (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        advanced_profile ($a)
        -
        - -

        Referenced by profile_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/profile__advanced_8php.js b/doc/html/profile__advanced_8php.js deleted file mode 100644 index 505cbe36f..000000000 --- a/doc/html/profile__advanced_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var profile__advanced_8php = -[ - [ "advanced_profile", "profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4", null ] -]; \ No newline at end of file diff --git a/doc/html/profile__photo_8php.html b/doc/html/profile__photo_8php.html deleted file mode 100644 index 1919e68f1..000000000 --- a/doc/html/profile__photo_8php.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -The Red Matrix: mod/profile_photo.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profile_photo.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         profile_photo_set_profile_perms ($profileid= '')
         
         profile_photo_init (&$a)
         
         profile_photo_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        profile_photo_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profile_photo_post ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profile_photo_set_profile_perms ( $profileid = '')
        -
        -
        -
        -
        - diff --git a/doc/html/profile__photo_8php.js b/doc/html/profile__photo_8php.js deleted file mode 100644 index fc39f2f60..000000000 --- a/doc/html/profile__photo_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var profile__photo_8php = -[ - [ "profile_photo_init", "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02", null ], - [ "profile_photo_post", "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479", null ], - [ "profile_photo_set_profile_perms", "profile__photo_8php.html#a561103564199da56e58061a4196eb102", null ] -]; \ No newline at end of file diff --git a/doc/html/profile__selectors_8php.html b/doc/html/profile__selectors_8php.html deleted file mode 100644 index d43ca6a93..000000000 --- a/doc/html/profile__selectors_8php.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - -The Red Matrix: include/profile_selectors.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profile_selectors.php File Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Functions

         gender_selector ($current="", $suffix="")
         
         gender_selector_min ($current="", $suffix="")
         
         sexpref_selector ($current="", $suffix="")
         
         sexpref_selector_min ($current="", $suffix="")
         
         marital_selector ($current="", $suffix="")
         
         marital_selector_min ($current="", $suffix="")
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        gender_selector ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        gender_selector_min ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        marital_selector ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        marital_selector_min ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        sexpref_selector ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        sexpref_selector_min ( $current = "",
         $suffix = "" 
        )
        -
        - -

        Referenced by profiles_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/profile__selectors_8php.js b/doc/html/profile__selectors_8php.js deleted file mode 100644 index 7e59c8a9f..000000000 --- a/doc/html/profile__selectors_8php.js +++ /dev/null @@ -1,9 +0,0 @@ -var profile__selectors_8php = -[ - [ "gender_selector", "profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355", null ], - [ "gender_selector_min", "profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816", null ], - [ "marital_selector", "profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798", null ], - [ "marital_selector_min", "profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534", null ], - [ "sexpref_selector", "profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7", null ], - [ "sexpref_selector_min", "profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074", null ] -]; \ No newline at end of file diff --git a/doc/html/profiles_8php.html b/doc/html/profiles_8php.html deleted file mode 100644 index 1b947e0ed..000000000 --- a/doc/html/profiles_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/profiles.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profiles.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         profiles_init (&$a)
         
         profiles_post (&$a)
         
         profiles_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        profiles_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profiles_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profiles_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/profiles_8php.js b/doc/html/profiles_8php.js deleted file mode 100644 index 256ba1080..000000000 --- a/doc/html/profiles_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var profiles_8php = -[ - [ "profiles_content", "profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00", null ], - [ "profiles_init", "profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e", null ], - [ "profiles_post", "profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04", null ] -]; \ No newline at end of file diff --git a/doc/html/profperm_8php.html b/doc/html/profperm_8php.html deleted file mode 100644 index a99c661fb..000000000 --- a/doc/html/profperm_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/profperm.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        profperm.php File Reference
        -
        -
        - - - - - - -

        -Functions

         profperm_init (&$a)
         
         profperm_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        profperm_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        profperm_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/profperm_8php.js b/doc/html/profperm_8php.js deleted file mode 100644 index 95b68003d..000000000 --- a/doc/html/profperm_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var profperm_8php = -[ - [ "profperm_content", "profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023", null ], - [ "profperm_init", "profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6", null ] -]; \ No newline at end of file diff --git a/doc/html/pubsites_8php.html b/doc/html/pubsites_8php.html deleted file mode 100644 index 0972e9cd4..000000000 --- a/doc/html/pubsites_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/pubsites.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        pubsites.php File Reference
        -
        -
        - - - - -

        -Functions

         pubsites_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        pubsites_content ($a)
        -
        - -

        Referenced by register_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/pubsites_8php.js b/doc/html/pubsites_8php.js deleted file mode 100644 index fe78b19d4..000000000 --- a/doc/html/pubsites_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var pubsites_8php = -[ - [ "pubsites_content", "pubsites_8php.html#af614e279aab54065345bda6b03eafdf0", null ] -]; \ No newline at end of file diff --git a/doc/html/pubsub_8php.html b/doc/html/pubsub_8php.html deleted file mode 100644 index 38bb01d1d..000000000 --- a/doc/html/pubsub_8php.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - -The Red Matrix: mod/pubsub.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        pubsub.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

         hub_return ($valid, $body)
         
         hub_post_return ()
         
         pubsub_init (&$a)
         
         pubsub_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        hub_post_return ()
        -
        - -

        Referenced by pubsub_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        hub_return ( $valid,
         $body 
        )
        -
        - -

        Referenced by pubsub_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        pubsub_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        pubsub_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/pubsub_8php.js b/doc/html/pubsub_8php.js deleted file mode 100644 index 597a2656a..000000000 --- a/doc/html/pubsub_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var pubsub_8php = -[ - [ "hub_post_return", "pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945", null ], - [ "hub_return", "pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb", null ], - [ "pubsub_init", "pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e", null ], - [ "pubsub_post", "pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123", null ] -]; \ No newline at end of file diff --git a/doc/html/pubsubhubbub_8php.html b/doc/html/pubsubhubbub_8php.html deleted file mode 100644 index 7fd36aa00..000000000 --- a/doc/html/pubsubhubbub_8php.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -The Red Matrix: mod/pubsubhubbub.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        pubsubhubbub.php File Reference
        -
        -
        - - - - - - -

        -Functions

         post_var ($name)
         
         pubsubhubbub_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        post_var ( $name)
        -
        - -

        Referenced by pubsubhubbub_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        pubsubhubbub_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/pubsubhubbub_8php.js b/doc/html/pubsubhubbub_8php.js deleted file mode 100644 index 4150b170b..000000000 --- a/doc/html/pubsubhubbub_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var pubsubhubbub_8php = -[ - [ "post_var", "pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd", null ], - [ "pubsubhubbub_init", "pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0", null ] -]; \ No newline at end of file diff --git a/doc/html/qsearch_8php.html b/doc/html/qsearch_8php.html deleted file mode 100644 index b8b166904..000000000 --- a/doc/html/qsearch_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/qsearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        qsearch.php File Reference
        -
        -
        - - - - -

        -Functions

         qsearch_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        qsearch_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/qsearch_8php.js b/doc/html/qsearch_8php.js deleted file mode 100644 index a21b280be..000000000 --- a/doc/html/qsearch_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var qsearch_8php = -[ - [ "qsearch_init", "qsearch_8php.html#a0501887b95bd8fa21018b2936a668894", null ] -]; \ No newline at end of file diff --git a/doc/html/queue_8php.html b/doc/html/queue_8php.html deleted file mode 100644 index 86cae6f6c..000000000 --- a/doc/html/queue_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/queue.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        queue.php File Reference
        -
        -
        - - - - -

        -Functions

         queue_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        queue_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/queue_8php.js b/doc/html/queue_8php.js deleted file mode 100644 index e5a7830db..000000000 --- a/doc/html/queue_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var queue_8php = -[ - [ "queue_run", "queue_8php.html#af8c93de86d866c3200174c8450a0f341", null ] -]; \ No newline at end of file diff --git a/doc/html/queue__fn_8php.html b/doc/html/queue__fn_8php.html deleted file mode 100644 index 9bb6a3995..000000000 --- a/doc/html/queue__fn_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: include/queue_fn.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        queue_fn.php File Reference
        -
        -
        - - - - - - -

        -Functions

         update_queue_time ($id)
         
         remove_queue_item ($id)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        remove_queue_item ( $id)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        update_queue_time ( $id)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/queue__fn_8php.js b/doc/html/queue__fn_8php.js deleted file mode 100644 index 2a3776960..000000000 --- a/doc/html/queue__fn_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var queue__fn_8php = -[ - [ "remove_queue_item", "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24", null ], - [ "update_queue_time", "queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1", null ] -]; \ No newline at end of file diff --git a/doc/html/r!-64.png b/doc/html/r!-64.png deleted file mode 100644 index 1fd1bc80c..000000000 Binary files a/doc/html/r!-64.png and /dev/null differ diff --git a/doc/html/randprof_8php.html b/doc/html/randprof_8php.html deleted file mode 100644 index c7d7aacfe..000000000 --- a/doc/html/randprof_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/randprof.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        randprof.php File Reference
        -
        -
        - - - - -

        -Functions

         randprof_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        randprof_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/randprof_8php.js b/doc/html/randprof_8php.js deleted file mode 100644 index 8cc765498..000000000 --- a/doc/html/randprof_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var randprof_8php = -[ - [ "randprof_init", "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090", null ] -]; \ No newline at end of file diff --git a/doc/html/rate_8php.html b/doc/html/rate_8php.html deleted file mode 100644 index 342da3dc3..000000000 --- a/doc/html/rate_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/rate.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        rate.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         rate_init (&$a)
         
         rate_post (&$a)
         
         rate_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        rate_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rate_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rate_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/rate_8php.js b/doc/html/rate_8php.js deleted file mode 100644 index f3b785ce8..000000000 --- a/doc/html/rate_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var rate_8php = -[ - [ "rate_content", "rate_8php.html#a22fc66202522acb53fb3746fc21d80f2", null ], - [ "rate_init", "rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771", null ], - [ "rate_post", "rate_8php.html#acae9f41835b07e3c977464030e8831fc", null ] -]; \ No newline at end of file diff --git a/doc/html/ratenotif_8php.html b/doc/html/ratenotif_8php.html deleted file mode 100644 index 924fd2e89..000000000 --- a/doc/html/ratenotif_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Matrix: include/ratenotif.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ratenotif.php File Reference
        -
        -
        - - - - -

        -Functions

         ratenotif_run ($argv, $argc)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ratenotif_run ( $argv,
         $argc 
        )
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/ratenotif_8php.js b/doc/html/ratenotif_8php.js deleted file mode 100644 index 7beb5a536..000000000 --- a/doc/html/ratenotif_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var ratenotif_8php = -[ - [ "ratenotif_run", "ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37", null ] -]; \ No newline at end of file diff --git a/doc/html/ratings_8php.html b/doc/html/ratings_8php.html deleted file mode 100644 index eb244f178..000000000 --- a/doc/html/ratings_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/ratings.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ratings.php File Reference
        -
        -
        - - - - - - -

        -Functions

         ratings_init (&$a)
         
         ratings_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        ratings_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        ratings_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/ratings_8php.js b/doc/html/ratings_8php.js deleted file mode 100644 index 63ffa4059..000000000 --- a/doc/html/ratings_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var ratings_8php = -[ - [ "ratings_content", "ratings_8php.html#a25f835d136b884354cf1fa4d897c857b", null ], - [ "ratings_init", "ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3", null ] -]; \ No newline at end of file diff --git a/doc/html/ratingsearch_8php.html b/doc/html/ratingsearch_8php.html deleted file mode 100644 index 5624b328c..000000000 --- a/doc/html/ratingsearch_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/ratingsearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        ratingsearch.php File Reference
        -
        -
        - - - - -

        -Functions

         ratingsearch_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        ratingsearch_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/ratingsearch_8php.js b/doc/html/ratingsearch_8php.js deleted file mode 100644 index 334d826f3..000000000 --- a/doc/html/ratingsearch_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var ratingsearch_8php = -[ - [ "ratingsearch_init", "ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466", null ] -]; \ No newline at end of file diff --git a/doc/html/rbmark_8php.html b/doc/html/rbmark_8php.html deleted file mode 100644 index a0fd5d3da..000000000 --- a/doc/html/rbmark_8php.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - -The Red Matrix: mod/rbmark.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        rbmark.php File Reference
        -
        -
        - - - - - - -

        -Functions

         rbmark_post (&$a)
         
         rbmark_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        rbmark_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rbmark_post ($a)
        -
        -

        remote bookmark

        -

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

        -

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

        -

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

        - -
        -
        -
        -
        - diff --git a/doc/html/rbmark_8php.js b/doc/html/rbmark_8php.js deleted file mode 100644 index 6e2671ea5..000000000 --- a/doc/html/rbmark_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var rbmark_8php = -[ - [ "rbmark_content", "rbmark_8php.html#a43fec4960b50926251574762cc491f76", null ], - [ "rbmark_post", "rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c", null ] -]; \ No newline at end of file diff --git a/doc/html/receive_8php.html b/doc/html/receive_8php.html deleted file mode 100644 index 83d066c60..000000000 --- a/doc/html/receive_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Matrix: mod/receive.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        receive.php File Reference
        -
        -
        - - - - -

        -Functions

         receive_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        receive_post ($a)
        -
        -

        Diaspora endpoint

        - -
        -
        -
        -
        - diff --git a/doc/html/receive_8php.js b/doc/html/receive_8php.js deleted file mode 100644 index d57e5d234..000000000 --- a/doc/html/receive_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var receive_8php = -[ - [ "receive_post", "receive_8php.html#a03d8fa26e77844020ba5602deca7d494", null ] -]; \ No newline at end of file diff --git a/doc/html/redable_8php.html b/doc/html/redable_8php.html deleted file mode 100644 index 549b7af78..000000000 --- a/doc/html/redable_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/php/redable.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        redable.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

        - -
        -
        - - - - -
        if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/redable_8php.js b/doc/html/redable_8php.js deleted file mode 100644 index e74ff35fc..000000000 --- a/doc/html/redable_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var redable_8php = -[ - [ "if", "redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a", null ] -]; \ No newline at end of file diff --git a/doc/html/redbasic_2php_2style_8php.html b/doc/html/redbasic_2php_2style_8php.html deleted file mode 100644 index 0978046f5..000000000 --- a/doc/html/redbasic_2php_2style_8php.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - -

        -Variables

        if($nav_min_opacity===false||$nav_min_opacity=== '') else
         
         $nav_percent_min_opacity = (int) 100 * $nav_min_opacity
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $nav_percent_min_opacity = (int) 100 * $nav_min_opacity
        -
        - -
        -
        - -
        -
        - - - - -
        if ($nav_min_opacity===false||$nav_min_opacity=== '') else
        -
        -Initial value:
        {
        -
        $nav_float_min_opacity = (float) $nav_min_opacity
        -
        -
        -
        -
        -
        - diff --git a/doc/html/redbasic_2php_2style_8php.js b/doc/html/redbasic_2php_2style_8php.js deleted file mode 100644 index dacaf4b69..000000000 --- a/doc/html/redbasic_2php_2style_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var redbasic_2php_2style_8php = -[ - [ "$nav_percent_min_opacity", "redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c", null ], - [ "else", "redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459", null ] -]; \ No newline at end of file diff --git a/doc/html/redbasic_2php_2theme_8php.html b/doc/html/redbasic_2php_2theme_8php.html deleted file mode 100644 index 905d26738..000000000 --- a/doc/html/redbasic_2php_2theme_8php.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         redbasic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        redbasic_init ($a)
        -
        -
          -
        • Name: Redbasic
        • -
        • Description: RedMatrix standard theme
        • -
        • Version: 1.0
        • -
        • Author: Fabrixxm
        • -
        • Maintainer: Mike Macgirvin
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/redbasic_2php_2theme_8php.js b/doc/html/redbasic_2php_2theme_8php.js deleted file mode 100644 index ad2af9268..000000000 --- a/doc/html/redbasic_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var redbasic_2php_2theme_8php = -[ - [ "redbasic_init", "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b", null ] -]; \ No newline at end of file diff --git a/doc/html/redbasic_8php.html b/doc/html/redbasic_8php.html deleted file mode 100644 index 31861ac51..000000000 --- a/doc/html/redbasic_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/redbasic.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        redbasic.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/reddav_8php.html b/doc/html/reddav_8php.html deleted file mode 100644 index 75293ff59..000000000 --- a/doc/html/reddav_8php.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - -The Red Matrix: include/reddav.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        reddav.php File Reference
        -
        -
        - -

        some DAV related functions for RedMatrix. -More...

        - - - - - - - - - - - -

        -Functions

         RedChannelList (&$auth)
         Returns an array with viewable channels. More...
         
         RedCollectionData ($file, &$auth)
         TODO what exactly does this function? More...
         
         RedFileData ($file, &$auth, $test=false)
         TODO What exactly is this function for? More...
         
        -

        Detailed Description

        -

        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.
        -

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

        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        RedChannelList ($auth)
        -
        - -

        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?
        -
        Parameters
        - - -
        RedBasicAuth&$auth
        -
        -
        -
        Returns
        array RedDirectory[]
        - -

        Referenced by RedCollectionData().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        RedCollectionData ( $file,
        $auth 
        )
        -
        - -

        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?
        -
        Parameters
        - - - -
        string$filepath to a directory
        RedBasicAuth&$auth
        -
        -
        -
        Returns
        null|array []
        -
        Exceptions
        - - - -
        \Sabre\DAV\Exception\Forbidden
        \Sabre\DAV\Exception\NotFound
        -
        -
        - -

        Referenced by RedMatrix\RedDAV\RedDirectory\getChildren().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        RedFileData ( $file,
        $auth,
         $test = false 
        )
        -
        - -

        TODO What exactly is this function for?

        -

        function name looks like a class name, should we rename it?

        -
        Parameters
        - - - - -
        string$filepath to file or directory
        RedBasicAuth&$auth
        boolean$test(optional) enable test mode
        -
        -
        -
        Returns
        RedFile|RedDirectory|boolean|null
        -
        Exceptions
        - - -
        \Sabre\DAV\Exception\Forbidden
        -
        -
        - -

        Referenced by RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), dav_init(), and RedMatrix\RedDAV\RedDirectory\getChild().

        - -
        -
        -
        -
        - diff --git a/doc/html/reddav_8php.js b/doc/html/reddav_8php.js deleted file mode 100644 index 02eaf1811..000000000 --- a/doc/html/reddav_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var reddav_8php = -[ - [ "RedChannelList", "reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66", null ], - [ "RedCollectionData", "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266", null ], - [ "RedFileData", "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088", null ] -]; \ No newline at end of file diff --git a/doc/html/redir_8php.html b/doc/html/redir_8php.html deleted file mode 100644 index ce368c49b..000000000 --- a/doc/html/redir_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/redir.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        redir.php File Reference
        -
        -
        - - - - -

        -Functions

         redir_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        redir_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/redir_8php.js b/doc/html/redir_8php.js deleted file mode 100644 index 8fb935d75..000000000 --- a/doc/html/redir_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var redir_8php = -[ - [ "redir_init", "redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5", null ] -]; \ No newline at end of file diff --git a/doc/html/redstrap_2php_2style_8php.html b/doc/html/redstrap_2php_2style_8php.html deleted file mode 100644 index 997721e19..000000000 --- a/doc/html/redstrap_2php_2style_8php.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

         $line_height = false
         
         $redbasic_font_size = false
         
         $resolution = false
         
         $colour = false
         
         $shadows = false
         
         $navcolour = false
         
         $nav_bg_1 = "f88"
         
         $nav_bg_2 = "b00"
         
         $nav_bg_3 = "f00"
         
         $nav_bg_4 = "b00"
         
         $displaystyle = false
         
         $linkcolour = false
         
         $shiny = false
         
         $site_line_height = get_config("redbasic","line_height")
         
         $site_redbasic_font_size = get_config("redbasic", "font_size" )
         
         $site_colour = get_config("redbasic", "colour" )
         
        if(local_channel()) if($line_height===false)
        -if($line_height===false) if($redbasic_font_size===false)
        -if($redbasic_font_size===false)
        -if($colour===false) if($colour===false)
        -if($navcolour==="black") 
        if (file_exists('view/theme/'.current_theme(). '/css/style.css'))
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $colour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $displaystyle = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $line_height = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $linkcolour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $nav_bg_1 = "f88"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_2 = "b00"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_3 = "f00"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_4 = "b00"
        -
        - -
        -
        - -
        -
        - - - - -
        $navcolour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $redbasic_font_size = false
        -
        - -
        -
        - -
        -
        - - - - -
        $resolution = false
        -
        - -

        Referenced by photo_init().

        - -
        -
        - -
        -
        - - - - -
        $shadows = false
        -
        - -

        Referenced by redbasic_form().

        - -
        -
        - -
        -
        - - - - -
        $shiny = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $site_colour = get_config("redbasic", "colour" )
        -
        - -
        -
        - -
        -
        - - - - -
        $site_line_height = get_config("redbasic","line_height")
        -
        - -
        -
        - -
        -
        - - - - -
        $site_redbasic_font_size = get_config("redbasic", "font_size" )
        -
        - -
        -
        - -
        -
        - - - - -
        if (local_channel()) if ($line_height===false) if ($line_height===false) if ($redbasic_font_size===false) if ($redbasic_font_size===false) if ($colour===false) if ($colour===false) if ($navcolour==="black") if(file_exists('view/theme/'.current_theme(). '/css/style.css'))
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/redstrap_2php_2style_8php.js b/doc/html/redstrap_2php_2style_8php.js deleted file mode 100644 index b8f1b41e9..000000000 --- a/doc/html/redstrap_2php_2style_8php.js +++ /dev/null @@ -1,20 +0,0 @@ -var redstrap_2php_2style_8php = -[ - [ "$colour", "redstrap_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab", null ], - [ "$displaystyle", "redstrap_2php_2style_8php.html#aa658152b727ea1233f6df6ded6437dad", null ], - [ "$line_height", "redstrap_2php_2style_8php.html#a4131d1765ee4deb28e83fc4527943ee0", null ], - [ "$linkcolour", "redstrap_2php_2style_8php.html#a6628a80911a6b37b464ef110ac8f6e42", null ], - [ "$nav_bg_1", "redstrap_2php_2style_8php.html#a232513bf4339fe34908c4c63cb93168b", null ], - [ "$nav_bg_2", "redstrap_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba", null ], - [ "$nav_bg_3", "redstrap_2php_2style_8php.html#acc190405dda0a23a80551dee11c74c0c", null ], - [ "$nav_bg_4", "redstrap_2php_2style_8php.html#aef266cfcb27c6ddb3292584c945bab33", null ], - [ "$navcolour", "redstrap_2php_2style_8php.html#a938168352fd3cdaa1c10c16a34f5938a", null ], - [ "$redbasic_font_size", "redstrap_2php_2style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda", null ], - [ "$resolution", "redstrap_2php_2style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc", null ], - [ "$shadows", "redstrap_2php_2style_8php.html#acb3046ad9c01b7d60cde20f58d77c548", null ], - [ "$shiny", "redstrap_2php_2style_8php.html#a0b942d36d8862908864e2ffa4521be70", null ], - [ "$site_colour", "redstrap_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd", null ], - [ "$site_line_height", "redstrap_2php_2style_8php.html#a8749837e08dfb3372662af9c33fa2a2e", null ], - [ "$site_redbasic_font_size", "redstrap_2php_2style_8php.html#a45e6fafa363bc4586fa91dce1786be4f", null ], - [ "if", "redstrap_2php_2style_8php.html#a0c4684da834439885ae2285649d1aaea", null ] -]; \ No newline at end of file diff --git a/doc/html/redstrap_2php_2theme_8php.html b/doc/html/redstrap_2php_2theme_8php.html deleted file mode 100644 index 7b6f14cd5..000000000 --- a/doc/html/redstrap_2php_2theme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         redstrap_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        redstrap_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/redstrap_2php_2theme_8php.js b/doc/html/redstrap_2php_2theme_8php.js deleted file mode 100644 index 7a42ce992..000000000 --- a/doc/html/redstrap_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var redstrap_2php_2theme_8php = -[ - [ "redstrap_init", "redstrap_2php_2theme_8php.html#a4dac61d466b4261deca2846f548e484a", null ] -]; \ No newline at end of file diff --git a/doc/html/refimport_8php.html b/doc/html/refimport_8php.html deleted file mode 100644 index 26dc98a08..000000000 --- a/doc/html/refimport_8php.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - -The Red Matrix: include/Import/refimport.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        refimport.php File Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Functions

         reflect_get_channel ()
         
         refimport_content (&$a)
         
         reflect_article_callback ($matches)
         
         reflect_photo_callback ($matches)
         
         reflect_find_user ($users, $name)
         
         reflect_comment_store ($channel, $post, $comment, $user)
         
        - - - - - - - - - - - - - - - -

        -Variables

        const REDMATRIX_IMPORTCHANNEL 'mike'
         
        const REFLECT_EXPORTUSERNAME 'mike'
         
        const REFLECT_BLOGNAME 'Diary and Other Rantings'
         
        const REFLECT_BASEURL 'http://example.com/'
         
        const REFLECT_USERFILE 'user.json'
         
        const REFLECT_OVERWRITE false
         
        const REFLECT_MAXPERRUN 30
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        refimport_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        reflect_article_callback ( $matches)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        reflect_comment_store ( $channel,
         $post,
         $comment,
         $user 
        )
        -
        - -

        Referenced by refimport_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        reflect_find_user ( $users,
         $name 
        )
        -
        - -

        Referenced by refimport_content().

        - -
        -
        - -
        -
        - - - - - - - -
        reflect_get_channel ()
        -
        - -

        Referenced by refimport_content(), and reflect_photo_callback().

        - -
        -
        - -
        -
        - - - - - - - - -
        reflect_photo_callback ( $matches)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        const REDMATRIX_IMPORTCHANNEL 'mike'
        -
        - -

        Referenced by reflect_get_channel().

        - -
        -
        - -
        -
        - - - - -
        const REFLECT_BASEURL 'http://example.com/'
        -
        -
        - -
        -
        - - - - -
        const REFLECT_BLOGNAME 'Diary and Other Rantings'
        -
        - -

        Referenced by refimport_content().

        - -
        -
        - -
        -
        - - - - -
        const REFLECT_EXPORTUSERNAME 'mike'
        -
        - -

        Referenced by reflect_comment_store().

        - -
        -
        - -
        -
        - - - - -
        const REFLECT_MAXPERRUN 30
        -
        - -

        Referenced by refimport_content().

        - -
        -
        - -
        -
        - - - - -
        const REFLECT_OVERWRITE false
        -
        - -

        Referenced by refimport_content(), and reflect_comment_store().

        - -
        -
        - -
        -
        - - - - -
        const REFLECT_USERFILE 'user.json'
        -
        - -

        Referenced by refimport_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/refimport_8php.js b/doc/html/refimport_8php.js deleted file mode 100644 index f0b97cbee..000000000 --- a/doc/html/refimport_8php.js +++ /dev/null @@ -1,16 +0,0 @@ -var refimport_8php = -[ - [ "refimport_content", "refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29", null ], - [ "reflect_article_callback", "refimport_8php.html#a53434bc19e6264db89e18d92ddc09860", null ], - [ "reflect_comment_store", "refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c", null ], - [ "reflect_find_user", "refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d", null ], - [ "reflect_get_channel", "refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c", null ], - [ "reflect_photo_callback", "refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5", null ], - [ "REDMATRIX_IMPORTCHANNEL", "refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6", null ], - [ "REFLECT_BASEURL", "refimport_8php.html#ac43699d8ae86175e049aa4e87853caac", null ], - [ "REFLECT_BLOGNAME", "refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f", null ], - [ "REFLECT_EXPORTUSERNAME", "refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025", null ], - [ "REFLECT_MAXPERRUN", "refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f", null ], - [ "REFLECT_OVERWRITE", "refimport_8php.html#aeec793cefa260f788b7d005adcb35796", null ], - [ "REFLECT_USERFILE", "refimport_8php.html#a684a44d2401abf75f441591bcb41d10d", null ] -]; \ No newline at end of file diff --git a/doc/html/regdir_8php.html b/doc/html/regdir_8php.html deleted file mode 100644 index 51b41f7ff..000000000 --- a/doc/html/regdir_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/regdir.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        regdir.php File Reference
        -
        -
        - - - - -

        -Functions

         regdir_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        regdir_init ($a)
        -
        -

        With args, register a directory server for this realm With no args, return a JSON array of directory servers for this realm

        -

        FIXME: Not yet implemented: Some realms may require authentication to join their realm. The RED_GLOBAL realm does not require authentication. We would then need a flag in the site table to indicate that they've been validated by the PRIMARY directory for that realm. Sites claiming to be PRIMARY but are not the realm PRIMARY will be marked invalid.

        - -
        -
        -
        -
        - diff --git a/doc/html/regdir_8php.js b/doc/html/regdir_8php.js deleted file mode 100644 index a75697bea..000000000 --- a/doc/html/regdir_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var regdir_8php = -[ - [ "regdir_init", "regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd", null ] -]; \ No newline at end of file diff --git a/doc/html/register_8php.html b/doc/html/register_8php.html deleted file mode 100644 index c60337a73..000000000 --- a/doc/html/register_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/register.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        register.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         register_init (&$a)
         
         register_post (&$a)
         
         register_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        register_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        register_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        register_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/register_8php.js b/doc/html/register_8php.js deleted file mode 100644 index 7028ce8cc..000000000 --- a/doc/html/register_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var register_8php = -[ - [ "register_content", "register_8php.html#a0e91f57f111407ea8d3223a05022bb2a", null ], - [ "register_init", "register_8php.html#ae20c0cd40f738d6295de58b9202c83d5", null ], - [ "register_post", "register_8php.html#a51731dcc1917c58a790eb1c0f6132271", null ] -]; \ No newline at end of file diff --git a/doc/html/regmod_8php.html b/doc/html/regmod_8php.html deleted file mode 100644 index e5ac39365..000000000 --- a/doc/html/regmod_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/regmod.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        regmod.php File Reference
        -
        -
        - - - - -

        -Functions

         regmod_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        regmod_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/regmod_8php.js b/doc/html/regmod_8php.js deleted file mode 100644 index d19c87424..000000000 --- a/doc/html/regmod_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var regmod_8php = -[ - [ "regmod_content", "regmod_8php.html#a7953df4e32e63946565e90cdd5d50409", null ] -]; \ No newline at end of file diff --git a/doc/html/regver_8php.html b/doc/html/regver_8php.html deleted file mode 100644 index 2fbc994d4..000000000 --- a/doc/html/regver_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/regver.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        regver.php File Reference
        -
        -
        - - - - -

        -Functions

         regver_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        regver_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/regver_8php.js b/doc/html/regver_8php.js deleted file mode 100644 index b7f4b0ea1..000000000 --- a/doc/html/regver_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var regver_8php = -[ - [ "regver_content", "regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f", null ] -]; \ No newline at end of file diff --git a/doc/html/removeaccount_8php.html b/doc/html/removeaccount_8php.html deleted file mode 100644 index ec4dcc756..000000000 --- a/doc/html/removeaccount_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/removeaccount.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        removeaccount.php File Reference
        -
        -
        - - - - - - -

        -Functions

         removeaccount_post (&$a)
         
         removeaccount_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        removeaccount_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        removeaccount_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/removeaccount_8php.js b/doc/html/removeaccount_8php.js deleted file mode 100644 index 40a35218c..000000000 --- a/doc/html/removeaccount_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var removeaccount_8php = -[ - [ "removeaccount_content", "removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695", null ], - [ "removeaccount_post", "removeaccount_8php.html#a26a3325292e932c59793430ab737126a", null ] -]; \ No newline at end of file diff --git a/doc/html/removeme_8php.html b/doc/html/removeme_8php.html deleted file mode 100644 index f0325ad4d..000000000 --- a/doc/html/removeme_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/removeme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        removeme.php File Reference
        -
        -
        - - - - - - -

        -Functions

         removeme_post (&$a)
         
         removeme_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        removeme_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        removeme_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/removeme_8php.js b/doc/html/removeme_8php.js deleted file mode 100644 index ee5cd84d0..000000000 --- a/doc/html/removeme_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var removeme_8php = -[ - [ "removeme_content", "removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c", null ], - [ "removeme_post", "removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88", null ] -]; \ No newline at end of file diff --git a/doc/html/resize.js b/doc/html/resize.js deleted file mode 100644 index 8365b253c..000000000 --- a/doc/html/resize.js +++ /dev/null @@ -1,93 +0,0 @@ -var cookie_namespace = 'doxygen'; -var sidenav,navtree,content,header; - -function readCookie(cookie) -{ - var myCookie = cookie_namespace+"_"+cookie+"="; - if (document.cookie) - { - var index = document.cookie.indexOf(myCookie); - if (index != -1) - { - var valStart = index + myCookie.length; - var valEnd = document.cookie.indexOf(";", valStart); - if (valEnd == -1) - { - valEnd = document.cookie.length; - } - var val = document.cookie.substring(valStart, valEnd); - return val; - } - } - return 0; -} - -function writeCookie(cookie, val, expiration) -{ - if (val==undefined) return; - if (expiration == null) - { - var date = new Date(); - date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week - expiration = date.toGMTString(); - } - document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; -} - -function resizeWidth() -{ - var windowWidth = $(window).width() + "px"; - var sidenavWidth = $(sidenav).outerWidth(); - content.css({marginLeft:parseInt(sidenavWidth)+6+"px"}); //account for 6px-wide handle-bar - writeCookie('width',sidenavWidth, null); -} - -function restoreWidth(navWidth) -{ - var windowWidth = $(window).width() + "px"; - content.css({marginLeft:parseInt(navWidth)+6+"px"}); - sidenav.css({width:navWidth + "px"}); -} - -function resizeHeight() -{ - var headerHeight = header.outerHeight(); - var footerHeight = footer.outerHeight(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - content.css({height:windowHeight + "px"}); - navtree.css({height:windowHeight + "px"}); - sidenav.css({height:windowHeight + "px",top: headerHeight+"px"}); -} - -function initResizable() -{ - header = $("#top"); - sidenav = $("#side-nav"); - content = $("#doc-content"); - navtree = $("#nav-tree"); - footer = $("#nav-path"); - $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); - $(window).resize(function() { resizeHeight(); }); - var width = readCookie('width'); - if (width) { restoreWidth(width); } else { resizeWidth(); } - resizeHeight(); - var url = location.href; - var i=url.indexOf("#"); - if (i>=0) window.location.hash=url.substr(i); - var _preventDefault = function(evt) { evt.preventDefault(); }; - $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); - $(document).bind('touchmove',function(e){ - try { - var target = e.target; - while (target) { - if ($(target).css('-webkit-overflow-scrolling')=='touch') return; - target = target.parentNode; - } - e.preventDefault(); - } catch(err) { - e.preventDefault(); - } - }); -} - - diff --git a/doc/html/rhash-64.png b/doc/html/rhash-64.png deleted file mode 100644 index 2e8396760..000000000 Binary files a/doc/html/rhash-64.png and /dev/null differ diff --git a/doc/html/rm-64.png b/doc/html/rm-64.png deleted file mode 100644 index 8021f9d55..000000000 Binary files a/doc/html/rm-64.png and /dev/null differ diff --git a/doc/html/rmagic_8php.html b/doc/html/rmagic_8php.html deleted file mode 100644 index e98328483..000000000 --- a/doc/html/rmagic_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/rmagic.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        rmagic.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         rmagic_init (&$a)
         
         rmagic_post (&$a)
         
         rmagic_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        rmagic_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rmagic_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        rmagic_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/rmagic_8php.js b/doc/html/rmagic_8php.js deleted file mode 100644 index ca44412be..000000000 --- a/doc/html/rmagic_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var rmagic_8php = -[ - [ "rmagic_content", "rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef", null ], - [ "rmagic_init", "rmagic_8php.html#a95455edd43f1bff39446a57388cdde16", null ], - [ "rmagic_post", "rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f", null ] -]; \ No newline at end of file diff --git a/doc/html/rpost_8php.html b/doc/html/rpost_8php.html deleted file mode 100644 index c642a0a93..000000000 --- a/doc/html/rpost_8php.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: mod/rpost.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        rpost.php File Reference
        -
        -
        - - - - -

        -Functions

         rpost_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        rpost_content ($a)
        -
        -

        remote post

        -

        https://yoursite/rpost?f=&title=&body=&remote_return=

        -

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

        -

        f= placeholder, often required title= Title of post body= Body of post source= Source application remote_return= absolute URL to return after posting is finished type= choices are 'html' or 'bbcode', default is 'bbcode'

        - -
        -
        -
        -
        - diff --git a/doc/html/rpost_8php.js b/doc/html/rpost_8php.js deleted file mode 100644 index 44a898923..000000000 --- a/doc/html/rpost_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var rpost_8php = -[ - [ "rpost_content", "rpost_8php.html#a8190354d789000806d9879aea276728f", null ] -]; \ No newline at end of file diff --git a/doc/html/rsd__xml_8php.html b/doc/html/rsd__xml_8php.html deleted file mode 100644 index 9761872c4..000000000 --- a/doc/html/rsd__xml_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/rsd_xml.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        rsd_xml.php File Reference
        -
        -
        - - - - -

        -Functions

         rsd_xml_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        rsd_xml_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/rsd__xml_8php.js b/doc/html/rsd__xml_8php.js deleted file mode 100644 index 36c85f86a..000000000 --- a/doc/html/rsd__xml_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var rsd__xml_8php = -[ - [ "rsd_xml_content", "rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82", null ] -]; \ No newline at end of file diff --git a/doc/html/search/all_24.html b/doc/html/search/all_24.html deleted file mode 100644 index 46ab96a5b..000000000 --- a/doc/html/search/all_24.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js deleted file mode 100644 index 966f1713c..000000000 --- a/doc/html/search/all_24.js +++ /dev/null @@ -1,159 +0,0 @@ -var searchData= -[ - ['_24a',['$a',['../typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'typo.php']]], - ['_24account',['$account',['../classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3',1,'App']]], - ['_24api',['$API',['../include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8',1,'api.php']]], - ['_24app',['$app',['../classBaseObject.html#a02cc4cd8fa26b6fc76d92fde54b4e4b1',1,'BaseObject']]], - ['_24apps',['$apps',['../classApp.html#a230e975296cf164da2fee35ef720964f',1,'App']]], - ['_24argc',['$argc',['../classApp.html#af58db526040829b1c8bd95561b329262',1,'App']]], - ['_24argv',['$argv',['../classApp.html#ab3da757abe5cb45bf88f07cc51a73b58',1,'App']]], - ['_24arr',['$arr',['../extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb',1,'extract.php']]], - ['_24aside',['$aside',['../minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf',1,'minimalisticdarkness.php']]], - ['_24auth',['$auth',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142',1,'RedMatrix\RedDAV\RedBrowser\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9',1,'RedMatrix\RedDAV\RedDirectory\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215',1,'RedMatrix\RedDAV\RedFile\$auth()']]], - ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], - ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_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']]], - ['_24channel_5fhash',['$channel_hash',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24channel_5fid',['$channel_id',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abe1defedb90ac8e3b6487e124e625521',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24channel_5fname',['$channel_name',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a76fdb7fd5dd7376155abb5a58cd6fd69',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24children',['$children',['../classItem.html#a80dcd0fb7673776c0967839d429c2a0f',1,'Item']]], - ['_24cid',['$cid',['../classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0',1,'App']]], - ['_24cipher',['$cipher',['../classConversation.html#aa95c1a62af38bdfba7add9549bec083b',1,'Conversation']]], - ['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]], - ['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]], - ['_24commentable',['$commentable',['../classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6',1,'Conversation\$commentable()'],['../classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304',1,'Item\$commentable()']]], - ['_24config',['$config',['../classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88',1,'App']]], - ['_24connected',['$connected',['../classdba__driver.html#a205f6535e399700b6fca2492f96f2229',1,'dba_driver']]], - ['_24contact',['$contact',['../classApp.html#a98ef4cfd36693a3457c879b76bc6d694',1,'App']]], - ['_24contacts',['$contacts',['../classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2',1,'App']]], - ['_24content',['$content',['../classApp.html#ac1d80a14492acc932715d54567d8a589',1,'App']]], - ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], - ['_24credentials',['$credentials',['../classRedMatrix_1_1Import_1_1Import.html#a864aac9fadb4846f5d9f840e8e0f440f',1,'RedMatrix::Import::Import']]], - ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',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',['../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']]], - ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], - ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], - ['_24display_5fmode',['$display_mode',['../classItem.html#a88a99e2d1245925867f249f543358e72',1,'Item']]], - ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], - ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], - ['_24ext_5fpath',['$ext_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24fext',['$fext',['../view_2theme_2apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9',1,'style.php']]], - ['_24filelist',['$filelist',['../docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b',1,'docblox_errorchecker.php']]], - ['_24filename',['$filename',['../classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690',1,'FriendicaSmarty']]], - ['_24files',['$files',['../extract_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): extract.php'],['../tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149',1,'$files(): tpldebug.php'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], - ['_24fname',['$fname',['../view_2theme_2apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc',1,'style.php']]], - ['_24folder_5fhash',['$folder_hash',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a2fc4e6b9be2108bbaa1ca1a03fd6d44e',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], - ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], - ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], - ['_24height',['$height',['../classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80',1,'photo_driver']]], - ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], - ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], - ['_24i',['$i',['../docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f',1,'docblox_errorchecker.php']]], - ['_24iconsize',['$iconsize',['../view_2theme_2apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30',1,'style.php']]], - ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], - ['_24image',['$image',['../classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55',1,'photo_driver']]], - ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], - ['_24ink',['$ink',['../php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0',1,'php2po.php']]], - ['_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#ad0d2bdc3b388220479063915b4f5c2fc',1,'RedMatrix::Import::Import']]], - ['_24items',['$items',['../classRedMatrix_1_1Import_1_1Import.html#a0a05dac405ccc5b617b7b7b3c8ed783c',1,'RedMatrix::Import::Import']]], - ['_24js_5fsources',['$js_sources',['../classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d',1,'App']]], - ['_24k',['$k',['../php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178',1,'php2po.php']]], - ['_24lang',['$lang',['../classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8',1,'Template']]], - ['_24language',['$language',['../classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f',1,'App']]], - ['_24layout',['$layout',['../classApp.html#a58ac598544892ff7c32890291b72635e',1,'App']]], - ['_24ldelim',['$ldelim',['../classApp.html#a59dd4b665c70e7dbd80682c014ff7145',1,'App']]], - ['_24minwidth',['$minwidth',['../minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb',1,'minimalisticdarkness.php']]], - ['_24mode',['$mode',['../classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a',1,'Conversation']]], - ['_24module',['$module',['../classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d',1,'App']]], - ['_24module_5floaded',['$module_loaded',['../classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165',1,'App']]], - ['_24name',['$name',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2',1,'RedMatrix\RedDAV\RedFile\$name()'],['../classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02',1,'FriendicaSmartyEngine\$name()'],['../classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae',1,'Template\$name()']]], - ['_24nav_5fpercent_5fmin_5fopacity',['$nav_percent_min_opacity',['../view_2theme_2redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c',1,'style.php']]], - ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], - ['_24navheight',['$navheight',['../view_2theme_2apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872',1,'style.php']]], - ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], - ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], - ['_24obliquemacro',['$obliquemacro',['../view_2theme_2apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0',1,'style.php']]], - ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classConversation.html#a8748445aa26047ebed5141f3c3cbc244',1,'Conversation\$observer()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a605aa09565a097316b80f0d17d6b5823',1,'RedMatrix\RedDAV\RedBasicAuth\$observer()']]], - ['_24os_5fpath',['$os_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a17ea47e34cb76b6e79f36ebed790d76a',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], - ['_24owner_5fid',['$owner_id',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a1a23c349cc4699a8474505972684ea9c',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24owner_5fname',['$owner_name',['../classItem.html#a9594df6014b0b6f45364ea7a34510130',1,'Item']]], - ['_24owner_5fnick',['$owner_nick',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aad0ef0cc05c407de84dbfbf2050bbbbe',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24owner_5fphoto',['$owner_photo',['../classItem.html#a078f95b4134ce3a1df344cf8d386f986',1,'Item']]], - ['_24owner_5furl',['$owner_url',['../classItem.html#afa54851df82962c7c42dea3cc9f5c92c',1,'Item']]], - ['_24page',['$page',['../classApp.html#a4b67935096f66d1f14b657399a8461ac',1,'App']]], - ['_24pager',['$pager',['../classApp.html#a6bcb19cdc4907077da72864686d5a780',1,'App']]], - ['_24parent',['$parent',['../classItem.html#a1a1e42877e6ac7af50286142ceb483d2',1,'Item']]], - ['_24path',['$path',['../classApp.html#acad5896b7a79ae31433ad8f89606c728',1,'App']]], - ['_24perms',['$perms',['../classApp.html#ab47de68fa39806d1fb0976407e188b77',1,'App']]], - ['_24phpath',['$phpath',['../typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd',1,'typo.php']]], - ['_24phpfile',['$phpfile',['../php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4',1,'php2po.php']]], - ['_24plugins',['$plugins',['../classApp.html#ae9f96338f32187d308b67b980eea0008',1,'App']]], - ['_24pofile',['$pofile',['../php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1',1,'php2po.php']]], - ['_24poi',['$poi',['../classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a',1,'App']]], - ['_24prepared_5fitem',['$prepared_item',['../classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2',1,'Conversation']]], - ['_24preview',['$preview',['../classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae',1,'Conversation']]], - ['_24profile',['$profile',['../classApp.html#a57d041fcc003d08c127dfa99a02bc192',1,'App']]], - ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], - ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], - ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], - ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], - ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], - ['_24replace',['$replace',['../classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10',1,'Template']]], - ['_24res',['$res',['../docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5',1,'docblox_errorchecker.php']]], - ['_24root_5fdir',['$root_dir',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a438066fb1565fbcffa22c12d5ce23695',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24s',['$s',['../extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634',1,'extract.php']]], - ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], - ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], - ['_24sectionleft',['$sectionleft',['../minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead',1,'minimalisticdarkness.php']]], - ['_24sectiontop',['$sectiontop',['../view_2theme_2apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a',1,'style.php']]], - ['_24sectionwidth',['$sectionwidth',['../minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f',1,'minimalisticdarkness.php']]], - ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], - ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], - ['_24showlock',['$showlock',['../view_2theme_2apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425',1,'style.php']]], - ['_24sourcename',['$sourcename',['../classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11',1,'App']]], - ['_24src_5fitems',['$src_items',['../classRedMatrix_1_1Import_1_1Import.html#a88c2eeba8d0cba3e7c12a2c45ba0fbc6',1,'RedMatrix::Import::Import']]], - ['_24stack',['$stack',['../classTemplate.html#a6f0efc256688c36110180b501067ff11',1,'Template']]], - ['_24str',['$str',['../typohelper_8php.html#a7542d95618011800c61773127fa625cf',1,'typohelper.php']]], - ['_24strings',['$strings',['../classApp.html#a5f64620473a9727a48ebe9cf6f335a98',1,'App']]], - ['_24strongmacro',['$strongmacro',['../view_2theme_2apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea',1,'style.php']]], - ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], - ['_24template_5fengine_5finstance',['$template_engine_instance',['../classApp.html#a6844aedad10e201b8c3d80cfc9e876d3',1,'App']]], - ['_24template_5fengines',['$template_engines',['../classApp.html#a6859a4848a5c0049b4134cc4b34228b6',1,'App']]], - ['_24theme',['$theme',['../classApp.html#a764cc6cd7578132c21d2b4545de9301c',1,'App']]], - ['_24theme_5finfo',['$theme_info',['../classApp.html#aeca29fd4f7192ca07369b3c598c36e67',1,'App']]], - ['_24theme_5fthread_5fallow',['$theme_thread_allow',['../classApp.html#a487332f8de40414ca1a54a4265570b70',1,'App']]], - ['_24threaded',['$threaded',['../classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2',1,'Item']]], - ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], - ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], - ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], - ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], - ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], - ['_24uid',['$uid',['../view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], - ['_24user',['$user',['../classApp.html#a91fd3c8b89016113b05f3be24805ccff',1,'App']]], - ['_24valid',['$valid',['../classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9',1,'photo_driver']]], - ['_24videoheight',['$videoheight',['../classApp.html#a56b1a432c96aef8b1971f779c9d93c8c',1,'App']]], - ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], - ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], - ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_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']]], - ['_24x',['$x',['../view_2theme_2apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7',1,'style.php']]], - ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] -]; diff --git a/doc/html/search/all_5f.html b/doc/html/search/all_5f.html deleted file mode 100644 index 879d79268..000000000 --- a/doc/html/search/all_5f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_5f.js b/doc/html/search/all_5f.js deleted file mode 100644 index d3b354e58..000000000 --- a/doc/html/search/all_5f.js +++ /dev/null @@ -1,30 +0,0 @@ -var searchData= -[ - ['_5f_5fconstruct',['__construct',['../classApp.html#af6d39f63fb7116bbeb04e51696f99474',1,'App\__construct()'],['../classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09',1,'Conversation\__construct()'],['../classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186',1,'dba_driver\__construct()'],['../classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2',1,'Item\__construct()'],['../classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6',1,'FKOAuth1\__construct()'],['../classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae',1,'photo_driver\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a8161f2a0be205412e263c947b5ec46c5',1,'RedMatrix\RedDAV\RedBrowser\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a76b58fe5223e565c97f1b9af93031a99',1,'RedMatrix\RedDAV\RedDirectory\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a05798eac84c578152ff21758261c6ac6',1,'RedMatrix\RedDAV\RedFile\__construct()'],['../classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6',1,'FriendicaSmarty\__construct()'],['../classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6',1,'FriendicaSmartyEngine\__construct()']]], - ['_5f_5fdestruct',['__destruct',['../classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721',1,'dba_driver\__destruct()'],['../classphoto__driver.html#ae4501abdc9651359f81d036b63625686',1,'photo_driver\__destruct()']]], - ['_5f_5finit_5f_5f',['__init__',['../classeasywebdav_1_1client_1_1OperationFailed.html#acfdca9ff27c865ea1c07449ce4e8d339',1,'easywebdav.client.OperationFailed.__init__()'],['../classeasywebdav_1_1client_1_1Client.html#aa17aa551ee348830d09dbf3a5616aebb',1,'easywebdav.client.Client.__init__()'],['../classzotsh_1_1ZotSH.html#a668d46a5dd96ae7d390273c187b0c3bc',1,'zotsh.ZotSH.__init__()']]], - ['_5f_5finit_5f_5f_2epy',['__init__.py',['../____init_____8py.html',1,'']]], - ['_5f_5fversion_5f_5f',['__version__',['../namespaceeasywebdav_1_1____version____.html#a79e00ae40b23fd17c38e3fb7a0feeddb',1,'easywebdav.__version__.__version__()'],['../namespacezotsh.html#a31d85cca46babd5138e15a19167617b1',1,'zotsh.__version__()']]], - ['_5f_5fversion_5f_5f_2epy',['__version__.py',['../____version_____8py.html',1,'']]], - ['_5fbuild_5fnodes',['_build_nodes',['../classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4',1,'Template']]], - ['_5fdownload',['_download',['../classeasywebdav_1_1client_1_1Client.html#a37094196d06e70b0ed6f41322f599faf',1,'easywebdav::client::Client']]], - ['_5fget_5furl',['_get_url',['../classeasywebdav_1_1client_1_1Client.html#a01e56f6f57b17cbc6e4b759175cb6204',1,'easywebdav::client::Client']]], - ['_5fget_5fvar',['_get_var',['../classTemplate.html#aae9c4d761ea1298e745e8052d7910194',1,'Template']]], - ['_5fhost',['_host',['../classzotsh_1_1ZotSH.html#a6e5ab6ac97a89b18761120bab26a397a',1,'zotsh::ZotSH']]], - ['_5fhostname',['_hostname',['../classzotsh_1_1ZotSH.html#a65623483056d05833d1edfe714dfac96',1,'zotsh::ZotSH']]], - ['_5foperations',['_OPERATIONS',['../classeasywebdav_1_1client_1_1OperationFailed.html#a0102ba5be95f92727887f66eb1f760d0',1,'easywebdav::client::OperationFailed']]], - ['_5fpop_5fstack',['_pop_stack',['../classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7',1,'Template']]], - ['_5fpreg_5ferror',['_preg_error',['../classTemplate.html#a37c15f6d1ade500943629f27a62808b7',1,'Template']]], - ['_5fpush_5fstack',['_push_stack',['../classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29',1,'Template']]], - ['_5freplcb',['_replcb',['../classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934',1,'Template']]], - ['_5freplcb_5fdebug',['_replcb_debug',['../classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e',1,'Template']]], - ['_5freplcb_5ffor',['_replcb_for',['../classTemplate.html#abf71098c80fd1f218a59452b3408309e',1,'Template']]], - ['_5freplcb_5fif',['_replcb_if',['../classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228',1,'Template']]], - ['_5freplcb_5finc',['_replcb_inc',['../classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677',1,'Template']]], - ['_5freplcb_5fnode',['_replcb_node',['../classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee',1,'Template']]], - ['_5fsend',['_send',['../classeasywebdav_1_1client_1_1Client.html#ae6c8e7680e2c76df128e2c5ec4b79516',1,'easywebdav::client::Client']]], - ['_5fsession',['_session',['../classzotsh_1_1ZotSH.html#a778a232b947fa563a21bf09e992589ad',1,'zotsh::ZotSH']]], - ['_5fupload',['_upload',['../classeasywebdav_1_1client_1_1Client.html#a119e2f4cdd0e266a747bf8e92de51997',1,'easywebdav::client::Client']]], - ['_5fwell_5fknown_2ephp',['_well_known.php',['../__well__known_8php.html',1,'']]], - ['_5fwell_5fknown_5finit',['_well_known_init',['../__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0',1,'_well_known.php']]] -]; diff --git a/doc/html/search/all_61.html b/doc/html/search/all_61.html deleted file mode 100644 index f85089b55..000000000 --- a/doc/html/search/all_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js deleted file mode 100644 index 6e7e65d87..000000000 --- a/doc/html/search/all_61.js +++ /dev/null @@ -1,219 +0,0 @@ -var searchData= -[ - ['abook_5fconnections',['abook_connections',['../Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e',1,'Contact.php']]], - ['abook_5fflag_5farchived',['ABOOK_FLAG_ARCHIVED',['../boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5',1,'boot.php']]], - ['abook_5fflag_5fblocked',['ABOOK_FLAG_BLOCKED',['../boot_8php.html#a52b599cd13e152ebc80d7e4413683195',1,'boot.php']]], - ['abook_5fflag_5ffeed',['ABOOK_FLAG_FEED',['../boot_8php.html#ae0d9527117cd87dcba11986047ae336e',1,'boot.php']]], - ['abook_5fflag_5fhidden',['ABOOK_FLAG_HIDDEN',['../boot_8php.html#a34c756469ebed32e2fc987bcde62d382',1,'boot.php']]], - ['abook_5fflag_5fignored',['ABOOK_FLAG_IGNORED',['../boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6',1,'boot.php']]], - ['abook_5fflag_5fpending',['ABOOK_FLAG_PENDING',['../boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155',1,'boot.php']]], - ['abook_5fflag_5fself',['ABOOK_FLAG_SELF',['../boot_8php.html#a0450389f24c632906fbc24347700a543',1,'boot.php']]], - ['abook_5fflag_5funconnected',['ABOOK_FLAG_UNCONNECTED',['../boot_8php.html#a7eeb83e15968f7a6cc5937d493815773',1,'boot.php']]], - ['abook_5fself',['abook_self',['../Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5',1,'Contact.php']]], - ['abook_5ftoggle_5fflag',['abook_toggle_flag',['../Contact_8php.html#a024919623a830e8703ac4f23496dd66c',1,'Contact.php']]], - ['absurl',['absurl',['../boot_8php.html#a081307d681d7d04f17b9ced2076e7c85',1,'boot.php']]], - ['access_5ffree',['ACCESS_FREE',['../boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4',1,'boot.php']]], - ['access_5fpaid',['ACCESS_PAID',['../boot_8php.html#a9c80420e5a063a4a87ce4831f086134d',1,'boot.php']]], - ['access_5fprivate',['ACCESS_PRIVATE',['../boot_8php.html#a7f3474fec541e261fc8dff47313c4017',1,'boot.php']]], - ['access_5ftiered',['ACCESS_TIERED',['../boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8',1,'boot.php']]], - ['access_5ftoken_5fduration',['ACCESS_TOKEN_DURATION',['../oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6',1,'oauth.php']]], - ['account_2ephp',['account.php',['../account_8php.html',1,'']]], - ['account_5fblocked',['ACCOUNT_BLOCKED',['../boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9',1,'boot.php']]], - ['account_5fexpired',['ACCOUNT_EXPIRED',['../boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a',1,'boot.php']]], - ['account_5fok',['ACCOUNT_OK',['../boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8',1,'boot.php']]], - ['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]], - ['account_5fremove',['account_remove',['../Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33',1,'Contact.php']]], - ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], - ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], - ['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]], - ['account_5frole_5fdeveloper',['ACCOUNT_ROLE_DEVELOPER',['../boot_8php.html#a4f507a5996dbb3da148add0339a40d5a',1,'boot.php']]], - ['account_5frole_5fsystem',['ACCOUNT_ROLE_SYSTEM',['../boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b',1,'boot.php']]], - ['account_5fservice_5fclass_5fallows',['account_service_class_allows',['../account_8php.html#ac70e1d198246b029a3cedb7d6f7868bd',1,'account.php']]], - ['account_5fservice_5fclass_5ffetch',['account_service_class_fetch',['../account_8php.html#a4328c40ee4b3d68630cf1ebb7b9d4d89',1,'account.php']]], - ['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]], - ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], - ['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]], - ['achievements_2ephp',['achievements.php',['../achievements_8php.html',1,'']]], - ['achievements_5fcontent',['achievements_content',['../achievements_8php.html#a35ae04ada0e227d19671f289a32fb30e',1,'achievements.php']]], - ['acknowledge_5fpermissions',['acknowledge_permissions',['../classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a',1,'ProtoDriver\acknowledge_permissions()'],['../classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2',1,'ZotDriver\acknowledge_permissions()']]], - ['acl_2ephp',['acl.php',['../acl_8php.html',1,'']]], - ['acl_5finit',['acl_init',['../acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a',1,'acl.php']]], - ['acl_5fselectors',['acl_selectors',['../namespaceacl__selectors.html',1,'']]], - ['acl_5fselectors_2ephp',['acl_selectors.php',['../acl__selectors_8php.html',1,'']]], - ['activities_2ephp',['activities.php',['../activities_8php.html',1,'']]], - ['activity_5fabstain',['ACTIVITY_ABSTAIN',['../boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3',1,'boot.php']]], - ['activity_5fagree',['ACTIVITY_AGREE',['../boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c',1,'boot.php']]], - ['activity_5fattend',['ACTIVITY_ATTEND',['../boot_8php.html#a137f161c8ca8d51ef58f2e1b6781905b',1,'boot.php']]], - ['activity_5fattendmaybe',['ACTIVITY_ATTENDMAYBE',['../boot_8php.html#a3fff33eae4da657d433bafedc55cb2c5',1,'boot.php']]], - ['activity_5fattendno',['ACTIVITY_ATTENDNO',['../boot_8php.html#a5d8d55cf192d1d50ad188411d58bd404',1,'boot.php']]], - ['activity_5fdisagree',['ACTIVITY_DISAGREE',['../boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb',1,'boot.php']]], - ['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]], - ['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]], - ['activity_5ffollow',['ACTIVITY_FOLLOW',['../boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434',1,'boot.php']]], - ['activity_5ffriend',['ACTIVITY_FRIEND',['../boot_8php.html#a176664e78dcb9132e16be69418223eb2',1,'boot.php']]], - ['activity_5fjoin',['ACTIVITY_JOIN',['../boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3',1,'boot.php']]], - ['activity_5flike',['ACTIVITY_LIKE',['../boot_8php.html#abdcdfc873ace4e0902177bad934de0c0',1,'boot.php']]], - ['activity_5fmatch',['activity_match',['../text_8php.html#af8a3e3a66a7b862d4510f145d2e13186',1,'text.php']]], - ['activity_5fmood',['ACTIVITY_MOOD',['../boot_8php.html#a7aa57438db03834aaa0b468bdce773a6',1,'boot.php']]], - ['activity_5fobj_5falbum',['ACTIVITY_OBJ_ALBUM',['../boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14',1,'boot.php']]], - ['activity_5fobj_5fcomment',['ACTIVITY_OBJ_COMMENT',['../boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562',1,'boot.php']]], - ['activity_5fobj_5fevent',['ACTIVITY_OBJ_EVENT',['../boot_8php.html#a2e90096fede6acce16abf0da8cb2febe',1,'boot.php']]], - ['activity_5fobj_5ffile',['ACTIVITY_OBJ_FILE',['../boot_8php.html#aa726114f13c1119ae77c3464d6afeaed',1,'boot.php']]], - ['activity_5fobj_5fgroup',['ACTIVITY_OBJ_GROUP',['../boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3',1,'boot.php']]], - ['activity_5fobj_5fheart',['ACTIVITY_OBJ_HEART',['../boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f',1,'boot.php']]], - ['activity_5fobj_5flocation',['ACTIVITY_OBJ_LOCATION',['../boot_8php.html#a9687c702656af105e9a09048c21aec4c',1,'boot.php']]], - ['activity_5fobj_5fnote',['ACTIVITY_OBJ_NOTE',['../boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f',1,'boot.php']]], - ['activity_5fobj_5fp_5fphoto',['ACTIVITY_OBJ_P_PHOTO',['../boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab',1,'boot.php']]], - ['activity_5fobj_5fperson',['ACTIVITY_OBJ_PERSON',['../boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab',1,'boot.php']]], - ['activity_5fobj_5fphoto',['ACTIVITY_OBJ_PHOTO',['../boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966',1,'boot.php']]], - ['activity_5fobj_5fprofile',['ACTIVITY_OBJ_PROFILE',['../boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5',1,'boot.php']]], - ['activity_5fobj_5ftagterm',['ACTIVITY_OBJ_TAGTERM',['../boot_8php.html#a1da180f961f49a11573cac4ff6c62c05',1,'boot.php']]], - ['activity_5fobj_5fthing',['ACTIVITY_OBJ_THING',['../boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8',1,'boot.php']]], - ['activity_5fpoke',['ACTIVITY_POKE',['../boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd',1,'boot.php']]], - ['activity_5fpost',['ACTIVITY_POST',['../boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4',1,'boot.php']]], - ['activity_5freq_5ffriend',['ACTIVITY_REQ_FRIEND',['../boot_8php.html#afe084c30a1810c10442edb4fbcbc0086',1,'boot.php']]], - ['activity_5fsanitise',['activity_sanitise',['../items_8php.html#a36e656667193c83aa2cc03a024fc131b',1,'items.php']]], - ['activity_5ftag',['ACTIVITY_TAG',['../boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5',1,'boot.php']]], - ['activity_5funfollow',['ACTIVITY_UNFOLLOW',['../boot_8php.html#a53e4bdb6f225da55115acb9277f75e53',1,'boot.php']]], - ['activity_5funfriend',['ACTIVITY_UNFRIEND',['../boot_8php.html#a29528a2544373cc19a378f350040c6a1',1,'boot.php']]], - ['activity_5fupdate',['ACTIVITY_UPDATE',['../boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866',1,'boot.php']]], - ['actual_5fcode',['actual_code',['../classeasywebdav_1_1client_1_1OperationFailed.html#a3c42e9edf259eca30ac7fbcb7e181eac',1,'easywebdav::client::OperationFailed']]], - ['add_5fchild',['add_child',['../classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51',1,'Item']]], - ['add_5fchildren_5fto_5flist',['add_children_to_list',['../conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b',1,'conversation.php']]], - ['add_5fsource_5froute',['add_source_route',['../items_8php.html#a81565acf729e629e588d823308448e3c',1,'items.php']]], - ['add_5fthread',['add_thread',['../classConversation.html#a8335cdd43f1836e3c255638e61a09e16',1,'Conversation']]], - ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], - ['admin_5fcontent',['admin_content',['../admin_8php.html#afef415e4011607fbb665610441595015',1,'admin.php']]], - ['admin_5fpage_5fchannels',['admin_page_channels',['../admin_8php.html#ad6f87a764fd35f522c7b4c351d7878ec',1,'admin.php']]], - ['admin_5fpage_5fchannels_5fpost',['admin_page_channels_post',['../admin_8php.html#a42e628f367c168add8013352ac74d33f',1,'admin.php']]], - ['admin_5fpage_5fdbsync',['admin_page_dbsync',['../admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade',1,'admin.php']]], - ['admin_5fpage_5fhubloc',['admin_page_hubloc',['../admin_8php.html#a6943543f3138f6ee182cb701f415d1cc',1,'admin.php']]], - ['admin_5fpage_5fhubloc_5fpost',['admin_page_hubloc_post',['../admin_8php.html#a60ba9783ad14545814919970bc3fb725',1,'admin.php']]], - ['admin_5fpage_5flogs',['admin_page_logs',['../admin_8php.html#a1d1362698af14d209aa3a0fb655551dd',1,'admin.php']]], - ['admin_5fpage_5flogs_5fpost',['admin_page_logs_post',['../admin_8php.html#a233b7c8c31776b7020532003c6e44e1c',1,'admin.php']]], - ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], - ['admin_5fpage_5fprofs',['admin_page_profs',['../admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a',1,'admin.php']]], - ['admin_5fpage_5fprofs_5fpost',['admin_page_profs_post',['../admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057',1,'admin.php']]], - ['admin_5fpage_5fqueue',['admin_page_queue',['../admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89',1,'admin.php']]], - ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], - ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], - ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], - ['admin_5fpage_5fthemes',['admin_page_themes',['../admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb',1,'admin.php']]], - ['admin_5fpage_5fusers',['admin_page_users',['../admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2',1,'admin.php']]], - ['admin_5fpage_5fusers_5fpost',['admin_page_users_post',['../admin_8php.html#a5a696706a3869800e65fb365214241b7',1,'admin.php']]], - ['admin_5fpost',['admin_post',['../admin_8php.html#acf51f5837a7427832144c2bf7308ada3',1,'admin.php']]], - ['advanced_5fprofile',['advanced_profile',['../identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4',1,'identity.php']]], - ['aes256cbc_5fdecrypt',['AES256CBC_decrypt',['../crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9',1,'crypto.php']]], - ['aes256cbc_5fencrypt',['AES256CBC_encrypt',['../crypto_8php.html#a5c61821d205f95f127114159cbffa764',1,'crypto.php']]], - ['aes_5fencapsulate',['aes_encapsulate',['../crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286',1,'crypto.php']]], - ['aes_5funencapsulate',['aes_unencapsulate',['../crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914',1,'crypto.php']]], - ['age',['age',['../datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df',1,'datetime.php']]], - ['all_5ffriends',['all_friends',['../socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586',1,'socgraph.php']]], - ['allowed_5femail',['allowed_email',['../include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694',1,'network.php']]], - ['allowed_5fpublic_5frecips',['allowed_public_recips',['../zot_8php.html#a703f528ade8382cf374e4119bd6f7859',1,'zot.php']]], - ['allowed_5furl',['allowed_url',['../include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7',1,'network.php']]], - ['alt_5fpager',['alt_pager',['../text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85',1,'text.php']]], - ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], - ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], - ['api_5faccount_5flogout',['api_account_logout',['../include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b',1,'api.php']]], - ['api_5faccount_5frate_5flimit_5fstatus',['api_account_rate_limit_status',['../include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5',1,'api.php']]], - ['api_5faccount_5fverify_5fcredentials',['api_account_verify_credentials',['../include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad',1,'api.php']]], - ['api_5falbums',['api_albums',['../include_2api_8php.html#aa9dc5350b26d6c7727d6c4b641ecba18',1,'api.php']]], - ['api_5fapply_5ftemplate',['api_apply_template',['../include_2api_8php.html#a5990101034e7abf6404feba3cd273629',1,'api.php']]], - ['api_5fcall',['api_call',['../include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5',1,'api.php']]], - ['api_5fchannel_5fstream',['api_channel_stream',['../include_2api_8php.html#a72bfecac1970bc29b853073e816388ff',1,'api.php']]], - ['api_5fcontent',['api_content',['../mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d',1,'api.php']]], - ['api_5fdate',['api_date',['../include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25',1,'api.php']]], - ['api_5fdirect_5fmessages_5fall',['api_direct_messages_all',['../include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705',1,'api.php']]], - ['api_5fdirect_5fmessages_5fbox',['api_direct_messages_box',['../include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5',1,'api.php']]], - ['api_5fdirect_5fmessages_5fconversation',['api_direct_messages_conversation',['../include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3',1,'api.php']]], - ['api_5fdirect_5fmessages_5finbox',['api_direct_messages_inbox',['../include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2',1,'api.php']]], - ['api_5fdirect_5fmessages_5fnew',['api_direct_messages_new',['../include_2api_8php.html#a0991f72554f821255397d615e76f3203',1,'api.php']]], - ['api_5fdirect_5fmessages_5fsentbox',['api_direct_messages_sentbox',['../include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d',1,'api.php']]], - ['api_5fexport_5fbasic',['api_export_basic',['../include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53',1,'api.php']]], - ['api_5ffavorites',['api_favorites',['../include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f',1,'api.php']]], - ['api_5fff_5fids',['api_ff_ids',['../include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8',1,'api.php']]], - ['api_5ffollowers_5fids',['api_followers_ids',['../include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b',1,'api.php']]], - ['api_5fformat_5fas',['api_format_as',['../include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879',1,'api.php']]], - ['api_5fformat_5fitems',['api_format_items',['../include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea',1,'api.php']]], - ['api_5fformat_5fmessages',['api_format_messages',['../include_2api_8php.html#ae82608c317421f27446465aa6724733d',1,'api.php']]], - ['api_5ffriendica_5fversion',['api_friendica_version',['../include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74',1,'api.php']]], - ['api_5ffriends_5fids',['api_friends_ids',['../include_2api_8php.html#acafd2899309a005fcb725289173dc7fe',1,'api.php']]], - ['api_5fget_5fuser',['api_get_user',['../include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa',1,'api.php']]], - ['api_5fgroup',['api_group',['../include_2api_8php.html#ad5fe62d6c25c86999f627b2e6cfde536',1,'api.php']]], - ['api_5fgroup_5fmembers',['api_group_members',['../include_2api_8php.html#ae46f964e5a9c80b96dc78df61c09ed3a',1,'api.php']]], - ['api_5fhelp_5ftest',['api_help_test',['../include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23',1,'api.php']]], - ['api_5fitem_5fget_5fuser',['api_item_get_user',['../include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1',1,'api.php']]], - ['api_5flogin',['api_login',['../include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73',1,'api.php']]], - ['api_5foauth_5faccess_5ftoken',['api_oauth_access_token',['../include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0',1,'api.php']]], - ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], - ['api_5fphotos',['api_photos',['../include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f',1,'api.php']]], - ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], - ['api_5fred_5fxchan',['api_red_xchan',['../include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60',1,'api.php']]], - ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], - ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], - ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], - ['api_5fstatuses_5fdestroy',['api_statuses_destroy',['../include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4',1,'api.php']]], - ['api_5fstatuses_5ff',['api_statuses_f',['../include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410',1,'api.php']]], - ['api_5fstatuses_5ffollowers',['api_statuses_followers',['../include_2api_8php.html#a6951c690d87775eb37e569c66011988e',1,'api.php']]], - ['api_5fstatuses_5ffriends',['api_statuses_friends',['../include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e',1,'api.php']]], - ['api_5fstatuses_5fhome_5ftimeline',['api_statuses_home_timeline',['../include_2api_8php.html#a528d8070ee74ea800102936ce73cf366',1,'api.php']]], - ['api_5fstatuses_5fmediap',['api_statuses_mediap',['../include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95',1,'api.php']]], - ['api_5fstatuses_5fmentions',['api_statuses_mentions',['../include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e',1,'api.php']]], - ['api_5fstatuses_5fpublic_5ftimeline',['api_statuses_public_timeline',['../include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22',1,'api.php']]], - ['api_5fstatuses_5frepeat',['api_statuses_repeat',['../include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8',1,'api.php']]], - ['api_5fstatuses_5fshow',['api_statuses_show',['../include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63',1,'api.php']]], - ['api_5fstatuses_5fupdate',['api_statuses_update',['../include_2api_8php.html#ad4d1634df6b35126552324683caaffa2',1,'api.php']]], - ['api_5fstatuses_5fuser_5ftimeline',['api_statuses_user_timeline',['../include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283',1,'api.php']]], - ['api_5fstatusnet_5fconfig',['api_statusnet_config',['../include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08',1,'api.php']]], - ['api_5fstatusnet_5fversion',['api_statusnet_version',['../include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d',1,'api.php']]], - ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], - ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], - ['app',['App',['../classApp.html',1,'']]], - ['app_5fdecode',['app_decode',['../include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185',1,'apps.php']]], - ['app_5fdestroy',['app_destroy',['../include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f',1,'apps.php']]], - ['app_5fencode',['app_encode',['../include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7',1,'apps.php']]], - ['app_5finstall',['app_install',['../include_2apps_8php.html#a72756e1601489eb77971eeda011446d0',1,'apps.php']]], - ['app_5finstalled',['app_installed',['../include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2',1,'apps.php']]], - ['app_5flist',['app_list',['../include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0',1,'apps.php']]], - ['app_5fname_5fcompare',['app_name_compare',['../include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658',1,'apps.php']]], - ['app_5frender',['app_render',['../include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66',1,'apps.php']]], - ['app_5fstore',['app_store',['../include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9',1,'apps.php']]], - ['app_5fupdate',['app_update',['../include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46',1,'apps.php']]], - ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], - ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], - ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], - ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], - ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], - ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], - ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], - ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], - ['apw_5finit',['apw_init',['../view_2theme_2apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], - ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], - ['argv',['argv',['../boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006',1,'boot.php']]], - ['arr_5fadd_5fhashes',['arr_add_hashes',['../parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868',1,'parse_url.php']]], - ['array_5fsanitise',['array_sanitise',['../items_8php.html#abf7a1b73eb352d79acd36309b0dababd',1,'items.php']]], - ['array_5fxmlify',['array_xmlify',['../text_8php.html#acedb584f65114a33f389efb796172a91',1,'text.php']]], - ['atom_5fauthor',['atom_author',['../items_8php.html#a016dd86c827d08db89061ea81d15c6cb',1,'items.php']]], - ['atom_5fentry',['atom_entry',['../items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6',1,'items.php']]], - ['atom_5ftime',['ATOM_TIME',['../boot_8php.html#ad34c1547020a305915bcc39707744690',1,'boot.php']]], - ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], - ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], - ['attach_5fby_5fhash',['attach_by_hash',['../include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36',1,'attach.php']]], - ['attach_5fby_5fhash_5fnodata',['attach_by_hash_nodata',['../include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932',1,'attach.php']]], - ['attach_5fchange_5fpermissions',['attach_change_permissions',['../include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221',1,'attach.php']]], - ['attach_5fcount_5ffiles',['attach_count_files',['../include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3',1,'attach.php']]], - ['attach_5fdelete',['attach_delete',['../include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd',1,'attach.php']]], - ['attach_5fflag_5fdir',['ATTACH_FLAG_DIR',['../boot_8php.html#aa74438cf71e48e37bf7b440b94243985',1,'boot.php']]], - ['attach_5fflag_5fos',['ATTACH_FLAG_OS',['../boot_8php.html#a781916f83fcc8ff1035649afa45f0292',1,'boot.php']]], - ['attach_5finit',['attach_init',['../mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1',1,'attach.php']]], - ['attach_5flist_5ffiles',['attach_list_files',['../include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d',1,'attach.php']]], - ['attach_5fmkdir',['attach_mkdir',['../include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc',1,'attach.php']]], - ['attach_5fstore',['attach_store',['../include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f',1,'attach.php']]], - ['attribute_5fcontains',['attribute_contains',['../text_8php.html#a95fd2f8f23a1948414a03ebc963bac57',1,'text.php']]], - ['auth_2ephp',['auth.php',['../auth_8php.html',1,'']]], - ['authenticate_5fsuccess',['authenticate_success',['../security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733',1,'security.php']]], - ['autoname',['autoname',['../text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca',1,'text.php']]], - ['avatar_5fimg',['avatar_img',['../include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7',1,'network.php']]], - ['apw',['apw',['../md_README.html',1,'']]] -]; diff --git a/doc/html/search/all_62.html b/doc/html/search/all_62.html deleted file mode 100644 index f25fa2c88..000000000 --- a/doc/html/search/all_62.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js deleted file mode 100644 index b4e24eae5..000000000 --- a/doc/html/search/all_62.js +++ /dev/null @@ -1,54 +0,0 @@ -var searchData= -[ - ['base64url_5fdecode',['base64url_decode',['../text_8php.html#a13286f8a95d2de6b102966ecc270c8d6',1,'text.php']]], - ['base64url_5fencode',['base64url_encode',['../text_8php.html#a070384ec000fd65043fce11d5392d241',1,'text.php']]], - ['baseobject',['BaseObject',['../classBaseObject.html',1,'']]], - ['baseobject_2ephp',['BaseObject.php',['../BaseObject_8php.html',1,'']]], - ['baseurl',['baseurl',['../classeasywebdav_1_1client_1_1Client.html#a6b4ef9c67ea641e4e42eb04123876a5f',1,'easywebdav::client::Client']]], - ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], - ['bb2diaspora_2ephp',['bb2diaspora.php',['../bb2diaspora_8php.html',1,'']]], - ['bb2diaspora_5fitembody',['bb2diaspora_itembody',['../bb2diaspora_8php.html#ab27761069ea1275f0fc4c543099c5519',1,'bb2diaspora.php']]], - ['bb2diaspora_5fitemwallwall',['bb2diaspora_itemwallwall',['../bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083',1,'bb2diaspora.php']]], - ['bb2dmention_5fcallback',['bb2dmention_callback',['../bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34',1,'bb2diaspora.php']]], - ['bb_5fextract_5fimages',['bb_extract_images',['../bbcode_8php.html#a583bf904481db2623ead8cbd28f16d32',1,'bbcode.php']]], - ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], - ['bb_5fmap_5fcoords',['bb_map_coords',['../bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24',1,'bbcode.php']]], - ['bb_5fmap_5flocation',['bb_map_location',['../bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d',1,'bbcode.php']]], - ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], - ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#aaaae933e2563558db886b820075c93c8',1,'bbcode.php']]], - ['bb_5fparse_5felement',['bb_parse_element',['../bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9',1,'bbcode.php']]], - ['bb_5fqr',['bb_qr',['../bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c',1,'bbcode.php']]], - ['bb_5freplace_5fimages',['bb_replace_images',['../bbcode_8php.html#a35f52b106a3d522f1c0783e78223f402',1,'bbcode.php']]], - ['bb_5fsanitize_5fstyle',['bb_sanitize_style',['../bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e',1,'bbcode.php']]], - ['bb_5fshareattributes',['bb_ShareAttributes',['../bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a',1,'bbcode.php']]], - ['bb_5fshareattributessimple',['bb_ShareAttributesSimple',['../bbcode_8php.html#a2be26414a367118143cc89e2d58e7377',1,'bbcode.php']]], - ['bb_5fspacefy',['bb_spacefy',['../bbcode_8php.html#a8911e027907820df3db03b4f76724b50',1,'bbcode.php']]], - ['bb_5ftag_5fpreg_5freplace',['bb_tag_preg_replace',['../bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba',1,'bb2diaspora.php']]], - ['bb_5ftranslate_5fvideo',['bb_translate_video',['../text_8php.html#a3d2793d66db3345fd290b71e2eadf98e',1,'text.php']]], - ['bb_5funspacefy_5fand_5ftrim',['bb_unspacefy_and_trim',['../bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d',1,'bbcode.php']]], - ['bbcode',['bbcode',['../bbcode_8php.html#a009f61aaf78771737ed0765c8463911b',1,'bbcode.php']]], - ['bbcode_2ephp',['bbcode.php',['../bbcode_8php.html',1,'']]], - ['bbiframe',['bbiframe',['../bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7',1,'bbcode.php']]], - ['bbtoevent',['bbtoevent',['../event_8php.html#a180cccd63c2a2f00ff432b03113531f3',1,'event.php']]], - ['bbtovcal',['bbtovcal',['../event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279',1,'event.php']]], - ['best_5flink_5furl',['best_link_url',['../conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7',1,'conversation.php']]], - ['block_2ephp',['block.php',['../block_8php.html',1,'']]], - ['block_5fcontent',['block_content',['../block_8php.html#a8a82a470acdfbc7a8e749509caeeea45',1,'block.php']]], - ['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']]], - ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], - ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], - ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], - ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], - ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], - ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], - ['boxy_2ephp',['boxy.php',['../boxy_8php.html',1,'']]], - ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], - ['bs_2ddefault_2ephp',['BS-Default.php',['../BS-Default_8php.html',1,'']]], - ['build_5fpagehead',['build_pagehead',['../classApp.html#a08f0537964d98958d218066364cff785',1,'App']]], - ['build_5fquerystring',['build_querystring',['../boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e',1,'boot.php']]], - ['build_5fsync_5fpacket',['build_sync_packet',['../zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5',1,'zot.php']]], - ['builtin_5factivity_5fpuller',['builtin_activity_puller',['../conversation_8php.html#a54d5247d645b320191052283bee06c34',1,'conversation.php']]] -]; diff --git a/doc/html/search/all_63.html b/doc/html/search/all_63.html deleted file mode 100644 index e7f34db58..000000000 --- a/doc/html/search/all_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js deleted file mode 100644 index 571935b6f..000000000 --- a/doc/html/search/all_63.js +++ /dev/null @@ -1,191 +0,0 @@ -var searchData= -[ - ['cache',['Cache',['../classCache.html',1,'']]], - ['cache_2ephp',['cache.php',['../cache_8php.html',1,'']]], - ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], - ['call_5fhooks',['call_hooks',['../plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c',1,'plugin.php']]], - ['can_5fcomment_5fon_5fpost',['can_comment_on_post',['../items_8php.html#a1e75047cf175aaee8dd16aa761913ff9',1,'items.php']]], - ['catblock',['catblock',['../taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4',1,'taxonomy.php']]], - ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], - ['cd',['cd',['../classeasywebdav_1_1client_1_1Client.html#a5af2c65d101a6d6a9cd557a4e2945755',1,'easywebdav::client::Client']]], - ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], - ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], - ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], - ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0',1,'text.php']]], - ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], - ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], - ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], - ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], - ['channel_5fremove',['channel_remove',['../Contact_8php.html#a4e8af0f0525161da74583c04b8b03097',1,'Contact.php']]], - ['channel_5ftotal',['channel_total',['../identity_8php.html#a77d2237f1846964634b1c99089c27c7d',1,'identity.php']]], - ['channelx_5fby_5fhash',['channelx_by_hash',['../Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258',1,'Contact.php']]], - ['channelx_5fby_5fn',['channelx_by_n',['../Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc',1,'Contact.php']]], - ['channelx_5fby_5fnick',['channelx_by_nick',['../Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e',1,'Contact.php']]], - ['chanview_2ephp',['chanview.php',['../chanview_8php.html',1,'']]], - ['chanview_5fcontent',['chanview_content',['../chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b',1,'chanview.php']]], - ['chat_2ephp',['chat.php',['../mod_2chat_8php.html',1,'']]], - ['chat_2ephp',['chat.php',['../include_2chat_8php.html',1,'']]], - ['chat_5fcontent',['chat_content',['../mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f',1,'chat.php']]], - ['chat_5finit',['chat_init',['../mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e',1,'chat.php']]], - ['chat_5fmessage',['chat_message',['../include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3',1,'chat.php']]], - ['chat_5fpost',['chat_post',['../mod_2chat_8php.html#a999d594745597c656c9760253ae297ad',1,'chat.php']]], - ['chatroom_5fcreate',['chatroom_create',['../include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422',1,'chat.php']]], - ['chatroom_5fdestroy',['chatroom_destroy',['../include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639',1,'chat.php']]], - ['chatroom_5fenter',['chatroom_enter',['../include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91',1,'chat.php']]], - ['chatroom_5fleave',['chatroom_leave',['../include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f',1,'chat.php']]], - ['chatroom_5flist',['chatroom_list',['../include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a',1,'chat.php']]], - ['chatroom_5flist_5fcount',['chatroom_list_count',['../include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049',1,'chat.php']]], - ['chatsvc_2ephp',['chatsvc.php',['../chatsvc_8php.html',1,'']]], - ['chatsvc_5fcontent',['chatsvc_content',['../chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9',1,'chatsvc.php']]], - ['chatsvc_5finit',['chatsvc_init',['../chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116',1,'chatsvc.php']]], - ['chatsvc_5fpost',['chatsvc_post',['../chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03',1,'chatsvc.php']]], - ['check_5faccount_5fadmin',['check_account_admin',['../account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f',1,'account.php']]], - ['check_5faccount_5femail',['check_account_email',['../account_8php.html#ae052bd5558847bd38e89c213561a9771',1,'account.php']]], - ['check_5faccount_5finvite',['check_account_invite',['../account_8php.html#aaff7720423417a4333697894ffd9ddeb',1,'account.php']]], - ['check_5faccount_5fpassword',['check_account_password',['../account_8php.html#a144b4891022567668375b58ea61cfff0',1,'account.php']]], - ['check_5fadd',['check_add',['../setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1',1,'setup.php']]], - ['check_5fconfig',['check_config',['../boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3',1,'boot.php']]], - ['check_5fform_5fsecurity_5fstd_5ferr_5fmsg',['check_form_security_std_err_msg',['../security_8php.html#a20f8b9851f23ee8894b8925584ef6821',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken',['check_form_security_token',['../security_8php.html#a9c6180e82150a5a9af91a1255d096b5c',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken_5fforbiddenonerr',['check_form_security_token_ForbiddenOnErr',['../security_8php.html#a444ac867dfa8c37cf0a7a226412bee28',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken_5fredirectonerr',['check_form_security_token_redirectOnErr',['../security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433',1,'security.php']]], - ['check_5ffuncs',['check_funcs',['../setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e',1,'setup.php']]], - ['check_5fhtaccess',['check_htaccess',['../setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4',1,'setup.php']]], - ['check_5fhtconfig',['check_htconfig',['../setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f',1,'setup.php']]], - ['check_5fitem_5fsource',['check_item_source',['../items_8php.html#a87ac9e359591721a824ecd23bbb56296',1,'items.php']]], - ['check_5fkeys',['check_keys',['../setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76',1,'setup.php']]], - ['check_5flist_5fpermissions',['check_list_permissions',['../permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7',1,'permissions.php']]], - ['check_5fphp',['check_php',['../setup_8php.html#a14d208682a88632290c895d20da6e7d6',1,'setup.php']]], - ['check_5fsmarty3',['check_smarty3',['../setup_8php.html#afd8b0b3ade1507c45325caf377bf459d',1,'setup.php']]], - ['check_5fstore',['check_store',['../setup_8php.html#ab4b71369a25021d59247c917e98d8246',1,'setup.php']]], - ['check_5fupstream_5fdirectory',['check_upstream_directory',['../dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16',1,'dir_fns.php']]], - ['check_5fwall_5fto_5fwall',['check_wall_to_wall',['../classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8',1,'Item']]], - ['check_5fwebbie',['check_webbie',['../text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3',1,'text.php']]], - ['childexists',['childExists',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a964b13fde1a5da6f76b51ca5519234dc',1,'RedMatrix::RedDAV::RedDirectory']]], - ['choklet_2ephp',['choklet.php',['../choklet_8php.html',1,'']]], - ['clean_5furls',['clean_urls',['../boot_8php.html#ab79b8b4555cae20d03f8200666d89d63',1,'boot.php']]], - ['clear',['clear',['../classCache.html#ab14d0f4bdf7116a94d545c574b38f568',1,'Cache']]], - ['cleardiv',['cleardiv',['../text_8php.html#afe18627c4983ee5f7c940a0992818cd5',1,'text.php']]], - ['cli_5fstartup',['cli_startup',['../cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b',1,'cli_startup.php']]], - ['cli_5fstartup_2ephp',['cli_startup.php',['../cli__startup_8php.html',1,'']]], - ['cli_5fsuggest_2ephp',['cli_suggest.php',['../cli__suggest_8php.html',1,'']]], - ['cli_5fsuggest_5frun',['cli_suggest_run',['../cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2',1,'cli_suggest.php']]], - ['client',['Client',['../classeasywebdav_1_1client_1_1Client.html',1,'easywebdav::client']]], - ['client_2epy',['client.py',['../client_8py.html',1,'']]], - ['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()'],['../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']]], - ['cmd_5fcat',['cmd_cat',['../classzotsh_1_1ZotSH.html#a3c857c942309ecea9b2bad2dd0dfc410',1,'zotsh::ZotSH']]], - ['cmd_5fdelete',['cmd_delete',['../classzotsh_1_1ZotSH.html#a5fe9615eb84aa7f5c932b8ac5e08594d',1,'zotsh::ZotSH']]], - ['cmd_5fdownload',['cmd_download',['../classzotsh_1_1ZotSH.html#ada686b83017bfe450e367cfdb89d084e',1,'zotsh::ZotSH']]], - ['cmd_5fexists',['cmd_exists',['../classzotsh_1_1ZotSH.html#af98a32d48748f4fa96caec1f6a33d3d0',1,'zotsh::ZotSH']]], - ['cmd_5fhelp',['cmd_help',['../classzotsh_1_1ZotSH.html#a9a7c98256c6b5ef2c56fc5f7a76580d5',1,'zotsh::ZotSH']]], - ['cmd_5fhost',['cmd_host',['../classzotsh_1_1ZotSH.html#a0fe85d1e5e662e0d60fc6a749c5c8ee6',1,'zotsh::ZotSH']]], - ['cmd_5flcd',['cmd_lcd',['../classzotsh_1_1ZotSH.html#a9d40211e408798c3aaceecfe9f611d8f',1,'zotsh::ZotSH']]], - ['cmd_5flls',['cmd_lls',['../classzotsh_1_1ZotSH.html#a709c4d5135a7c45fea12af1b2bae911c',1,'zotsh::ZotSH']]], - ['cmd_5flpwd',['cmd_lpwd',['../classzotsh_1_1ZotSH.html#acdafbe4f32089bf3dc9f14d82ba5054a',1,'zotsh::ZotSH']]], - ['cmd_5fls',['cmd_ls',['../classzotsh_1_1ZotSH.html#a9abc50b9215a544bdbc2b0bfd511a70a',1,'zotsh::ZotSH']]], - ['cmd_5fmkdir',['cmd_mkdir',['../classzotsh_1_1ZotSH.html#ae4f4079edcfbd2f86f423137f5dcffec',1,'zotsh::ZotSH']]], - ['cmd_5fmkdirs',['cmd_mkdirs',['../classzotsh_1_1ZotSH.html#a32d6a43f22b5e1e2c172a10775ab83db',1,'zotsh::ZotSH']]], - ['cmd_5fpwd',['cmd_pwd',['../classzotsh_1_1ZotSH.html#ab6b1c88a142f39a579b024f44aa24ccd',1,'zotsh::ZotSH']]], - ['cmd_5frmdir',['cmd_rmdir',['../classzotsh_1_1ZotSH.html#a51592d441bd2ab61a7841c31fef3af0e',1,'zotsh::ZotSH']]], - ['cmd_5fupload',['cmd_upload',['../classzotsh_1_1ZotSH.html#a72f4c37d4786c52b593c37c4a1b23b06',1,'zotsh::ZotSH']]], - ['codestr',['codestr',['../namespaceeasywebdav_1_1client.html#afd5d5d10ff07ed6fcda7e3c6b8771a16',1,'easywebdav::client']]], - ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], - ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], - ['collect_5frecipients',['collect_recipients',['../items_8php.html#a772f0ae77ad77c8ab68ed918a3870946',1,'items.php']]], - ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], - ['comanche_2ephp',['comanche.php',['../comanche_8php.html',1,'']]], - ['comanche_5fblock',['comanche_block',['../comanche_8php.html#a5a7ab801717d38e91ac910b933973887',1,'comanche.php']]], - ['comanche_5fget_5fchannel_5fid',['comanche_get_channel_id',['../comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e',1,'comanche.php']]], - ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#ad5a44e42231759aba1dda49e0490501e',1,'comanche.php']]], - ['comanche_5fparser',['comanche_parser',['../comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922',1,'comanche.php']]], - ['comanche_5fregion',['comanche_region',['../comanche_8php.html#a5718daeda40bf835345fe061e8808cdf',1,'comanche.php']]], - ['comanche_5freplace_5fregion',['comanche_replace_region',['../comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe',1,'comanche.php']]], - ['comanche_5fwebpage',['comanche_webpage',['../comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a',1,'comanche.php']]], - ['comanche_5fwidget',['comanche_widget',['../comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f',1,'comanche.php']]], - ['commandnotfound',['CommandNotFound',['../classzotsh_1_1CommandNotFound.html',1,'zotsh']]], - ['commands',['commands',['../classzotsh_1_1ZotSH.html#ad026a070692fe754e256e9b429591713',1,'zotsh::ZotSH']]], - ['comment_5flocal_5forigin',['comment_local_origin',['../items_8php.html#ada03c12bfd247c9972844e2daa270b52',1,'items.php']]], - ['comments_5fare_5fnow_5fclosed',['comments_are_now_closed',['../items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723',1,'items.php']]], - ['common_2ephp',['common.php',['../common_8php.html',1,'']]], - ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], - ['common_5ffriends',['common_friends',['../socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918',1,'socgraph.php']]], - ['common_5ffriends_5fvisitor_5fwidget',['common_friends_visitor_widget',['../contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65',1,'contact_widgets.php']]], - ['common_5ffriends_5fzcid',['common_friends_zcid',['../socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9',1,'socgraph.php']]], - ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], - ['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_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()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()'],['../namespaceeasywebdav.html#a5c8aedf2077889acfc76e11d3cb0dc77',1,'easywebdav.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']]], - ['connect_5fpost',['connect_post',['../connect_8php.html#a417ec27afe33f21a929667a665e32ee2',1,'connect.php']]], - ['connectionfailed',['ConnectionFailed',['../classeasywebdav_1_1client_1_1ConnectionFailed.html',1,'easywebdav::client']]], - ['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]], - ['connections_5fclone',['connections_clone',['../connections_8php.html#a15af118efee9c948b6f8294e54a73bb2',1,'connections.php']]], - ['connections_5fcontent',['connections_content',['../connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c',1,'connections.php']]], - ['connections_5finit',['connections_init',['../connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558',1,'connections.php']]], - ['connections_5fpost',['connections_post',['../connections_8php.html#a1224058db8e3fb56463eb312f98e561d',1,'connections.php']]], - ['connedit_2ephp',['connedit.php',['../connedit_8php.html',1,'']]], - ['connedit_5fclone',['connedit_clone',['../connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5',1,'connedit.php']]], - ['connedit_5fcontent',['connedit_content',['../connedit_8php.html#a795acb3d9d841f55c255d7611681ab67',1,'connedit.php']]], - ['connedit_5finit',['connedit_init',['../connedit_8php.html#a4da871e075597a09a8b374b9171dd92e',1,'connedit.php']]], - ['connedit_5fpost',['connedit_post',['../connedit_8php.html#a234c48426b652bf4d37053f2af329ac5',1,'connedit.php']]], - ['construct_5factivity_5fobject',['construct_activity_object',['../items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee',1,'items.php']]], - ['construct_5factivity_5ftarget',['construct_activity_target',['../items_8php.html#aa579bc4445d60098b1410961ca8e96b7',1,'items.php']]], - ['construct_5fpage',['construct_page',['../boot_8php.html#acc4e0c910af066148b810e5fde55fff1',1,'boot.php']]], - ['construct_5fverb',['construct_verb',['../items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8',1,'items.php']]], - ['consume_5ffeed',['consume_feed',['../items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6',1,'items.php']]], - ['contact_2ephp',['Contact.php',['../Contact_8php.html',1,'']]], - ['contact_5fblock',['contact_block',['../text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784',1,'text.php']]], - ['contact_5fis_5ffollower',['CONTACT_IS_FOLLOWER',['../boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29',1,'boot.php']]], - ['contact_5fis_5ffriend',['CONTACT_IS_FRIEND',['../boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f',1,'boot.php']]], - ['contact_5fis_5fsharing',['CONTACT_IS_SHARING',['../boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9',1,'boot.php']]], - ['contact_5fpoll_5finterval',['contact_poll_interval',['../contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f',1,'contact_selectors.php']]], - ['contact_5fprofile_5fassign',['contact_profile_assign',['../contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75',1,'contact_selectors.php']]], - ['contact_5fremove',['contact_remove',['../Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6',1,'Contact.php']]], - ['contact_5fselect',['contact_select',['../acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91',1,'acl_selectors.php']]], - ['contact_5fselectors_2ephp',['contact_selectors.php',['../contact__selectors_8php.html',1,'']]], - ['contact_5fwidgets_2ephp',['contact_widgets.php',['../contact__widgets_8php.html',1,'']]], - ['contactgroup_2ephp',['contactgroup.php',['../contactgroup_8php.html',1,'']]], - ['contactgroup_5fcontent',['contactgroup_content',['../contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3',1,'contactgroup.php']]], - ['conv_5fsort',['conv_sort',['../conversation_8php.html#abed85a41f1160598de880b84021c9cf7',1,'conversation.php']]], - ['conversation',['Conversation',['../classConversation.html',1,'Conversation'],['../conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81',1,'conversation(&$a, $items, $mode, $update, $page_mode= 'traditional', $prepared_item= ''): conversation.php']]], - ['conversation_2ephp',['conversation.php',['../conversation_8php.html',1,'']]], - ['conversationobject_2ephp',['ConversationObject.php',['../ConversationObject_8php.html',1,'']]], - ['convert',['convert',['../namespacefriendica-to-smarty-tpl.html#a38503e37fe68ac27c88cce91a9ac9efa',1,'friendica-to-smarty-tpl']]], - ['convert_5fchild',['convert_child',['../classRedMatrix_1_1Import_1_1Import.html#a5434325afb2c633c52540127d717800a',1,'RedMatrix::Import::Import']]], - ['convert_5fitem',['convert_item',['../classRedMatrix_1_1Import_1_1Import.html#a107703a43a1b0ceb2af7ae470cb3f218',1,'RedMatrix::Import::Import']]], - ['convert_5ftaxonomy',['convert_taxonomy',['../classRedMatrix_1_1Import_1_1Import.html#addf6e53dacd971eaab49be4b17a767d6',1,'RedMatrix::Import::Import']]], - ['convert_5fxml_5felement_5fto_5farray',['convert_xml_element_to_array',['../include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246',1,'network.php']]], - ['count_5fall_5ffriends',['count_all_friends',['../socgraph_8php.html#af29d056beec10b4e38e5209c92452894',1,'socgraph.php']]], - ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], - ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], - ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], - ['count_5funseen_5fdescendants',['count_unseen_descendants',['../classItem.html#ae0c48b2fed5558642549cabd547fc4f3',1,'Item']]], - ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], - ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], - ['create_5fsys_5fchannel',['create_sys_channel',['../identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05',1,'identity.php']]], - ['createdirectory',['createDirectory',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aca0e8d574ea66a0e210f571700663c62',1,'RedMatrix::RedDAV::RedDirectory']]], - ['createfile',['createFile',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a58e750256cdc2f0f79fbe8d5463ffefe',1,'RedMatrix::RedDAV::RedDirectory']]], - ['cronhooks_2ephp',['cronhooks.php',['../cronhooks_8php.html',1,'']]], - ['cronhooks_5frun',['cronhooks_run',['../cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca',1,'cronhooks.php']]], - ['cropimage',['cropImage',['../classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e',1,'photo_driver\cropImage()'],['../classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c',1,'photo_gd\cropImage()'],['../classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4',1,'photo_imagick\cropImage()']]], - ['crypto_2ephp',['crypto.php',['../crypto_8php.html',1,'']]], - ['crypto_5fencapsulate',['crypto_encapsulate',['../crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c',1,'crypto.php']]], - ['crypto_5funencapsulate',['crypto_unencapsulate',['../crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5',1,'crypto.php']]], - ['curpageurl',['curPageURL',['../boot_8php.html#aa4221641e5c21db69fa52c426b9017f5',1,'boot.php']]], - ['current_5ftheme',['current_theme',['../boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13',1,'boot.php']]], - ['current_5ftheme_5furl',['current_theme_url',['../boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3',1,'boot.php']]], - ['cwd',['cwd',['../classeasywebdav_1_1client_1_1Client.html#a8129b9db86535dd99218cdba49fe3fb4',1,'easywebdav::client::Client']]], - ['cli_20config_20utility',['CLI config utility',['../md_config.html',1,'']]] -]; diff --git a/doc/html/search/all_64.html b/doc/html/search/all_64.html deleted file mode 100644 index 360601fa7..000000000 --- a/doc/html/search/all_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js deleted file mode 100644 index 5034342f4..000000000 --- a/doc/html/search/all_64.js +++ /dev/null @@ -1,143 +0,0 @@ -var searchData= -[ - ['dark_2ephp',['dark.php',['../dark_8php.html',1,'']]], - ['darkness_2ephp',['darkness.php',['../darkness_8php.html',1,'']]], - ['darknessleftaside_2ephp',['darknessleftaside.php',['../darknessleftaside_8php.html',1,'']]], - ['darknessrightaside_2ephp',['darknessrightaside.php',['../darknessrightaside_8php.html',1,'']]], - ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], - ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], - ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], - ['datetimesel',['datetimesel',['../datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7',1,'datetime.php']]], - ['dav_2ephp',['dav.php',['../dav_8php.html',1,'']]], - ['dav_5finit',['dav_init',['../dav_8php.html#addd46b5ec6cd6c23e065634462b7f040',1,'dav.php']]], - ['davclient',['davclient',['../classzotsh_1_1ZotSH.html#a7d75b322c19fc685a654641a873b2ea3',1,'zotsh::ZotSH']]], - ['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#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_2mytheme_2php_2default_8php.html',1,'']]], - ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], - ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], - ['del_5fpconfig',['del_pconfig',['../include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941',1,'config.php']]], - ['del_5fxconfig',['del_xconfig',['../include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72',1,'config.php']]], - ['delegate_2ephp',['delegate.php',['../delegate_8php.html',1,'']]], - ['delegate_5fcontent',['delegate_content',['../delegate_8php.html#a943eea8996ef348eb845c498f9f354dd',1,'delegate.php']]], - ['delete',['delete',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe',1,'RedMatrix\RedDAV\RedFile\delete()'],['../classeasywebdav_1_1client_1_1Client.html#a1bcdcd91226e9c014556bb3eb2a37a55',1,'easywebdav.client.Client.delete()']]], - ['delete_5fimported_5fitem',['delete_imported_item',['../zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b',1,'zot.php']]], - ['delete_5fitem_5flowlevel',['delete_item_lowlevel',['../items_8php.html#a6b448675b71b00ee5ef798468dde4d22',1,'items.php']]], - ['deletenode',['deletenode',['../html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2',1,'html2bbcode.php']]], - ['deliver',['deliver',['../classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b',1,'ProtoDriver\deliver()'],['../classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f',1,'ZotDriver\deliver()']]], - ['deliver_2ephp',['deliver.php',['../deliver_8php.html',1,'']]], - ['deliver_5fprivate',['deliver_private',['../classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181',1,'ProtoDriver\deliver_private()'],['../classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6',1,'ZotDriver\deliver_private()']]], - ['deliver_5frun',['deliver_run',['../deliver_8php.html#a397afcb9afecf0c1816b0951189dd346',1,'deliver.php']]], - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]], - ['dertopem',['DerToPem',['../crypto_8php.html#a630e1574554f34e7c38511585d9e71a2',1,'crypto.php']]], - ['dertorsa',['DerToRsa',['../crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839',1,'crypto.php']]], - ['design_5ftools',['design_tools',['../text_8php.html#a87a3cefc603302c78982f1d8e1245265',1,'text.php']]], - ['destroy',['destroy',['../classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813',1,'photo_driver\destroy()'],['../classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1',1,'photo_gd\destroy()'],['../classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207',1,'photo_imagick\destroy()']]], - ['detect_5flanguage',['detect_language',['../language_8php.html#a632da17c7ac0d2dc1a00a4706870194b',1,'language.php']]], - ['diaspora_2ephp',['diaspora.php',['../diaspora_8php.html',1,'']]], - ['diaspora2bb',['diaspora2bb',['../bb2diaspora_8php.html#ac9061ee10fcfcdac69566b649614e625',1,'bb2diaspora.php']]], - ['diaspora_5fasphoto',['diaspora_asphoto',['../diaspora_8php.html#a006731620a5242d410358b32678e48e3',1,'diaspora.php']]], - ['diaspora_5fcomment',['diaspora_comment',['../diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829',1,'diaspora.php']]], - ['diaspora_5fconversation',['diaspora_conversation',['../diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f',1,'diaspora.php']]], - ['diaspora_5fdecode',['diaspora_decode',['../diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36',1,'diaspora.php']]], - ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66',1,'diaspora.php']]], - ['diaspora_5fdispatch_5fpublic',['diaspora_dispatch_public',['../diaspora_8php.html#ab99505944728d46585b8312989de533d',1,'diaspora.php']]], - ['diaspora_5fget_5fcontact_5fby_5fhandle',['diaspora_get_contact_by_handle',['../diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4',1,'diaspora.php']]], - ['diaspora_5fhandle_5ffrom_5fcontact',['diaspora_handle_from_contact',['../diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff',1,'diaspora.php']]], - ['diaspora_5fis_5fblacklisted',['diaspora_is_blacklisted',['../diaspora_8php.html#a858f70153c384f8778082cf7843a19da',1,'diaspora.php']]], - ['diaspora_5fis_5freshare',['diaspora_is_reshare',['../diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690',1,'diaspora.php']]], - ['diaspora_5flike',['diaspora_like',['../diaspora_8php.html#a5d57518545baa31cf8a85a937a267681',1,'diaspora.php']]], - ['diaspora_5fmention_5fcallback',['diaspora_mention_callback',['../bb2diaspora_8php.html#a4a27604f0745f1efda672966aaca9a3b',1,'bb2diaspora.php']]], - ['diaspora_5fmessage',['diaspora_message',['../diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46',1,'diaspora.php']]], - ['diaspora_5fmsg_5fbuild',['diaspora_msg_build',['../diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b',1,'diaspora.php']]], - ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], - ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c',1,'diaspora.php']]], - ['diaspora_5fpost',['diaspora_post',['../diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31',1,'diaspora.php']]], - ['diaspora_5fprocess_5foutbound',['diaspora_process_outbound',['../diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605',1,'diaspora.php']]], - ['diaspora_5fprofile',['diaspora_profile',['../diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f',1,'diaspora.php']]], - ['diaspora_5fpubmsg_5fbuild',['diaspora_pubmsg_build',['../diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa',1,'diaspora.php']]], - ['diaspora_5frequest',['diaspora_request',['../diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598',1,'diaspora.php']]], - ['diaspora_5freshare',['diaspora_reshare',['../diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007',1,'diaspora.php']]], - ['diaspora_5fretraction',['diaspora_retraction',['../diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9',1,'diaspora.php']]], - ['diaspora_5fsend_5ffollowup',['diaspora_send_followup',['../diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc',1,'diaspora.php']]], - ['diaspora_5fsend_5fimages',['diaspora_send_images',['../diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b',1,'diaspora.php']]], - ['diaspora_5fsend_5fmail',['diaspora_send_mail',['../diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c',1,'diaspora.php']]], - ['diaspora_5fsend_5frelay',['diaspora_send_relay',['../diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d',1,'diaspora.php']]], - ['diaspora_5fsend_5fretraction',['diaspora_send_retraction',['../diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a',1,'diaspora.php']]], - ['diaspora_5fsend_5fstatus',['diaspora_send_status',['../diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668',1,'diaspora.php']]], - ['diaspora_5fshare',['diaspora_share',['../diaspora_8php.html#a69f250b078a46e405647428ec3399a16',1,'diaspora.php']]], - ['diaspora_5fsigned_5fretraction',['diaspora_signed_retraction',['../diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055',1,'diaspora.php']]], - ['diaspora_5ftransmit',['diaspora_transmit',['../diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56',1,'diaspora.php']]], - ['diaspora_5ful',['diaspora_ul',['../bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc',1,'bb2diaspora.php']]], - ['diaspora_5funshare',['diaspora_unshare',['../diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200',1,'diaspora.php']]], - ['dimport_2ephp',['dimport.php',['../dimport_8php.html',1,'']]], - ['dir_5fflag_5fbuild',['dir_flag_build',['../dirsearch_8php.html#ab6d5fefa98da249a994b910434a669c2',1,'dirsearch.php']]], - ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], - ['dir_5fparse_5fquery',['dir_parse_query',['../dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305',1,'dirsearch.php']]], - ['dir_5fquery_5fbuild',['dir_query_build',['../dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2',1,'dirsearch.php']]], - ['dir_5fsafe_5fmode',['dir_safe_mode',['../dir__fns_8php.html#acf621621e929d49441da30aad76a58cf',1,'dir_fns.php']]], - ['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_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], - ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], - ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], - ['directory_5fmode_5fnormal',['DIRECTORY_MODE_NORMAL',['../boot_8php.html#ab7d65a7e7417825a4db62906bb600729',1,'boot.php']]], - ['directory_5fmode_5fprimary',['DIRECTORY_MODE_PRIMARY',['../boot_8php.html#a8a60cc38bb567765fd926fef70205f16',1,'boot.php']]], - ['directory_5fmode_5fsecondary',['DIRECTORY_MODE_SECONDARY',['../boot_8php.html#aedfb9501ed408278667995524e0d15cf',1,'boot.php']]], - ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], - ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], - ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], - ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], - ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], - ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], - ['discover',['discover',['../classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337',1,'ProtoDriver\discover()'],['../classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514',1,'ZotDriver\discover()']]], - ['discover_5fby_5furl',['discover_by_url',['../include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48',1,'network.php']]], - ['discover_5fby_5fwebbie',['discover_by_webbie',['../include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe',1,'network.php']]], - ['display_2ephp',['display.php',['../display_8php.html',1,'']]], - ['display_5fcontent',['display_content',['../display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0',1,'display.php']]], - ['dlogger',['dlogger',['../text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c',1,'text.php']]], - ['do',['do',['../classzotsh_1_1ZotSH.html#a42e3d635a25a65cd4a0fd7586473a9d1',1,'zotsh.ZotSH.do()'],['../docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085',1,'do(): docblox_errorchecker.php']]], - ['dob',['dob',['../datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8',1,'datetime.php']]], - ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]], - ['doscaleimage',['doScaleImage',['../classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f',1,'photo_driver\doScaleImage()'],['../classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754',1,'photo_gd\doScaleImage()'],['../classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66',1,'photo_imagick\doScaleImage()']]], - ['downgrade_5faccounts',['downgrade_accounts',['../account_8php.html#a0d183a3cb4c67a0f5e906811df7a1fc9',1,'account.php']]], - ['download',['download',['../classeasywebdav_1_1client_1_1Client.html#adc879105d0991fe6bc4e97888e547356',1,'easywebdav::client::Client']]], - ['download_5fchunk_5fsize_5fbytes',['DOWNLOAD_CHUNK_SIZE_BYTES',['../namespaceeasywebdav_1_1client.html#a6be7601c21385a35feb357dcc7fd22bd',1,'easywebdav::client']]], - ['drop_5fitem',['drop_item',['../items_8php.html#ad65e3d4d8c537e560286b735a285e33e',1,'items.php']]], - ['drop_5fitems',['drop_items',['../items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55',1,'items.php']]], - ['dropitem_5fnormal',['DROPITEM_NORMAL',['../boot_8php.html#a7037bcbca223395c06bc67f65024de7a',1,'boot.php']]], - ['dropitem_5fphase1',['DROPITEM_PHASE1',['../boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06',1,'boot.php']]], - ['dropitem_5fphase2',['DROPITEM_PHASE2',['../boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8',1,'boot.php']]] -]; diff --git a/doc/html/search/all_65.html b/doc/html/search/all_65.html deleted file mode 100644 index c2f4fcd94..000000000 --- a/doc/html/search/all_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_65.js b/doc/html/search/all_65.js deleted file mode 100644 index 60276ce79..000000000 --- a/doc/html/search/all_65.js +++ /dev/null @@ -1,56 +0,0 @@ -var searchData= -[ - ['_5f_5fversion_5f_5f',['__version__',['../namespaceeasywebdav_1_1____version____.html',1,'easywebdav']]], - ['client',['client',['../namespaceeasywebdav_1_1client.html',1,'easywebdav']]], - ['easywebdav',['easywebdav',['../namespaceeasywebdav.html',1,'']]], - ['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']]], - ['elem2file',['elem2file',['../namespaceeasywebdav_1_1client.html#a4ef6158e600484fda44b88391b74ec2f',1,'easywebdav::client']]], - ['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'],['../view_2theme_2redbasic_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']]], - ['encode_5fitem',['encode_item',['../items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86',1,'items.php']]], - ['encode_5fitem_5fflags',['encode_item_flags',['../items_8php.html#a5f690fc2484abec07840b4f9dd525bd9',1,'items.php']]], - ['encode_5fitem_5fterms',['encode_item_terms',['../items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a',1,'items.php']]], - ['encode_5fitem_5fxchan',['encode_item_xchan',['../items_8php.html#a566c601726697e044e75284af7fb6f17',1,'items.php']]], - ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], - ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], - ['enotify',['enotify',['../classenotify.html',1,'']]], - ['enotify_2ephp',['enotify.php',['../enotify_8php.html',1,'']]], - ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], - ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], - ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], - ['escape',['escape',['../classdba__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']]], - ['event_5fstore_5fevent',['event_store_event',['../event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c',1,'event.php']]], - ['event_5fstore_5fitem',['event_store_item',['../event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92',1,'event.php']]], - ['events_2ephp',['events.php',['../events_8php.html',1,'']]], - ['events_5fcontent',['events_content',['../events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec',1,'events.php']]], - ['events_5fpost',['events_post',['../events_8php.html#ab3e8a8f901175f8e40a8089eea45c075',1,'events.php']]], - ['excludepaths',['excludepaths',['../namespaceupdatetpl.html#a988d937ed5d5c2b592b763036af5cf94',1,'updatetpl']]], - ['exists',['exists',['../classeasywebdav_1_1client_1_1Client.html#a7a98a4a257becc7fa7fc8e0c8ed9fbd1',1,'easywebdav::client::Client']]], - ['expand_5facl',['expand_acl',['../text_8php.html#ae4282a39492caa23ccbc2ce98e54f110',1,'text.php']]], - ['expand_5fgroups',['expand_groups',['../include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345',1,'group.php']]], - ['expected_5fcode',['expected_code',['../classeasywebdav_1_1client_1_1OperationFailed.html#aa2fb71a2b07dfc6edd208059463d4052',1,'easywebdav::client::OperationFailed']]], - ['expire_2ephp',['expire.php',['../expire_8php.html',1,'']]], - ['expire_5frun',['expire_run',['../expire_8php.html#a444e45c9b67727b27db4c779fd51a298',1,'expire.php']]], - ['ext',['ext',['../namespacefriendica-to-smarty-tpl.html#aecf730e0884bb4ddc6c0deb1ef85f8eb',1,'friendica-to-smarty-tpl']]], - ['externals_2ephp',['externals.php',['../externals_8php.html',1,'']]], - ['externals_5frun',['externals_run',['../externals_8php.html#a4df44079e6f915286088b7a0d44db926',1,'externals.php']]], - ['extra_5fquery_5fargs',['extra_query_args',['../text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc',1,'text.php']]], - ['extract_2ephp',['extract.php',['../extract_8php.html',1,'']]] -]; diff --git a/doc/html/search/all_66.html b/doc/html/search/all_66.html deleted file mode 100644 index a9ac881c0..000000000 --- a/doc/html/search/all_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js deleted file mode 100644 index f2bef29af..000000000 --- a/doc/html/search/all_66.js +++ /dev/null @@ -1,87 +0,0 @@ -var searchData= -[ - ['f',['f',['../namespacefriendica-to-smarty-tpl.html#a965e1d6d6293654a56e029a7e454dec7',1,'friendica-to-smarty-tpl']]], - ['fbrowser_2ephp',['fbrowser.php',['../fbrowser_8php.html',1,'']]], - ['fbrowser_5fcontent',['fbrowser_content',['../fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4',1,'fbrowser.php']]], - ['feature_5fenabled',['feature_enabled',['../features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0',1,'features.php']]], - ['features_2ephp',['features.php',['../features_8php.html',1,'']]], - ['feed_2ephp',['feed.php',['../feed_8php.html',1,'']]], - ['feed_5fhublinks',['feed_hublinks',['../text_8php.html#a8d8c4a11e53461caca21181ebd72daca',1,'text.php']]], - ['feed_5finit',['feed_init',['../feed_8php.html#af86137700b56f33d1d5f25c8dec22c04',1,'feed.php']]], - ['feed_5fsalmonlinks',['feed_salmonlinks',['../text_8php.html#a89929fa6f70a8ba54d5273fcf622b665',1,'text.php']]], - ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], - ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], - ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], - ['file',['File',['../namespaceeasywebdav_1_1client.html#a1cc63f6c4dd4e5e6c8c8324b75e78b9d',1,'easywebdav::client']]], - ['file_5factivity',['file_activity',['../include_2attach_8php.html#aa23ba65e5bb732be71fdd27ccff7d46e',1,'attach.php']]], - ['file_5ftag_5fdecode',['file_tag_decode',['../taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'taxonomy.php']]], - ['file_5ftag_5fencode',['file_tag_encode',['../taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37',1,'taxonomy.php']]], - ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'taxonomy.php']]], - ['fileas_5fwidget',['fileas_widget',['../contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b',1,'contact_widgets.php']]], - ['filename',['filename',['../namespacefriendica-to-smarty-tpl.html#a5f9bf7a67d955c0d6be70a82097611c5',1,'friendica-to-smarty-tpl']]], - ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], - ['filer_5fcontent',['filer_content',['../filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274',1,'filer.php']]], - ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], - ['filerm_5fcontent',['filerm_content',['../filerm_8php.html#ae2eb28d2054fa2c37e38689882172208',1,'filerm.php']]], - ['files',['files',['../namespacefriendica-to-smarty-tpl.html#ae74419b16516956c66f7db714a93a6ac',1,'friendica-to-smarty-tpl']]], - ['filestorage_2ephp',['filestorage.php',['../filestorage_8php.html',1,'']]], - ['filestorage_5fcontent',['filestorage_content',['../filestorage_8php.html#a61bb1be78472555df4ce619f51014040',1,'filestorage.php']]], - ['filestorage_5fpost',['filestorage_post',['../filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd',1,'filestorage.php']]], - ['filter_5finsecure',['filter_insecure',['../items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a',1,'items.php']]], - ['find_5fdiaspora_5fperson_5fby_5fhandle',['find_diaspora_person_by_handle',['../diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b',1,'diaspora.php']]], - ['find_5ffilename_5fby_5fhash',['find_filename_by_hash',['../include_2attach_8php.html#a4dbfd7e1cef52aa9ef52f4b88929fa86',1,'attach.php']]], - ['find_5ffolder_5fhash_5fby_5fattach_5fhash',['find_folder_hash_by_attach_hash',['../include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997',1,'attach.php']]], - ['find_5fthread_5fparent_5findex',['find_thread_parent_index',['../conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6',1,'conversation.php']]], - ['find_5fupstream_5fdirectory',['find_upstream_directory',['../dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d',1,'dir_fns.php']]], - ['find_5fxchan_5fin_5farray',['find_xchan_in_array',['../text_8php.html#ace3c98538c63e09b70a363210b414112',1,'text.php']]], - ['findattachhash',['findAttachHash',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad4bc0516533c62733f38043a37267d78',1,'RedMatrix::RedDAV::RedBrowser']]], - ['findattachidbyhash',['findAttachIdByHash',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd',1,'RedMatrix::RedDAV::RedBrowser']]], - ['findpeople_5fwidget',['findpeople_widget',['../contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6',1,'contact_widgets.php']]], - ['first_5fpost_5fdate',['first_post_date',['../items_8php.html#a0cf98bb619f07dd18f602683a55a5f59',1,'items.php']]], - ['fix_5fattached_5ffile_5fpermissions',['fix_attached_file_permissions',['../item_8php.html#a3daae7944f737bd30412a0d042207c0f',1,'item.php']]], - ['fix_5fattached_5fphoto_5fpermissions',['fix_attached_photo_permissions',['../item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10',1,'item.php']]], - ['fix_5felement',['fix_element',['../namespacefriendica-to-smarty-tpl.html#a3719dd46e286a57d315e6adae1845854',1,'friendica-to-smarty-tpl']]], - ['fix_5fmce_5flf',['fix_mce_lf',['../text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28',1,'text.php']]], - ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], - ['fix_5fsystem_5furls',['fix_system_urls',['../boot_8php.html#aca5e42678e178c6b9034610d66666fd7',1,'boot.php']]], - ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], - ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], - ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], - ['flip',['flip',['../classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832',1,'photo_driver\flip()'],['../classphoto__gd.html#a44cedef376044018702d9355ddc813ce',1,'photo_gd\flip()'],['../classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393',1,'photo_imagick\flip()']]], - ['fnull',['fnull',['../namespaceupdatetpl.html#a79c20eb62d568c999b56eb08530355d3',1,'updatetpl']]], - ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], - ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], - ['follow_5fcontent',['follow_content',['../mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592',1,'follow.php']]], - ['follow_5finit',['follow_init',['../mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a',1,'follow.php']]], - ['foofoo',['foofoo',['../dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1',1,'dimport.php']]], - ['foreach',['foreach',['../typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5',1,'typo.php']]], - ['format_5fcategories',['format_categories',['../text_8php.html#a3054189cff173977f4216c9a3dd29e1b',1,'text.php']]], - ['format_5fcss_5fif_5fexists',['format_css_if_exists',['../plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6',1,'plugin.php']]], - ['format_5fevent_5fbbcode',['format_event_bbcode',['../event_8php.html#abb74206cf42d694307c3d7abb7af9869',1,'event.php']]], - ['format_5fevent_5fdiaspora',['format_event_diaspora',['../bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863',1,'bb2diaspora.php']]], - ['format_5fevent_5fhtml',['format_event_html',['../event_8php.html#a2ac9f1b08de03250ecd794f705781d17',1,'event.php']]], - ['format_5fevent_5fical',['format_event_ical',['../event_8php.html#a3ff7f1824540a38f4a3991a59a9542d4',1,'event.php']]], - ['format_5ffiler',['format_filer',['../text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91',1,'text.php']]], - ['format_5fhashtags',['format_hashtags',['../text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59',1,'text.php']]], - ['format_5fical_5ftext',['format_ical_text',['../event_8php.html#a05073cd4ab837bd4a0149e8ed23ce688',1,'event.php']]], - ['format_5fjs_5fif_5fexists',['format_js_if_exists',['../plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f',1,'plugin.php']]], - ['format_5flike',['format_like',['../conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3',1,'conversation.php']]], - ['format_5flocation',['format_location',['../conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3',1,'conversation.php']]], - ['format_5fmentions',['format_mentions',['../text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08',1,'text.php']]], - ['format_5fnotification',['format_notification',['../include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3',1,'notify.php']]], - ['format_5fterm_5ffor_5fdisplay',['format_term_for_display',['../taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1',1,'taxonomy.php']]], - ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], - ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], - ['friendica',['Friendica',['../namespaceFriendica.html',1,'']]], - ['friendica_2dto_2dsmarty_2dtpl',['friendica-to-smarty-tpl',['../namespacefriendica-to-smarty-tpl.html',1,'']]], - ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], - ['friendicasmarty',['FriendicaSmarty',['../classFriendicaSmarty.html',1,'']]], - ['friendicasmartyengine',['FriendicaSmartyEngine',['../classFriendicaSmartyEngine.html',1,'']]], - ['fsuggest_2ephp',['fsuggest.php',['../fsuggest_8php.html',1,'']]], - ['fsuggest_5fcontent',['fsuggest_content',['../fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998',1,'fsuggest.php']]], - ['fsuggest_5fpost',['fsuggest_post',['../fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d',1,'fsuggest.php']]], - ['ftosmarty',['fToSmarty',['../namespacefriendica-to-smarty-tpl.html#a89388ea9b2826e8218ed480e917d8105',1,'friendica-to-smarty-tpl']]], - ['full_2ephp',['full.php',['../full_8php.html',1,'']]], - ['functions_2ephp',['functions.php',['../functions_8php.html',1,'']]], - ['fresh_20_2d_20the_20freaking_20red_20shell',['Fresh - The Freaking REd Shell',['../md_fresh.html',1,'']]] -]; diff --git a/doc/html/search/all_67.html b/doc/html/search/all_67.html deleted file mode 100644 index 747fb512c..000000000 --- a/doc/html/search/all_67.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js deleted file mode 100644 index f8cff7871..000000000 --- a/doc/html/search/all_67.js +++ /dev/null @@ -1,165 +0,0 @@ -var searchData= -[ - ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], - ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], - ['gender_5fselector_5fmin',['gender_selector_min',['../profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816',1,'profile_selectors.php']]], - ['generate_5fmap',['generate_map',['../text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357',1,'text.php']]], - ['generate_5fnamed_5fmap',['generate_named_map',['../text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b',1,'text.php']]], - ['generatedirectoryindex',['generateDirectoryIndex',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09',1,'RedMatrix::RedDAV::RedBrowser']]], - ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache\get()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8',1,'RedMatrix\RedDAV\RedFile\get()']]], - ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], - ['get_5faccount_5fid',['get_account_id',['../boot_8php.html#afe88b920aa285982edb817a0dd44eb37',1,'boot.php']]], - ['get_5fall_5fperms',['get_all_perms',['../permissions_8php.html#aeca9b280f3dc3358c89976d81d690008',1,'permissions.php']]], - ['get_5fapp',['get_app',['../classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2',1,'BaseObject\get_app()'],['../boot_8php.html#a0e6db7e365f2b041a828b93786f694bc',1,'get_app(): boot.php']]], - ['get_5fapps',['get_apps',['../classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad',1,'App']]], - ['get_5fatom_5felements',['get_atom_elements',['../items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1',1,'items.php']]], - ['get_5fbaseurl',['get_baseurl',['../classApp.html#a604d659d6977a99de42a160343e5289a',1,'App']]], - ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], - ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#a980dee1d8715a98ab02e36b59facf8ed',1,'language.php']]], - ['get_5fbirthdays',['get_birthdays',['../identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'identity.php']]], - ['get_5fbookmark_5flink',['get_bookmark_link',['../include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa',1,'bookmarks.php']]], - ['get_5fbrowser_5flanguage',['get_browser_language',['../language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e',1,'language.php']]], - ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], - ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], - ['get_5fchannel_5fby_5fnick',['get_channel_by_nick',['../identity_8php.html#ac73b3e13778c564c877554517a7f51ba',1,'identity.php']]], - ['get_5fchannel_5fdefault_5fperms',['get_channel_default_perms',['../identity_8php.html#a293f416ce9050220b183e08ff5890216',1,'identity.php']]], - ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], - ['get_5fchildren',['get_children',['../classRedMatrix_1_1Import_1_1Import.html#a57561904b0f127e0d9a3e2c33688daf8',1,'RedMatrix\Import\Import\get_children()'],['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item\get_children()']]], - ['get_5fcipher',['get_cipher',['../classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901',1,'Conversation']]], - ['get_5fcloudpath',['get_cloudpath',['../include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce',1,'attach.php']]], - ['get_5fcomment_5fbox',['get_comment_box',['../classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf',1,'Item']]], - ['get_5fcomment_5fbox_5ftemplate',['get_comment_box_template',['../classItem.html#a904421c7a427411bb2ab473bca872f63',1,'Item']]], - ['get_5fconfig',['get_config',['../include_2config_8php.html#af02c96e6b37335774b548914ede1d22e',1,'config.php']]], - ['get_5fconfig_5ffrom_5fstorage',['get_config_from_storage',['../include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74',1,'config.php']]], - ['get_5fconversation',['get_conversation',['../classItem.html#a0c301aaed2b7d682728d18db3a22afa3',1,'Item']]], - ['get_5fcredentials',['get_credentials',['../classRedMatrix_1_1Import_1_1Import.html#a24134929d9a8a682da2036a0bf326367',1,'RedMatrix::Import::Import']]], - ['get_5fcustom_5fnav',['get_custom_nav',['../boot_8php.html#a899d24fd074594ceebbf72e1feff335f',1,'boot.php']]], - ['get_5fdata',['get_data',['../classItem.html#ad3638f93065693c1f69eb349feb1b7aa',1,'Item']]], - ['get_5fdata_5fvalue',['get_data_value',['../classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c',1,'Item']]], - ['get_5fdb_5ferrno',['get_db_errno',['../setup_8php.html#a8652788e8589778c5f81634a9d5b9429',1,'setup.php']]], - ['get_5fdefault_5fprofile_5fphoto',['get_default_profile_photo',['../identity_8php.html#ab1485a26b032956e1496fc08c58b83ed',1,'identity.php']]], - ['get_5fdiaspora_5fkey',['get_diaspora_key',['../diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e',1,'diaspora.php']]], - ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], - ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], - ['get_5fdirectory_5fprimary',['get_directory_primary',['../boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9',1,'boot.php']]], - ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], - ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], - ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], - ['get_5ffeature_5fdefault',['get_feature_default',['../features_8php.html#ab9a273de13a12a1c561b380cabaea090',1,'features.php']]], - ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], - ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a04a35b610acfe54434df08adec39c0c7',1,'items.php']]], - ['get_5ffile_5factivity_5fobject',['get_file_activity_object',['../include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db',1,'attach.php']]], - ['get_5ffirst_5fdim',['get_first_dim',['../datetime_8php.html#aba971b67f17fecf050813f1eba72367f',1,'datetime.php']]], - ['get_5fform_5fsecurity_5ftoken',['get_form_security_token',['../security_8php.html#acd06ef411116115c2f0a92633700db8a',1,'security.php']]], - ['get_5fformatsmap',['get_FormatsMap',['../classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4',1,'photo_imagick']]], - ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], - ['get_5fhost_5fsession',['get_host_session',['../classzotsh_1_1ZotSH.html#a85d0155ee6f6116c16c3c0091805b144',1,'zotsh::ZotSH']]], - ['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#a27987a41cb703a796f1821baeb4774a2',1,'RedMatrix::Import::Import']]], - ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], - ['get_5fitem_5fcontact',['get_item_contact',['../items_8php.html#aab9c6bae4c40799867596bdaae9829fd',1,'items.php']]], - ['get_5fitem_5felements',['get_item_elements',['../items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361',1,'items.php']]], - ['get_5fitem_5fident',['get_item_ident',['../classRedMatrix_1_1Import_1_1Import.html#a772c28edf36aaf8e66007a95004c4059',1,'RedMatrix::Import::Import']]], - ['get_5fitemlist',['get_itemlist',['../classRedMatrix_1_1Import_1_1Import.html#a855cd5a79b95d269ae8737fae774e3bc',1,'RedMatrix::Import::Import']]], - ['get_5flanguage_5fname',['get_language_name',['../language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7',1,'language.php']]], - ['get_5fmail_5felements',['get_mail_elements',['../items_8php.html#a94ddb1d6c8fa21dd7433677e85168037',1,'items.php']]], - ['get_5fmarkup_5ftemplate',['get_markup_template',['../interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442',1,'ITemplateEngine\get_markup_template()'],['../classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88',1,'FriendicaSmartyEngine\get_markup_template()'],['../classTemplate.html#afd97b4b1e7754a550e67c0ea79159059',1,'Template\get_markup_template()'],['../plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4',1,'get_markup_template(): plugin.php']]], - ['get_5fmax_5fimport_5fsize',['get_max_import_size',['../boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90',1,'boot.php']]], - ['get_5fmentions',['get_mentions',['../text_8php.html#a76d1b3435c067978d7b484c45f56472b',1,'text.php']]], - ['get_5fmode',['get_mode',['../classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd',1,'Conversation']]], - ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], - ['get_5fmy_5faddress',['get_my_address',['../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']]], - ['get_5fowner_5fname',['get_owner_name',['../classItem.html#a67892aa23d19f4431bb2e5f43c74000e',1,'Item']]], - ['get_5fowner_5fphoto',['get_owner_photo',['../classItem.html#aa541bc4290e51bfd688d6921bebabc73',1,'Item']]], - ['get_5fowner_5furl',['get_owner_url',['../classItem.html#a9f2d219da712390f59012fc32a342074',1,'Item']]], - ['get_5fparent',['get_parent',['../classItem.html#a4b92e3a9d6212c553aa2661489bd95d8',1,'Item']]], - ['get_5fparent_5fcloudpath',['get_parent_cloudpath',['../include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f',1,'attach.php']]], - ['get_5fpath',['get_path',['../classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be',1,'App']]], - ['get_5fpconfig',['get_pconfig',['../include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad',1,'config.php']]], - ['get_5fperms',['get_perms',['../classApp.html#adb5a4bb657881e553978ff390babd01f',1,'App\get_perms()'],['../permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972',1,'get_perms(): permissions.php']]], - ['get_5fplink',['get_plink',['../text_8php.html#aac0969ae09853205992ba06ab9f9f61a',1,'text.php']]], - ['get_5fplugin_5finfo',['get_plugin_info',['../plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35',1,'plugin.php']]], - ['get_5fpoke_5fverbs',['get_poke_verbs',['../text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66',1,'text.php']]], - ['get_5fpoller_5fruntime',['get_poller_runtime',['../boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17',1,'boot.php']]], - ['get_5fprofile_5felements',['get_profile_elements',['../items_8php.html#a251343637ff40a50cca93452cd530c26',1,'items.php']]], - ['get_5fprofile_5ffields_5fadvanced',['get_profile_fields_advanced',['../identity_8php.html#a224710dfb7465b706c91134247c20afa',1,'identity.php']]], - ['get_5fprofile_5ffields_5fbasic',['get_profile_fields_basic',['../identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21',1,'identity.php']]], - ['get_5fprofile_5fowner',['get_profile_owner',['../classConversation.html#a5effe8ad3007e01333df44b81432b813',1,'Conversation']]], - ['get_5fpublic_5ffeed',['get_public_feed',['../items_8php.html#a079e099e15d88d47aeb6ca6d60da7107',1,'items.php']]], - ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], - ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], - ['get_5fresponse_5fbutton_5ftext',['get_response_button_text',['../conversation_8php.html#afb16b867934dbc5f7e68f21925f9e71e',1,'conversation.php']]], - ['get_5fresponses',['get_responses',['../conversation_8php.html#afb69613cf71dc5a21c23f3430ce3c229',1,'conversation.php']]], - ['get_5frole_5fperms',['get_role_perms',['../permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe',1,'permissions.php']]], - ['get_5froles',['get_roles',['../permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991',1,'permissions.php']]], - ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], - ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], - ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], - ['get_5ftags',['get_tags',['../text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623',1,'text.php']]], - ['get_5ftaxonomy',['get_taxonomy',['../classRedMatrix_1_1Import_1_1Import.html#ae3c6472bea1a44025bc2e152604eb20c',1,'RedMatrix::Import::Import']]], - ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], - ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#ac5900b46e6a1c93360bb8e58f8b3540b',1,'Conversation\get_template_data()'],['../classItem.html#a50d0fdf47006f47a0dc89cfd0d7e690d',1,'Item\get_template_data()']]], - ['get_5ftemplate_5fengine',['get_template_engine',['../classApp.html#acb27e607fe4c82603444676e25c36b70',1,'App']]], - ['get_5ftemplate_5fldelim',['get_template_ldelim',['../classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a',1,'App']]], - ['get_5ftemplate_5frdelim',['get_template_rdelim',['../classApp.html#aab23c59172310fd30f2d60dc039d3eea',1,'App']]], - ['get_5fterms_5foftype',['get_terms_oftype',['../taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1',1,'taxonomy.php']]], - ['get_5ftheme_5fconfig_5ffile',['get_theme_config_file',['../settings_8php.html#a39abc76ff5459c57e3b957664f273f18',1,'settings.php']]], - ['get_5ftheme_5finfo',['get_theme_info',['../plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405',1,'plugin.php']]], - ['get_5ftheme_5fscreenshot',['get_theme_screenshot',['../plugin_8php.html#a48047edfbef770125a5508dcc2f9282f',1,'plugin.php']]], - ['get_5ftheme_5fuid',['get_theme_uid',['../identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3',1,'identity.php']]], - ['get_5fthings',['get_things',['../taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de',1,'taxonomy.php']]], - ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], - ['get_5ftimezones',['get_timezones',['../datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1',1,'datetime.php']]], - ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], - ['get_5fwords',['get_words',['../spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6',1,'spam.php']]], - ['get_5fxconfig',['get_xconfig',['../include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e',1,'config.php']]], - ['getasseturl',['getAssetUrl',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d',1,'RedMatrix::RedDAV::RedBrowser']]], - ['getchild',['getChild',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a1a37850bdd1f188abd6160559698d5d7',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getchildren',['getChildren',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a9b9a0b5bfa4de1f78e6cafaa534b6f6a',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getcontenttype',['getContentType',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e',1,'RedMatrix::RedDAV::RedFile']]], - ['getcurrentuser',['getCurrentUser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aa0b2a5fa9186d7dc0e637f1ecb379c42',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['getdir',['getDir',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a825dc5f3e0f83f50736c16daa6a4809d',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getdriver',['getdriver',['../classdba__driver.html#a02165fc4bee63d040ebd963a4fa82a14',1,'dba_driver\getdriver()'],['../classdba__mysql.html#a31011edd67b6b394355bf04cedb498d0',1,'dba_mysql\getdriver()'],['../classdba__mysqli.html#a6eb6c578c6928908321e5e6da866e1db',1,'dba_mysqli\getdriver()'],['../classdba__postgres.html#ae0f834413e57cf0735ae7b64b2f71e68',1,'dba_postgres\getdriver()']]], - ['getetag',['getETag',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689',1,'RedMatrix::RedDAV::RedFile']]], - ['getext',['getExt',['../classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba',1,'photo_driver']]], - ['getheight',['getHeight',['../classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468',1,'photo_driver']]], - ['geticonfromtype',['getIconFromType',['../text_8php.html#a5ee0715f7fa144b1307a3ff10222c609',1,'text.php']]], - ['getimage',['getImage',['../classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5',1,'photo_driver\getImage()'],['../classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484',1,'photo_gd\getImage()'],['../classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc',1,'photo_imagick\getImage()']]], - ['getlastmodified',['getLastModified',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5',1,'RedMatrix\RedDAV\RedDirectory\getLastModified()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25',1,'RedMatrix\RedDAV\RedFile\getLastModified()']]], - ['getname',['getName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df',1,'RedMatrix\RedDAV\RedDirectory\getName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d',1,'RedMatrix\RedDAV\RedFile\getName()']]], - ['getquotainfo',['getQuotaInfo',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db443ed3c84938b4352fe515bf8d68',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getsize',['getSize',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a07e1b19e7aaf3dcce822e9be8823a87d',1,'RedMatrix::RedDAV::RedFile']]], - ['gettimezone',['getTimezone',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6333c8ce58998bd11bf8102afe3b0748',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['gettype',['getType',['../classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3',1,'photo_driver']]], - ['getwidth',['getWidth',['../classphoto__driver.html#acc30486acee9e89e32701f44a1738117',1,'photo_driver']]], - ['goaway',['goaway',['../boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1',1,'boot.php']]], - ['gprobe_2ephp',['gprobe.php',['../gprobe_8php.html',1,'']]], - ['gprobe_5frun',['gprobe_run',['../gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1',1,'gprobe.php']]], - ['gravity_5fcomment',['GRAVITY_COMMENT',['../boot_8php.html#a4a12ce5de39789b0361e308d89925a20',1,'boot.php']]], - ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], - ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], - ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], - ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], - ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], - ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], - ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], - ['group_5fcontent',['group_content',['../mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83',1,'group.php']]], - ['group_5fget_5fmembers',['group_get_members',['../include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09',1,'group.php']]], - ['group_5fpost',['group_post',['../mod_2group_8php.html#aed1f009b1221348021bb34761160ef35',1,'group.php']]], - ['group_5frec_5fbyhash',['group_rec_byhash',['../include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245',1,'group.php']]], - ['group_5frmv',['group_rmv',['../include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5',1,'group.php']]], - ['group_5frmv_5fmember',['group_rmv_member',['../include_2group_8php.html#a540e3ef36f47d47532646be4241f6518',1,'group.php']]], - ['group_5fselect',['group_select',['../acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0',1,'acl_selectors.php']]], - ['group_5fside',['group_side',['../include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9',1,'group.php']]], - ['groups_5fcontaining',['groups_containing',['../include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f',1,'group.php']]], - ['guess_5fimage_5ftype',['guess_image_type',['../photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa',1,'photo_driver.php']]] -]; diff --git a/doc/html/search/all_68.html b/doc/html/search/all_68.html deleted file mode 100644 index dec41d62e..000000000 --- a/doc/html/search/all_68.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_68.js b/doc/html/search/all_68.js deleted file mode 100644 index 071ddf878..000000000 --- a/doc/html/search/all_68.js +++ /dev/null @@ -1,49 +0,0 @@ -var searchData= -[ - ['handle_5ffeed',['handle_feed',['../items_8php.html#a52c24114b73c0bdb605a03cd29712223',1,'items.php']]], - ['handle_5ftag',['handle_tag',['../text_8php.html#aa22feef4de326e1d7078dedd892e615c',1,'text.php']]], - ['has_5fpermissions',['has_permissions',['../items_8php.html#a77051724d1784074ff187e73a4db93fe',1,'items.php']]], - ['hcard_2ephp',['hcard.php',['../hcard_8php.html',1,'']]], - ['hcard_5fcontent',['hcard_content',['../hcard_8php.html#a3663012f1549849af88aba2bb87388e3',1,'hcard.php']]], - ['hcard_5finit',['hcard_init',['../hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d',1,'hcard.php']]], - ['head_5fadd_5fcss',['head_add_css',['../plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a',1,'plugin.php']]], - ['head_5fadd_5fjs',['head_add_js',['../plugin_8php.html#a516591850f4fd49fd1425cfa54089db8',1,'plugin.php']]], - ['head_5fget_5fcss',['head_get_css',['../plugin_8php.html#af92789f559b89a380e49d303218aeeca',1,'plugin.php']]], - ['head_5fget_5ficon',['head_get_icon',['../classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166',1,'App\head_get_icon()'],['../boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77',1,'head_get_icon(): boot.php']]], - ['head_5fget_5fjs',['head_get_js',['../plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1',1,'plugin.php']]], - ['head_5fget_5fmain_5fjs',['head_get_main_js',['../plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff',1,'plugin.php']]], - ['head_5fremove_5fcss',['head_remove_css',['../plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf',1,'plugin.php']]], - ['head_5fremove_5fjs',['head_remove_js',['../plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4',1,'plugin.php']]], - ['head_5fset_5ficon',['head_set_icon',['../classApp.html#a8863703a0305eaa45eb970dbd2046291',1,'App\head_set_icon()'],['../boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84',1,'head_set_icon(): boot.php']]], - ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], - ['help_2ephp',['help.php',['../help_8php.html',1,'']]], - ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], - ['hivenet_5finit',['hivenet_init',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29',1,'theme.php']]], - ['home_2ephp',['home.php',['../home_8php.html',1,'']]], - ['home_5fcontent',['home_content',['../home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f',1,'home.php']]], - ['home_5finit',['home_init',['../home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde',1,'home.php']]], - ['host',['host',['../classzotsh_1_1ZotSH.html#a49d42aee1a0b1a98c5a523434fe99973',1,'zotsh.ZotSH.host()'],['../classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612',1,'zotsh.ZotSH.host'],['../classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612',1,'zotsh.ZotSH.host']]], - ['hostname',['hostname',['../classzotsh_1_1ZotSH.html#aef5c2b2a549ec923314dce9d1badcaac',1,'zotsh.ZotSH.hostname()'],['../classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea',1,'zotsh.ZotSH.hostname'],['../classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea',1,'zotsh.ZotSH.hostname']]], - ['hostxrd_2ephp',['hostxrd.php',['../hostxrd_8php.html',1,'']]], - ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], - ['html2bb_5fvideo',['html2bb_video',['../text_8php.html#a138a3a611fa7f4f3630674145fc826bf',1,'text.php']]], - ['html2bbcode',['html2bbcode',['../html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837',1,'html2bbcode.php']]], - ['html2bbcode_2ephp',['html2bbcode.php',['../html2bbcode_8php.html',1,'']]], - ['html2plain',['html2plain',['../html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04',1,'html2plain.php']]], - ['html2plain_2ephp',['html2plain.php',['../html2plain_8php.html',1,'']]], - ['htmlactionspanel',['htmlActionsPanel',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf',1,'RedMatrix::RedDAV::RedBrowser']]], - ['http_5fstatus_5fexit',['http_status_exit',['../include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2',1,'network.php']]], - ['hub_5fpost_5freturn',['hub_post_return',['../pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945',1,'pubsub.php']]], - ['hub_5freturn',['hub_return',['../pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb',1,'pubsub.php']]], - ['hubloc_2ephp',['hubloc.php',['../hubloc_8php.html',1,'']]], - ['hubloc_5fchange_5fprimary',['hubloc_change_primary',['../hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d',1,'hubloc.php']]], - ['hubloc_5fflags_5fdeleted',['HUBLOC_FLAGS_DELETED',['../boot_8php.html#a7c286add8961fd2d79216314cd4aadd8',1,'boot.php']]], - ['hubloc_5fflags_5forphancheck',['HUBLOC_FLAGS_ORPHANCHECK',['../boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673',1,'boot.php']]], - ['hubloc_5fflags_5fprimary',['HUBLOC_FLAGS_PRIMARY',['../boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955',1,'boot.php']]], - ['hubloc_5fflags_5funverified',['HUBLOC_FLAGS_UNVERIFIED',['../boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764',1,'boot.php']]], - ['hubloc_5fnotused',['HUBLOC_NOTUSED',['../boot_8php.html#aa589421267f0c2f0d643f727792cce35',1,'boot.php']]], - ['hubloc_5foffline',['HUBLOC_OFFLINE',['../boot_8php.html#a845891f82bf6edd7fa2d578b66703112',1,'boot.php']]], - ['hubloc_5freceive_5ferror',['HUBLOC_RECEIVE_ERROR',['../boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1',1,'boot.php']]], - ['hubloc_5fsend_5ferror',['HUBLOC_SEND_ERROR',['../boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456',1,'boot.php']]], - ['hubloc_5fworks',['HUBLOC_WORKS',['../boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c',1,'boot.php']]] -]; diff --git a/doc/html/search/all_69.html b/doc/html/search/all_69.html deleted file mode 100644 index 192e4bab2..000000000 --- a/doc/html/search/all_69.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js deleted file mode 100644 index c06c1da2b..000000000 --- a/doc/html/search/all_69.js +++ /dev/null @@ -1,111 +0,0 @@ -var searchData= -[ - ['ical_5fwrapper',['ical_wrapper',['../event_8php.html#ab8cc2825013e724dc26229026711cf93',1,'event.php']]], - ['identity_2ephp',['identity.php',['../identity_8php.html',1,'']]], - ['identity_5fbasic_5fexport',['identity_basic_export',['../identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249',1,'identity.php']]], - ['identity_5fcheck_5fservice_5fclass',['identity_check_service_class',['../identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633',1,'identity.php']]], - ['identity_5fselector',['identity_selector',['../identity_8php.html#a2ab5172eabd375869060c9ad68323f5c',1,'identity.php']]], - ['ids_5fto_5fquerystr',['ids_to_querystr',['../text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a',1,'text.php']]], - ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php'],['../full_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): full.php'],['../redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): redable.php'],['../view_2theme_2apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d',1,'if(): style.php'],['../theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php']]], - ['imagestring',['imageString',['../classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd',1,'photo_driver\imageString()'],['../classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00',1,'photo_gd\imageString()'],['../classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019',1,'photo_imagick\imageString()']]], - ['impel_2ephp',['impel.php',['../impel_8php.html',1,'']]], - ['impel_5finit',['impel_init',['../impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b',1,'impel.php']]], - ['import',['Import',['../classRedMatrix_1_1Import_1_1Import.html',1,'RedMatrix::Import']]], - ['import_2ephp',['import.php',['../import_8php.html',1,'']]], - ['import_5fauthor_5fdiaspora',['import_author_diaspora',['../items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc',1,'items.php']]], - ['import_5fauthor_5frss',['import_author_rss',['../items_8php.html#a6bee35961f2e32905f20367a9309d627',1,'items.php']]], - ['import_5fauthor_5funknown',['import_author_unknown',['../items_8php.html#a37f79991f36811cf847446ff60e8e11f',1,'items.php']]], - ['import_5fauthor_5fxchan',['import_author_xchan',['../items_8php.html#ae73794179b62d39bb597ff670ab1c1e5',1,'items.php']]], - ['import_5fauthor_5fzot',['import_author_zot',['../zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d',1,'zot.php']]], - ['import_5fchannel_5fphoto',['import_channel_photo',['../photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a',1,'photo_driver.php']]], - ['import_5fcontent',['import_content',['../import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184',1,'import.php']]], - ['import_5fdirectory_5fkeywords',['import_directory_keywords',['../zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a',1,'zot.php']]], - ['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#a20750dd2c36961013fd382fb34e1366c',1,'zot.php']]], - ['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]], - ['import_5fprofile_5fphoto',['import_profile_photo',['../photo__driver_8php.html#a78f5a10c568d2a9bbbb129dc96548887',1,'photo_driver.php']]], - ['import_5fsite',['import_site',['../zot_8php.html#a2657e141d62d5f67ad3c87651b585299',1,'zot.php']]], - ['import_5fxchan',['import_xchan',['../zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315',1,'zot.php']]], - ['importelm_2ephp',['importelm.php',['../importelm_8php.html',1,'']]], - ['importelm_5fpost',['importelm_post',['../importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f',1,'importelm.php']]], - ['importer_2ephp',['Importer.php',['../Importer_8php.html',1,'']]], - ['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]], - ['in_5fgroup',['in_group',['../include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355',1,'attach.php']]], - ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], - ['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']]], - ['is_5fa_5fdate_5farg',['is_a_date_arg',['../text_8php.html#a1557112a774ec00fa06ed6b6f6495506',1,'text.php']]], - ['is_5fajax',['is_ajax',['../boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c',1,'boot.php']]], - ['is_5fcommentable',['is_commentable',['../classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3',1,'Conversation\is_commentable()'],['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item\is_commentable()']]], - ['is_5fdeveloper',['is_developer',['../boot_8php.html#a6252d8eca67c689d9035ec6da544cf46',1,'boot.php']]], - ['is_5fforeigner',['is_foreigner',['../identity_8php.html#ae2b140df652a55ca11bb6a99005fce35',1,'identity.php']]], - ['is_5fmatrix_5furl',['is_matrix_url',['../hubloc_8php.html#aebd244b4616ded022cbbee5e82926951',1,'hubloc.php']]], - ['is_5fmember',['is_member',['../identity_8php.html#a9637c557e13d9671f3eeb124ab98212a',1,'identity.php']]], - ['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]], - ['is_5fpublic_5fprofile',['is_public_profile',['../identity_8php.html#a4e996e44b50330098a04b467367a559f',1,'identity.php']]], - ['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]], - ['is_5fsys_5fchannel',['is_sys_channel',['../identity_8php.html#aa4bd4abfcba883f43919e89ec6419025',1,'identity.php']]], - ['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]], - ['is_5ftoplevel',['is_toplevel',['../classItem.html#aa49e40f961dff66da32c5ae110e32993',1,'Item']]], - ['is_5fvalid',['is_valid',['../classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab',1,'photo_driver']]], - ['is_5fvisiting',['is_visiting',['../classItem.html#a97c7feeea7f26a73176cb19faa455e12',1,'Item']]], - ['is_5fwall_5fto_5fwall',['is_wall_to_wall',['../classItem.html#aabf87ded59c25b5fe2b2296678e70509',1,'Item']]], - ['is_5fwindows',['is_windows',['../boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08',1,'boot.php']]], - ['is_5fwritable',['is_writable',['../classConversation.html#a5879199008b96bee7550b576d614e1c1',1,'Conversation']]], - ['item',['Item',['../classItem.html',1,'']]], - ['item_2ephp',['item.php',['../item_8php.html',1,'']]], - ['item_5fadd_5fcid',['item_add_cid',['../items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df',1,'items.php']]], - ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], - ['item_5fbug',['ITEM_BUG',['../boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34',1,'boot.php']]], - ['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]], - ['item_5fcheck_5fservice_5fclass',['item_check_service_class',['../item_8php.html#a5b1b36cb301a94b38150074f0d424e74',1,'item.php']]], - ['item_5fconsensus',['ITEM_CONSENSUS',['../boot_8php.html#a670c35028dda5a20dfdb48bb863253a5',1,'boot.php']]], - ['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]], - ['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]], - ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], - ['item_5fexpire',['item_expire',['../items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc',1,'items.php']]], - ['item_5fextract_5fimages',['item_extract_images',['../conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654',1,'conversation.php']]], - ['item_5fgetfeedattach',['item_getfeedattach',['../items_8php.html#a09d425596b9f8663472cf7474ad36d96',1,'items.php']]], - ['item_5fgetfeedtags',['item_getfeedtags',['../items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7',1,'items.php']]], - ['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]], - ['item_5fmentionsme',['ITEM_MENTIONSME',['../boot_8php.html#a8da836617174eed9fc2ac8054125354b',1,'boot.php']]], - ['item_5fmessage_5fid',['item_message_id',['../text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e',1,'text.php']]], - ['item_5fmoderated',['ITEM_MODERATED',['../boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450',1,'boot.php']]], - ['item_5fnocomment',['ITEM_NOCOMMENT',['../boot_8php.html#a949116d9a295b214293006c060ca4848',1,'boot.php']]], - ['item_5fnotshown',['ITEM_NOTSHOWN',['../boot_8php.html#a8663f32171568489dbb2a01dd00371f8',1,'boot.php']]], - ['item_5fnsfw',['ITEM_NSFW',['../boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08',1,'boot.php']]], - ['item_5fobscured',['ITEM_OBSCURED',['../boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d',1,'boot.php']]], - ['item_5forigin',['ITEM_ORIGIN',['../boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7',1,'boot.php']]], - ['item_5fpdl',['ITEM_PDL',['../boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d',1,'boot.php']]], - ['item_5fpending_5fremove',['ITEM_PENDING_REMOVE',['../boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb',1,'boot.php']]], - ['item_5fpermissions_5fsql',['item_permissions_sql',['../security_8php.html#a9355488460ab11d6058656ff919e5cf9',1,'security.php']]], - ['item_5fphoto_5fmenu',['item_photo_menu',['../conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3',1,'conversation.php']]], - ['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]], - ['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]], - ['item_5fredir_5fand_5freplace_5fimages',['item_redir_and_replace_images',['../conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533',1,'conversation.php']]], - ['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]], - ['item_5fremove_5fcid',['item_remove_cid',['../items_8php.html#a5ed782ff5b9cf050bec931e06de12c00',1,'items.php']]], - ['item_5fretained',['ITEM_RETAINED',['../boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81',1,'boot.php']]], - ['item_5frss',['ITEM_RSS',['../boot_8php.html#ac4d1c93dabcace711ffb4931204c336b',1,'boot.php']]], - ['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]], - ['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]], - ['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]], - ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]], - ['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]], - ['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]], - ['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]], - ['item_5fuplink',['ITEM_UPLINK',['../boot_8php.html#aefba06f1c0842036329033e7567ecf6d',1,'boot.php']]], - ['item_5fverified',['ITEM_VERIFIED',['../boot_8php.html#a18a400fa45e5632811b33041d8c048bf',1,'boot.php']]], - ['item_5fvisible',['ITEM_VISIBLE',['../boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf',1,'boot.php']]], - ['item_5fwall',['ITEM_WALL',['../boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322',1,'boot.php']]], - ['item_5fwebpage',['ITEM_WEBPAGE',['../boot_8php.html#af489d0c3166551b93e63a79ff2c9be35',1,'boot.php']]], - ['itemobject_2ephp',['ItemObject.php',['../ItemObject_8php.html',1,'']]], - ['itemplateengine',['ITemplateEngine',['../interfaceITemplateEngine.html',1,'']]], - ['itemplateengine_2ephp',['ITemplateEngine.php',['../ITemplateEngine_8php.html',1,'']]], - ['items_2ephp',['items.php',['../items_8php.html',1,'']]], - ['items_5ffetch',['items_fetch',['../items_8php.html#a756738301f2ed96be50232500677d58a',1,'items.php']]] -]; diff --git a/doc/html/search/all_6a.html b/doc/html/search/all_6a.html deleted file mode 100644 index 6d8c91cd3..000000000 --- a/doc/html/search/all_6a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6a.js b/doc/html/search/all_6a.js deleted file mode 100644 index 4c01dbd84..000000000 --- a/doc/html/search/all_6a.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['jindent',['jindent',['../text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8',1,'text.php']]], - ['jpeg_5fquality',['JPEG_QUALITY',['../boot_8php.html#a3475ff6c2e575f946ea0ee377e944173',1,'boot.php']]], - ['json_5fdecode_5fplus',['json_decode_plus',['../text_8php.html#a0271381208acfa2d4cff36da281e3e23',1,'text.php']]], - ['json_5freturn_5fand_5fdie',['json_return_and_die',['../include_2network_8php.html#a4c5d50079e089168d9248427018fffd4',1,'network.php']]] -]; diff --git a/doc/html/search/all_6b.html b/doc/html/search/all_6b.html deleted file mode 100644 index d70dca016..000000000 --- a/doc/html/search/all_6b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6b.js b/doc/html/search/all_6b.js deleted file mode 100644 index cb620eeee..000000000 --- a/doc/html/search/all_6b.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['key_5fnot_5fexists',['KEY_NOT_EXISTS',['../template__processor_8php.html#a797745996c7839a93b2ab1af456631ab',1,'template_processor.php']]], - ['killme',['killme',['../boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c',1,'boot.php']]] -]; diff --git a/doc/html/search/all_6c.html b/doc/html/search/all_6c.html deleted file mode 100644 index ae8bc48da..000000000 --- a/doc/html/search/all_6c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js deleted file mode 100644 index 371d12420..000000000 --- a/doc/html/search/all_6c.js +++ /dev/null @@ -1,64 +0,0 @@ -var searchData= -[ - ['lang_2ephp',['lang.php',['../lang_8php.html',1,'']]], - ['lang_5fcontent',['lang_content',['../lang_8php.html#a4c5c1140f51a638f224275cd618c2f37',1,'lang.php']]], - ['lang_5fselector',['lang_selector',['../text_8php.html#a71f6952243d3fe1c5a8154f78027e29c',1,'text.php']]], - ['language_2ephp',['language.php',['../language_8php.html',1,'']]], - ['language_5fdetect_5fmin_5fconfidence',['LANGUAGE_DETECT_MIN_CONFIDENCE',['../boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11',1,'boot.php']]], - ['language_5fdetect_5fmin_5flength',['LANGUAGE_DETECT_MIN_LENGTH',['../boot_8php.html#a17cf72338b040891781a4bcbdd9a8595',1,'boot.php']]], - ['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,'']]], - ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], - ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], - ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], - ['linkify',['linkify',['../text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0',1,'text.php']]], - ['linkify_5ftags',['linkify_tags',['../text_8php.html#a4e4045a07c55cacf3e4b63bde190d954',1,'text.php']]], - ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], - ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], - ['list_5fsmilies',['list_smilies',['../text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc',1,'text.php']]], - ['load',['load',['../classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712',1,'photo_driver\load()'],['../classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9',1,'photo_gd\load()'],['../classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8',1,'photo_imagick\load()']]], - ['load_5fconf',['load_conf',['../namespacezotsh.html#a562892f8907e608886f70a872671c0b5',1,'zotsh']]], - ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], - ['load_5fcontact_5flinks',['load_contact_links',['../boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6',1,'boot.php']]], - ['load_5fdatabase',['load_database',['../setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a',1,'setup.php']]], - ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], - ['load_5fhooks',['load_hooks',['../plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813',1,'plugin.php']]], - ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b',1,'config.php']]], - ['load_5fpdl',['load_pdl',['../boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501',1,'boot.php']]], - ['load_5fplugin',['load_plugin',['../plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d',1,'plugin.php']]], - ['load_5ftranslation_5ftable',['load_translation_table',['../language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05',1,'language.php']]], - ['load_5fxconfig',['load_xconfig',['../include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52',1,'config.php']]], - ['local_5fchannel',['local_channel',['../boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb',1,'boot.php']]], - ['local_5fdir_5fupdate',['local_dir_update',['../dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e',1,'dir_fns.php']]], - ['local_5fuser',['local_user',['../boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44',1,'boot.php']]], - ['localize_5fitem',['localize_item',['../conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c',1,'conversation.php']]], - ['lockview_2ephp',['lockview.php',['../lockview_8php.html',1,'']]], - ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], - ['locs_2ephp',['locs.php',['../locs_8php.html',1,'']]], - ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], - ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], - ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], - ['log_5ffailed_5flogin',['log_failed_login',['../auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1',1,'auth.php']]], - ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], - ['logger_5fall',['LOGGER_ALL',['../boot_8php.html#afe63ae69ba55299f813766e54df06ede',1,'boot.php']]], - ['logger_5fdata',['LOGGER_DATA',['../boot_8php.html#a6969947145a139ec374ce098224d8e81',1,'boot.php']]], - ['logger_5fdebug',['LOGGER_DEBUG',['../boot_8php.html#a93823d15ae07548a4c49de88d325cd26',1,'boot.php']]], - ['logger_5fnormal',['LOGGER_NORMAL',['../boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805',1,'boot.php']]], - ['logger_5ftrace',['LOGGER_TRACE',['../boot_8php.html#a022cea669f9f13ef7c6268b63884c57f',1,'boot.php']]], - ['login',['login',['../boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4',1,'boot.php']]], - ['login_2ephp',['login.php',['../login_8php.html',1,'']]], - ['login_5fcontent',['login_content',['../login_8php.html#a1d69ca88eb9005a7026e128b9a645904',1,'login.php']]], - ['loginuser',['loginUser',['../classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f',1,'FKOAuth1']]], - ['lookup_5fconsumer',['lookup_consumer',['../classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1',1,'FKOAuthDataStore']]], - ['lookup_5fnonce',['lookup_nonce',['../classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599',1,'FKOAuthDataStore']]], - ['lookup_5ftoken',['lookup_token',['../classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab',1,'FKOAuthDataStore']]], - ['lostpass_2ephp',['lostpass.php',['../lostpass_8php.html',1,'']]], - ['lostpass_5fcontent',['lostpass_content',['../lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3',1,'lostpass.php']]], - ['lostpass_5fpost',['lostpass_post',['../lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc',1,'lostpass.php']]], - ['ls',['ls',['../classeasywebdav_1_1client_1_1Client.html#ad843202f103b9ab9fbc70014dcb0049c',1,'easywebdav::client::Client']]] -]; diff --git a/doc/html/search/all_6d.html b/doc/html/search/all_6d.html deleted file mode 100644 index ee90718ff..000000000 --- a/doc/html/search/all_6d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6d.js b/doc/html/search/all_6d.js deleted file mode 100644 index 0fa0403b7..000000000 --- a/doc/html/search/all_6d.js +++ /dev/null @@ -1,78 +0,0 @@ -var searchData= -[ - ['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]], - ['magic_5finit',['magic_init',['../magic_8php.html#acea2cc792849ca2d71d4b689f66518bf',1,'magic.php']]], - ['magic_5flink',['magic_link',['../text_8php.html#a1e510c53624933ce9b7d6715784894db',1,'text.php']]], - ['magiclink_5furl',['magiclink_url',['../text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6',1,'text.php']]], - ['mail_2ephp',['mail.php',['../mail_8php.html',1,'']]], - ['mail_5fcontent',['mail_content',['../mail_8php.html#a3c7c485fc69f92371e8b20936040eca1',1,'mail.php']]], - ['mail_5fdeleted',['MAIL_DELETED',['../boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8',1,'boot.php']]], - ['mail_5fisreply',['MAIL_ISREPLY',['../boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2',1,'boot.php']]], - ['mail_5fobscured',['MAIL_OBSCURED',['../boot_8php.html#a44ae1542a805ffd7f826fb511db07374',1,'boot.php']]], - ['mail_5fpost',['mail_post',['../mail_8php.html#acfc2cc0bf4e0b178207758384977f25a',1,'mail.php']]], - ['mail_5frecalled',['MAIL_RECALLED',['../boot_8php.html#ae4861de36017fe399c1839f778bad9f5',1,'boot.php']]], - ['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]], - ['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]], - ['mail_5fstore',['mail_store',['../items_8php.html#a77da7ce9a117601d49ac4a67c71b514f',1,'items.php']]], - ['make_5fxchan_5fhash',['make_xchan_hash',['../zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75',1,'zot.php']]], - ['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]], - ['manage_5fcontent',['manage_content',['../manage_8php.html#a2bca247b5296827638959138367db4f5',1,'manage.php']]], - ['manual_5fconfig',['manual_config',['../setup_8php.html#abe405d227ba7232971964a706d4f3bce',1,'setup.php']]], - ['map_5fscope',['map_scope',['../items_8php.html#a8675e62674de6fb7c42e4a408c7116cc',1,'items.php']]], - ['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]], - ['marital_5fselector_5fmin',['marital_selector_min',['../profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534',1,'profile_selectors.php']]], - ['mark_5forphan_5fhubsxchans',['mark_orphan_hubsxchans',['../Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8',1,'Contact.php']]], - ['match_2ephp',['match.php',['../match_8php.html',1,'']]], - ['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]], - ['match_5fopenid',['match_openid',['../auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2',1,'auth.php']]], - ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], - ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], - ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], - ['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]], - ['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]], - ['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]], - ['menu_5fbookmark',['MENU_BOOKMARK',['../boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e',1,'boot.php']]], - ['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]], - ['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]], - ['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]], - ['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]], - ['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]], - ['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]], - ['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]], - ['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]], - ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], - ['menu_5fitem_5fchatroom',['MENU_ITEM_CHATROOM',['../boot_8php.html#af6b3de425e5849c73370a484c44607a3',1,'boot.php']]], - ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], - ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]], - ['menu_5flist',['menu_list',['../include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d',1,'menu.php']]], - ['menu_5flist_5fcount',['menu_list_count',['../include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485',1,'menu.php']]], - ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], - ['menu_5frender',['menu_render',['../include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a',1,'menu.php']]], - ['menu_5fsystem',['MENU_SYSTEM',['../boot_8php.html#a718a801b0be6cbaef5e519516da12721',1,'boot.php']]], - ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], - ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], - ['message_5fcontent',['message_content',['../mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f',1,'message.php']]], - ['method',['method',['../classeasywebdav_1_1client_1_1OperationFailed.html#a606a07fbfc1fd05d94c12695c831ae77',1,'easywebdav::client::OperationFailed']]], - ['metopem',['metopem',['../crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85',1,'crypto.php']]], - ['metorsa',['metorsa',['../crypto_8php.html#a573f02517abe4ac9241268263063b2a0',1,'crypto.php']]], - ['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]], - ['mimetype_5fselect',['mimetype_select',['../text_8php.html#a1633412120f52bdce5f43e0a127d9293',1,'text.php']]], - ['minded_5finit',['minded_init',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a',1,'theme.php']]], - ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32',1,'group.php']]], - ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], - ['minimalisticdarkness_2ephp',['minimalisticdarkness.php',['../minimalisticdarkness_8php.html',1,'']]], - ['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]], - ['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]], - ['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]], - ['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]], - ['mkdir',['mkdir',['../classeasywebdav_1_1client_1_1Client.html#a0601c37a357cccb10fa05af95fbf306f',1,'easywebdav::client::Client']]], - ['mkdirs',['mkdirs',['../classeasywebdav_1_1client_1_1Client.html#a57116f274a2b4bf0c3a21978558bfe96',1,'easywebdav::client::Client']]], - ['mod_5fchanview_2ephp',['mod_chanview.php',['../mod__chanview_8php.html',1,'']]], - ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], - ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], - ['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]], - ['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]], - ['msearch_2ephp',['msearch.php',['../msearch_8php.html',1,'']]], - ['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]], - ['mytheme_5finit',['mytheme_init',['../view_2theme_2mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8',1,'theme.php']]] -]; diff --git a/doc/html/search/all_6e.html b/doc/html/search/all_6e.html deleted file mode 100644 index e0fd7653a..000000000 --- a/doc/html/search/all_6e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js deleted file mode 100644 index f9de281e1..000000000 --- a/doc/html/search/all_6e.js +++ /dev/null @@ -1,93 +0,0 @@ -var searchData= -[ - ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], - ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], - ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], - ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], - ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], - ['namespace_5fatom1',['NAMESPACE_ATOM1',['../boot_8php.html#a444ce608ce34efb82ee11852f36e825f',1,'boot.php']]], - ['namespace_5fdfrn',['NAMESPACE_DFRN',['../boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028',1,'boot.php']]], - ['namespace_5ffeed',['NAMESPACE_FEED',['../boot_8php.html#ac195fc9003298923ea81f144388e24b1',1,'boot.php']]], - ['namespace_5fgeorss',['NAMESPACE_GEORSS',['../boot_8php.html#a03d19251c245587de7ed959300b87bdf',1,'boot.php']]], - ['namespace_5fmedia',['NAMESPACE_MEDIA',['../boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16',1,'boot.php']]], - ['namespace_5fostatus',['NAMESPACE_OSTATUS',['../boot_8php.html#acca19aae62e1a6951a856b945de20d67',1,'boot.php']]], - ['namespace_5fostatussub',['NAMESPACE_OSTATUSSUB',['../boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd',1,'boot.php']]], - ['namespace_5fpoco',['NAMESPACE_POCO',['../boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a',1,'boot.php']]], - ['namespace_5fsalmon_5fme',['NAMESPACE_SALMON_ME',['../boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67',1,'boot.php']]], - ['namespace_5fstatusnet',['NAMESPACE_STATUSNET',['../boot_8php.html#afaf93b7026f784b113b4f8921745891e',1,'boot.php']]], - ['namespace_5fthread',['NAMESPACE_THREAD',['../boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86',1,'boot.php']]], - ['namespace_5ftomb',['NAMESPACE_TOMB',['../boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e',1,'boot.php']]], - ['namespace_5fymedia',['NAMESPACE_YMEDIA',['../boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0',1,'boot.php']]], - ['namespace_5fzot',['NAMESPACE_ZOT',['../boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47',1,'boot.php']]], - ['nav',['nav',['../nav_8php.html#a43be0df73b90647ea70947ce004e231e',1,'nav.php']]], - ['nav_2ephp',['nav.php',['../nav_8php.html',1,'']]], - ['nav_5fset_5fselected',['nav_set_selected',['../nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a',1,'nav.php']]], - ['navbar_5fcomplete',['navbar_complete',['../acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f',1,'acl.php']]], - ['net_5fhave_5fdriver',['net_have_driver',['../include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8',1,'probe.php']]], - ['netgrowth_2ephp',['netgrowth.php',['../netgrowth_8php.html',1,'']]], - ['netgrowth_5fcontent',['netgrowth_content',['../netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919',1,'netgrowth.php']]], - ['network_2ephp',['network.php',['../mod_2network_8php.html',1,'']]], - ['network_2ephp',['network.php',['../include_2network_8php.html',1,'']]], - ['network_5fcontent',['network_content',['../mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4',1,'network.php']]], - ['network_5fdfrn',['NETWORK_DFRN',['../boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e',1,'boot.php']]], - ['network_5fdiaspora',['NETWORK_DIASPORA',['../boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa',1,'boot.php']]], - ['network_5ffacebook',['NETWORK_FACEBOOK',['../boot_8php.html#af3905ea8f8568d0236db13fca40514e3',1,'boot.php']]], - ['network_5ffeed',['NETWORK_FEED',['../boot_8php.html#ab4bddb41a0cf407178ec5278b950c393',1,'boot.php']]], - ['network_5fgplus',['NETWORK_GPLUS',['../boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701',1,'boot.php']]], - ['network_5finit',['network_init',['../mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec',1,'network.php']]], - ['network_5flinkedin',['NETWORK_LINKEDIN',['../boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa',1,'boot.php']]], - ['network_5fmail',['NETWORK_MAIL',['../boot_8php.html#a7236b2cdcf59f02a42302e893a99013b',1,'boot.php']]], - ['network_5fmail2',['NETWORK_MAIL2',['../boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42',1,'boot.php']]], - ['network_5fmyspace',['NETWORK_MYSPACE',['../boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95',1,'boot.php']]], - ['network_5fostatus',['NETWORK_OSTATUS',['../boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d',1,'boot.php']]], - ['network_5fphantom',['NETWORK_PHANTOM',['../boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f',1,'boot.php']]], - ['network_5ftabs',['network_tabs',['../conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4',1,'conversation.php']]], - ['network_5fto_5fname',['network_to_name',['../contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be',1,'contact_selectors.php']]], - ['network_5fxmpp',['NETWORK_XMPP',['../boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e',1,'boot.php']]], - ['network_5fzot',['NETWORK_ZOT',['../boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0',1,'boot.php']]], - ['new_5faccess_5ftoken',['new_access_token',['../classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934',1,'FKOAuthDataStore']]], - ['new_5fchannel_2ephp',['new_channel.php',['../new__channel_8php.html',1,'']]], - ['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]], - ['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]], - ['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]], - ['new_5fcontact',['new_contact',['../include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7',1,'follow.php']]], - ['new_5fcookie',['new_cookie',['../session_8php.html#a4c0ead624f95483e386bc80abf570a8f',1,'session.php']]], - ['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]], - ['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]], - ['newfilename',['newfilename',['../namespacefriendica-to-smarty-tpl.html#ad9ef87ccb2c9960501f5e02424a22d80',1,'friendica-to-smarty-tpl']]], - ['node2bbcode',['node2bbcode',['../html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8',1,'html2bbcode.php']]], - ['node2bbcodesub',['node2bbcodesub',['../html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7',1,'html2bbcode.php']]], - ['none_2ephp',['none.php',['../none_8php.html',1,'']]], - ['normalise_5flink',['normalise_link',['../text_8php.html#a4bbb7d00c05cd20b4e043424f322388f',1,'text.php']]], - ['normalise_5fopenid',['normalise_openid',['../text_8php.html#adba17ec946f4285285dc100f7860bf51',1,'text.php']]], - ['notags',['notags',['../text_8php.html#a1af49756c8c71902a66c7e329c462beb',1,'text.php']]], - ['notes_2ephp',['notes.php',['../notes_8php.html',1,'']]], - ['notes_5finit',['notes_init',['../notes_8php.html#a4dbd7b1f906440746af48b484d66535a',1,'notes.php']]], - ['notice',['notice',['../boot_8php.html#a9255af5ae9c887520091ea04763c1a88',1,'boot.php']]], - ['notification',['notification',['../enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc',1,'enotify.php']]], - ['notifications_2ephp',['notifications.php',['../notifications_8php.html',1,'']]], - ['notifications_5fcontent',['notifications_content',['../notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62',1,'notifications.php']]], - ['notifications_5foff',['notifications_off',['../identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe',1,'identity.php']]], - ['notifications_5fon',['notifications_on',['../identity_8php.html#a5650319c799de09d1b6d1076b6f839a4',1,'identity.php']]], - ['notifications_5fpost',['notifications_post',['../notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33',1,'notifications.php']]], - ['notifier_2ephp',['notifier.php',['../notifier_8php.html',1,'']]], - ['notifier_5frun',['notifier_run',['../notifier_8php.html#a568c502f626cff95e344c0748938b85d',1,'notifier.php']]], - ['notify_2ephp',['notify.php',['../mod_2notify_8php.html',1,'']]], - ['notify_2ephp',['notify.php',['../include_2notify_8php.html',1,'']]], - ['notify_5fcomment',['NOTIFY_COMMENT',['../boot_8php.html#a20f0eed431d25870b624b8937a07a59f',1,'boot.php']]], - ['notify_5fconfirm',['NOTIFY_CONFIRM',['../boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d',1,'boot.php']]], - ['notify_5fcontent',['notify_content',['../mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3',1,'notify.php']]], - ['notify_5finit',['notify_init',['../mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae',1,'notify.php']]], - ['notify_5fintro',['NOTIFY_INTRO',['../boot_8php.html#a56fd673eaa7014150297ce1162502db5',1,'boot.php']]], - ['notify_5fmail',['NOTIFY_MAIL',['../boot_8php.html#a285732e7889fa7f333cbe431111e1029',1,'boot.php']]], - ['notify_5fpoke',['NOTIFY_POKE',['../boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8',1,'boot.php']]], - ['notify_5fprofile',['NOTIFY_PROFILE',['../boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b',1,'boot.php']]], - ['notify_5fsuggest',['NOTIFY_SUGGEST',['../boot_8php.html#a9d01ef178b72b145016cca1393415bc4',1,'boot.php']]], - ['notify_5fsystem',['NOTIFY_SYSTEM',['../boot_8php.html#a14d44d4a00223dc3db4ea962325db192',1,'boot.php']]], - ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], - ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], - ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], - ['notred_2ephp',['notred.php',['../notred_8php.html',1,'']]], - ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.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.html b/doc/html/search/all_6f.html deleted file mode 100644 index 5e86b030d..000000000 --- a/doc/html/search/all_6f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_6f.js b/doc/html/search/all_6f.js deleted file mode 100644 index fe491f0db..000000000 --- a/doc/html/search/all_6f.js +++ /dev/null @@ -1,40 +0,0 @@ -var searchData= -[ - ['oauth_2ephp',['oauth.php',['../oauth_8php.html',1,'']]], - ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], - ['obj_5fverb_5fselector',['obj_verb_selector',['../taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7',1,'taxonomy.php']]], - ['obj_5fverbs',['obj_verbs',['../taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce',1,'taxonomy.php']]], - ['occupant_5finit',['occupant_init',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8',1,'theme.php']]], - ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], - ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], - ['oembed_2ephp',['oembed.php',['../mod_2oembed_8php.html',1,'']]], - ['oembed_2ephp',['oembed.php',['../include_2oembed_8php.html',1,'']]], - ['oembed_5fbbcode2html',['oembed_bbcode2html',['../include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2',1,'oembed.php']]], - ['oembed_5ffetch_5furl',['oembed_fetch_url',['../include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2',1,'oembed.php']]], - ['oembed_5fformat_5fobject',['oembed_format_object',['../include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3',1,'oembed.php']]], - ['oembed_5fhtml2bbcode',['oembed_html2bbcode',['../include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172',1,'oembed.php']]], - ['oembed_5fiframe',['oembed_iframe',['../include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a',1,'oembed.php']]], - ['oembed_5finit',['oembed_init',['../mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014',1,'oembed.php']]], - ['oembed_5freplacecb',['oembed_replacecb',['../include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0',1,'oembed.php']]], - ['oexchange_2ephp',['oexchange.php',['../oexchange_8php.html',1,'']]], - ['oexchange_5fcontent',['oexchange_content',['../oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26',1,'oexchange.php']]], - ['oexchange_5finit',['oexchange_init',['../oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59',1,'oexchange.php']]], - ['old_5fwebfinger',['old_webfinger',['../include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec',1,'network.php']]], - ['olddefault_2ephp',['olddefault.php',['../olddefault_8php.html',1,'']]], - ['onedirsync_2ephp',['onedirsync.php',['../onedirsync_8php.html',1,'']]], - ['onedirsync_5frun',['onedirsync_run',['../onedirsync_8php.html#a411aedd47c57476099647961e6a86691',1,'onedirsync.php']]], - ['onepoll_2ephp',['onepoll.php',['../onepoll_8php.html',1,'']]], - ['onepoll_5frun',['onepoll_run',['../onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d',1,'onepoll.php']]], - ['online_2ephp',['online.php',['../online_8php.html',1,'']]], - ['online_5finit',['online_init',['../online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7',1,'online.php']]], - ['openid_2ephp',['openid.php',['../openid_8php.html',1,'']]], - ['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']]], - ['operationfailed',['OperationFailed',['../classeasywebdav_1_1client_1_1OperationFailed.html',1,'easywebdav::client']]], - ['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']]], - ['outpath',['outpath',['../namespacefriendica-to-smarty-tpl.html#a005c1b7a69cac31fad72a941974ba7bb',1,'friendica-to-smarty-tpl']]] -]; diff --git a/doc/html/search/all_70.html b/doc/html/search/all_70.html deleted file mode 100644 index 799c1a277..000000000 --- a/doc/html/search/all_70.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js deleted file mode 100644 index 51a426dd5..000000000 --- a/doc/html/search/all_70.js +++ /dev/null @@ -1,216 +0,0 @@ -var searchData= -[ - ['p_2ephp',['p.php',['../p_8php.html',1,'']]], - ['p_5finit',['p_init',['../p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e',1,'p.php']]], - ['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'mod_import.php']]], - ['page_2ephp',['page.php',['../page_8php.html',1,'']]], - ['page_5fadult',['PAGE_ADULT',['../boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32',1,'boot.php']]], - ['page_5fallowcode',['PAGE_ALLOWCODE',['../boot_8php.html#adb4c9bd011f9aaeb253742da18373b64',1,'boot.php']]], - ['page_5fapplication',['PAGE_APPLICATION',['../boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed',1,'boot.php']]], - ['page_5fautoconnect',['PAGE_AUTOCONNECT',['../boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9',1,'boot.php']]], - ['page_5fcensored',['PAGE_CENSORED',['../boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214',1,'boot.php']]], - ['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]], - ['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]], - ['page_5fhubadmin',['PAGE_HUBADMIN',['../boot_8php.html#afbb21ecccac9819aa65397e816868a5f',1,'boot.php']]], - ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], - ['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]], - ['page_5fpremium',['PAGE_PREMIUM',['../boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8',1,'boot.php']]], - ['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]], - ['page_5fsystem',['PAGE_SYSTEM',['../boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932',1,'boot.php']]], - ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], - ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], - ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], - ['papp_5fencode',['papp_encode',['../include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680',1,'apps.php']]], - ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.php']]], - ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], - ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], - ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], - ['parsed',['parsed',['../classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9',1,'FriendicaSmarty']]], - ['parseurl_5fgetsiteinfo',['parseurl_getsiteinfo',['../parse__url_8php.html#a25635549f2c22955d72465f4d2e58993',1,'parse_url.php']]], - ['passion_2ephp',['passion.php',['../passion_8php.html',1,'']]], - ['passionwide_2ephp',['passionwide.php',['../passionwide_8php.html',1,'']]], - ['passwd',['PASSWD',['../namespacezotsh.html#af095a954e499000ad500a47ebea3f3ce',1,'zotsh']]], - ['path',['path',['../classeasywebdav_1_1client_1_1OperationFailed.html#a95d48cca4944cc68a6220f6f9030ad70',1,'easywebdav.client.OperationFailed.path()'],['../namespacefriendica-to-smarty-tpl.html#a68d15934660cd1f4301ce251b1646f09',1,'friendica-to-smarty-tpl.path()'],['../namespaceupdatetpl.html#ae694f5e1f25f8a92a945eb90c432dfe6',1,'updatetpl.path()']]], - ['pdl_5fselector',['pdl_selector',['../comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e',1,'comanche.php']]], - ['pdledit_2ephp',['pdledit.php',['../pdledit_8php.html',1,'']]], - ['pdledit_5fcontent',['pdledit_content',['../pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619',1,'pdledit.php']]], - ['pdledit_5fpost',['pdledit_post',['../pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7',1,'pdledit.php']]], - ['pemtome',['pemtome',['../crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c',1,'crypto.php']]], - ['pemtorsa',['pemtorsa',['../crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8',1,'crypto.php']]], - ['perm_5fis_5fallowed',['perm_is_allowed',['../permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835',1,'permissions.php']]], - ['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]], - ['permissions_5fsql',['permissions_sql',['../security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f',1,'security.php']]], - ['perms2str',['perms2str',['../text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee',1,'text.php']]], - ['perms_5fa_5fdelegate',['PERMS_A_DELEGATE',['../boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b',1,'boot.php']]], - ['perms_5fa_5frepublish',['PERMS_A_REPUBLISH',['../boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead',1,'boot.php']]], - ['perms_5fauthed',['PERMS_AUTHED',['../boot_8php.html#a852d4036a3bed66af1534d014c4ecde2',1,'boot.php']]], - ['perms_5fcontacts',['PERMS_CONTACTS',['../boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6',1,'boot.php']]], - ['perms_5fnetwork',['PERMS_NETWORK',['../boot_8php.html#a6df1102664f64b274810db85197c2755',1,'boot.php']]], - ['perms_5fpending',['PERMS_PENDING',['../boot_8php.html#a205d013103997adfa72953d2f20c01e1',1,'boot.php']]], - ['perms_5fpublic',['PERMS_PUBLIC',['../boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7',1,'boot.php']]], - ['perms_5fr_5fabook',['PERMS_R_ABOOK',['../boot_8php.html#a3d6d4fc5fafcc9156811669158541caf',1,'boot.php']]], - ['perms_5fr_5fpages',['PERMS_R_PAGES',['../boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e',1,'boot.php']]], - ['perms_5fr_5fphotos',['PERMS_R_PHOTOS',['../boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62',1,'boot.php']]], - ['perms_5fr_5fprofile',['PERMS_R_PROFILE',['../boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137',1,'boot.php']]], - ['perms_5fr_5fstorage',['PERMS_R_STORAGE',['../boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc',1,'boot.php']]], - ['perms_5fr_5fstream',['PERMS_R_STREAM',['../boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4',1,'boot.php']]], - ['perms_5fsite',['PERMS_SITE',['../boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f',1,'boot.php']]], - ['perms_5fspecific',['PERMS_SPECIFIC',['../boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964',1,'boot.php']]], - ['perms_5fw_5fchat',['PERMS_W_CHAT',['../boot_8php.html#acd877c405b06b348b37b6f7e62a211e9',1,'boot.php']]], - ['perms_5fw_5fcomment',['PERMS_W_COMMENT',['../boot_8php.html#a32df13fec0e43281da5979e1f5579aa8',1,'boot.php']]], - ['perms_5fw_5flike',['PERMS_W_LIKE',['../boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007',1,'boot.php']]], - ['perms_5fw_5fmail',['PERMS_W_MAIL',['../boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf',1,'boot.php']]], - ['perms_5fw_5fpages',['PERMS_W_PAGES',['../boot_8php.html#aa9244fc9cc221980c07a20cc534111be',1,'boot.php']]], - ['perms_5fw_5fphotos',['PERMS_W_PHOTOS',['../boot_8php.html#a57eee7352714c004d36c26dda74af73e',1,'boot.php']]], - ['perms_5fw_5fstorage',['PERMS_W_STORAGE',['../boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115',1,'boot.php']]], - ['perms_5fw_5fstream',['PERMS_W_STREAM',['../boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55',1,'boot.php']]], - ['perms_5fw_5ftagwall',['PERMS_W_TAGWALL',['../boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777',1,'boot.php']]], - ['perms_5fw_5fwall',['PERMS_W_WALL',['../boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2',1,'boot.php']]], - ['photo_2ephp',['photo.php',['../photo_8php.html',1,'']]], - ['photo_5fadult',['PHOTO_ADULT',['../boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0',1,'boot.php']]], - ['photo_5fdriver',['photo_driver',['../classphoto__driver.html',1,'']]], - ['photo_5fdriver_2ephp',['photo_driver.php',['../photo__driver_8php.html',1,'']]], - ['photo_5ffactory',['photo_factory',['../photo__driver_8php.html#a32e2817faa25d7f11f60a8abff565035',1,'photo_driver.php']]], - ['photo_5fflag_5fos',['PHOTO_FLAG_OS',['../boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f',1,'boot.php']]], - ['photo_5fgd',['photo_gd',['../classphoto__gd.html',1,'']]], - ['photo_5fgd_2ephp',['photo_gd.php',['../photo__gd_8php.html',1,'']]], - ['photo_5fimagick',['photo_imagick',['../classphoto__imagick.html',1,'']]], - ['photo_5fimagick_2ephp',['photo_imagick.php',['../photo__imagick_8php.html',1,'']]], - ['photo_5finit',['photo_init',['../photo_8php.html#a582779d24882b0d31ee909a91d70a448',1,'photo.php']]], - ['photo_5fnew_5fresource',['photo_new_resource',['../text_8php.html#aa5528f41533927e1bd2da3618a74a6d7',1,'text.php']]], - ['photo_5fnormal',['PHOTO_NORMAL',['../boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4',1,'boot.php']]], - ['photo_5fprofile',['PHOTO_PROFILE',['../boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0',1,'boot.php']]], - ['photo_5fthing',['PHOTO_THING',['../boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383',1,'boot.php']]], - ['photo_5fupload',['photo_upload',['../include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109',1,'photos.php']]], - ['photo_5fxchan',['PHOTO_XCHAN',['../boot_8php.html#ac43182e0d8bae7576a30b603774974f8',1,'boot.php']]], - ['photos_2ephp',['photos.php',['../mod_2photos_8php.html',1,'']]], - ['photos_2ephp',['photos.php',['../include_2photos_8php.html',1,'']]], - ['photos_5falbum_5fexists',['photos_album_exists',['../include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35',1,'photos.php']]], - ['photos_5falbum_5fget_5fdb_5fidstr',['photos_album_get_db_idstr',['../include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe',1,'photos.php']]], - ['photos_5falbum_5frename',['photos_album_rename',['../include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab',1,'photos.php']]], - ['photos_5falbum_5fwidget',['photos_album_widget',['../include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979',1,'photos.php']]], - ['photos_5falbums_5flist',['photos_albums_list',['../include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9',1,'photos.php']]], - ['photos_5fcontent',['photos_content',['../mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812',1,'photos.php']]], - ['photos_5fcreate_5fitem',['photos_create_item',['../include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274',1,'photos.php']]], - ['photos_5finit',['photos_init',['../mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014',1,'photos.php']]], - ['photos_5flist_5fphotos',['photos_list_photos',['../include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51',1,'photos.php']]], - ['photos_5fpost',['photos_post',['../mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080',1,'photos.php']]], - ['php_2ephp',['php.php',['../php_8php.html',1,'']]], - ['php2po_2ephp',['php2po.php',['../php2po_8php.html',1,'']]], - ['php_5finit',['php_init',['../php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6',1,'php.php']]], - ['php_5ftpl',['php_tpl',['../namespacefriendica-to-smarty-tpl.html#a5dfc21ab8282dda8e3a7dff43cd0e283',1,'friendica-to-smarty-tpl']]], - ['pine_2ephp',['pine.php',['../pine_8php.html',1,'']]], - ['ping_2ephp',['ping.php',['../ping_8php.html',1,'']]], - ['ping_5finit',['ping_init',['../ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1',1,'ping.php']]], - ['pipe_5fstreams',['pipe_streams',['../include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34',1,'attach.php']]], - ['pkcs1_5fencode',['pkcs1_encode',['../crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5',1,'crypto.php']]], - ['pkcs1to8',['pkcs1to8',['../crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9',1,'crypto.php']]], - ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec',1,'crypto.php']]], - ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], - ['pkcs8_5fencode',['pkcs8_encode',['../crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2',1,'crypto.php']]], - ['pkcs8to1',['pkcs8to1',['../crypto_8php.html#a7427a18417341aa35e2207bfa205e432',1,'crypto.php']]], - ['plugin_2ephp',['plugin.php',['../plugin_8php.html',1,'']]], - ['plugin_5fis_5finstalled',['plugin_is_installed',['../plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9',1,'plugin.php']]], - ['png_5fquality',['PNG_QUALITY',['../boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce',1,'boot.php']]], - ['po2php_2ephp',['po2php.php',['../po2php_8php.html',1,'']]], - ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], - ['poco',['poco',['../socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1',1,'socgraph.php']]], - ['poco_2ephp',['poco.php',['../poco_8php.html',1,'']]], - ['poco_5finit',['poco_init',['../poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498',1,'poco.php']]], - ['poco_5fload',['poco_load',['../socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6',1,'socgraph.php']]], - ['poke_2ephp',['poke.php',['../poke_8php.html',1,'']]], - ['poke_5fcontent',['poke_content',['../poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993',1,'poke.php']]], - ['poke_5finit',['poke_init',['../poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b',1,'poke.php']]], - ['poll_2ephp',['poll.php',['../poll_8php.html',1,'']]], - ['poll_5fcontent',['poll_content',['../poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263',1,'poll.php']]], - ['poll_5finit',['poll_init',['../poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930',1,'poll.php']]], - ['poll_5fmultiple_5fchoice',['POLL_MULTIPLE_CHOICE',['../boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86',1,'boot.php']]], - ['poll_5foverwrite',['POLL_OVERWRITE',['../boot_8php.html#a2b525996e4426bdddbcec277778bde08',1,'boot.php']]], - ['poll_5fpost',['poll_post',['../poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77',1,'poll.php']]], - ['poll_5fsimple_5frating',['POLL_SIMPLE_RATING',['../boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5',1,'boot.php']]], - ['poll_5ftenscale',['POLL_TENSCALE',['../boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc',1,'boot.php']]], - ['poller_2ephp',['poller.php',['../poller_8php.html',1,'']]], - ['poller_5frun',['poller_run',['../poller_8php.html#a5f12df3a4738124b6c039971e87e76da',1,'poller.php']]], - ['pop_5flang',['pop_lang',['../language_8php.html#a78bd204955ec4cc3a9ac651285a1689d',1,'language.php']]], - ['populate_5facl',['populate_acl',['../acl__selectors_8php.html#ad25bba63a51a2b0b5b463efae50df528',1,'acl_selectors.php']]], - ['post_2ephp',['post.php',['../post_8php.html',1,'']]], - ['post_5factivity_5fitem',['post_activity_item',['../items_8php.html#a410f9c743877c125ca06312373346903',1,'items.php']]], - ['post_5finit',['post_init',['../post_8php.html#af4b48181ce773ef0cdfc972441445c34',1,'post.php']]], - ['post_5fpost',['post_post',['../post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75',1,'post.php']]], - ['post_5fvar',['post_var',['../pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd',1,'pubsubhubbub.php']]], - ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], - ['prate_2ephp',['prate.php',['../prate_8php.html',1,'']]], - ['prate_5finit',['prate_init',['../prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d',1,'prate.php']]], - ['prate_5fpost',['prate_post',['../prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd',1,'prate.php']]], - ['preg_5fcallback_5fhelp_5finclude',['preg_callback_help_include',['../help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4',1,'help.php']]], - ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], - ['prepare_5fbody',['prepare_body',['../text_8php.html#ae4df74296fbe55051ed3c035e55205e5',1,'text.php']]], - ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], - ['prepare_5ftext',['prepare_text',['../text_8php.html#afe54312607d92f7ce9593f5760831f80',1,'text.php']]], - ['pretheme_2ephp',['pretheme.php',['../pretheme_8php.html',1,'']]], - ['pretheme_5finit',['pretheme_init',['../pretheme_8php.html#af5660943ee99db5fd75182316522eafe',1,'pretheme.php']]], - ['print_5ftemplate',['print_template',['../tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3',1,'tpldebug.php']]], - ['printable',['printable',['../dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249',1,'dba_driver.php']]], - ['private_5fmessages_5fdrop',['private_messages_drop',['../include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1',1,'message.php']]], - ['private_5fmessages_5ffetch_5fconversation',['private_messages_fetch_conversation',['../include_2message_8php.html#a5f8de9847e203329e317ac38dc646898',1,'message.php']]], - ['private_5fmessages_5ffetch_5fmessage',['private_messages_fetch_message',['../include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091',1,'message.php']]], - ['private_5fmessages_5flist',['private_messages_list',['../include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e',1,'message.php']]], - ['probe_2ephp',['probe.php',['../mod_2probe_8php.html',1,'']]], - ['probe_2ephp',['probe.php',['../include_2probe_8php.html',1,'']]], - ['probe_5factivity_5fstream',['probe_activity_stream',['../include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c',1,'probe.php']]], - ['probe_5fcontent',['probe_content',['../mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99',1,'probe.php']]], - ['probe_5fdfrn',['probe_dfrn',['../include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0',1,'probe.php']]], - ['probe_5fdiaspora',['probe_diaspora',['../include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a',1,'probe.php']]], - ['probe_5flegacy_5ffeed',['probe_legacy_feed',['../include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7',1,'probe.php']]], - ['probe_5flegacy_5fwebfinger',['probe_legacy_webfinger',['../include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481',1,'probe.php']]], - ['probe_5fwebfinger',['probe_webfinger',['../include_2probe_8php.html#a950a200372393f706851103cd3fffcba',1,'probe.php']]], - ['probe_5fwell_5fknown',['probe_well_known',['../include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d',1,'probe.php']]], - ['probe_5fzot',['probe_zot',['../include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85',1,'probe.php']]], - ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], - ['process_5fchannel_5fsync_5fdelivery',['process_channel_sync_delivery',['../zot_8php.html#ac301c67864917c35922257950ae0f95c',1,'zot.php']]], - ['process_5fdelivery',['process_delivery',['../zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d',1,'zot.php']]], - ['process_5flocation_5fdelivery',['process_location_delivery',['../zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988',1,'zot.php']]], - ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], - ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], - ['process_5frating_5fdelivery',['process_rating_delivery',['../zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181',1,'zot.php']]], - ['profile_2ephp',['profile.php',['../profile_8php.html',1,'']]], - ['profile_5factivity',['profile_activity',['../activities_8php.html#a80134e807719b3c54aba971958d2e132',1,'activities.php']]], - ['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]], - ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620',1,'identity.php']]], - ['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]], - ['profile_5fload',['profile_load',['../identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68',1,'identity.php']]], - ['profile_5fphoto_2ephp',['profile_photo.php',['../profile__photo_8php.html',1,'']]], - ['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]], - ['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]], - ['profile_5fphoto_5fset_5fprofile_5fperms',['profile_photo_set_profile_perms',['../profile__photo_8php.html#a561103564199da56e58061a4196eb102',1,'profile_photo.php']]], - ['profile_5fselectors_2ephp',['profile_selectors.php',['../profile__selectors_8php.html',1,'']]], - ['profile_5fsidebar',['profile_sidebar',['../identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc',1,'identity.php']]], - ['profile_5ftabs',['profile_tabs',['../conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'conversation.php']]], - ['profiler',['profiler',['../text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6',1,'text.php']]], - ['profiles_2ephp',['profiles.php',['../profiles_8php.html',1,'']]], - ['profiles_5fcontent',['profiles_content',['../profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00',1,'profiles.php']]], - ['profiles_5finit',['profiles_init',['../profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e',1,'profiles.php']]], - ['profiles_5fpost',['profiles_post',['../profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04',1,'profiles.php']]], - ['profperm_2ephp',['profperm.php',['../profperm_8php.html',1,'']]], - ['profperm_5fcontent',['profperm_content',['../profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023',1,'profperm.php']]], - ['profperm_5finit',['profperm_init',['../profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6',1,'profperm.php']]], - ['prop',['prop',['../namespaceeasywebdav_1_1client.html#a5e093458640c0bd98f7ef39adc2fe159',1,'easywebdav::client']]], - ['protect_5fsprintf',['protect_sprintf',['../text_8php.html#a4e7698aca48982512594b274543c3b9b',1,'text.php']]], - ['protodriver',['ProtoDriver',['../classProtoDriver.html',1,'']]], - ['protodriver_2ephp',['ProtoDriver.php',['../ProtoDriver_8php.html',1,'']]], - ['prune_5fhub_5freinstalls',['prune_hub_reinstalls',['../hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002',1,'hubloc.php']]], - ['ps1',['PS1',['../classzotsh_1_1ZotSH.html#a02e7a436389baa6c2c1f7a530760606e',1,'zotsh::ZotSH']]], - ['public_5fpermissions_5fsql',['public_permissions_sql',['../security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01',1,'security.php']]], - ['public_5frecips',['public_recips',['../zot_8php.html#a083aec6c900d244e1bfc1406f9461465',1,'zot.php']]], - ['pubrsatome',['pubrsatome',['../crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287',1,'crypto.php']]], - ['pubsites_2ephp',['pubsites.php',['../pubsites_8php.html',1,'']]], - ['pubsites_5fcontent',['pubsites_content',['../pubsites_8php.html#af614e279aab54065345bda6b03eafdf0',1,'pubsites.php']]], - ['pubsub_2ephp',['pubsub.php',['../pubsub_8php.html',1,'']]], - ['pubsub_5finit',['pubsub_init',['../pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e',1,'pubsub.php']]], - ['pubsub_5fpost',['pubsub_post',['../pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123',1,'pubsub.php']]], - ['pubsubhubbub_2ephp',['pubsubhubbub.php',['../pubsubhubbub_8php.html',1,'']]], - ['pubsubhubbub_5finit',['pubsubhubbub_init',['../pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0',1,'pubsubhubbub.php']]], - ['purify_5fhtml',['purify_html',['../text_8php.html#a4841df5beabdd1bdd1ed56781a915d61',1,'text.php']]], - ['push_5flang',['push_lang',['../language_8php.html#ac9142ef1d01a235c760deb0f16643f5a',1,'language.php']]], - ['put',['put',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0',1,'RedMatrix::RedDAV::RedFile']]] -]; diff --git a/doc/html/search/all_71.html b/doc/html/search/all_71.html deleted file mode 100644 index e9d391f66..000000000 --- a/doc/html/search/all_71.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_71.js b/doc/html/search/all_71.js deleted file mode 100644 index be0700f6d..000000000 --- a/doc/html/search/all_71.js +++ /dev/null @@ -1,10 +0,0 @@ -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()'],['../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_72.html b/doc/html/search/all_72.html deleted file mode 100644 index 347b9f666..000000000 --- a/doc/html/search/all_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js deleted file mode 100644 index a28e69215..000000000 --- a/doc/html/search/all_72.js +++ /dev/null @@ -1,137 +0,0 @@ -var searchData= -[ - ['import',['Import',['../namespaceRedMatrix_1_1Import.html',1,'RedMatrix']]], - ['random_5fprofile',['random_profile',['../Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713',1,'Contact.php']]], - ['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]], - ['random_5fstring_5fhex',['RANDOM_STRING_HEX',['../text_8php.html#aad557c054cf2ed915633701018fc7e3f',1,'text.php']]], - ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], - ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], - ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], - ['rate_2ephp',['rate.php',['../rate_8php.html',1,'']]], - ['rate_5fcontent',['rate_content',['../rate_8php.html#a22fc66202522acb53fb3746fc21d80f2',1,'rate.php']]], - ['rate_5finit',['rate_init',['../rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771',1,'rate.php']]], - ['rate_5fpost',['rate_post',['../rate_8php.html#acae9f41835b07e3c977464030e8831fc',1,'rate.php']]], - ['ratenotif_2ephp',['ratenotif.php',['../ratenotif_8php.html',1,'']]], - ['ratenotif_5frun',['ratenotif_run',['../ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37',1,'ratenotif.php']]], - ['ratings_2ephp',['ratings.php',['../ratings_8php.html',1,'']]], - ['ratings_5fcontent',['ratings_content',['../ratings_8php.html#a25f835d136b884354cf1fa4d897c857b',1,'ratings.php']]], - ['ratings_5finit',['ratings_init',['../ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3',1,'ratings.php']]], - ['ratingsearch_2ephp',['ratingsearch.php',['../ratingsearch_8php.html',1,'']]], - ['ratingsearch_5finit',['ratingsearch_init',['../ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466',1,'ratingsearch.php']]], - ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], - ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], - ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], - ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], - ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], - ['readme_2emd',['README.md',['../README_8md.html',1,'']]], - ['reason',['reason',['../classeasywebdav_1_1client_1_1OperationFailed.html#ad1026cc529cf839da18542f6907df022',1,'easywebdav::client::OperationFailed']]], - ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], - ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], - ['receive_5fpost',['receive_post',['../receive_8php.html#a03d8fa26e77844020ba5602deca7d494',1,'receive.php']]], - ['recursive_5factivity_5frecipients',['recursive_activity_recipients',['../include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886',1,'attach.php']]], - ['red_5fescape_5fcodeblock',['red_escape_codeblock',['../items_8php.html#a49905ea75adfe8a2d110be344d18d6a6',1,'items.php']]], - ['red_5fescape_5fzrl_5fcallback',['red_escape_zrl_callback',['../items_8php.html#a83a349062945d585edb4b3c5d763ab6e',1,'items.php']]], - ['red_5fitem_5fnew',['red_item_new',['../include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898',1,'api.php']]], - ['red_5fplatform',['RED_PLATFORM',['../boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4',1,'boot.php']]], - ['red_5funescape_5fcodeblock',['red_unescape_codeblock',['../items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a',1,'items.php']]], - ['red_5fversion',['RED_VERSION',['../boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3',1,'boot.php']]], - ['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]], - ['red_5fzrlify_5fimg_5fcallback',['red_zrlify_img_callback',['../items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a',1,'items.php']]], - ['redable_2ephp',['redable.php',['../redable_8php.html',1,'']]], - ['redbasic_2ephp',['redbasic.php',['../redbasic_8php.html',1,'']]], - ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793',1,'config.php']]], - ['redbasic_5finit',['redbasic_init',['../view_2theme_2redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], - ['redbasicauth',['RedBasicAuth',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html',1,'RedMatrix::RedDAV']]], - ['redbasicauth_2ephp',['RedBasicAuth.php',['../RedBasicAuth_8php.html',1,'']]], - ['redbrowser',['RedBrowser',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html',1,'RedMatrix::RedDAV']]], - ['redbrowser_2ephp',['RedBrowser.php',['../RedBrowser_8php.html',1,'']]], - ['redchannellist',['RedChannelList',['../reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66',1,'reddav.php']]], - ['redcollectiondata',['RedCollectionData',['../reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266',1,'reddav.php']]], - ['reddav',['RedDAV',['../namespaceRedMatrix_1_1RedDAV.html',1,'RedMatrix']]], - ['reddav_2ephp',['reddav.php',['../reddav_8php.html',1,'']]], - ['reddirectory',['RedDirectory',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html',1,'RedMatrix::RedDAV']]], - ['reddirectory_2ephp',['RedDirectory.php',['../RedDirectory_8php.html',1,'']]], - ['redfile',['RedFile',['../classRedMatrix_1_1RedDAV_1_1RedFile.html',1,'RedMatrix::RedDAV']]], - ['redfile_2ephp',['RedFile.php',['../RedFile_8php.html',1,'']]], - ['redfiledata',['RedFileData',['../reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088',1,'reddav.php']]], - ['redmatrix',['RedMatrix',['../namespaceRedMatrix.html',1,'']]], - ['redmatrix_5fimportchannel',['REDMATRIX_IMPORTCHANNEL',['../refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6',1,'refimport.php']]], - ['reduce',['reduce',['../docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f',1,'docblox_errorchecker.php']]], - ['ref_5fsession_5fclose',['ref_session_close',['../session_8php.html#a5e1c616e02b863d5450317d101366bb7',1,'session.php']]], - ['ref_5fsession_5fdestroy',['ref_session_destroy',['../session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052',1,'session.php']]], - ['ref_5fsession_5fgc',['ref_session_gc',['../session_8php.html#ac95373f4966862a028033dd2f94d4da1',1,'session.php']]], - ['ref_5fsession_5fopen',['ref_session_open',['../session_8php.html#a26fa1042356d555023cbf15ddd4f8507',1,'session.php']]], - ['ref_5fsession_5fread',['ref_session_read',['../session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e',1,'session.php']]], - ['ref_5fsession_5fwrite',['ref_session_write',['../session_8php.html#ac4461c1984543d3553e73dba2771568f',1,'session.php']]], - ['refimport_2ephp',['refimport.php',['../refimport_8php.html',1,'']]], - ['refimport_5fcontent',['refimport_content',['../refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29',1,'refimport.php']]], - ['reflect_5farticle_5fcallback',['reflect_article_callback',['../refimport_8php.html#a53434bc19e6264db89e18d92ddc09860',1,'refimport.php']]], - ['reflect_5fbaseurl',['REFLECT_BASEURL',['../refimport_8php.html#ac43699d8ae86175e049aa4e87853caac',1,'refimport.php']]], - ['reflect_5fblogname',['REFLECT_BLOGNAME',['../refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f',1,'refimport.php']]], - ['reflect_5fcomment_5fstore',['reflect_comment_store',['../refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c',1,'refimport.php']]], - ['reflect_5fexportusername',['REFLECT_EXPORTUSERNAME',['../refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025',1,'refimport.php']]], - ['reflect_5ffind_5fuser',['reflect_find_user',['../refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d',1,'refimport.php']]], - ['reflect_5fget_5fchannel',['reflect_get_channel',['../refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c',1,'refimport.php']]], - ['reflect_5fmaxperrun',['REFLECT_MAXPERRUN',['../refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f',1,'refimport.php']]], - ['reflect_5foverwrite',['REFLECT_OVERWRITE',['../refimport_8php.html#aeec793cefa260f788b7d005adcb35796',1,'refimport.php']]], - ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], - ['reflect_5fuserfile',['REFLECT_USERFILE',['../refimport_8php.html#a684a44d2401abf75f441591bcb41d10d',1,'refimport.php']]], - ['regdir_2ephp',['regdir.php',['../regdir_8php.html',1,'']]], - ['regdir_5finit',['regdir_init',['../regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd',1,'regdir.php']]], - ['register_2ephp',['register.php',['../register_8php.html',1,'']]], - ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], - ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], - ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], - ['register_5fhook',['register_hook',['../plugin_8php.html#a425472c5f3afc137268b2ad45652b209',1,'plugin.php']]], - ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], - ['register_5fopen',['REGISTER_OPEN',['../boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63',1,'boot.php']]], - ['register_5fpage_5ftemplate',['register_page_template',['../comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f',1,'comanche.php']]], - ['register_5fpost',['register_post',['../register_8php.html#a51731dcc1917c58a790eb1c0f6132271',1,'register.php']]], - ['register_5ftemplate_5fengine',['register_template_engine',['../classApp.html#abf46a653d8499e7c253cc1be894a6d83',1,'App']]], - ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], - ['regmod_5fcontent',['regmod_content',['../regmod_8php.html#a7953df4e32e63946565e90cdd5d50409',1,'regmod.php']]], - ['regver_2ephp',['regver.php',['../regver_8php.html',1,'']]], - ['regver_5fcontent',['regver_content',['../regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f',1,'regver.php']]], - ['relative_5fdate',['relative_date',['../datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82',1,'datetime.php']]], - ['reload_5fplugins',['reload_plugins',['../plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025',1,'plugin.php']]], - ['reltoabs',['reltoabs',['../text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2',1,'text.php']]], - ['remote_5fchannel',['remote_channel',['../boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458',1,'boot.php']]], - ['remote_5fonline_5fstatus',['remote_online_status',['../identity_8php.html#a47d6f53216f23a3484061793bef29854',1,'identity.php']]], - ['remote_5fuser',['remote_user',['../boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209',1,'boot.php']]], - ['remove_5fall_5fxchan_5fresources',['remove_all_xchan_resources',['../Contact_8php.html#acc12cda999c88c4d6185cca967c15125',1,'Contact.php']]], - ['remove_5fchild',['remove_child',['../classItem.html#a2ce70ef63f9f4d86a09c351678806925',1,'Item']]], - ['remove_5fcommunity_5ftag',['remove_community_tag',['../zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10',1,'zot.php']]], - ['remove_5fobsolete_5fhublocs',['remove_obsolete_hublocs',['../hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea',1,'hubloc.php']]], - ['remove_5fparent',['remove_parent',['../classItem.html#aa452b5bcd8dea12119b09212c615cb41',1,'Item']]], - ['remove_5fqueue_5fitem',['remove_queue_item',['../queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24',1,'queue_fn.php']]], - ['removeaccount_2ephp',['removeaccount.php',['../removeaccount_8php.html',1,'']]], - ['removeaccount_5fcontent',['removeaccount_content',['../removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695',1,'removeaccount.php']]], - ['removeaccount_5fpost',['removeaccount_post',['../removeaccount_8php.html#a26a3325292e932c59793430ab737126a',1,'removeaccount.php']]], - ['removeme_2ephp',['removeme.php',['../removeme_8php.html',1,'']]], - ['removeme_5fcontent',['removeme_content',['../removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c',1,'removeme.php']]], - ['removeme_5fpost',['removeme_post',['../removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88',1,'removeme.php']]], - ['render_5flocation_5fdefault',['render_location_default',['../conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2',1,'conversation.php']]], - ['replace',['replace',['../classTemplate.html#a285b5b2007dbbf733476273df3fed4ef',1,'Template']]], - ['replace_5fmacros',['replace_macros',['../interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243',1,'ITemplateEngine\replace_macros()'],['../classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2',1,'FriendicaSmartyEngine\replace_macros()'],['../classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b',1,'Template\replace_macros()'],['../text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09',1,'replace_macros(): text.php']]], - ['request_5ftoken_5fduration',['REQUEST_TOKEN_DURATION',['../oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16',1,'oauth.php']]], - ['requestdata',['requestdata',['../include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e',1,'api.php']]], - ['retain_5fitem',['retain_item',['../items_8php.html#af6237605c60d69abdd959ddbbee3420c',1,'items.php']]], - ['return_5fbytes',['return_bytes',['../text_8php.html#ae2126da85966da0e79c6bcbac63b0bda',1,'text.php']]], - ['rmagic_2ephp',['rmagic.php',['../rmagic_8php.html',1,'']]], - ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], - ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], - ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], - ['rmdir',['rmdir',['../classeasywebdav_1_1client_1_1Client.html#a65654cbf48e7d123ce52d8bd3335b03d',1,'easywebdav::client::Client']]], - ['rotate',['rotate',['../classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec',1,'photo_driver\rotate()'],['../classphoto__gd.html#a77f87730b11093b76980c541159df37d',1,'photo_gd\rotate()'],['../classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f',1,'photo_imagick\rotate()']]], - ['rpost_2ephp',['rpost.php',['../rpost_8php.html',1,'']]], - ['rpost_5fcallback',['rpost_callback',['../bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7',1,'bbcode.php']]], - ['rpost_5fcontent',['rpost_content',['../rpost_8php.html#a8190354d789000806d9879aea276728f',1,'rpost.php']]], - ['rrmdir',['rrmdir',['../Contact_8php.html#ab5895b75a3b2abdddf1cb351a8c6b58b',1,'Contact.php']]], - ['rsa_5fsign',['rsa_sign',['../crypto_8php.html#a920e5f222d0020f47556033d8b2b6552',1,'crypto.php']]], - ['rsa_5fverify',['rsa_verify',['../crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96',1,'crypto.php']]], - ['rsatopem',['rsatopem',['../crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26',1,'crypto.php']]], - ['rsd_5fxml_2ephp',['rsd_xml.php',['../rsd__xml_8php.html',1,'']]], - ['rsd_5fxml_5fcontent',['rsd_xml_content',['../rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82',1,'rsd_xml.php']]], - ['run',['run',['../classRedMatrix_1_1Import_1_1Import.html#a8d138a9a7d4f79b81d3446ca216a602c',1,'RedMatrix::Import::Import']]], - ['runs',['runs',['../docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec',1,'docblox_errorchecker.php']]] -]; diff --git a/doc/html/search/all_73.html b/doc/html/search/all_73.html deleted file mode 100644 index 9abac91a9..000000000 --- a/doc/html/search/all_73.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js deleted file mode 100644 index 5f4af21cb..000000000 --- a/doc/html/search/all_73.js +++ /dev/null @@ -1,162 +0,0 @@ -var searchData= -[ - ['salmon_5fkey',['salmon_key',['../crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5',1,'crypto.php']]], - ['sanitise_5facl',['sanitise_acl',['../text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c',1,'text.php']]], - ['save',['save',['../classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac',1,'photo_driver']]], - ['saveimage',['saveImage',['../classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3',1,'photo_driver']]], - ['scale_5fexternal_5fimages',['scale_external_images',['../include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f',1,'network.php']]], - ['scaleimage',['scaleImage',['../classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0',1,'photo_driver']]], - ['scaleimagesquare',['scaleImageSquare',['../classphoto__driver.html#a56634842b071b96502716e9843ea5361',1,'photo_driver']]], - ['scaleimageup',['scaleImageUp',['../classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce',1,'photo_driver']]], - ['scrape_5ffeed',['scrape_feed',['../include_2network_8php.html#a316f318167a039c89719afbd129a8f3c',1,'network.php']]], - ['scrape_5fvcard',['scrape_vcard',['../include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070',1,'network.php']]], - ['script_5fpath',['script_path',['../plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3',1,'plugin.php']]], - ['search',['search',['../text_8php.html#a876e94892867019935b348b573299352',1,'text.php']]], - ['search_2ephp',['search.php',['../search_8php.html',1,'']]], - ['search_5fac_2ephp',['search_ac.php',['../search__ac_8php.html',1,'']]], - ['search_5fac_5finit',['search_ac_init',['../search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138',1,'search_ac.php']]], - ['search_5fcontent',['search_content',['../search_8php.html#ab2568591359edde5b483a6cd9a24b2cc',1,'search.php']]], - ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], - ['searchbox',['searchbox',['../text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447',1,'text.php']]], - ['security_2ephp',['security.php',['../security_8php.html',1,'']]], - ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], - ['send_5fmessage',['send_message',['../include_2message_8php.html#a751ffd6635022b2190f56154ee745752',1,'message.php']]], - ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], - ['send_5fstatus_5fnotifications',['send_status_notifications',['../items_8php.html#aab9e0c58247427126de0699c729c3b6c',1,'items.php']]], - ['send_5fverification_5femail',['send_verification_email',['../account_8php.html#aa9c29c497c17d8f9344dce8631ad8761',1,'account.php']]], - ['server',['SERVER',['../namespacezotsh.html#a701660e74baf39d745d202f282240f3c',1,'zotsh']]], - ['service_5fclass_5fallows',['service_class_allows',['../account_8php.html#a030cec6793b909c439c0336ba39b1571',1,'account.php']]], - ['service_5fclass_5ffetch',['service_class_fetch',['../account_8php.html#a905b54e10704b283ac64680a8abc0971',1,'account.php']]], - ['service_5flimits_2ephp',['service_limits.php',['../service__limits_8php.html',1,'']]], - ['service_5flimits_5fcontent',['service_limits_content',['../service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a',1,'service_limits.php']]], - ['service_5fplink',['service_plink',['../include_2network_8php.html#adf741da85aa82493f2084eca63092dd5',1,'network.php']]], - ['session',['session',['../classeasywebdav_1_1client_1_1Client.html#a3ae2c2f4b07692c2e81fa4c9643fd4cf',1,'easywebdav.client.Client.session()'],['../classzotsh_1_1ZotSH.html#a817b058af7f90c6d4bbbe590b3f7faaf',1,'zotsh.ZotSH.session()'],['../classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506',1,'zotsh.ZotSH.session'],['../classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506',1,'zotsh.ZotSH.session']]], - ['session_2ephp',['session.php',['../session_8php.html',1,'']]], - ['sessions',['sessions',['../classzotsh_1_1ZotSH.html#a40f05be2cd1eec8da7237e73e6ed4cd6',1,'zotsh::ZotSH']]], - ['set',['set',['../classCache.html#ae622b82adc1c2fb1f3e2cc4fd9688fce',1,'Cache']]], - ['set_5faccount',['set_account',['../classApp.html#aeb1fe1c8ad9aa639909bd183ce578536',1,'App']]], - ['set_5fapp',['set_app',['../classBaseObject.html#a0a9acda12d751692834cf6999f889223',1,'BaseObject']]], - ['set_5fapps',['set_apps',['../classApp.html#abea5a4f77dcd53c928dc4eed86616637',1,'App']]], - ['set_5fbaseurl',['set_baseurl',['../classApp.html#a78788f6e9d8b713b138f81e457c5cd08',1,'App']]], - ['set_5fchannel',['set_channel',['../classApp.html#a89e9feb2bfb5253883a9720beaffe876',1,'App']]], - ['set_5fcommentable',['set_commentable',['../classItem.html#aa1bd19fc8b5577078530265a7bf64123',1,'Item']]], - ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], - ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], - ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], - ['set_5fdisplay_5fmode',['set_display_mode',['../classItem.html#ac09a4728d37b7783714243f7f8167214',1,'Item']]], - ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], - ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], - ['set_5flinkified_5fperms',['set_linkified_perms',['../items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c',1,'items.php']]], - ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], - ['set_5fobserver',['set_observer',['../classApp.html#a4776d9322edea17fae56afa5d01a323e',1,'App']]], - ['set_5fpager_5fitemspage',['set_pager_itemspage',['../classApp.html#a4bdd7bfed62f50515fce652127bf481b',1,'App']]], - ['set_5fpager_5ftotal',['set_pager_total',['../classApp.html#a560189f048d3db2f526841963cc43e97',1,'App']]], - ['set_5fparent',['set_parent',['../classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7',1,'Item']]], - ['set_5fpath',['set_path',['../classApp.html#adb060d5c7f35a521ec7ec0effbe08097',1,'App']]], - ['set_5fpconfig',['set_pconfig',['../include_2config_8php.html#a61591371cb18764138655d67dc817ab2',1,'config.php']]], - ['set_5fperms',['set_perms',['../classApp.html#a557d7b779d8259027f4724ebf7b248dc',1,'App']]], - ['set_5fprofile_5fowner',['set_profile_owner',['../classConversation.html#a8898bddc1e8990e81dab9a13a532cc93',1,'Conversation']]], - ['set_5ftemplate',['set_template',['../classItem.html#af1b73df9b7c4b927e26b7e243b491f42',1,'Item']]], - ['set_5ftemplate_5fengine',['set_template_engine',['../classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7',1,'App']]], - ['set_5fwidget',['set_widget',['../classApp.html#a123b903dfe5d3488cc68db3471d36fd2',1,'App']]], - ['set_5fwriteable',['set_writeable',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19',1,'RedMatrix::RedDAV::RedBrowser']]], - ['set_5fxconfig',['set_xconfig',['../include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e',1,'config.php']]], - ['setauthenticated',['setAuthenticated',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a2926fe923baade564f2663632fa8c633',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setbrowserplugin',['setBrowserPlugin',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#adc72f36f0b2b17b20ea4df900afcd697',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setcurrentuser',['setCurrentUser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aadce020fb595c7943829d7f995d3f998',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setdimensions',['setDimensions',['../classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143',1,'photo_driver\setDimensions()'],['../classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e',1,'photo_gd\setDimensions()'],['../classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb',1,'photo_imagick\setDimensions()']]], - ['setname',['setName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a14ac61d31a031d139956763db4e03956',1,'RedMatrix\RedDAV\RedDirectory\setName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a0350cb4e0327e1f9922869a48ee04f1d',1,'RedMatrix\RedDAV\RedFile\setName()']]], - ['settimezone',['setTimezone',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#af6d239fefed05859327ee8db626703f9',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['settings_2ephp',['settings.php',['../settings_8php.html',1,'']]], - ['settings_5finit',['settings_init',['../settings_8php.html#a3a4cde287482fced008583f54ba2a722',1,'settings.php']]], - ['settings_5fpost',['settings_post',['../settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586',1,'settings.php']]], - ['setup_2ephp',['setup.php',['../setup_8php.html',1,'']]], - ['setup_5fcontent',['setup_content',['../setup_8php.html#a88247384a96e14516f474d7af6a465c1',1,'setup.php']]], - ['setup_5finit',['setup_init',['../setup_8php.html#a267555abd17290e659b4bf44b885e4e0',1,'setup.php']]], - ['setup_5fpost',['setup_post',['../setup_8php.html#a13cf286774149a0a7bd8adb8179cec75',1,'setup.php']]], - ['sexpref_5fselector',['sexpref_selector',['../profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7',1,'profile_selectors.php']]], - ['sexpref_5fselector_5fmin',['sexpref_selector_min',['../profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074',1,'profile_selectors.php']]], - ['share_2ephp',['share.php',['../share_8php.html',1,'']]], - ['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]], - ['share_5fshield',['share_shield',['../bb2diaspora_8php.html#ad033be99e87a2aaa05e569c68f30792d',1,'bb2diaspora.php']]], - ['share_5funshield',['share_unshield',['../bb2diaspora_8php.html#ab61b4f8c065e97b151411858bb2f209a',1,'bb2diaspora.php']]], - ['sharedwithme_2ephp',['sharedwithme.php',['../sharedwithme_8php.html',1,'']]], - ['sharedwithme_5fcontent',['sharedwithme_content',['../sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190',1,'sharedwithme.php']]], - ['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]], - ['simple_5fblack_5fon_5fwhite_2ephp',['simple_black_on_white.php',['../simple__black__on__white_8php.html',1,'']]], - ['simple_5fgreen_5fon_5fblack_2ephp',['simple_green_on_black.php',['../simple__green__on__black_8php.html',1,'']]], - ['simple_5fwhite_5fon_5fblack_2ephp',['simple_white_on_black.php',['../simple__white__on__black_8php.html',1,'']]], - ['site_5fdefault_5fperms',['site_default_perms',['../permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d',1,'permissions.php']]], - ['siteinfo_2ephp',['siteinfo.php',['../siteinfo_8php.html',1,'']]], - ['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]], - ['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]], - ['sitelist_2ephp',['sitelist.php',['../sitelist_8php.html',1,'']]], - ['sitelist_5finit',['sitelist_init',['../sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1',1,'sitelist.php']]], - ['smarty_2ephp',['smarty.php',['../smarty_8php.html',1,'']]], - ['smile_5fshield',['smile_shield',['../text_8php.html#a10dde167249ed5abf190a7a0986878ea',1,'text.php']]], - ['smile_5funshield',['smile_unshield',['../text_8php.html#a273156a6f5cddc6652ad656821cd5805',1,'text.php']]], - ['smilies',['smilies',['../text_8php.html#a3d225b253bb9e0f2498c11647d927b0b',1,'text.php']]], - ['smilies_2ephp',['smilies.php',['../smilies_8php.html',1,'']]], - ['smilies_5fcontent',['smilies_content',['../smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f',1,'smilies.php']]], - ['socgraph_2ephp',['socgraph.php',['../socgraph_8php.html',1,'']]], - ['sort_5fby_5fdate',['sort_by_date',['../event_8php.html#a018ea4484910a873a7c1eaa126de9b1a',1,'event.php']]], - ['sort_5fitem_5fchildren',['sort_item_children',['../conversation_8php.html#ae996eb116d397a2c6396c312d7b98664',1,'conversation.php']]], - ['sort_5fthr_5fcommented',['sort_thr_commented',['../conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11',1,'conversation.php']]], - ['sort_5fthr_5fcreated',['sort_thr_created',['../conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d',1,'conversation.php']]], - ['sort_5fthr_5fcreated_5frev',['sort_thr_created_rev',['../conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0',1,'conversation.php']]], - ['sources_2ephp',['sources.php',['../sources_8php.html',1,'']]], - ['sources_5fcontent',['sources_content',['../sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7',1,'sources.php']]], - ['sources_5fpost',['sources_post',['../sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e',1,'sources.php']]], - ['spam_2ephp',['spam.php',['../spam_8php.html',1,'']]], - ['splitfilename',['splitFilename',['../functions_8php.html#adefe514c95680928b3aae250cbc3c663',1,'functions.php']]], - ['sporadic_5finit',['sporadic_init',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6',1,'theme.php']]], - ['ssl_5fpolicy_5ffull',['SSL_POLICY_FULL',['../boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc',1,'boot.php']]], - ['ssl_5fpolicy_5fnone',['SSL_POLICY_NONE',['../boot_8php.html#af86c651547aa8f9e549ee40a09455549',1,'boot.php']]], - ['ssl_5fpolicy_5fselfsign',['SSL_POLICY_SELFSIGN',['../boot_8php.html#adca48aee78465ae3064ca4432c0d87b5',1,'boot.php']]], - ['sslify',['sslify',['../text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9',1,'text.php']]], - ['sslify_2ephp',['sslify.php',['../sslify_8php.html',1,'']]], - ['sslify_5finit',['sslify_init',['../sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316',1,'sslify.php']]], - ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], - ['starred_5finit',['starred_init',['../starred_8php.html#a63024fb418c678e49fd535e3752d349a',1,'starred.php']]], - ['start_5fdelivery_5fchain',['start_delivery_chain',['../items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2',1,'items.php']]], - ['startup',['startup',['../boot_8php.html#aca47505b8732177f52bb2d647eb2741c',1,'boot.php']]], - ['statistics_5ffns_2ephp',['statistics_fns.php',['../statistics__fns_8php.html',1,'']]], - ['status_5feditor',['status_editor',['../conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a',1,'conversation.php']]], - ['storage_5fdefault_5fpermissions',['STORAGE_DEFAULT_PERMISSIONS',['../boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6',1,'boot.php']]], - ['store',['store',['../classRedMatrix_1_1Import_1_1Import.html#a33ed595de044c0ec1cd84cca719e31dc',1,'RedMatrix\Import\Import\store()'],['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver\store()']]], - ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#a25221826fa4621f523c68483e3b6af26',1,'items.php']]], - ['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]], - ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#a6126c77a1267e046ac59cf864613f011',1,'security.php']]], - ['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c',1,'security.php']]], - ['string_5fplural_5fselect_5fdefault',['string_plural_select_default',['../language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0',1,'language.php']]], - ['string_5fsplitter',['string_splitter',['../spam_8php.html#a05861201147b9a538d006f0269255cf9',1,'spam.php']]], - ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], - ['strip_5fzids',['strip_zids',['../text_8php.html#a2f2585385530cb935a6325c809d84a4d',1,'text.php']]], - ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], - ['stumble_5finit',['stumble_init',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753',1,'theme.php']]], - ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2redbasic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2mytheme_2php_2style_8php.html',1,'']]], - ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], - ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], - ['suckerberg_5finit',['suckerberg_init',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], - ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], - ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], - ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], - ['suggestion_5fquery',['suggestion_query',['../socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329',1,'socgraph.php']]], - ['sunbeam_5finit',['sunbeam_init',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525',1,'theme.php']]], - ['supportedtypes',['supportedTypes',['../classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da',1,'photo_driver\supportedTypes()'],['../classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd',1,'photo_gd\supportedTypes()'],['../classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7',1,'photo_imagick\supportedTypes()']]], - ['sync_5fdirectories',['sync_directories',['../dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6',1,'dir_fns.php']]], - ['sync_5flocations',['sync_locations',['../zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254',1,'zot.php']]], - ['system_5fdown',['system_down',['../system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa',1,'system_unavailable.php']]], - ['system_5funavailable',['system_unavailable',['../boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0',1,'boot.php']]], - ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] -]; diff --git a/doc/html/search/all_74.html b/doc/html/search/all_74.html deleted file mode 100644 index c646aeffc..000000000 --- a/doc/html/search/all_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js deleted file mode 100644 index b9cdb9888..000000000 --- a/doc/html/search/all_74.js +++ /dev/null @@ -1,83 +0,0 @@ -var searchData= -[ - ['t',['t',['../language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96',1,'language.php']]], - ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], - ['tag_5fsort_5flength',['tag_sort_length',['../text_8php.html#ac2ff88e800f74b22e9cc091c10809c54',1,'text.php']]], - ['tagadelic',['tagadelic',['../taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a',1,'taxonomy.php']]], - ['tagblock',['tagblock',['../taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2',1,'taxonomy.php']]], - ['tagger_2ephp',['tagger.php',['../tagger_8php.html',1,'']]], - ['tagger_5fcontent',['tagger_content',['../tagger_8php.html#a0e4a3eb177d1684553c547503d67161c',1,'tagger.php']]], - ['tagrm_2ephp',['tagrm.php',['../tagrm_8php.html',1,'']]], - ['tagrm_5fcontent',['tagrm_content',['../tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a',1,'tagrm.php']]], - ['tagrm_5fpost',['tagrm_post',['../tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78',1,'tagrm.php']]], - ['tags_5fsort',['tags_sort',['../taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43',1,'taxonomy.php']]], - ['taxonomy_2ephp',['taxonomy.php',['../taxonomy_8php.html',1,'']]], - ['template',['Template',['../classTemplate.html',1,'']]], - ['template_5fbuild_5fpath',['TEMPLATE_BUILD_PATH',['../boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1',1,'boot.php']]], - ['template_5fengine',['template_engine',['../classApp.html#a94a1ed2dc493c58612d17035b74ae736',1,'App']]], - ['template_5fescape',['template_escape',['../template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5',1,'template_processor.php']]], - ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], - ['template_5funescape',['template_unescape',['../template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e',1,'template_processor.php']]], - ['term_5fbookmark',['TERM_BOOKMARK',['../boot_8php.html#a115faf8797718c3165498abbd6895843',1,'boot.php']]], - ['term_5fcategory',['TERM_CATEGORY',['../boot_8php.html#af33d1b2e98a1e21af672005525d46dfe',1,'boot.php']]], - ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], - ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], - ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], - ['term_5fobj_5fapp',['TERM_OBJ_APP',['../boot_8php.html#ace6d70ac290397ddd40e561fd0831858',1,'boot.php']]], - ['term_5fobj_5fchannel',['TERM_OBJ_CHANNEL',['../boot_8php.html#a8892374789fd261eb32a7969d934a14a',1,'boot.php']]], - ['term_5fobj_5fobject',['TERM_OBJ_OBJECT',['../boot_8php.html#a882b666adfe21f035a0f8c02806066d6',1,'boot.php']]], - ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], - ['term_5fobj_5fpost',['TERM_OBJ_POST',['../boot_8php.html#a9eeb8989272d5ff804a616898bb13659',1,'boot.php']]], - ['term_5fobj_5fprofile',['TERM_OBJ_PROFILE',['../boot_8php.html#aead84fa27d7516b855220fe004964a45',1,'boot.php']]], - ['term_5fobj_5fthing',['TERM_OBJ_THING',['../boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe',1,'boot.php']]], - ['term_5fpcategory',['TERM_PCATEGORY',['../boot_8php.html#a45b12aefab9675baffc7a07a09486db8',1,'boot.php']]], - ['term_5fquery',['term_query',['../taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c',1,'taxonomy.php']]], - ['term_5fsavedsearch',['TERM_SAVEDSEARCH',['../boot_8php.html#abd7bb40da9cc073297e49736b338ca07',1,'boot.php']]], - ['term_5fthing',['TERM_THING',['../boot_8php.html#a0d877df1e20bae765e1708be50f6b503',1,'boot.php']]], - ['term_5funknown',['TERM_UNKNOWN',['../boot_8php.html#a0c59dde058efebbc66520d136cbd1631',1,'boot.php']]], - ['termtype',['termtype',['../items_8php.html#ad34827ed330898456783fb14c7b46154',1,'items.php']]], - ['text_2ephp',['text.php',['../text_8php.html',1,'']]], - ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], - ['theme_2ephp',['theme.php',['../view_2theme_2apw_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2mytheme_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2redbasic_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html',1,'']]], - ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], - ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], - ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], - ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], - ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], - ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], - ['thing_5fcontent',['thing_content',['../thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b',1,'thing.php']]], - ['thing_5finit',['thing_init',['../thing_8php.html#a8be23b1d475ec3d9291999221c674c80',1,'thing.php']]], - ['timesel',['timesel',['../datetime_8php.html#a3f239f94e23335d860b148958d87a093',1,'datetime.php']]], - ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], - ['title_5fis_5fbody',['title_is_body',['../items_8php.html#aa371905f0a211b307cb3f7188c6cba04',1,'items.php']]], - ['todo_20list',['Todo List',['../todo.html',1,'']]], - ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], - ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], - ['toggle_5fsafesearch_2ephp',['toggle_safesearch.php',['../toggle__safesearch_8php.html',1,'']]], - ['toggle_5fsafesearch_5finit',['toggle_safesearch_init',['../toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79',1,'toggle_safesearch.php']]], - ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], - ['tpldebug_2ephp',['tpldebug.php',['../tpldebug_8php.html',1,'']]], - ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]], - ['translate_5fscope',['translate_scope',['../items_8php.html#aabfaa193b83154c2a81e91284e5d5e59',1,'items.php']]], - ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], - ['trim_5fmessage',['trim_message',['../po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334',1,'po2php.php']]], - ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], - ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], - ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], - ['tt',['tt',['../language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997',1,'language.php']]], - ['typo_2ephp',['typo.php',['../typo_8php.html',1,'']]], - ['typohelper_2ephp',['typohelper.php',['../typohelper_8php.html',1,'']]] -]; diff --git a/doc/html/search/all_75.html b/doc/html/search/all_75.html deleted file mode 100644 index 550133a97..000000000 --- a/doc/html/search/all_75.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js deleted file mode 100644 index 601fce223..000000000 --- a/doc/html/search/all_75.js +++ /dev/null @@ -1,57 +0,0 @@ -var searchData= -[ - ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], - ['uexport_5fcontent',['uexport_content',['../uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84',1,'uexport.php']]], - ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], - ['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']]], - ['unregister_5fhook',['unregister_hook',['../plugin_8php.html#a56f71fe5adf9586ce950523d8180443e',1,'plugin.php']]], - ['unxmlify',['unxmlify',['../text_8php.html#a1360fed7f918d859daaca1c9f384f9af',1,'text.php']]], - ['update_5fbirthdays',['update_birthdays',['../datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826',1,'datetime.php']]], - ['update_5fchannel_2ephp',['update_channel.php',['../update__channel_8php.html',1,'']]], - ['update_5fchannel_5fcontent',['update_channel_content',['../update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba',1,'update_channel.php']]], - ['update_5fchannels_5factive_5fhalfyear_5fstat',['update_channels_active_halfyear_stat',['../statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6',1,'statistics_fns.php']]], - ['update_5fchannels_5factive_5fmonthly_5fstat',['update_channels_active_monthly_stat',['../statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe',1,'statistics_fns.php']]], - ['update_5fchannels_5ftotal_5fstat',['update_channels_total_stat',['../statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c',1,'statistics_fns.php']]], - ['update_5fdirectory_5fentry',['update_directory_entry',['../dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13',1,'dir_fns.php']]], - ['update_5fdisplay_2ephp',['update_display.php',['../update__display_8php.html',1,'']]], - ['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]], - ['update_5ffailed',['UPDATE_FAILED',['../boot_8php.html#a75fc600186b13c3b25e661afefb5eac8',1,'boot.php']]], - ['update_5ffeed_5fitem',['update_feed_item',['../items_8php.html#a9b449eeae50003414b8b30ca927af434',1,'items.php']]], - ['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_5fhome_2ephp',['update_home.php',['../update__home_8php.html',1,'']]], - ['update_5fhome_5fcontent',['update_home_content',['../update__home_8php.html#a668340089acd150b830134476a647d05',1,'update_home.php']]], - ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], - ['update_5flocal_5fposts_5fstat',['update_local_posts_stat',['../statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa',1,'statistics_fns.php']]], - ['update_5fmodtime',['update_modtime',['../zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd',1,'zot.php']]], - ['update_5fnetwork_2ephp',['update_network.php',['../update__network_8php.html',1,'']]], - ['update_5fnetwork_5fcontent',['update_network_content',['../update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41',1,'update_network.php']]], - ['update_5fqueue_5ftime',['update_queue_time',['../queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1',1,'queue_fn.php']]], - ['update_5fremote_5fid',['update_remote_id',['../items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6',1,'items.php']]], - ['update_5fsearch_2ephp',['update_search.php',['../update__search_8php.html',1,'']]], - ['update_5fsearch_5fcontent',['update_search_content',['../update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52',1,'update_search.php']]], - ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]], - ['update_5fsuggestions',['update_suggestions',['../socgraph_8php.html#a790690bb1a1d02483fe31632a160144d',1,'socgraph.php']]], - ['updatetpl',['updatetpl',['../namespaceupdatetpl.html',1,'']]], - ['updatetpl_2epy',['updatetpl.py',['../updatetpl_8py.html',1,'']]], - ['upgrade_5fbool_5fmessage',['upgrade_bool_message',['../account_8php.html#a754d7f53b3abc557b753c057dc4e021d',1,'account.php']]], - ['upgrade_5flink',['upgrade_link',['../account_8php.html#a4fc13e528367f510fcb6d8bbfc559040',1,'account.php']]], - ['upgrade_5fmessage',['upgrade_message',['../account_8php.html#a901657dd078e070516cf97285e0bada7',1,'account.php']]], - ['upload',['upload',['../classeasywebdav_1_1client_1_1Client.html#a0a5c361cb58763f5a363f786480c29cc',1,'easywebdav::client::Client']]], - ['user',['USER',['../namespacezotsh.html#a12660918ec1a79487c98172e0d74d064',1,'zotsh']]], - ['user_5fallow',['user_allow',['../account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1',1,'account.php']]], - ['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',['../text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb',1,'text.php']]], - ['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_76.html b/doc/html/search/all_76.html deleted file mode 100644 index 50b86daa0..000000000 --- a/doc/html/search/all_76.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_76.js b/doc/html/search/all_76.js deleted file mode 100644 index b196ae4f4..000000000 --- a/doc/html/search/all_76.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['valid_5femail',['valid_email',['../text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb',1,'text.php']]], - ['validate_5fchannelname',['validate_channelname',['../identity_8php.html#af2802bc13a00a17b867bba7978ba8f58',1,'identity.php']]], - ['validate_5femail',['validate_email',['../include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02',1,'network.php']]], - ['validate_5furl',['validate_url',['../include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2',1,'network.php']]], - ['validateuserpass',['validateUserPass',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6ece02655b780469e59e204c5979a624',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['var_5freplace',['var_replace',['../classTemplate.html#abbc484016ddf5d818f55b823cae6feb0',1,'Template']]], - ['vcard_5ffrom_5fxchan',['vcard_from_xchan',['../Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960',1,'Contact.php']]], - ['verify_5femail_5faddress',['verify_email_address',['../account_8php.html#acd6b8d2124ba5ea4f4794d2c58ae8bf5',1,'account.php']]], - ['verify_5fssl',['VERIFY_SSL',['../namespacezotsh.html#a9b17c9ddf6c3b49c00d74ba46f54398e',1,'zotsh']]], - ['view_2ephp',['view.php',['../view_8php.html',1,'']]], - ['view_5finit',['view_init',['../view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e',1,'view.php']]], - ['viewconnections_2ephp',['viewconnections.php',['../viewconnections_8php.html',1,'']]], - ['viewconnections_5fcontent',['viewconnections_content',['../viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776',1,'viewconnections.php']]], - ['viewconnections_5finit',['viewconnections_init',['../viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330',1,'viewconnections.php']]], - ['viewsrc_2ephp',['viewsrc.php',['../viewsrc_8php.html',1,'']]], - ['viewsrc_5fcontent',['viewsrc_content',['../viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4',1,'viewsrc.php']]], - ['visible_5factivity',['visible_activity',['../conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3',1,'conversation.php']]], - ['vnotify_5falert',['VNOTIFY_ALERT',['../boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f',1,'boot.php']]], - ['vnotify_5fbirthday',['VNOTIFY_BIRTHDAY',['../boot_8php.html#ac89396b9144391acd08d6d0f9b332220',1,'boot.php']]], - ['vnotify_5fchannel',['VNOTIFY_CHANNEL',['../boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe',1,'boot.php']]], - ['vnotify_5fevent',['VNOTIFY_EVENT',['../boot_8php.html#ad94aca4c260b8a892397786201dc4664',1,'boot.php']]], - ['vnotify_5feventtoday',['VNOTIFY_EVENTTODAY',['../boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9',1,'boot.php']]], - ['vnotify_5finfo',['VNOTIFY_INFO',['../boot_8php.html#a37281c30bd92cecb499878d6778c570f',1,'boot.php']]], - ['vnotify_5fintro',['VNOTIFY_INTRO',['../boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71',1,'boot.php']]], - ['vnotify_5fmail',['VNOTIFY_MAIL',['../boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3',1,'boot.php']]], - ['vnotify_5fnetwork',['VNOTIFY_NETWORK',['../boot_8php.html#a997614f25e58f8313641e1eb0109fd10',1,'boot.php']]], - ['vnotify_5fregister',['VNOTIFY_REGISTER',['../boot_8php.html#ae09767b94688657978ff9366ec63684b',1,'boot.php']]], - ['vnotify_5fsystem',['VNOTIFY_SYSTEM',['../boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1',1,'boot.php']]], - ['vote_2ephp',['vote.php',['../vote_8php.html',1,'']]], - ['vote_5fcontent',['vote_content',['../vote_8php.html#a6aa67489bf458ca5e3206e46dac68596',1,'vote.php']]], - ['vote_5finit',['vote_init',['../vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2',1,'vote.php']]], - ['vote_5fpost',['vote_post',['../vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2',1,'vote.php']]] -]; diff --git a/doc/html/search/all_77.html b/doc/html/search/all_77.html deleted file mode 100644 index 55d714292..000000000 --- a/doc/html/search/all_77.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js deleted file mode 100644 index 217612592..000000000 --- a/doc/html/search/all_77.js +++ /dev/null @@ -1,57 +0,0 @@ -var searchData= -[ - ['wall_5fattach_2ephp',['wall_attach.php',['../wall__attach_8php.html',1,'']]], - ['wall_5fattach_5fpost',['wall_attach_post',['../wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653',1,'wall_attach.php']]], - ['wall_5fupload_2ephp',['wall_upload.php',['../wall__upload_8php.html',1,'']]], - ['wall_5fupload_5fpost',['wall_upload_post',['../wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f',1,'wall_upload.php']]], - ['webdavexception',['WebdavException',['../classeasywebdav_1_1client_1_1WebdavException.html',1,'easywebdav::client']]], - ['webfinger_2ephp',['webfinger.php',['../webfinger_8php.html',1,'']]], - ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], - ['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']]], - ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]], - ['widedarkness_2ephp',['widedarkness.php',['../widedarkness_8php.html',1,'']]], - ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], - ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], - ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], - ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], - ['widget_5fcatcloud_5fwall',['widget_catcloud_wall',['../widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5',1,'widgets.php']]], - ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], - ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], - ['widget_5fclock',['widget_clock',['../widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a',1,'widgets.php']]], - ['widget_5fcollections',['widget_collections',['../widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f',1,'widgets.php']]], - ['widget_5fdesign_5ftools',['widget_design_tools',['../widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b',1,'widgets.php']]], - ['widget_5fdirsafemode',['widget_dirsafemode',['../widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091',1,'widgets.php']]], - ['widget_5fdirsort',['widget_dirsort',['../widgets_8php.html#a95c06bc9be133e89768746302d2ac395',1,'widgets.php']]], - ['widget_5fdirtags',['widget_dirtags',['../widgets_8php.html#a08035db02ff6a23260146b4c64153422',1,'widgets.php']]], - ['widget_5ffiler',['widget_filer',['../widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0',1,'widgets.php']]], - ['widget_5ffindpeople',['widget_findpeople',['../widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2',1,'widgets.php']]], - ['widget_5ffollow',['widget_follow',['../widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd',1,'widgets.php']]], - ['widget_5ffullprofile',['widget_fullprofile',['../widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165',1,'widgets.php']]], - ['widget_5fitem',['widget_item',['../widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5',1,'widgets.php']]], - ['widget_5fmailmenu',['widget_mailmenu',['../widgets_8php.html#afa2e55a78f95667a6da082efac7fec74',1,'widgets.php']]], - ['widget_5fmenu_5fpreview',['widget_menu_preview',['../widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013',1,'widgets.php']]], - ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], - ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], - ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], - ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], - ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], - ['widget_5fpubsites',['widget_pubsites',['../widgets_8php.html#afc7a579877414f4eb6f59698d3f69492',1,'widgets.php']]], - ['widget_5frandom_5fblock',['widget_random_block',['../widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e',1,'widgets.php']]], - ['widget_5frating',['widget_rating',['../widgets_8php.html#a7d0724165067077ff46484e4610e4323',1,'widgets.php']]], - ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], - ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], - ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], - ['widget_5fsuggestions',['widget_suggestions',['../widgets_8php.html#a0d404276fedc59f5038cf5c085028326',1,'widgets.php']]], - ['widget_5ftagcloud',['widget_tagcloud',['../widgets_8php.html#a6dbc227aac750774284ee39c45f0a200',1,'widgets.php']]], - ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], - ['widget_5fvcard',['widget_vcard',['../widgets_8php.html#abe03366fd22fd27d683518fa0765da50',1,'widgets.php']]], - ['widgets_2ephp',['widgets.php',['../widgets_8php.html',1,'']]], - ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]], - ['wtagblock',['wtagblock',['../taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287',1,'taxonomy.php']]] -]; diff --git a/doc/html/search/all_78.html b/doc/html/search/all_78.html deleted file mode 100644 index 39075d44e..000000000 --- a/doc/html/search/all_78.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_78.js b/doc/html/search/all_78.js deleted file mode 100644 index ed3ff2a2d..000000000 --- a/doc/html/search/all_78.js +++ /dev/null @@ -1,27 +0,0 @@ -var searchData= -[ - ['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']]], - ['xchan_5fflags_5fcensored',['XCHAN_FLAGS_CENSORED',['../boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e',1,'boot.php']]], - ['xchan_5fflags_5fdeleted',['XCHAN_FLAGS_DELETED',['../boot_8php.html#a9ea1290e00c6d40684892047f2c778a9',1,'boot.php']]], - ['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']]], - ['xchan_5fquery',['xchan_query',['../text_8php.html#a905c3895feb6f276df23f07f16f9bb52',1,'text.php']]], - ['xchan_5fstore',['xchan_store',['../hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b',1,'hubloc.php']]], - ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], - ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], - ['xmlify',['xmlify',['../text_8php.html#aaed4413ed8918838b517e3b2fafaea0d',1,'text.php']]], - ['xpoco_2ephp',['xpoco.php',['../xpoco_8php.html',1,'']]], - ['xpoco_5finit',['xpoco_init',['../xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2',1,'xpoco.php']]], - ['xrd_2ephp',['xrd.php',['../xrd_8php.html',1,'']]], - ['xrd_5finit',['xrd_init',['../xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270',1,'xrd.php']]], - ['xref_2ephp',['xref.php',['../xref_8php.html',1,'']]], - ['xref_5finit',['xref_init',['../xref_8php.html#a9bee399213b8de8226b0d60834307473',1,'xref.php']]] -]; diff --git a/doc/html/search/all_79.html b/doc/html/search/all_79.html deleted file mode 100644 index 033719a1b..000000000 --- a/doc/html/search/all_79.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_79.js b/doc/html/search/all_79.js deleted file mode 100644 index 5180587cc..000000000 --- a/doc/html/search/all_79.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['yolo_5finit',['yolo_init',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da',1,'theme.php']]] -]; diff --git a/doc/html/search/all_7a.html b/doc/html/search/all_7a.html deleted file mode 100644 index 5d99ff761..000000000 --- a/doc/html/search/all_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/all_7a.js b/doc/html/search/all_7a.js deleted file mode 100644 index 63ed10cea..000000000 --- a/doc/html/search/all_7a.js +++ /dev/null @@ -1,46 +0,0 @@ -var searchData= -[ - ['z_5fbirthday',['z_birthday',['../datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'datetime.php']]], - ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], - ['z_5fget_5ftemp_5fdir',['z_get_temp_dir',['../boot_8php.html#a59717d02602a4babf2a54da8b33d93a5',1,'boot.php']]], - ['z_5fget_5fupload_5fdir',['z_get_upload_dir',['../boot_8php.html#a476c499e15caf75972fed134a8f23b2e',1,'boot.php']]], - ['z_5finput_5ffilter',['z_input_filter',['../text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f',1,'text.php']]], - ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], - ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], - ['z_5fpost_5furl',['z_post_url',['../include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc',1,'network.php']]], - ['z_5fpost_5furl_5fjson',['z_post_url_json',['../include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b',1,'network.php']]], - ['z_5freaddir',['z_readdir',['../include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909',1,'attach.php']]], - ['z_5froot',['z_root',['../boot_8php.html#add517a0958ac684792c62142a3877f81',1,'boot.php']]], - ['zcurl_5ftimeout',['ZCURL_TIMEOUT',['../boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af',1,'boot.php']]], - ['zfinger_2ephp',['zfinger.php',['../zfinger_8php.html',1,'']]], - ['zfinger_5finit',['zfinger_init',['../zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0',1,'zfinger.php']]], - ['zid',['zid',['../identity_8php.html#a5b815330f3d177ab383af37a6c12e532',1,'identity.php']]], - ['zid_5finit',['zid_init',['../identity_8php.html#a680fbafc2db023c5b1309e0180e81315',1,'identity.php']]], - ['zidify_5fcallback',['zidify_callback',['../text_8php.html#a405afe814a23f3bd94d826101aa168ab',1,'text.php']]], - ['zidify_5fimg_5fcallback',['zidify_img_callback',['../text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4',1,'text.php']]], - ['zidify_5flinks',['zidify_links',['../text_8php.html#a29988052f3944111def3b6aaf2c7a8f6',1,'text.php']]], - ['zot_2ephp',['zot.php',['../zot_8php.html',1,'']]], - ['zot_5fbuild_5fpacket',['zot_build_packet',['../zot_8php.html#a084c581d534e7e3b759488b46602288f',1,'zot.php']]], - ['zot_5fencode_5flocations',['zot_encode_locations',['../zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca',1,'zot.php']]], - ['zot_5ffeed',['zot_feed',['../items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92',1,'items.php']]], - ['zot_5ffetch',['zot_fetch',['../zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea',1,'zot.php']]], - ['zot_5ffinger',['zot_finger',['../zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7',1,'zot.php']]], - ['zot_5fget_5fhublocs',['zot_get_hublocs',['../zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7',1,'zot.php']]], - ['zot_5fgethub',['zot_gethub',['../zot_8php.html#a55056e863a7860bc0cf922e78fcce073',1,'zot.php']]], - ['zot_5fimport',['zot_import',['../zot_8php.html#aeea071f17e306fe3d0c488551906bfab',1,'zot.php']]], - ['zot_5fnew_5fuid',['zot_new_uid',['../zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7',1,'zot.php']]], - ['zot_5fprocess_5fmessage_5frequest',['zot_process_message_request',['../zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac',1,'zot.php']]], - ['zot_5fprocess_5fresponse',['zot_process_response',['../zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03',1,'zot.php']]], - ['zot_5frefresh',['zot_refresh',['../zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c',1,'zot.php']]], - ['zot_5fregister_5fhub',['zot_register_hub',['../zot_8php.html#a5bcdfef419b16075a0eca990956223dc',1,'zot.php']]], - ['zot_5frevision',['ZOT_REVISION',['../boot_8php.html#a36b31575f992a10b5927b76efba9362e',1,'boot.php']]], - ['zot_5fzot',['zot_zot',['../zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142',1,'zot.php']]], - ['zotdriver',['ZotDriver',['../classZotDriver.html',1,'']]], - ['zotfeed_2ephp',['zotfeed.php',['../zotfeed_8php.html',1,'']]], - ['zotfeed_5finit',['zotfeed_init',['../zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac',1,'zotfeed.php']]], - ['zotsh',['ZotSH',['../classzotsh_1_1ZotSH.html',1,'zotsh']]], - ['zotsh',['zotsh',['../namespacezotsh.html',1,'zotsh'],['../namespacezotsh.html#a0004a83d69a4b175b6829d8377305df2',1,'zotsh.zotsh()']]], - ['zotsh_2epy',['zotsh.py',['../zotsh_8py.html',1,'']]], - ['zping_2ephp',['zping.php',['../zping_8php.html',1,'']]], - ['zping_5fcontent',['zping_content',['../zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75',1,'zping.php']]] -]; diff --git a/doc/html/search/classes_61.html b/doc/html/search/classes_61.html deleted file mode 100644 index a4c07d590..000000000 --- a/doc/html/search/classes_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_61.js b/doc/html/search/classes_61.js deleted file mode 100644 index 9703f2f97..000000000 --- a/doc/html/search/classes_61.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['app',['App',['../classApp.html',1,'']]] -]; diff --git a/doc/html/search/classes_62.html b/doc/html/search/classes_62.html deleted file mode 100644 index 04a59d2ef..000000000 --- a/doc/html/search/classes_62.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_62.js b/doc/html/search/classes_62.js deleted file mode 100644 index 1aa035405..000000000 --- a/doc/html/search/classes_62.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['baseobject',['BaseObject',['../classBaseObject.html',1,'']]] -]; diff --git a/doc/html/search/classes_63.html b/doc/html/search/classes_63.html deleted file mode 100644 index def37a7e1..000000000 --- a/doc/html/search/classes_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_63.js b/doc/html/search/classes_63.js deleted file mode 100644 index c89a7108d..000000000 --- a/doc/html/search/classes_63.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['cache',['Cache',['../classCache.html',1,'']]], - ['client',['Client',['../classeasywebdav_1_1client_1_1Client.html',1,'easywebdav::client']]], - ['commandnotfound',['CommandNotFound',['../classzotsh_1_1CommandNotFound.html',1,'zotsh']]], - ['connectionfailed',['ConnectionFailed',['../classeasywebdav_1_1client_1_1ConnectionFailed.html',1,'easywebdav::client']]], - ['conversation',['Conversation',['../classConversation.html',1,'']]] -]; diff --git a/doc/html/search/classes_64.html b/doc/html/search/classes_64.html deleted file mode 100644 index 4092564e3..000000000 --- a/doc/html/search/classes_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_64.js b/doc/html/search/classes_64.js deleted file mode 100644 index 439607209..000000000 --- a/doc/html/search/classes_64.js +++ /dev/null @@ -1,7 +0,0 @@ -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_5fpostgres',['dba_postgres',['../classdba__postgres.html',1,'']]] -]; diff --git a/doc/html/search/classes_65.html b/doc/html/search/classes_65.html deleted file mode 100644 index 4f441f9de..000000000 --- a/doc/html/search/classes_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_65.js b/doc/html/search/classes_65.js deleted file mode 100644 index ad80724c8..000000000 --- a/doc/html/search/classes_65.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['enotify',['enotify',['../classenotify.html',1,'']]] -]; diff --git a/doc/html/search/classes_66.html b/doc/html/search/classes_66.html deleted file mode 100644 index b83e5933f..000000000 --- a/doc/html/search/classes_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_66.js b/doc/html/search/classes_66.js deleted file mode 100644 index b7fd611b8..000000000 --- a/doc/html/search/classes_66.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], - ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], - ['friendicasmarty',['FriendicaSmarty',['../classFriendicaSmarty.html',1,'']]], - ['friendicasmartyengine',['FriendicaSmartyEngine',['../classFriendicaSmartyEngine.html',1,'']]] -]; diff --git a/doc/html/search/classes_69.html b/doc/html/search/classes_69.html deleted file mode 100644 index 7a0d01368..000000000 --- a/doc/html/search/classes_69.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_69.js b/doc/html/search/classes_69.js deleted file mode 100644 index a9767d06a..000000000 --- a/doc/html/search/classes_69.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['import',['Import',['../classRedMatrix_1_1Import_1_1Import.html',1,'RedMatrix::Import']]], - ['item',['Item',['../classItem.html',1,'']]], - ['itemplateengine',['ITemplateEngine',['../interfaceITemplateEngine.html',1,'']]] -]; diff --git a/doc/html/search/classes_6f.html b/doc/html/search/classes_6f.html deleted file mode 100644 index b6efe28a3..000000000 --- a/doc/html/search/classes_6f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_6f.js b/doc/html/search/classes_6f.js deleted file mode 100644 index 50cf253c7..000000000 --- a/doc/html/search/classes_6f.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['operationfailed',['OperationFailed',['../classeasywebdav_1_1client_1_1OperationFailed.html',1,'easywebdav::client']]] -]; diff --git a/doc/html/search/classes_70.html b/doc/html/search/classes_70.html deleted file mode 100644 index 7c5b3e595..000000000 --- a/doc/html/search/classes_70.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_70.js b/doc/html/search/classes_70.js deleted file mode 100644 index f59cd1115..000000000 --- a/doc/html/search/classes_70.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['photo_5fdriver',['photo_driver',['../classphoto__driver.html',1,'']]], - ['photo_5fgd',['photo_gd',['../classphoto__gd.html',1,'']]], - ['photo_5fimagick',['photo_imagick',['../classphoto__imagick.html',1,'']]], - ['protodriver',['ProtoDriver',['../classProtoDriver.html',1,'']]] -]; diff --git a/doc/html/search/classes_72.html b/doc/html/search/classes_72.html deleted file mode 100644 index 03a77208f..000000000 --- a/doc/html/search/classes_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_72.js b/doc/html/search/classes_72.js deleted file mode 100644 index e437f3cef..000000000 --- a/doc/html/search/classes_72.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['redbasicauth',['RedBasicAuth',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html',1,'RedMatrix::RedDAV']]], - ['redbrowser',['RedBrowser',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html',1,'RedMatrix::RedDAV']]], - ['reddirectory',['RedDirectory',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html',1,'RedMatrix::RedDAV']]], - ['redfile',['RedFile',['../classRedMatrix_1_1RedDAV_1_1RedFile.html',1,'RedMatrix::RedDAV']]] -]; diff --git a/doc/html/search/classes_74.html b/doc/html/search/classes_74.html deleted file mode 100644 index 4b0fdaa16..000000000 --- a/doc/html/search/classes_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_74.js b/doc/html/search/classes_74.js deleted file mode 100644 index a8854d502..000000000 --- a/doc/html/search/classes_74.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['template',['Template',['../classTemplate.html',1,'']]] -]; diff --git a/doc/html/search/classes_77.html b/doc/html/search/classes_77.html deleted file mode 100644 index dd06de993..000000000 --- a/doc/html/search/classes_77.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_77.js b/doc/html/search/classes_77.js deleted file mode 100644 index 9ed6ca52c..000000000 --- a/doc/html/search/classes_77.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['webdavexception',['WebdavException',['../classeasywebdav_1_1client_1_1WebdavException.html',1,'easywebdav::client']]] -]; diff --git a/doc/html/search/classes_7a.html b/doc/html/search/classes_7a.html deleted file mode 100644 index d9534cdbc..000000000 --- a/doc/html/search/classes_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/classes_7a.js b/doc/html/search/classes_7a.js deleted file mode 100644 index feba028cc..000000000 --- a/doc/html/search/classes_7a.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['zotdriver',['ZotDriver',['../classZotDriver.html',1,'']]], - ['zotsh',['ZotSH',['../classzotsh_1_1ZotSH.html',1,'zotsh']]] -]; diff --git a/doc/html/search/close.png b/doc/html/search/close.png deleted file mode 100644 index 9342d3dfe..000000000 Binary files a/doc/html/search/close.png and /dev/null differ diff --git a/doc/html/search/files_5f.html b/doc/html/search/files_5f.html deleted file mode 100644 index b6c444603..000000000 --- a/doc/html/search/files_5f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_5f.js b/doc/html/search/files_5f.js deleted file mode 100644 index fb1e6f788..000000000 --- a/doc/html/search/files_5f.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['_5f_5finit_5f_5f_2epy',['__init__.py',['../____init_____8py.html',1,'']]], - ['_5f_5fversion_5f_5f_2epy',['__version__.py',['../____version_____8py.html',1,'']]], - ['_5fwell_5fknown_2ephp',['_well_known.php',['../__well__known_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_61.html b/doc/html/search/files_61.html deleted file mode 100644 index 0aa6beb10..000000000 --- a/doc/html/search/files_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_61.js b/doc/html/search/files_61.js deleted file mode 100644 index eb415f4db..000000000 --- a/doc/html/search/files_61.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['account_2ephp',['account.php',['../account_8php.html',1,'']]], - ['achievements_2ephp',['achievements.php',['../achievements_8php.html',1,'']]], - ['acl_2ephp',['acl.php',['../acl_8php.html',1,'']]], - ['acl_5fselectors_2ephp',['acl_selectors.php',['../acl__selectors_8php.html',1,'']]], - ['activities_2ephp',['activities.php',['../activities_8php.html',1,'']]], - ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], - ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], - ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], - ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], - ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], - ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], - ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], - ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], - ['auth_2ephp',['auth.php',['../auth_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_62.html b/doc/html/search/files_62.html deleted file mode 100644 index 86dfe39e6..000000000 --- a/doc/html/search/files_62.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_62.js b/doc/html/search/files_62.js deleted file mode 100644 index e8e37db19..000000000 --- a/doc/html/search/files_62.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['baseobject_2ephp',['BaseObject.php',['../BaseObject_8php.html',1,'']]], - ['bb2diaspora_2ephp',['bb2diaspora.php',['../bb2diaspora_8php.html',1,'']]], - ['bbcode_2ephp',['bbcode.php',['../bbcode_8php.html',1,'']]], - ['block_2ephp',['block.php',['../block_8php.html',1,'']]], - ['blocks_2ephp',['blocks.php',['../blocks_8php.html',1,'']]], - ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], - ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], - ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], - ['boxy_2ephp',['boxy.php',['../boxy_8php.html',1,'']]], - ['bs_2ddefault_2ephp',['BS-Default.php',['../BS-Default_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_63.html b/doc/html/search/files_63.html deleted file mode 100644 index 788d523a8..000000000 --- a/doc/html/search/files_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_63.js b/doc/html/search/files_63.js deleted file mode 100644 index f7286ba5f..000000000 --- a/doc/html/search/files_63.js +++ /dev/null @@ -1,31 +0,0 @@ -var searchData= -[ - ['cache_2ephp',['cache.php',['../cache_8php.html',1,'']]], - ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], - ['chanview_2ephp',['chanview.php',['../chanview_8php.html',1,'']]], - ['chat_2ephp',['chat.php',['../mod_2chat_8php.html',1,'']]], - ['chat_2ephp',['chat.php',['../include_2chat_8php.html',1,'']]], - ['chatsvc_2ephp',['chatsvc.php',['../chatsvc_8php.html',1,'']]], - ['choklet_2ephp',['choklet.php',['../choklet_8php.html',1,'']]], - ['cli_5fstartup_2ephp',['cli_startup.php',['../cli__startup_8php.html',1,'']]], - ['cli_5fsuggest_2ephp',['cli_suggest.php',['../cli__suggest_8php.html',1,'']]], - ['client_2epy',['client.py',['../client_8py.html',1,'']]], - ['cloud_2ephp',['cloud.php',['../cloud_8php.html',1,'']]], - ['comanche_2ephp',['comanche.php',['../comanche_8php.html',1,'']]], - ['common_2ephp',['common.php',['../common_8php.html',1,'']]], - ['config_2emd',['config.md',['../config_8md.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2apw_2php_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], - ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]], - ['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]], - ['connedit_2ephp',['connedit.php',['../connedit_8php.html',1,'']]], - ['contact_2ephp',['Contact.php',['../Contact_8php.html',1,'']]], - ['contact_5fselectors_2ephp',['contact_selectors.php',['../contact__selectors_8php.html',1,'']]], - ['contact_5fwidgets_2ephp',['contact_widgets.php',['../contact__widgets_8php.html',1,'']]], - ['contactgroup_2ephp',['contactgroup.php',['../contactgroup_8php.html',1,'']]], - ['conversation_2ephp',['conversation.php',['../conversation_8php.html',1,'']]], - ['conversationobject_2ephp',['ConversationObject.php',['../ConversationObject_8php.html',1,'']]], - ['cronhooks_2ephp',['cronhooks.php',['../cronhooks_8php.html',1,'']]], - ['crypto_2ephp',['crypto.php',['../crypto_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_64.html b/doc/html/search/files_64.html deleted file mode 100644 index 175a900cc..000000000 --- a/doc/html/search/files_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_64.js b/doc/html/search/files_64.js deleted file mode 100644 index b844af86b..000000000 --- a/doc/html/search/files_64.js +++ /dev/null @@ -1,26 +0,0 @@ -var searchData= -[ - ['dark_2ephp',['dark.php',['../dark_8php.html',1,'']]], - ['darkness_2ephp',['darkness.php',['../darkness_8php.html',1,'']]], - ['darknessleftaside_2ephp',['darknessleftaside.php',['../darknessleftaside_8php.html',1,'']]], - ['darknessrightaside_2ephp',['darknessrightaside.php',['../darknessrightaside_8php.html',1,'']]], - ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], - ['dav_2ephp',['dav.php',['../dav_8php.html',1,'']]], - ['db_5fupdate_2ephp',['db_update.php',['../db__update_8php.html',1,'']]], - ['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_2mytheme_2php_2default_8php.html',1,'']]], - ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], - ['delegate_2ephp',['delegate.php',['../delegate_8php.html',1,'']]], - ['deliver_2ephp',['deliver.php',['../deliver_8php.html',1,'']]], - ['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',['../include_2directory_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/files_65.html b/doc/html/search/files_65.html deleted file mode 100644 index 2347de991..000000000 --- a/doc/html/search/files_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_65.js b/doc/html/search/files_65.js deleted file mode 100644 index 206b23f2a..000000000 --- a/doc/html/search/files_65.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['editblock_2ephp',['editblock.php',['../editblock_8php.html',1,'']]], - ['editlayout_2ephp',['editlayout.php',['../editlayout_8php.html',1,'']]], - ['editpost_2ephp',['editpost.php',['../editpost_8php.html',1,'']]], - ['editwebpage_2ephp',['editwebpage.php',['../editwebpage_8php.html',1,'']]], - ['enotify_2ephp',['enotify.php',['../enotify_8php.html',1,'']]], - ['event_2ephp',['event.php',['../event_8php.html',1,'']]], - ['events_2ephp',['events.php',['../events_8php.html',1,'']]], - ['expire_2ephp',['expire.php',['../expire_8php.html',1,'']]], - ['externals_2ephp',['externals.php',['../externals_8php.html',1,'']]], - ['extract_2ephp',['extract.php',['../extract_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_66.html b/doc/html/search/files_66.html deleted file mode 100644 index 70873b352..000000000 --- a/doc/html/search/files_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_66.js b/doc/html/search/files_66.js deleted file mode 100644 index 41bca4490..000000000 --- a/doc/html/search/files_66.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['fbrowser_2ephp',['fbrowser.php',['../fbrowser_8php.html',1,'']]], - ['features_2ephp',['features.php',['../features_8php.html',1,'']]], - ['feed_2ephp',['feed.php',['../feed_8php.html',1,'']]], - ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], - ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], - ['filestorage_2ephp',['filestorage.php',['../filestorage_8php.html',1,'']]], - ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], - ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], - ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], - ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], - ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], - ['fsuggest_2ephp',['fsuggest.php',['../fsuggest_8php.html',1,'']]], - ['full_2ephp',['full.php',['../full_8php.html',1,'']]], - ['functions_2ephp',['functions.php',['../functions_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_67.html b/doc/html/search/files_67.html deleted file mode 100644 index 65d69ddc0..000000000 --- a/doc/html/search/files_67.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_67.js b/doc/html/search/files_67.js deleted file mode 100644 index 3bd29b494..000000000 --- a/doc/html/search/files_67.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['gprobe_2ephp',['gprobe.php',['../gprobe_8php.html',1,'']]], - ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], - ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_68.html b/doc/html/search/files_68.html deleted file mode 100644 index 35734d1fc..000000000 --- a/doc/html/search/files_68.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_68.js b/doc/html/search/files_68.js deleted file mode 100644 index faa72e163..000000000 --- a/doc/html/search/files_68.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['hcard_2ephp',['hcard.php',['../hcard_8php.html',1,'']]], - ['help_2ephp',['help.php',['../help_8php.html',1,'']]], - ['home_2ephp',['home.php',['../home_8php.html',1,'']]], - ['hostxrd_2ephp',['hostxrd.php',['../hostxrd_8php.html',1,'']]], - ['html2bbcode_2ephp',['html2bbcode.php',['../html2bbcode_8php.html',1,'']]], - ['html2plain_2ephp',['html2plain.php',['../html2plain_8php.html',1,'']]], - ['hubloc_2ephp',['hubloc.php',['../hubloc_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_69.html b/doc/html/search/files_69.html deleted file mode 100644 index 4e0baee7a..000000000 --- a/doc/html/search/files_69.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_69.js b/doc/html/search/files_69.js deleted file mode 100644 index 8345e5929..000000000 --- a/doc/html/search/files_69.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['identity_2ephp',['identity.php',['../identity_8php.html',1,'']]], - ['impel_2ephp',['impel.php',['../impel_8php.html',1,'']]], - ['import_2ephp',['import.php',['../import_8php.html',1,'']]], - ['importelm_2ephp',['importelm.php',['../importelm_8php.html',1,'']]], - ['importer_2ephp',['Importer.php',['../Importer_8php.html',1,'']]], - ['invite_2ephp',['invite.php',['../invite_8php.html',1,'']]], - ['item_2ephp',['item.php',['../item_8php.html',1,'']]], - ['itemobject_2ephp',['ItemObject.php',['../ItemObject_8php.html',1,'']]], - ['itemplateengine_2ephp',['ITemplateEngine.php',['../ITemplateEngine_8php.html',1,'']]], - ['items_2ephp',['items.php',['../items_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_6c.html b/doc/html/search/files_6c.html deleted file mode 100644 index 088b17f00..000000000 --- a/doc/html/search/files_6c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_6c.js b/doc/html/search/files_6c.js deleted file mode 100644 index 272421a4f..000000000 --- a/doc/html/search/files_6c.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['lang_2ephp',['lang.php',['../lang_8php.html',1,'']]], - ['language_2ephp',['language.php',['../language_8php.html',1,'']]], - ['layouts_2ephp',['layouts.php',['../layouts_8php.html',1,'']]], - ['like_2ephp',['like.php',['../like_8php.html',1,'']]], - ['lockview_2ephp',['lockview.php',['../lockview_8php.html',1,'']]], - ['locs_2ephp',['locs.php',['../locs_8php.html',1,'']]], - ['login_2ephp',['login.php',['../login_8php.html',1,'']]], - ['lostpass_2ephp',['lostpass.php',['../lostpass_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_6d.html b/doc/html/search/files_6d.html deleted file mode 100644 index 5796e5280..000000000 --- a/doc/html/search/files_6d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_6d.js b/doc/html/search/files_6d.js deleted file mode 100644 index 744784a0b..000000000 --- a/doc/html/search/files_6d.js +++ /dev/null @@ -1,18 +0,0 @@ -var searchData= -[ - ['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]], - ['mail_2ephp',['mail.php',['../mail_8php.html',1,'']]], - ['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]], - ['match_2ephp',['match.php',['../match_8php.html',1,'']]], - ['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]], - ['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]], - ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], - ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], - ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], - ['minimalisticdarkness_2ephp',['minimalisticdarkness.php',['../minimalisticdarkness_8php.html',1,'']]], - ['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]], - ['mod_5fchanview_2ephp',['mod_chanview.php',['../mod__chanview_8php.html',1,'']]], - ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], - ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], - ['msearch_2ephp',['msearch.php',['../msearch_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_6e.html b/doc/html/search/files_6e.html deleted file mode 100644 index def03fe7d..000000000 --- a/doc/html/search/files_6e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_6e.js b/doc/html/search/files_6e.js deleted file mode 100644 index d60286b45..000000000 --- a/doc/html/search/files_6e.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['nav_2ephp',['nav.php',['../nav_8php.html',1,'']]], - ['netgrowth_2ephp',['netgrowth.php',['../netgrowth_8php.html',1,'']]], - ['network_2ephp',['network.php',['../mod_2network_8php.html',1,'']]], - ['network_2ephp',['network.php',['../include_2network_8php.html',1,'']]], - ['new_5fchannel_2ephp',['new_channel.php',['../new__channel_8php.html',1,'']]], - ['none_2ephp',['none.php',['../none_8php.html',1,'']]], - ['notes_2ephp',['notes.php',['../notes_8php.html',1,'']]], - ['notifications_2ephp',['notifications.php',['../notifications_8php.html',1,'']]], - ['notifier_2ephp',['notifier.php',['../notifier_8php.html',1,'']]], - ['notify_2ephp',['notify.php',['../include_2notify_8php.html',1,'']]], - ['notify_2ephp',['notify.php',['../mod_2notify_8php.html',1,'']]], - ['notred_2ephp',['notred.php',['../notred_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_6f.html b/doc/html/search/files_6f.html deleted file mode 100644 index 4f9b7bbdb..000000000 --- a/doc/html/search/files_6f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_6f.js b/doc/html/search/files_6f.js deleted file mode 100644 index 28bf1071e..000000000 --- a/doc/html/search/files_6f.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['oauth_2ephp',['oauth.php',['../oauth_8php.html',1,'']]], - ['oembed_2ephp',['oembed.php',['../mod_2oembed_8php.html',1,'']]], - ['oembed_2ephp',['oembed.php',['../include_2oembed_8php.html',1,'']]], - ['oexchange_2ephp',['oexchange.php',['../oexchange_8php.html',1,'']]], - ['olddefault_2ephp',['olddefault.php',['../olddefault_8php.html',1,'']]], - ['onedirsync_2ephp',['onedirsync.php',['../onedirsync_8php.html',1,'']]], - ['onepoll_2ephp',['onepoll.php',['../onepoll_8php.html',1,'']]], - ['online_2ephp',['online.php',['../online_8php.html',1,'']]], - ['openid_2ephp',['openid.php',['../openid_8php.html',1,'']]], - ['opensearch_2ephp',['opensearch.php',['../opensearch_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_70.html b/doc/html/search/files_70.html deleted file mode 100644 index e159ceaae..000000000 --- a/doc/html/search/files_70.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_70.js b/doc/html/search/files_70.js deleted file mode 100644 index 9b9d3ac87..000000000 --- a/doc/html/search/files_70.js +++ /dev/null @@ -1,41 +0,0 @@ -var searchData= -[ - ['p_2ephp',['p.php',['../p_8php.html',1,'']]], - ['page_2ephp',['page.php',['../page_8php.html',1,'']]], - ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], - ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], - ['passion_2ephp',['passion.php',['../passion_8php.html',1,'']]], - ['passionwide_2ephp',['passionwide.php',['../passionwide_8php.html',1,'']]], - ['pdledit_2ephp',['pdledit.php',['../pdledit_8php.html',1,'']]], - ['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]], - ['photo_2ephp',['photo.php',['../photo_8php.html',1,'']]], - ['photo_5fdriver_2ephp',['photo_driver.php',['../photo__driver_8php.html',1,'']]], - ['photo_5fgd_2ephp',['photo_gd.php',['../photo__gd_8php.html',1,'']]], - ['photo_5fimagick_2ephp',['photo_imagick.php',['../photo__imagick_8php.html',1,'']]], - ['photos_2ephp',['photos.php',['../include_2photos_8php.html',1,'']]], - ['photos_2ephp',['photos.php',['../mod_2photos_8php.html',1,'']]], - ['php_2ephp',['php.php',['../php_8php.html',1,'']]], - ['php2po_2ephp',['php2po.php',['../php2po_8php.html',1,'']]], - ['pine_2ephp',['pine.php',['../pine_8php.html',1,'']]], - ['ping_2ephp',['ping.php',['../ping_8php.html',1,'']]], - ['plugin_2ephp',['plugin.php',['../plugin_8php.html',1,'']]], - ['po2php_2ephp',['po2php.php',['../po2php_8php.html',1,'']]], - ['poco_2ephp',['poco.php',['../poco_8php.html',1,'']]], - ['poke_2ephp',['poke.php',['../poke_8php.html',1,'']]], - ['poll_2ephp',['poll.php',['../poll_8php.html',1,'']]], - ['poller_2ephp',['poller.php',['../poller_8php.html',1,'']]], - ['post_2ephp',['post.php',['../post_8php.html',1,'']]], - ['prate_2ephp',['prate.php',['../prate_8php.html',1,'']]], - ['pretheme_2ephp',['pretheme.php',['../pretheme_8php.html',1,'']]], - ['probe_2ephp',['probe.php',['../include_2probe_8php.html',1,'']]], - ['probe_2ephp',['probe.php',['../mod_2probe_8php.html',1,'']]], - ['profile_2ephp',['profile.php',['../profile_8php.html',1,'']]], - ['profile_5fphoto_2ephp',['profile_photo.php',['../profile__photo_8php.html',1,'']]], - ['profile_5fselectors_2ephp',['profile_selectors.php',['../profile__selectors_8php.html',1,'']]], - ['profiles_2ephp',['profiles.php',['../profiles_8php.html',1,'']]], - ['profperm_2ephp',['profperm.php',['../profperm_8php.html',1,'']]], - ['protodriver_2ephp',['ProtoDriver.php',['../ProtoDriver_8php.html',1,'']]], - ['pubsites_2ephp',['pubsites.php',['../pubsites_8php.html',1,'']]], - ['pubsub_2ephp',['pubsub.php',['../pubsub_8php.html',1,'']]], - ['pubsubhubbub_2ephp',['pubsubhubbub.php',['../pubsubhubbub_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_71.html b/doc/html/search/files_71.html deleted file mode 100644 index a417eff53..000000000 --- a/doc/html/search/files_71.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_71.js b/doc/html/search/files_71.js deleted file mode 100644 index 6a4d7ec81..000000000 --- a/doc/html/search/files_71.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['queue_2ephp',['queue.php',['../queue_8php.html',1,'']]], - ['queue_5ffn_2ephp',['queue_fn.php',['../queue__fn_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_72.html b/doc/html/search/files_72.html deleted file mode 100644 index 573ec112d..000000000 --- a/doc/html/search/files_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js deleted file mode 100644 index 6c14899fe..000000000 --- a/doc/html/search/files_72.js +++ /dev/null @@ -1,28 +0,0 @@ -var searchData= -[ - ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], - ['rate_2ephp',['rate.php',['../rate_8php.html',1,'']]], - ['ratenotif_2ephp',['ratenotif.php',['../ratenotif_8php.html',1,'']]], - ['ratings_2ephp',['ratings.php',['../ratings_8php.html',1,'']]], - ['ratingsearch_2ephp',['ratingsearch.php',['../ratingsearch_8php.html',1,'']]], - ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], - ['readme_2emd',['README.md',['../README_8md.html',1,'']]], - ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], - ['redable_2ephp',['redable.php',['../redable_8php.html',1,'']]], - ['redbasic_2ephp',['redbasic.php',['../redbasic_8php.html',1,'']]], - ['redbasicauth_2ephp',['RedBasicAuth.php',['../RedBasicAuth_8php.html',1,'']]], - ['redbrowser_2ephp',['RedBrowser.php',['../RedBrowser_8php.html',1,'']]], - ['reddav_2ephp',['reddav.php',['../reddav_8php.html',1,'']]], - ['reddirectory_2ephp',['RedDirectory.php',['../RedDirectory_8php.html',1,'']]], - ['redfile_2ephp',['RedFile.php',['../RedFile_8php.html',1,'']]], - ['refimport_2ephp',['refimport.php',['../refimport_8php.html',1,'']]], - ['regdir_2ephp',['regdir.php',['../regdir_8php.html',1,'']]], - ['register_2ephp',['register.php',['../register_8php.html',1,'']]], - ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], - ['regver_2ephp',['regver.php',['../regver_8php.html',1,'']]], - ['removeaccount_2ephp',['removeaccount.php',['../removeaccount_8php.html',1,'']]], - ['removeme_2ephp',['removeme.php',['../removeme_8php.html',1,'']]], - ['rmagic_2ephp',['rmagic.php',['../rmagic_8php.html',1,'']]], - ['rpost_2ephp',['rpost.php',['../rpost_8php.html',1,'']]], - ['rsd_5fxml_2ephp',['rsd_xml.php',['../rsd__xml_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_73.html b/doc/html/search/files_73.html deleted file mode 100644 index bcc9ae6ee..000000000 --- a/doc/html/search/files_73.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_73.js b/doc/html/search/files_73.js deleted file mode 100644 index f49816686..000000000 --- a/doc/html/search/files_73.js +++ /dev/null @@ -1,39 +0,0 @@ -var searchData= -[ - ['search_2ephp',['search.php',['../search_8php.html',1,'']]], - ['search_5fac_2ephp',['search_ac.php',['../search__ac_8php.html',1,'']]], - ['security_2ephp',['security.php',['../security_8php.html',1,'']]], - ['service_5flimits_2ephp',['service_limits.php',['../service__limits_8php.html',1,'']]], - ['session_2ephp',['session.php',['../session_8php.html',1,'']]], - ['settings_2ephp',['settings.php',['../settings_8php.html',1,'']]], - ['setup_2ephp',['setup.php',['../setup_8php.html',1,'']]], - ['share_2ephp',['share.php',['../share_8php.html',1,'']]], - ['sharedwithme_2ephp',['sharedwithme.php',['../sharedwithme_8php.html',1,'']]], - ['simple_5fblack_5fon_5fwhite_2ephp',['simple_black_on_white.php',['../simple__black__on__white_8php.html',1,'']]], - ['simple_5fgreen_5fon_5fblack_2ephp',['simple_green_on_black.php',['../simple__green__on__black_8php.html',1,'']]], - ['simple_5fwhite_5fon_5fblack_2ephp',['simple_white_on_black.php',['../simple__white__on__black_8php.html',1,'']]], - ['siteinfo_2ephp',['siteinfo.php',['../siteinfo_8php.html',1,'']]], - ['sitelist_2ephp',['sitelist.php',['../sitelist_8php.html',1,'']]], - ['smarty_2ephp',['smarty.php',['../smarty_8php.html',1,'']]], - ['smilies_2ephp',['smilies.php',['../smilies_8php.html',1,'']]], - ['socgraph_2ephp',['socgraph.php',['../socgraph_8php.html',1,'']]], - ['sources_2ephp',['sources.php',['../sources_8php.html',1,'']]], - ['spam_2ephp',['spam.php',['../spam_8php.html',1,'']]], - ['sslify_2ephp',['sslify.php',['../sslify_8php.html',1,'']]], - ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], - ['statistics_5ffns_2ephp',['statistics_fns.php',['../statistics__fns_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2redbasic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2mytheme_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../extend_2theme_2deadsuperhero_2minded_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../view_2theme_2apw_2php_2style_8php.html',1,'']]], - ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], - ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], - ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_74.html b/doc/html/search/files_74.html deleted file mode 100644 index 985db8690..000000000 --- a/doc/html/search/files_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js deleted file mode 100644 index ac5b2f1d9..000000000 --- a/doc/html/search/files_74.js +++ /dev/null @@ -1,28 +0,0 @@ -var searchData= -[ - ['tagger_2ephp',['tagger.php',['../tagger_8php.html',1,'']]], - ['tagrm_2ephp',['tagrm.php',['../tagrm_8php.html',1,'']]], - ['taxonomy_2ephp',['taxonomy.php',['../taxonomy_8php.html',1,'']]], - ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], - ['text_2ephp',['text.php',['../text_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2mytheme_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2redbasic_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../view_2theme_2apw_2php_2theme_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], - ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], - ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], - ['toggle_5fsafesearch_2ephp',['toggle_safesearch.php',['../toggle__safesearch_8php.html',1,'']]], - ['tpldebug_2ephp',['tpldebug.php',['../tpldebug_8php.html',1,'']]], - ['typo_2ephp',['typo.php',['../typo_8php.html',1,'']]], - ['typohelper_2ephp',['typohelper.php',['../typohelper_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_75.html b/doc/html/search/files_75.html deleted file mode 100644 index 70607dd35..000000000 --- a/doc/html/search/files_75.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_75.js b/doc/html/search/files_75.js deleted file mode 100644 index 440a0e7f0..000000000 --- a/doc/html/search/files_75.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], - ['update_5fchannel_2ephp',['update_channel.php',['../update__channel_8php.html',1,'']]], - ['update_5fdisplay_2ephp',['update_display.php',['../update__display_8php.html',1,'']]], - ['update_5fhome_2ephp',['update_home.php',['../update__home_8php.html',1,'']]], - ['update_5fnetwork_2ephp',['update_network.php',['../update__network_8php.html',1,'']]], - ['update_5fsearch_2ephp',['update_search.php',['../update__search_8php.html',1,'']]], - ['updatetpl_2epy',['updatetpl.py',['../updatetpl_8py.html',1,'']]] -]; diff --git a/doc/html/search/files_76.html b/doc/html/search/files_76.html deleted file mode 100644 index 174dedb49..000000000 --- a/doc/html/search/files_76.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_76.js b/doc/html/search/files_76.js deleted file mode 100644 index c3a52655e..000000000 --- a/doc/html/search/files_76.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['view_2ephp',['view.php',['../view_8php.html',1,'']]], - ['viewconnections_2ephp',['viewconnections.php',['../viewconnections_8php.html',1,'']]], - ['viewsrc_2ephp',['viewsrc.php',['../viewsrc_8php.html',1,'']]], - ['vote_2ephp',['vote.php',['../vote_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_77.html b/doc/html/search/files_77.html deleted file mode 100644 index 63bf92c09..000000000 --- a/doc/html/search/files_77.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_77.js b/doc/html/search/files_77.js deleted file mode 100644 index 8a870ac3f..000000000 --- a/doc/html/search/files_77.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['wall_5fattach_2ephp',['wall_attach.php',['../wall__attach_8php.html',1,'']]], - ['wall_5fupload_2ephp',['wall_upload.php',['../wall__upload_8php.html',1,'']]], - ['webfinger_2ephp',['webfinger.php',['../webfinger_8php.html',1,'']]], - ['webpages_2ephp',['webpages.php',['../webpages_8php.html',1,'']]], - ['wfinger_2ephp',['wfinger.php',['../wfinger_8php.html',1,'']]], - ['widedarkness_2ephp',['widedarkness.php',['../widedarkness_8php.html',1,'']]], - ['widgets_2ephp',['widgets.php',['../widgets_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_78.html b/doc/html/search/files_78.html deleted file mode 100644 index d1e306db2..000000000 --- a/doc/html/search/files_78.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_78.js b/doc/html/search/files_78.js deleted file mode 100644 index 0f6e4df5e..000000000 --- a/doc/html/search/files_78.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['xchan_2ephp',['xchan.php',['../xchan_8php.html',1,'']]], - ['xpoco_2ephp',['xpoco.php',['../xpoco_8php.html',1,'']]], - ['xrd_2ephp',['xrd.php',['../xrd_8php.html',1,'']]], - ['xref_2ephp',['xref.php',['../xref_8php.html',1,'']]] -]; diff --git a/doc/html/search/files_7a.html b/doc/html/search/files_7a.html deleted file mode 100644 index 935df7f2d..000000000 --- a/doc/html/search/files_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/files_7a.js b/doc/html/search/files_7a.js deleted file mode 100644 index db6c0312f..000000000 --- a/doc/html/search/files_7a.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['zfinger_2ephp',['zfinger.php',['../zfinger_8php.html',1,'']]], - ['zot_2ephp',['zot.php',['../zot_8php.html',1,'']]], - ['zotfeed_2ephp',['zotfeed.php',['../zotfeed_8php.html',1,'']]], - ['zotsh_2epy',['zotsh.py',['../zotsh_8py.html',1,'']]], - ['zping_2ephp',['zping.php',['../zping_8php.html',1,'']]] -]; diff --git a/doc/html/search/functions_5f.html b/doc/html/search/functions_5f.html deleted file mode 100644 index 2946e1e69..000000000 --- a/doc/html/search/functions_5f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_5f.js b/doc/html/search/functions_5f.js deleted file mode 100644 index 445744a9a..000000000 --- a/doc/html/search/functions_5f.js +++ /dev/null @@ -1,22 +0,0 @@ -var searchData= -[ - ['_5f_5fconstruct',['__construct',['../classApp.html#af6d39f63fb7116bbeb04e51696f99474',1,'App\__construct()'],['../classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09',1,'Conversation\__construct()'],['../classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186',1,'dba_driver\__construct()'],['../classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2',1,'Item\__construct()'],['../classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6',1,'FKOAuth1\__construct()'],['../classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae',1,'photo_driver\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a8161f2a0be205412e263c947b5ec46c5',1,'RedMatrix\RedDAV\RedBrowser\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a76b58fe5223e565c97f1b9af93031a99',1,'RedMatrix\RedDAV\RedDirectory\__construct()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a05798eac84c578152ff21758261c6ac6',1,'RedMatrix\RedDAV\RedFile\__construct()'],['../classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6',1,'FriendicaSmarty\__construct()'],['../classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6',1,'FriendicaSmartyEngine\__construct()']]], - ['_5f_5fdestruct',['__destruct',['../classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721',1,'dba_driver\__destruct()'],['../classphoto__driver.html#ae4501abdc9651359f81d036b63625686',1,'photo_driver\__destruct()']]], - ['_5f_5finit_5f_5f',['__init__',['../classeasywebdav_1_1client_1_1OperationFailed.html#acfdca9ff27c865ea1c07449ce4e8d339',1,'easywebdav.client.OperationFailed.__init__()'],['../classeasywebdav_1_1client_1_1Client.html#aa17aa551ee348830d09dbf3a5616aebb',1,'easywebdav.client.Client.__init__()'],['../classzotsh_1_1ZotSH.html#a668d46a5dd96ae7d390273c187b0c3bc',1,'zotsh.ZotSH.__init__()']]], - ['_5fbuild_5fnodes',['_build_nodes',['../classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4',1,'Template']]], - ['_5fdownload',['_download',['../classeasywebdav_1_1client_1_1Client.html#a37094196d06e70b0ed6f41322f599faf',1,'easywebdav::client::Client']]], - ['_5fget_5furl',['_get_url',['../classeasywebdav_1_1client_1_1Client.html#a01e56f6f57b17cbc6e4b759175cb6204',1,'easywebdav::client::Client']]], - ['_5fget_5fvar',['_get_var',['../classTemplate.html#aae9c4d761ea1298e745e8052d7910194',1,'Template']]], - ['_5fpop_5fstack',['_pop_stack',['../classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7',1,'Template']]], - ['_5fpreg_5ferror',['_preg_error',['../classTemplate.html#a37c15f6d1ade500943629f27a62808b7',1,'Template']]], - ['_5fpush_5fstack',['_push_stack',['../classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29',1,'Template']]], - ['_5freplcb',['_replcb',['../classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934',1,'Template']]], - ['_5freplcb_5fdebug',['_replcb_debug',['../classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e',1,'Template']]], - ['_5freplcb_5ffor',['_replcb_for',['../classTemplate.html#abf71098c80fd1f218a59452b3408309e',1,'Template']]], - ['_5freplcb_5fif',['_replcb_if',['../classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228',1,'Template']]], - ['_5freplcb_5finc',['_replcb_inc',['../classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677',1,'Template']]], - ['_5freplcb_5fnode',['_replcb_node',['../classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee',1,'Template']]], - ['_5fsend',['_send',['../classeasywebdav_1_1client_1_1Client.html#ae6c8e7680e2c76df128e2c5ec4b79516',1,'easywebdav::client::Client']]], - ['_5fupload',['_upload',['../classeasywebdav_1_1client_1_1Client.html#a119e2f4cdd0e266a747bf8e92de51997',1,'easywebdav::client::Client']]], - ['_5fwell_5fknown_5finit',['_well_known_init',['../__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0',1,'_well_known.php']]] -]; diff --git a/doc/html/search/functions_61.html b/doc/html/search/functions_61.html deleted file mode 100644 index d68c74892..000000000 --- a/doc/html/search/functions_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js deleted file mode 100644 index df3cc2b06..000000000 --- a/doc/html/search/functions_61.js +++ /dev/null @@ -1,141 +0,0 @@ -var searchData= -[ - ['abook_5fconnections',['abook_connections',['../Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e',1,'Contact.php']]], - ['abook_5fself',['abook_self',['../Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5',1,'Contact.php']]], - ['abook_5ftoggle_5fflag',['abook_toggle_flag',['../Contact_8php.html#a024919623a830e8703ac4f23496dd66c',1,'Contact.php']]], - ['absurl',['absurl',['../boot_8php.html#a081307d681d7d04f17b9ced2076e7c85',1,'boot.php']]], - ['account_5fremove',['account_remove',['../Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33',1,'Contact.php']]], - ['account_5fservice_5fclass_5fallows',['account_service_class_allows',['../account_8php.html#ac70e1d198246b029a3cedb7d6f7868bd',1,'account.php']]], - ['account_5fservice_5fclass_5ffetch',['account_service_class_fetch',['../account_8php.html#a4328c40ee4b3d68630cf1ebb7b9d4d89',1,'account.php']]], - ['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]], - ['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]], - ['achievements_5fcontent',['achievements_content',['../achievements_8php.html#a35ae04ada0e227d19671f289a32fb30e',1,'achievements.php']]], - ['acknowledge_5fpermissions',['acknowledge_permissions',['../classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a',1,'ProtoDriver\acknowledge_permissions()'],['../classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2',1,'ZotDriver\acknowledge_permissions()']]], - ['acl_5finit',['acl_init',['../acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a',1,'acl.php']]], - ['activity_5fmatch',['activity_match',['../text_8php.html#af8a3e3a66a7b862d4510f145d2e13186',1,'text.php']]], - ['activity_5fsanitise',['activity_sanitise',['../items_8php.html#a36e656667193c83aa2cc03a024fc131b',1,'items.php']]], - ['add_5fchild',['add_child',['../classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51',1,'Item']]], - ['add_5fchildren_5fto_5flist',['add_children_to_list',['../conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b',1,'conversation.php']]], - ['add_5fsource_5froute',['add_source_route',['../items_8php.html#a81565acf729e629e588d823308448e3c',1,'items.php']]], - ['add_5fthread',['add_thread',['../classConversation.html#a8335cdd43f1836e3c255638e61a09e16',1,'Conversation']]], - ['admin_5fcontent',['admin_content',['../admin_8php.html#afef415e4011607fbb665610441595015',1,'admin.php']]], - ['admin_5fpage_5fchannels',['admin_page_channels',['../admin_8php.html#ad6f87a764fd35f522c7b4c351d7878ec',1,'admin.php']]], - ['admin_5fpage_5fchannels_5fpost',['admin_page_channels_post',['../admin_8php.html#a42e628f367c168add8013352ac74d33f',1,'admin.php']]], - ['admin_5fpage_5fdbsync',['admin_page_dbsync',['../admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade',1,'admin.php']]], - ['admin_5fpage_5fhubloc',['admin_page_hubloc',['../admin_8php.html#a6943543f3138f6ee182cb701f415d1cc',1,'admin.php']]], - ['admin_5fpage_5fhubloc_5fpost',['admin_page_hubloc_post',['../admin_8php.html#a60ba9783ad14545814919970bc3fb725',1,'admin.php']]], - ['admin_5fpage_5flogs',['admin_page_logs',['../admin_8php.html#a1d1362698af14d209aa3a0fb655551dd',1,'admin.php']]], - ['admin_5fpage_5flogs_5fpost',['admin_page_logs_post',['../admin_8php.html#a233b7c8c31776b7020532003c6e44e1c',1,'admin.php']]], - ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], - ['admin_5fpage_5fprofs',['admin_page_profs',['../admin_8php.html#a3deba594ca1e11694eac1de0b724ef0a',1,'admin.php']]], - ['admin_5fpage_5fprofs_5fpost',['admin_page_profs_post',['../admin_8php.html#a278289bc6d45f6f2a272a7ab6a1d1057',1,'admin.php']]], - ['admin_5fpage_5fqueue',['admin_page_queue',['../admin_8php.html#a35ffa5d643e6a98fa844d6d02b408f89',1,'admin.php']]], - ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], - ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], - ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], - ['admin_5fpage_5fthemes',['admin_page_themes',['../admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb',1,'admin.php']]], - ['admin_5fpage_5fusers',['admin_page_users',['../admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2',1,'admin.php']]], - ['admin_5fpage_5fusers_5fpost',['admin_page_users_post',['../admin_8php.html#a5a696706a3869800e65fb365214241b7',1,'admin.php']]], - ['admin_5fpost',['admin_post',['../admin_8php.html#acf51f5837a7427832144c2bf7308ada3',1,'admin.php']]], - ['advanced_5fprofile',['advanced_profile',['../identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4',1,'identity.php']]], - ['aes256cbc_5fdecrypt',['AES256CBC_decrypt',['../crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9',1,'crypto.php']]], - ['aes256cbc_5fencrypt',['AES256CBC_encrypt',['../crypto_8php.html#a5c61821d205f95f127114159cbffa764',1,'crypto.php']]], - ['aes_5fencapsulate',['aes_encapsulate',['../crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286',1,'crypto.php']]], - ['aes_5funencapsulate',['aes_unencapsulate',['../crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914',1,'crypto.php']]], - ['age',['age',['../datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df',1,'datetime.php']]], - ['all_5ffriends',['all_friends',['../socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586',1,'socgraph.php']]], - ['allowed_5femail',['allowed_email',['../include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694',1,'network.php']]], - ['allowed_5fpublic_5frecips',['allowed_public_recips',['../zot_8php.html#a703f528ade8382cf374e4119bd6f7859',1,'zot.php']]], - ['allowed_5furl',['allowed_url',['../include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7',1,'network.php']]], - ['alt_5fpager',['alt_pager',['../text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85',1,'text.php']]], - ['api_5faccount_5flogout',['api_account_logout',['../include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b',1,'api.php']]], - ['api_5faccount_5frate_5flimit_5fstatus',['api_account_rate_limit_status',['../include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5',1,'api.php']]], - ['api_5faccount_5fverify_5fcredentials',['api_account_verify_credentials',['../include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad',1,'api.php']]], - ['api_5falbums',['api_albums',['../include_2api_8php.html#aa9dc5350b26d6c7727d6c4b641ecba18',1,'api.php']]], - ['api_5fapply_5ftemplate',['api_apply_template',['../include_2api_8php.html#a5990101034e7abf6404feba3cd273629',1,'api.php']]], - ['api_5fcall',['api_call',['../include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5',1,'api.php']]], - ['api_5fchannel_5fstream',['api_channel_stream',['../include_2api_8php.html#a72bfecac1970bc29b853073e816388ff',1,'api.php']]], - ['api_5fcontent',['api_content',['../mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d',1,'api.php']]], - ['api_5fdate',['api_date',['../include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25',1,'api.php']]], - ['api_5fdirect_5fmessages_5fall',['api_direct_messages_all',['../include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705',1,'api.php']]], - ['api_5fdirect_5fmessages_5fbox',['api_direct_messages_box',['../include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5',1,'api.php']]], - ['api_5fdirect_5fmessages_5fconversation',['api_direct_messages_conversation',['../include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3',1,'api.php']]], - ['api_5fdirect_5fmessages_5finbox',['api_direct_messages_inbox',['../include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2',1,'api.php']]], - ['api_5fdirect_5fmessages_5fnew',['api_direct_messages_new',['../include_2api_8php.html#a0991f72554f821255397d615e76f3203',1,'api.php']]], - ['api_5fdirect_5fmessages_5fsentbox',['api_direct_messages_sentbox',['../include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d',1,'api.php']]], - ['api_5fexport_5fbasic',['api_export_basic',['../include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53',1,'api.php']]], - ['api_5ffavorites',['api_favorites',['../include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f',1,'api.php']]], - ['api_5fff_5fids',['api_ff_ids',['../include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8',1,'api.php']]], - ['api_5ffollowers_5fids',['api_followers_ids',['../include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b',1,'api.php']]], - ['api_5fformat_5fas',['api_format_as',['../include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879',1,'api.php']]], - ['api_5fformat_5fitems',['api_format_items',['../include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea',1,'api.php']]], - ['api_5fformat_5fmessages',['api_format_messages',['../include_2api_8php.html#ae82608c317421f27446465aa6724733d',1,'api.php']]], - ['api_5ffriendica_5fversion',['api_friendica_version',['../include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74',1,'api.php']]], - ['api_5ffriends_5fids',['api_friends_ids',['../include_2api_8php.html#acafd2899309a005fcb725289173dc7fe',1,'api.php']]], - ['api_5fget_5fuser',['api_get_user',['../include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa',1,'api.php']]], - ['api_5fgroup',['api_group',['../include_2api_8php.html#ad5fe62d6c25c86999f627b2e6cfde536',1,'api.php']]], - ['api_5fgroup_5fmembers',['api_group_members',['../include_2api_8php.html#ae46f964e5a9c80b96dc78df61c09ed3a',1,'api.php']]], - ['api_5fhelp_5ftest',['api_help_test',['../include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23',1,'api.php']]], - ['api_5fitem_5fget_5fuser',['api_item_get_user',['../include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1',1,'api.php']]], - ['api_5flogin',['api_login',['../include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73',1,'api.php']]], - ['api_5foauth_5faccess_5ftoken',['api_oauth_access_token',['../include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0',1,'api.php']]], - ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], - ['api_5fphotos',['api_photos',['../include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f',1,'api.php']]], - ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], - ['api_5fred_5fxchan',['api_red_xchan',['../include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60',1,'api.php']]], - ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], - ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], - ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], - ['api_5fstatuses_5fdestroy',['api_statuses_destroy',['../include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4',1,'api.php']]], - ['api_5fstatuses_5ff',['api_statuses_f',['../include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410',1,'api.php']]], - ['api_5fstatuses_5ffollowers',['api_statuses_followers',['../include_2api_8php.html#a6951c690d87775eb37e569c66011988e',1,'api.php']]], - ['api_5fstatuses_5ffriends',['api_statuses_friends',['../include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e',1,'api.php']]], - ['api_5fstatuses_5fhome_5ftimeline',['api_statuses_home_timeline',['../include_2api_8php.html#a528d8070ee74ea800102936ce73cf366',1,'api.php']]], - ['api_5fstatuses_5fmediap',['api_statuses_mediap',['../include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95',1,'api.php']]], - ['api_5fstatuses_5fmentions',['api_statuses_mentions',['../include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e',1,'api.php']]], - ['api_5fstatuses_5fpublic_5ftimeline',['api_statuses_public_timeline',['../include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22',1,'api.php']]], - ['api_5fstatuses_5frepeat',['api_statuses_repeat',['../include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8',1,'api.php']]], - ['api_5fstatuses_5fshow',['api_statuses_show',['../include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63',1,'api.php']]], - ['api_5fstatuses_5fupdate',['api_statuses_update',['../include_2api_8php.html#ad4d1634df6b35126552324683caaffa2',1,'api.php']]], - ['api_5fstatuses_5fuser_5ftimeline',['api_statuses_user_timeline',['../include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283',1,'api.php']]], - ['api_5fstatusnet_5fconfig',['api_statusnet_config',['../include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08',1,'api.php']]], - ['api_5fstatusnet_5fversion',['api_statusnet_version',['../include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d',1,'api.php']]], - ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], - ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], - ['app_5fdecode',['app_decode',['../include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185',1,'apps.php']]], - ['app_5fdestroy',['app_destroy',['../include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f',1,'apps.php']]], - ['app_5fencode',['app_encode',['../include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7',1,'apps.php']]], - ['app_5finstall',['app_install',['../include_2apps_8php.html#a72756e1601489eb77971eeda011446d0',1,'apps.php']]], - ['app_5finstalled',['app_installed',['../include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2',1,'apps.php']]], - ['app_5flist',['app_list',['../include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0',1,'apps.php']]], - ['app_5fname_5fcompare',['app_name_compare',['../include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658',1,'apps.php']]], - ['app_5frender',['app_render',['../include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66',1,'apps.php']]], - ['app_5fstore',['app_store',['../include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9',1,'apps.php']]], - ['app_5fupdate',['app_update',['../include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46',1,'apps.php']]], - ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], - ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], - ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], - ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], - ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], - ['apw_5finit',['apw_init',['../view_2theme_2apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], - ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], - ['argv',['argv',['../boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006',1,'boot.php']]], - ['arr_5fadd_5fhashes',['arr_add_hashes',['../parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868',1,'parse_url.php']]], - ['array_5fsanitise',['array_sanitise',['../items_8php.html#abf7a1b73eb352d79acd36309b0dababd',1,'items.php']]], - ['array_5fxmlify',['array_xmlify',['../text_8php.html#acedb584f65114a33f389efb796172a91',1,'text.php']]], - ['atom_5fauthor',['atom_author',['../items_8php.html#a016dd86c827d08db89061ea81d15c6cb',1,'items.php']]], - ['atom_5fentry',['atom_entry',['../items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6',1,'items.php']]], - ['attach_5fby_5fhash',['attach_by_hash',['../include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36',1,'attach.php']]], - ['attach_5fby_5fhash_5fnodata',['attach_by_hash_nodata',['../include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932',1,'attach.php']]], - ['attach_5fchange_5fpermissions',['attach_change_permissions',['../include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221',1,'attach.php']]], - ['attach_5fcount_5ffiles',['attach_count_files',['../include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3',1,'attach.php']]], - ['attach_5fdelete',['attach_delete',['../include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd',1,'attach.php']]], - ['attach_5finit',['attach_init',['../mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1',1,'attach.php']]], - ['attach_5flist_5ffiles',['attach_list_files',['../include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d',1,'attach.php']]], - ['attach_5fmkdir',['attach_mkdir',['../include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc',1,'attach.php']]], - ['attach_5fstore',['attach_store',['../include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f',1,'attach.php']]], - ['attribute_5fcontains',['attribute_contains',['../text_8php.html#a95fd2f8f23a1948414a03ebc963bac57',1,'text.php']]], - ['authenticate_5fsuccess',['authenticate_success',['../security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733',1,'security.php']]], - ['autoname',['autoname',['../text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca',1,'text.php']]], - ['avatar_5fimg',['avatar_img',['../include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7',1,'network.php']]] -]; diff --git a/doc/html/search/functions_62.html b/doc/html/search/functions_62.html deleted file mode 100644 index 5134d2d29..000000000 --- a/doc/html/search/functions_62.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js deleted file mode 100644 index c0d308806..000000000 --- a/doc/html/search/functions_62.js +++ /dev/null @@ -1,42 +0,0 @@ -var searchData= -[ - ['base64url_5fdecode',['base64url_decode',['../text_8php.html#a13286f8a95d2de6b102966ecc270c8d6',1,'text.php']]], - ['base64url_5fencode',['base64url_encode',['../text_8php.html#a070384ec000fd65043fce11d5392d241',1,'text.php']]], - ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], - ['bb2diaspora_5fitembody',['bb2diaspora_itembody',['../bb2diaspora_8php.html#ab27761069ea1275f0fc4c543099c5519',1,'bb2diaspora.php']]], - ['bb2diaspora_5fitemwallwall',['bb2diaspora_itemwallwall',['../bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083',1,'bb2diaspora.php']]], - ['bb2dmention_5fcallback',['bb2dmention_callback',['../bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34',1,'bb2diaspora.php']]], - ['bb_5fextract_5fimages',['bb_extract_images',['../bbcode_8php.html#a583bf904481db2623ead8cbd28f16d32',1,'bbcode.php']]], - ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], - ['bb_5fmap_5fcoords',['bb_map_coords',['../bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24',1,'bbcode.php']]], - ['bb_5fmap_5flocation',['bb_map_location',['../bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d',1,'bbcode.php']]], - ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], - ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#aaaae933e2563558db886b820075c93c8',1,'bbcode.php']]], - ['bb_5fparse_5felement',['bb_parse_element',['../bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9',1,'bbcode.php']]], - ['bb_5fqr',['bb_qr',['../bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c',1,'bbcode.php']]], - ['bb_5freplace_5fimages',['bb_replace_images',['../bbcode_8php.html#a35f52b106a3d522f1c0783e78223f402',1,'bbcode.php']]], - ['bb_5fsanitize_5fstyle',['bb_sanitize_style',['../bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e',1,'bbcode.php']]], - ['bb_5fshareattributes',['bb_ShareAttributes',['../bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a',1,'bbcode.php']]], - ['bb_5fshareattributessimple',['bb_ShareAttributesSimple',['../bbcode_8php.html#a2be26414a367118143cc89e2d58e7377',1,'bbcode.php']]], - ['bb_5fspacefy',['bb_spacefy',['../bbcode_8php.html#a8911e027907820df3db03b4f76724b50',1,'bbcode.php']]], - ['bb_5ftag_5fpreg_5freplace',['bb_tag_preg_replace',['../bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba',1,'bb2diaspora.php']]], - ['bb_5ftranslate_5fvideo',['bb_translate_video',['../text_8php.html#a3d2793d66db3345fd290b71e2eadf98e',1,'text.php']]], - ['bb_5funspacefy_5fand_5ftrim',['bb_unspacefy_and_trim',['../bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d',1,'bbcode.php']]], - ['bbcode',['bbcode',['../bbcode_8php.html#a009f61aaf78771737ed0765c8463911b',1,'bbcode.php']]], - ['bbiframe',['bbiframe',['../bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7',1,'bbcode.php']]], - ['bbtoevent',['bbtoevent',['../event_8php.html#a180cccd63c2a2f00ff432b03113531f3',1,'event.php']]], - ['bbtovcal',['bbtovcal',['../event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279',1,'event.php']]], - ['best_5flink_5furl',['best_link_url',['../conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7',1,'conversation.php']]], - ['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']]], - ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], - ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], - ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], - ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], - ['build_5fpagehead',['build_pagehead',['../classApp.html#a08f0537964d98958d218066364cff785',1,'App']]], - ['build_5fquerystring',['build_querystring',['../boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e',1,'boot.php']]], - ['build_5fsync_5fpacket',['build_sync_packet',['../zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5',1,'zot.php']]], - ['builtin_5factivity_5fpuller',['builtin_activity_puller',['../conversation_8php.html#a54d5247d645b320191052283bee06c34',1,'conversation.php']]] -]; diff --git a/doc/html/search/functions_63.html b/doc/html/search/functions_63.html deleted file mode 100644 index 9114d820c..000000000 --- a/doc/html/search/functions_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js deleted file mode 100644 index 2449f6d9a..000000000 --- a/doc/html/search/functions_63.js +++ /dev/null @@ -1,150 +0,0 @@ -var searchData= -[ - ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], - ['call_5fhooks',['call_hooks',['../plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c',1,'plugin.php']]], - ['can_5fcomment_5fon_5fpost',['can_comment_on_post',['../items_8php.html#a1e75047cf175aaee8dd16aa761913ff9',1,'items.php']]], - ['catblock',['catblock',['../taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4',1,'taxonomy.php']]], - ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], - ['cd',['cd',['../classeasywebdav_1_1client_1_1Client.html#a5af2c65d101a6d6a9cd557a4e2945755',1,'easywebdav::client::Client']]], - ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], - ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], - ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], - ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0',1,'text.php']]], - ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], - ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], - ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], - ['channel_5fremove',['channel_remove',['../Contact_8php.html#a4e8af0f0525161da74583c04b8b03097',1,'Contact.php']]], - ['channel_5ftotal',['channel_total',['../identity_8php.html#a77d2237f1846964634b1c99089c27c7d',1,'identity.php']]], - ['channelx_5fby_5fhash',['channelx_by_hash',['../Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258',1,'Contact.php']]], - ['channelx_5fby_5fn',['channelx_by_n',['../Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc',1,'Contact.php']]], - ['channelx_5fby_5fnick',['channelx_by_nick',['../Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e',1,'Contact.php']]], - ['chanview_5fcontent',['chanview_content',['../chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b',1,'chanview.php']]], - ['chat_5fcontent',['chat_content',['../mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f',1,'chat.php']]], - ['chat_5finit',['chat_init',['../mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e',1,'chat.php']]], - ['chat_5fmessage',['chat_message',['../include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3',1,'chat.php']]], - ['chat_5fpost',['chat_post',['../mod_2chat_8php.html#a999d594745597c656c9760253ae297ad',1,'chat.php']]], - ['chatroom_5fcreate',['chatroom_create',['../include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422',1,'chat.php']]], - ['chatroom_5fdestroy',['chatroom_destroy',['../include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639',1,'chat.php']]], - ['chatroom_5fenter',['chatroom_enter',['../include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91',1,'chat.php']]], - ['chatroom_5fleave',['chatroom_leave',['../include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f',1,'chat.php']]], - ['chatroom_5flist',['chatroom_list',['../include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a',1,'chat.php']]], - ['chatroom_5flist_5fcount',['chatroom_list_count',['../include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049',1,'chat.php']]], - ['chatsvc_5fcontent',['chatsvc_content',['../chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9',1,'chatsvc.php']]], - ['chatsvc_5finit',['chatsvc_init',['../chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116',1,'chatsvc.php']]], - ['chatsvc_5fpost',['chatsvc_post',['../chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03',1,'chatsvc.php']]], - ['check_5faccount_5fadmin',['check_account_admin',['../account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f',1,'account.php']]], - ['check_5faccount_5femail',['check_account_email',['../account_8php.html#ae052bd5558847bd38e89c213561a9771',1,'account.php']]], - ['check_5faccount_5finvite',['check_account_invite',['../account_8php.html#aaff7720423417a4333697894ffd9ddeb',1,'account.php']]], - ['check_5faccount_5fpassword',['check_account_password',['../account_8php.html#a144b4891022567668375b58ea61cfff0',1,'account.php']]], - ['check_5fadd',['check_add',['../setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1',1,'setup.php']]], - ['check_5fconfig',['check_config',['../boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3',1,'boot.php']]], - ['check_5fform_5fsecurity_5fstd_5ferr_5fmsg',['check_form_security_std_err_msg',['../security_8php.html#a20f8b9851f23ee8894b8925584ef6821',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken',['check_form_security_token',['../security_8php.html#a9c6180e82150a5a9af91a1255d096b5c',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken_5fforbiddenonerr',['check_form_security_token_ForbiddenOnErr',['../security_8php.html#a444ac867dfa8c37cf0a7a226412bee28',1,'security.php']]], - ['check_5fform_5fsecurity_5ftoken_5fredirectonerr',['check_form_security_token_redirectOnErr',['../security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433',1,'security.php']]], - ['check_5ffuncs',['check_funcs',['../setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e',1,'setup.php']]], - ['check_5fhtaccess',['check_htaccess',['../setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4',1,'setup.php']]], - ['check_5fhtconfig',['check_htconfig',['../setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f',1,'setup.php']]], - ['check_5fitem_5fsource',['check_item_source',['../items_8php.html#a87ac9e359591721a824ecd23bbb56296',1,'items.php']]], - ['check_5fkeys',['check_keys',['../setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76',1,'setup.php']]], - ['check_5flist_5fpermissions',['check_list_permissions',['../permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7',1,'permissions.php']]], - ['check_5fphp',['check_php',['../setup_8php.html#a14d208682a88632290c895d20da6e7d6',1,'setup.php']]], - ['check_5fsmarty3',['check_smarty3',['../setup_8php.html#afd8b0b3ade1507c45325caf377bf459d',1,'setup.php']]], - ['check_5fstore',['check_store',['../setup_8php.html#ab4b71369a25021d59247c917e98d8246',1,'setup.php']]], - ['check_5fupstream_5fdirectory',['check_upstream_directory',['../dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16',1,'dir_fns.php']]], - ['check_5fwall_5fto_5fwall',['check_wall_to_wall',['../classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8',1,'Item']]], - ['check_5fwebbie',['check_webbie',['../text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3',1,'text.php']]], - ['childexists',['childExists',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a964b13fde1a5da6f76b51ca5519234dc',1,'RedMatrix::RedDAV::RedDirectory']]], - ['clean_5furls',['clean_urls',['../boot_8php.html#ab79b8b4555cae20d03f8200666d89d63',1,'boot.php']]], - ['clear',['clear',['../classCache.html#ab14d0f4bdf7116a94d545c574b38f568',1,'Cache']]], - ['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()'],['../classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058',1,'dba_postgres\close()']]], - ['cloud_5finit',['cloud_init',['../cloud_8php.html#ad2e96e917852f27dedfc263d37e13756',1,'cloud.php']]], - ['cmd_5fcat',['cmd_cat',['../classzotsh_1_1ZotSH.html#a3c857c942309ecea9b2bad2dd0dfc410',1,'zotsh::ZotSH']]], - ['cmd_5fdelete',['cmd_delete',['../classzotsh_1_1ZotSH.html#a5fe9615eb84aa7f5c932b8ac5e08594d',1,'zotsh::ZotSH']]], - ['cmd_5fdownload',['cmd_download',['../classzotsh_1_1ZotSH.html#ada686b83017bfe450e367cfdb89d084e',1,'zotsh::ZotSH']]], - ['cmd_5fexists',['cmd_exists',['../classzotsh_1_1ZotSH.html#af98a32d48748f4fa96caec1f6a33d3d0',1,'zotsh::ZotSH']]], - ['cmd_5fhelp',['cmd_help',['../classzotsh_1_1ZotSH.html#a9a7c98256c6b5ef2c56fc5f7a76580d5',1,'zotsh::ZotSH']]], - ['cmd_5fhost',['cmd_host',['../classzotsh_1_1ZotSH.html#a0fe85d1e5e662e0d60fc6a749c5c8ee6',1,'zotsh::ZotSH']]], - ['cmd_5flcd',['cmd_lcd',['../classzotsh_1_1ZotSH.html#a9d40211e408798c3aaceecfe9f611d8f',1,'zotsh::ZotSH']]], - ['cmd_5flls',['cmd_lls',['../classzotsh_1_1ZotSH.html#a709c4d5135a7c45fea12af1b2bae911c',1,'zotsh::ZotSH']]], - ['cmd_5flpwd',['cmd_lpwd',['../classzotsh_1_1ZotSH.html#acdafbe4f32089bf3dc9f14d82ba5054a',1,'zotsh::ZotSH']]], - ['cmd_5fls',['cmd_ls',['../classzotsh_1_1ZotSH.html#a9abc50b9215a544bdbc2b0bfd511a70a',1,'zotsh::ZotSH']]], - ['cmd_5fmkdir',['cmd_mkdir',['../classzotsh_1_1ZotSH.html#ae4f4079edcfbd2f86f423137f5dcffec',1,'zotsh::ZotSH']]], - ['cmd_5fmkdirs',['cmd_mkdirs',['../classzotsh_1_1ZotSH.html#a32d6a43f22b5e1e2c172a10775ab83db',1,'zotsh::ZotSH']]], - ['cmd_5fpwd',['cmd_pwd',['../classzotsh_1_1ZotSH.html#ab6b1c88a142f39a579b024f44aa24ccd',1,'zotsh::ZotSH']]], - ['cmd_5frmdir',['cmd_rmdir',['../classzotsh_1_1ZotSH.html#a51592d441bd2ab61a7841c31fef3af0e',1,'zotsh::ZotSH']]], - ['cmd_5fupload',['cmd_upload',['../classzotsh_1_1ZotSH.html#a72f4c37d4786c52b593c37c4a1b23b06',1,'zotsh::ZotSH']]], - ['codestr',['codestr',['../namespaceeasywebdav_1_1client.html#afd5d5d10ff07ed6fcda7e3c6b8771a16',1,'easywebdav::client']]], - ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], - ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], - ['collect_5frecipients',['collect_recipients',['../items_8php.html#a772f0ae77ad77c8ab68ed918a3870946',1,'items.php']]], - ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], - ['comanche_5fblock',['comanche_block',['../comanche_8php.html#a5a7ab801717d38e91ac910b933973887',1,'comanche.php']]], - ['comanche_5fget_5fchannel_5fid',['comanche_get_channel_id',['../comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e',1,'comanche.php']]], - ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#ad5a44e42231759aba1dda49e0490501e',1,'comanche.php']]], - ['comanche_5fparser',['comanche_parser',['../comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922',1,'comanche.php']]], - ['comanche_5fregion',['comanche_region',['../comanche_8php.html#a5718daeda40bf835345fe061e8808cdf',1,'comanche.php']]], - ['comanche_5freplace_5fregion',['comanche_replace_region',['../comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe',1,'comanche.php']]], - ['comanche_5fwebpage',['comanche_webpage',['../comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a',1,'comanche.php']]], - ['comanche_5fwidget',['comanche_widget',['../comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f',1,'comanche.php']]], - ['comment_5flocal_5forigin',['comment_local_origin',['../items_8php.html#ada03c12bfd247c9972844e2daa270b52',1,'items.php']]], - ['comments_5fare_5fnow_5fclosed',['comments_are_now_closed',['../items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723',1,'items.php']]], - ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], - ['common_5ffriends',['common_friends',['../socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918',1,'socgraph.php']]], - ['common_5ffriends_5fvisitor_5fwidget',['common_friends_visitor_widget',['../contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65',1,'contact_widgets.php']]], - ['common_5ffriends_5fzcid',['common_friends_zcid',['../socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9',1,'socgraph.php']]], - ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], - ['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()']]], - ['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()'],['../namespaceeasywebdav.html#a5c8aedf2077889acfc76e11d3cb0dc77',1,'easywebdav.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']]], - ['connections_5fclone',['connections_clone',['../connections_8php.html#a15af118efee9c948b6f8294e54a73bb2',1,'connections.php']]], - ['connections_5fcontent',['connections_content',['../connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c',1,'connections.php']]], - ['connections_5finit',['connections_init',['../connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558',1,'connections.php']]], - ['connections_5fpost',['connections_post',['../connections_8php.html#a1224058db8e3fb56463eb312f98e561d',1,'connections.php']]], - ['connedit_5fclone',['connedit_clone',['../connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5',1,'connedit.php']]], - ['connedit_5fcontent',['connedit_content',['../connedit_8php.html#a795acb3d9d841f55c255d7611681ab67',1,'connedit.php']]], - ['connedit_5finit',['connedit_init',['../connedit_8php.html#a4da871e075597a09a8b374b9171dd92e',1,'connedit.php']]], - ['connedit_5fpost',['connedit_post',['../connedit_8php.html#a234c48426b652bf4d37053f2af329ac5',1,'connedit.php']]], - ['construct_5factivity_5fobject',['construct_activity_object',['../items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee',1,'items.php']]], - ['construct_5factivity_5ftarget',['construct_activity_target',['../items_8php.html#aa579bc4445d60098b1410961ca8e96b7',1,'items.php']]], - ['construct_5fpage',['construct_page',['../boot_8php.html#acc4e0c910af066148b810e5fde55fff1',1,'boot.php']]], - ['construct_5fverb',['construct_verb',['../items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8',1,'items.php']]], - ['consume_5ffeed',['consume_feed',['../items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6',1,'items.php']]], - ['contact_5fblock',['contact_block',['../text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784',1,'text.php']]], - ['contact_5fpoll_5finterval',['contact_poll_interval',['../contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f',1,'contact_selectors.php']]], - ['contact_5fprofile_5fassign',['contact_profile_assign',['../contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75',1,'contact_selectors.php']]], - ['contact_5fremove',['contact_remove',['../Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6',1,'Contact.php']]], - ['contact_5fselect',['contact_select',['../acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91',1,'acl_selectors.php']]], - ['contactgroup_5fcontent',['contactgroup_content',['../contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3',1,'contactgroup.php']]], - ['conv_5fsort',['conv_sort',['../conversation_8php.html#abed85a41f1160598de880b84021c9cf7',1,'conversation.php']]], - ['conversation',['conversation',['../conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81',1,'conversation.php']]], - ['convert',['convert',['../namespacefriendica-to-smarty-tpl.html#a38503e37fe68ac27c88cce91a9ac9efa',1,'friendica-to-smarty-tpl']]], - ['convert_5fchild',['convert_child',['../classRedMatrix_1_1Import_1_1Import.html#a5434325afb2c633c52540127d717800a',1,'RedMatrix::Import::Import']]], - ['convert_5fitem',['convert_item',['../classRedMatrix_1_1Import_1_1Import.html#a107703a43a1b0ceb2af7ae470cb3f218',1,'RedMatrix::Import::Import']]], - ['convert_5ftaxonomy',['convert_taxonomy',['../classRedMatrix_1_1Import_1_1Import.html#addf6e53dacd971eaab49be4b17a767d6',1,'RedMatrix::Import::Import']]], - ['convert_5fxml_5felement_5fto_5farray',['convert_xml_element_to_array',['../include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246',1,'network.php']]], - ['count_5fall_5ffriends',['count_all_friends',['../socgraph_8php.html#af29d056beec10b4e38e5209c92452894',1,'socgraph.php']]], - ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], - ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], - ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], - ['count_5funseen_5fdescendants',['count_unseen_descendants',['../classItem.html#ae0c48b2fed5558642549cabd547fc4f3',1,'Item']]], - ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], - ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], - ['create_5fsys_5fchannel',['create_sys_channel',['../identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05',1,'identity.php']]], - ['createdirectory',['createDirectory',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aca0e8d574ea66a0e210f571700663c62',1,'RedMatrix::RedDAV::RedDirectory']]], - ['createfile',['createFile',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a58e750256cdc2f0f79fbe8d5463ffefe',1,'RedMatrix::RedDAV::RedDirectory']]], - ['cronhooks_5frun',['cronhooks_run',['../cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca',1,'cronhooks.php']]], - ['cropimage',['cropImage',['../classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e',1,'photo_driver\cropImage()'],['../classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c',1,'photo_gd\cropImage()'],['../classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4',1,'photo_imagick\cropImage()']]], - ['crypto_5fencapsulate',['crypto_encapsulate',['../crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c',1,'crypto.php']]], - ['crypto_5funencapsulate',['crypto_unencapsulate',['../crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5',1,'crypto.php']]], - ['curpageurl',['curPageURL',['../boot_8php.html#aa4221641e5c21db69fa52c426b9017f5',1,'boot.php']]], - ['current_5ftheme',['current_theme',['../boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13',1,'boot.php']]], - ['current_5ftheme_5furl',['current_theme_url',['../boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3',1,'boot.php']]] -]; diff --git a/doc/html/search/functions_64.html b/doc/html/search/functions_64.html deleted file mode 100644 index 17149308a..000000000 --- a/doc/html/search/functions_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js deleted file mode 100644 index e76e86b30..000000000 --- a/doc/html/search/functions_64.js +++ /dev/null @@ -1,100 +0,0 @@ -var searchData= -[ - ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], - ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], - ['datetimesel',['datetimesel',['../datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7',1,'datetime.php']]], - ['dav_5finit',['dav_init',['../dav_8php.html#addd46b5ec6cd6c23e065634462b7f040',1,'dav.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_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']]], - ['del_5fxconfig',['del_xconfig',['../include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72',1,'config.php']]], - ['delegate_5fcontent',['delegate_content',['../delegate_8php.html#a943eea8996ef348eb845c498f9f354dd',1,'delegate.php']]], - ['delete',['delete',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe',1,'RedMatrix\RedDAV\RedFile\delete()'],['../classeasywebdav_1_1client_1_1Client.html#a1bcdcd91226e9c014556bb3eb2a37a55',1,'easywebdav.client.Client.delete()']]], - ['delete_5fimported_5fitem',['delete_imported_item',['../zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b',1,'zot.php']]], - ['delete_5fitem_5flowlevel',['delete_item_lowlevel',['../items_8php.html#a6b448675b71b00ee5ef798468dde4d22',1,'items.php']]], - ['deletenode',['deletenode',['../html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2',1,'html2bbcode.php']]], - ['deliver',['deliver',['../classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b',1,'ProtoDriver\deliver()'],['../classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f',1,'ZotDriver\deliver()']]], - ['deliver_5fprivate',['deliver_private',['../classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181',1,'ProtoDriver\deliver_private()'],['../classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6',1,'ZotDriver\deliver_private()']]], - ['deliver_5frun',['deliver_run',['../deliver_8php.html#a397afcb9afecf0c1816b0951189dd346',1,'deliver.php']]], - ['dertopem',['DerToPem',['../crypto_8php.html#a630e1574554f34e7c38511585d9e71a2',1,'crypto.php']]], - ['dertorsa',['DerToRsa',['../crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839',1,'crypto.php']]], - ['design_5ftools',['design_tools',['../text_8php.html#a87a3cefc603302c78982f1d8e1245265',1,'text.php']]], - ['destroy',['destroy',['../classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813',1,'photo_driver\destroy()'],['../classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1',1,'photo_gd\destroy()'],['../classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207',1,'photo_imagick\destroy()']]], - ['detect_5flanguage',['detect_language',['../language_8php.html#a632da17c7ac0d2dc1a00a4706870194b',1,'language.php']]], - ['diaspora2bb',['diaspora2bb',['../bb2diaspora_8php.html#ac9061ee10fcfcdac69566b649614e625',1,'bb2diaspora.php']]], - ['diaspora_5fasphoto',['diaspora_asphoto',['../diaspora_8php.html#a006731620a5242d410358b32678e48e3',1,'diaspora.php']]], - ['diaspora_5fcomment',['diaspora_comment',['../diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829',1,'diaspora.php']]], - ['diaspora_5fconversation',['diaspora_conversation',['../diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f',1,'diaspora.php']]], - ['diaspora_5fdecode',['diaspora_decode',['../diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36',1,'diaspora.php']]], - ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66',1,'diaspora.php']]], - ['diaspora_5fdispatch_5fpublic',['diaspora_dispatch_public',['../diaspora_8php.html#ab99505944728d46585b8312989de533d',1,'diaspora.php']]], - ['diaspora_5fget_5fcontact_5fby_5fhandle',['diaspora_get_contact_by_handle',['../diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4',1,'diaspora.php']]], - ['diaspora_5fhandle_5ffrom_5fcontact',['diaspora_handle_from_contact',['../diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff',1,'diaspora.php']]], - ['diaspora_5fis_5fblacklisted',['diaspora_is_blacklisted',['../diaspora_8php.html#a858f70153c384f8778082cf7843a19da',1,'diaspora.php']]], - ['diaspora_5fis_5freshare',['diaspora_is_reshare',['../diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690',1,'diaspora.php']]], - ['diaspora_5flike',['diaspora_like',['../diaspora_8php.html#a5d57518545baa31cf8a85a937a267681',1,'diaspora.php']]], - ['diaspora_5fmention_5fcallback',['diaspora_mention_callback',['../bb2diaspora_8php.html#a4a27604f0745f1efda672966aaca9a3b',1,'bb2diaspora.php']]], - ['diaspora_5fmessage',['diaspora_message',['../diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46',1,'diaspora.php']]], - ['diaspora_5fmsg_5fbuild',['diaspora_msg_build',['../diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b',1,'diaspora.php']]], - ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], - ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c',1,'diaspora.php']]], - ['diaspora_5fpost',['diaspora_post',['../diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31',1,'diaspora.php']]], - ['diaspora_5fprocess_5foutbound',['diaspora_process_outbound',['../diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605',1,'diaspora.php']]], - ['diaspora_5fprofile',['diaspora_profile',['../diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f',1,'diaspora.php']]], - ['diaspora_5fpubmsg_5fbuild',['diaspora_pubmsg_build',['../diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa',1,'diaspora.php']]], - ['diaspora_5frequest',['diaspora_request',['../diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598',1,'diaspora.php']]], - ['diaspora_5freshare',['diaspora_reshare',['../diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007',1,'diaspora.php']]], - ['diaspora_5fretraction',['diaspora_retraction',['../diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9',1,'diaspora.php']]], - ['diaspora_5fsend_5ffollowup',['diaspora_send_followup',['../diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc',1,'diaspora.php']]], - ['diaspora_5fsend_5fimages',['diaspora_send_images',['../diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b',1,'diaspora.php']]], - ['diaspora_5fsend_5fmail',['diaspora_send_mail',['../diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c',1,'diaspora.php']]], - ['diaspora_5fsend_5frelay',['diaspora_send_relay',['../diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d',1,'diaspora.php']]], - ['diaspora_5fsend_5fretraction',['diaspora_send_retraction',['../diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a',1,'diaspora.php']]], - ['diaspora_5fsend_5fstatus',['diaspora_send_status',['../diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668',1,'diaspora.php']]], - ['diaspora_5fshare',['diaspora_share',['../diaspora_8php.html#a69f250b078a46e405647428ec3399a16',1,'diaspora.php']]], - ['diaspora_5fsigned_5fretraction',['diaspora_signed_retraction',['../diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055',1,'diaspora.php']]], - ['diaspora_5ftransmit',['diaspora_transmit',['../diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56',1,'diaspora.php']]], - ['diaspora_5ful',['diaspora_ul',['../bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc',1,'bb2diaspora.php']]], - ['diaspora_5funshare',['diaspora_unshare',['../diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200',1,'diaspora.php']]], - ['dir_5fflag_5fbuild',['dir_flag_build',['../dirsearch_8php.html#ab6d5fefa98da249a994b910434a669c2',1,'dirsearch.php']]], - ['dir_5fparse_5fquery',['dir_parse_query',['../dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305',1,'dirsearch.php']]], - ['dir_5fquery_5fbuild',['dir_query_build',['../dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2',1,'dirsearch.php']]], - ['dir_5fsafe_5fmode',['dir_safe_mode',['../dir__fns_8php.html#acf621621e929d49441da30aad76a58cf',1,'dir_fns.php']]], - ['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_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']]], - ['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()']]], - ['discover_5fby_5furl',['discover_by_url',['../include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48',1,'network.php']]], - ['discover_5fby_5fwebbie',['discover_by_webbie',['../include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe',1,'network.php']]], - ['display_5fcontent',['display_content',['../display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0',1,'display.php']]], - ['dlogger',['dlogger',['../text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c',1,'text.php']]], - ['do',['do',['../classzotsh_1_1ZotSH.html#a42e3d635a25a65cd4a0fd7586473a9d1',1,'zotsh::ZotSH']]], - ['dob',['dob',['../datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8',1,'datetime.php']]], - ['doscaleimage',['doScaleImage',['../classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f',1,'photo_driver\doScaleImage()'],['../classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754',1,'photo_gd\doScaleImage()'],['../classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66',1,'photo_imagick\doScaleImage()']]], - ['downgrade_5faccounts',['downgrade_accounts',['../account_8php.html#a0d183a3cb4c67a0f5e906811df7a1fc9',1,'account.php']]], - ['download',['download',['../classeasywebdav_1_1client_1_1Client.html#adc879105d0991fe6bc4e97888e547356',1,'easywebdav::client::Client']]], - ['drop_5fitem',['drop_item',['../items_8php.html#ad65e3d4d8c537e560286b735a285e33e',1,'items.php']]], - ['drop_5fitems',['drop_items',['../items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55',1,'items.php']]] -]; diff --git a/doc/html/search/functions_65.html b/doc/html/search/functions_65.html deleted file mode 100644 index 13260cf25..000000000 --- a/doc/html/search/functions_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_65.js b/doc/html/search/functions_65.js deleted file mode 100644 index be766dccb..000000000 --- a/doc/html/search/functions_65.js +++ /dev/null @@ -1,36 +0,0 @@ -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']]], - ['elem2file',['elem2file',['../namespaceeasywebdav_1_1client.html#a4ef6158e600484fda44b88391b74ec2f',1,'easywebdav::client']]], - ['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']]], - ['encode_5fitem_5fflags',['encode_item_flags',['../items_8php.html#a5f690fc2484abec07840b4f9dd525bd9',1,'items.php']]], - ['encode_5fitem_5fterms',['encode_item_terms',['../items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a',1,'items.php']]], - ['encode_5fitem_5fxchan',['encode_item_xchan',['../items_8php.html#a566c601726697e044e75284af7fb6f17',1,'items.php']]], - ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], - ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], - ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], - ['escape',['escape',['../classdba__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']]], - ['event_5fstore_5fitem',['event_store_item',['../event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92',1,'event.php']]], - ['events_5fcontent',['events_content',['../events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec',1,'events.php']]], - ['events_5fpost',['events_post',['../events_8php.html#ab3e8a8f901175f8e40a8089eea45c075',1,'events.php']]], - ['exists',['exists',['../classeasywebdav_1_1client_1_1Client.html#a7a98a4a257becc7fa7fc8e0c8ed9fbd1',1,'easywebdav::client::Client']]], - ['expand_5facl',['expand_acl',['../text_8php.html#ae4282a39492caa23ccbc2ce98e54f110',1,'text.php']]], - ['expand_5fgroups',['expand_groups',['../include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345',1,'group.php']]], - ['expire_5frun',['expire_run',['../expire_8php.html#a444e45c9b67727b27db4c779fd51a298',1,'expire.php']]], - ['externals_5frun',['externals_run',['../externals_8php.html#a4df44079e6f915286088b7a0d44db926',1,'externals.php']]], - ['extra_5fquery_5fargs',['extra_query_args',['../text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc',1,'text.php']]] -]; diff --git a/doc/html/search/functions_66.html b/doc/html/search/functions_66.html deleted file mode 100644 index 12565e3b2..000000000 --- a/doc/html/search/functions_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_66.js b/doc/html/search/functions_66.js deleted file mode 100644 index 7f785b62f..000000000 --- a/doc/html/search/functions_66.js +++ /dev/null @@ -1,60 +0,0 @@ -var searchData= -[ - ['fbrowser_5fcontent',['fbrowser_content',['../fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4',1,'fbrowser.php']]], - ['feature_5fenabled',['feature_enabled',['../features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0',1,'features.php']]], - ['feed_5fhublinks',['feed_hublinks',['../text_8php.html#a8d8c4a11e53461caca21181ebd72daca',1,'text.php']]], - ['feed_5finit',['feed_init',['../feed_8php.html#af86137700b56f33d1d5f25c8dec22c04',1,'feed.php']]], - ['feed_5fsalmonlinks',['feed_salmonlinks',['../text_8php.html#a89929fa6f70a8ba54d5273fcf622b665',1,'text.php']]], - ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], - ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], - ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], - ['file_5factivity',['file_activity',['../include_2attach_8php.html#aa23ba65e5bb732be71fdd27ccff7d46e',1,'attach.php']]], - ['file_5ftag_5fdecode',['file_tag_decode',['../taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'taxonomy.php']]], - ['file_5ftag_5fencode',['file_tag_encode',['../taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37',1,'taxonomy.php']]], - ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'taxonomy.php']]], - ['fileas_5fwidget',['fileas_widget',['../contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b',1,'contact_widgets.php']]], - ['filer_5fcontent',['filer_content',['../filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274',1,'filer.php']]], - ['filerm_5fcontent',['filerm_content',['../filerm_8php.html#ae2eb28d2054fa2c37e38689882172208',1,'filerm.php']]], - ['filestorage_5fcontent',['filestorage_content',['../filestorage_8php.html#a61bb1be78472555df4ce619f51014040',1,'filestorage.php']]], - ['filestorage_5fpost',['filestorage_post',['../filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd',1,'filestorage.php']]], - ['filter_5finsecure',['filter_insecure',['../items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a',1,'items.php']]], - ['find_5fdiaspora_5fperson_5fby_5fhandle',['find_diaspora_person_by_handle',['../diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b',1,'diaspora.php']]], - ['find_5ffilename_5fby_5fhash',['find_filename_by_hash',['../include_2attach_8php.html#a4dbfd7e1cef52aa9ef52f4b88929fa86',1,'attach.php']]], - ['find_5ffolder_5fhash_5fby_5fattach_5fhash',['find_folder_hash_by_attach_hash',['../include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997',1,'attach.php']]], - ['find_5fthread_5fparent_5findex',['find_thread_parent_index',['../conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6',1,'conversation.php']]], - ['find_5fupstream_5fdirectory',['find_upstream_directory',['../dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d',1,'dir_fns.php']]], - ['find_5fxchan_5fin_5farray',['find_xchan_in_array',['../text_8php.html#ace3c98538c63e09b70a363210b414112',1,'text.php']]], - ['findattachhash',['findAttachHash',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad4bc0516533c62733f38043a37267d78',1,'RedMatrix::RedDAV::RedBrowser']]], - ['findattachidbyhash',['findAttachIdByHash',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd',1,'RedMatrix::RedDAV::RedBrowser']]], - ['findpeople_5fwidget',['findpeople_widget',['../contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6',1,'contact_widgets.php']]], - ['first_5fpost_5fdate',['first_post_date',['../items_8php.html#a0cf98bb619f07dd18f602683a55a5f59',1,'items.php']]], - ['fix_5fattached_5ffile_5fpermissions',['fix_attached_file_permissions',['../item_8php.html#a3daae7944f737bd30412a0d042207c0f',1,'item.php']]], - ['fix_5fattached_5fphoto_5fpermissions',['fix_attached_photo_permissions',['../item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10',1,'item.php']]], - ['fix_5felement',['fix_element',['../namespacefriendica-to-smarty-tpl.html#a3719dd46e286a57d315e6adae1845854',1,'friendica-to-smarty-tpl']]], - ['fix_5fmce_5flf',['fix_mce_lf',['../text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28',1,'text.php']]], - ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], - ['fix_5fsystem_5furls',['fix_system_urls',['../boot_8php.html#aca5e42678e178c6b9034610d66666fd7',1,'boot.php']]], - ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], - ['flip',['flip',['../classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832',1,'photo_driver\flip()'],['../classphoto__gd.html#a44cedef376044018702d9355ddc813ce',1,'photo_gd\flip()'],['../classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393',1,'photo_imagick\flip()']]], - ['follow_5fcontent',['follow_content',['../mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592',1,'follow.php']]], - ['follow_5finit',['follow_init',['../mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a',1,'follow.php']]], - ['foofoo',['foofoo',['../dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1',1,'dimport.php']]], - ['format_5fcategories',['format_categories',['../text_8php.html#a3054189cff173977f4216c9a3dd29e1b',1,'text.php']]], - ['format_5fcss_5fif_5fexists',['format_css_if_exists',['../plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6',1,'plugin.php']]], - ['format_5fevent_5fbbcode',['format_event_bbcode',['../event_8php.html#abb74206cf42d694307c3d7abb7af9869',1,'event.php']]], - ['format_5fevent_5fdiaspora',['format_event_diaspora',['../bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863',1,'bb2diaspora.php']]], - ['format_5fevent_5fhtml',['format_event_html',['../event_8php.html#a2ac9f1b08de03250ecd794f705781d17',1,'event.php']]], - ['format_5fevent_5fical',['format_event_ical',['../event_8php.html#a3ff7f1824540a38f4a3991a59a9542d4',1,'event.php']]], - ['format_5ffiler',['format_filer',['../text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91',1,'text.php']]], - ['format_5fhashtags',['format_hashtags',['../text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59',1,'text.php']]], - ['format_5fical_5ftext',['format_ical_text',['../event_8php.html#a05073cd4ab837bd4a0149e8ed23ce688',1,'event.php']]], - ['format_5fjs_5fif_5fexists',['format_js_if_exists',['../plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f',1,'plugin.php']]], - ['format_5flike',['format_like',['../conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3',1,'conversation.php']]], - ['format_5flocation',['format_location',['../conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3',1,'conversation.php']]], - ['format_5fmentions',['format_mentions',['../text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08',1,'text.php']]], - ['format_5fnotification',['format_notification',['../include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3',1,'notify.php']]], - ['format_5fterm_5ffor_5fdisplay',['format_term_for_display',['../taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1',1,'taxonomy.php']]], - ['fsuggest_5fcontent',['fsuggest_content',['../fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998',1,'fsuggest.php']]], - ['fsuggest_5fpost',['fsuggest_post',['../fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d',1,'fsuggest.php']]], - ['ftosmarty',['fToSmarty',['../namespacefriendica-to-smarty-tpl.html#a89388ea9b2826e8218ed480e917d8105',1,'friendica-to-smarty-tpl']]] -]; diff --git a/doc/html/search/functions_67.html b/doc/html/search/functions_67.html deleted file mode 100644 index 53d4a096f..000000000 --- a/doc/html/search/functions_67.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js deleted file mode 100644 index 58361efff..000000000 --- a/doc/html/search/functions_67.js +++ /dev/null @@ -1,158 +0,0 @@ -var searchData= -[ - ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], - ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], - ['gender_5fselector_5fmin',['gender_selector_min',['../profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816',1,'profile_selectors.php']]], - ['generate_5fmap',['generate_map',['../text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357',1,'text.php']]], - ['generate_5fnamed_5fmap',['generate_named_map',['../text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b',1,'text.php']]], - ['generatedirectoryindex',['generateDirectoryIndex',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09',1,'RedMatrix::RedDAV::RedBrowser']]], - ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache\get()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8',1,'RedMatrix\RedDAV\RedFile\get()']]], - ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], - ['get_5faccount_5fid',['get_account_id',['../boot_8php.html#afe88b920aa285982edb817a0dd44eb37',1,'boot.php']]], - ['get_5fall_5fperms',['get_all_perms',['../permissions_8php.html#aeca9b280f3dc3358c89976d81d690008',1,'permissions.php']]], - ['get_5fapp',['get_app',['../classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2',1,'BaseObject\get_app()'],['../boot_8php.html#a0e6db7e365f2b041a828b93786f694bc',1,'get_app(): boot.php']]], - ['get_5fapps',['get_apps',['../classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad',1,'App']]], - ['get_5fatom_5felements',['get_atom_elements',['../items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1',1,'items.php']]], - ['get_5fbaseurl',['get_baseurl',['../classApp.html#a604d659d6977a99de42a160343e5289a',1,'App']]], - ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], - ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#a980dee1d8715a98ab02e36b59facf8ed',1,'language.php']]], - ['get_5fbirthdays',['get_birthdays',['../identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'identity.php']]], - ['get_5fbookmark_5flink',['get_bookmark_link',['../include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa',1,'bookmarks.php']]], - ['get_5fbrowser_5flanguage',['get_browser_language',['../language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e',1,'language.php']]], - ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], - ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], - ['get_5fchannel_5fby_5fnick',['get_channel_by_nick',['../identity_8php.html#ac73b3e13778c564c877554517a7f51ba',1,'identity.php']]], - ['get_5fchannel_5fdefault_5fperms',['get_channel_default_perms',['../identity_8php.html#a293f416ce9050220b183e08ff5890216',1,'identity.php']]], - ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], - ['get_5fchildren',['get_children',['../classRedMatrix_1_1Import_1_1Import.html#a57561904b0f127e0d9a3e2c33688daf8',1,'RedMatrix\Import\Import\get_children()'],['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item\get_children()']]], - ['get_5fcipher',['get_cipher',['../classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901',1,'Conversation']]], - ['get_5fcloudpath',['get_cloudpath',['../include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce',1,'attach.php']]], - ['get_5fcomment_5fbox',['get_comment_box',['../classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf',1,'Item']]], - ['get_5fcomment_5fbox_5ftemplate',['get_comment_box_template',['../classItem.html#a904421c7a427411bb2ab473bca872f63',1,'Item']]], - ['get_5fconfig',['get_config',['../include_2config_8php.html#af02c96e6b37335774b548914ede1d22e',1,'config.php']]], - ['get_5fconfig_5ffrom_5fstorage',['get_config_from_storage',['../include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74',1,'config.php']]], - ['get_5fconversation',['get_conversation',['../classItem.html#a0c301aaed2b7d682728d18db3a22afa3',1,'Item']]], - ['get_5fcredentials',['get_credentials',['../classRedMatrix_1_1Import_1_1Import.html#a24134929d9a8a682da2036a0bf326367',1,'RedMatrix::Import::Import']]], - ['get_5fcustom_5fnav',['get_custom_nav',['../boot_8php.html#a899d24fd074594ceebbf72e1feff335f',1,'boot.php']]], - ['get_5fdata',['get_data',['../classItem.html#ad3638f93065693c1f69eb349feb1b7aa',1,'Item']]], - ['get_5fdata_5fvalue',['get_data_value',['../classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c',1,'Item']]], - ['get_5fdb_5ferrno',['get_db_errno',['../setup_8php.html#a8652788e8589778c5f81634a9d5b9429',1,'setup.php']]], - ['get_5fdefault_5fprofile_5fphoto',['get_default_profile_photo',['../identity_8php.html#ab1485a26b032956e1496fc08c58b83ed',1,'identity.php']]], - ['get_5fdiaspora_5fkey',['get_diaspora_key',['../diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e',1,'diaspora.php']]], - ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], - ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], - ['get_5fdirectory_5fprimary',['get_directory_primary',['../boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9',1,'boot.php']]], - ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], - ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], - ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], - ['get_5ffeature_5fdefault',['get_feature_default',['../features_8php.html#ab9a273de13a12a1c561b380cabaea090',1,'features.php']]], - ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], - ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a04a35b610acfe54434df08adec39c0c7',1,'items.php']]], - ['get_5ffile_5factivity_5fobject',['get_file_activity_object',['../include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db',1,'attach.php']]], - ['get_5ffirst_5fdim',['get_first_dim',['../datetime_8php.html#aba971b67f17fecf050813f1eba72367f',1,'datetime.php']]], - ['get_5fform_5fsecurity_5ftoken',['get_form_security_token',['../security_8php.html#acd06ef411116115c2f0a92633700db8a',1,'security.php']]], - ['get_5fformatsmap',['get_FormatsMap',['../classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4',1,'photo_imagick']]], - ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], - ['get_5fhost_5fsession',['get_host_session',['../classzotsh_1_1ZotSH.html#a85d0155ee6f6116c16c3c0091805b144',1,'zotsh::ZotSH']]], - ['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#a27987a41cb703a796f1821baeb4774a2',1,'RedMatrix::Import::Import']]], - ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], - ['get_5fitem_5fcontact',['get_item_contact',['../items_8php.html#aab9c6bae4c40799867596bdaae9829fd',1,'items.php']]], - ['get_5fitem_5felements',['get_item_elements',['../items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361',1,'items.php']]], - ['get_5fitem_5fident',['get_item_ident',['../classRedMatrix_1_1Import_1_1Import.html#a772c28edf36aaf8e66007a95004c4059',1,'RedMatrix::Import::Import']]], - ['get_5fitemlist',['get_itemlist',['../classRedMatrix_1_1Import_1_1Import.html#a855cd5a79b95d269ae8737fae774e3bc',1,'RedMatrix::Import::Import']]], - ['get_5flanguage_5fname',['get_language_name',['../language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7',1,'language.php']]], - ['get_5fmail_5felements',['get_mail_elements',['../items_8php.html#a94ddb1d6c8fa21dd7433677e85168037',1,'items.php']]], - ['get_5fmarkup_5ftemplate',['get_markup_template',['../interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442',1,'ITemplateEngine\get_markup_template()'],['../classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88',1,'FriendicaSmartyEngine\get_markup_template()'],['../classTemplate.html#afd97b4b1e7754a550e67c0ea79159059',1,'Template\get_markup_template()'],['../plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4',1,'get_markup_template(): plugin.php']]], - ['get_5fmax_5fimport_5fsize',['get_max_import_size',['../boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90',1,'boot.php']]], - ['get_5fmentions',['get_mentions',['../text_8php.html#a76d1b3435c067978d7b484c45f56472b',1,'text.php']]], - ['get_5fmode',['get_mode',['../classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd',1,'Conversation']]], - ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], - ['get_5fmy_5faddress',['get_my_address',['../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']]], - ['get_5fowner_5fname',['get_owner_name',['../classItem.html#a67892aa23d19f4431bb2e5f43c74000e',1,'Item']]], - ['get_5fowner_5fphoto',['get_owner_photo',['../classItem.html#aa541bc4290e51bfd688d6921bebabc73',1,'Item']]], - ['get_5fowner_5furl',['get_owner_url',['../classItem.html#a9f2d219da712390f59012fc32a342074',1,'Item']]], - ['get_5fparent',['get_parent',['../classItem.html#a4b92e3a9d6212c553aa2661489bd95d8',1,'Item']]], - ['get_5fparent_5fcloudpath',['get_parent_cloudpath',['../include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f',1,'attach.php']]], - ['get_5fpath',['get_path',['../classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be',1,'App']]], - ['get_5fpconfig',['get_pconfig',['../include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad',1,'config.php']]], - ['get_5fperms',['get_perms',['../classApp.html#adb5a4bb657881e553978ff390babd01f',1,'App\get_perms()'],['../permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972',1,'get_perms(): permissions.php']]], - ['get_5fplink',['get_plink',['../text_8php.html#aac0969ae09853205992ba06ab9f9f61a',1,'text.php']]], - ['get_5fplugin_5finfo',['get_plugin_info',['../plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35',1,'plugin.php']]], - ['get_5fpoke_5fverbs',['get_poke_verbs',['../text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66',1,'text.php']]], - ['get_5fpoller_5fruntime',['get_poller_runtime',['../boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17',1,'boot.php']]], - ['get_5fprofile_5felements',['get_profile_elements',['../items_8php.html#a251343637ff40a50cca93452cd530c26',1,'items.php']]], - ['get_5fprofile_5ffields_5fadvanced',['get_profile_fields_advanced',['../identity_8php.html#a224710dfb7465b706c91134247c20afa',1,'identity.php']]], - ['get_5fprofile_5ffields_5fbasic',['get_profile_fields_basic',['../identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21',1,'identity.php']]], - ['get_5fprofile_5fowner',['get_profile_owner',['../classConversation.html#a5effe8ad3007e01333df44b81432b813',1,'Conversation']]], - ['get_5fpublic_5ffeed',['get_public_feed',['../items_8php.html#a079e099e15d88d47aeb6ca6d60da7107',1,'items.php']]], - ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], - ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], - ['get_5fresponse_5fbutton_5ftext',['get_response_button_text',['../conversation_8php.html#afb16b867934dbc5f7e68f21925f9e71e',1,'conversation.php']]], - ['get_5fresponses',['get_responses',['../conversation_8php.html#afb69613cf71dc5a21c23f3430ce3c229',1,'conversation.php']]], - ['get_5frole_5fperms',['get_role_perms',['../permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe',1,'permissions.php']]], - ['get_5froles',['get_roles',['../permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991',1,'permissions.php']]], - ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], - ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], - ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], - ['get_5ftags',['get_tags',['../text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623',1,'text.php']]], - ['get_5ftaxonomy',['get_taxonomy',['../classRedMatrix_1_1Import_1_1Import.html#ae3c6472bea1a44025bc2e152604eb20c',1,'RedMatrix::Import::Import']]], - ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], - ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#ac5900b46e6a1c93360bb8e58f8b3540b',1,'Conversation\get_template_data()'],['../classItem.html#a50d0fdf47006f47a0dc89cfd0d7e690d',1,'Item\get_template_data()']]], - ['get_5ftemplate_5fengine',['get_template_engine',['../classApp.html#acb27e607fe4c82603444676e25c36b70',1,'App']]], - ['get_5ftemplate_5fldelim',['get_template_ldelim',['../classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a',1,'App']]], - ['get_5ftemplate_5frdelim',['get_template_rdelim',['../classApp.html#aab23c59172310fd30f2d60dc039d3eea',1,'App']]], - ['get_5fterms_5foftype',['get_terms_oftype',['../taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1',1,'taxonomy.php']]], - ['get_5ftheme_5fconfig_5ffile',['get_theme_config_file',['../settings_8php.html#a39abc76ff5459c57e3b957664f273f18',1,'settings.php']]], - ['get_5ftheme_5finfo',['get_theme_info',['../plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405',1,'plugin.php']]], - ['get_5ftheme_5fscreenshot',['get_theme_screenshot',['../plugin_8php.html#a48047edfbef770125a5508dcc2f9282f',1,'plugin.php']]], - ['get_5ftheme_5fuid',['get_theme_uid',['../identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3',1,'identity.php']]], - ['get_5fthings',['get_things',['../taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de',1,'taxonomy.php']]], - ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], - ['get_5ftimezones',['get_timezones',['../datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1',1,'datetime.php']]], - ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], - ['get_5fwords',['get_words',['../spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6',1,'spam.php']]], - ['get_5fxconfig',['get_xconfig',['../include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e',1,'config.php']]], - ['getasseturl',['getAssetUrl',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d',1,'RedMatrix::RedDAV::RedBrowser']]], - ['getchild',['getChild',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a1a37850bdd1f188abd6160559698d5d7',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getchildren',['getChildren',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a9b9a0b5bfa4de1f78e6cafaa534b6f6a',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getcontenttype',['getContentType',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e',1,'RedMatrix::RedDAV::RedFile']]], - ['getcurrentuser',['getCurrentUser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aa0b2a5fa9186d7dc0e637f1ecb379c42',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['getdir',['getDir',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a825dc5f3e0f83f50736c16daa6a4809d',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getdriver',['getdriver',['../classdba__driver.html#a02165fc4bee63d040ebd963a4fa82a14',1,'dba_driver\getdriver()'],['../classdba__mysql.html#a31011edd67b6b394355bf04cedb498d0',1,'dba_mysql\getdriver()'],['../classdba__mysqli.html#a6eb6c578c6928908321e5e6da866e1db',1,'dba_mysqli\getdriver()'],['../classdba__postgres.html#ae0f834413e57cf0735ae7b64b2f71e68',1,'dba_postgres\getdriver()']]], - ['getetag',['getETag',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689',1,'RedMatrix::RedDAV::RedFile']]], - ['getext',['getExt',['../classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba',1,'photo_driver']]], - ['getheight',['getHeight',['../classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468',1,'photo_driver']]], - ['geticonfromtype',['getIconFromType',['../text_8php.html#a5ee0715f7fa144b1307a3ff10222c609',1,'text.php']]], - ['getimage',['getImage',['../classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5',1,'photo_driver\getImage()'],['../classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484',1,'photo_gd\getImage()'],['../classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc',1,'photo_imagick\getImage()']]], - ['getlastmodified',['getLastModified',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5',1,'RedMatrix\RedDAV\RedDirectory\getLastModified()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25',1,'RedMatrix\RedDAV\RedFile\getLastModified()']]], - ['getname',['getName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df',1,'RedMatrix\RedDAV\RedDirectory\getName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d',1,'RedMatrix\RedDAV\RedFile\getName()']]], - ['getquotainfo',['getQuotaInfo',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db443ed3c84938b4352fe515bf8d68',1,'RedMatrix::RedDAV::RedDirectory']]], - ['getsize',['getSize',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a07e1b19e7aaf3dcce822e9be8823a87d',1,'RedMatrix::RedDAV::RedFile']]], - ['gettimezone',['getTimezone',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6333c8ce58998bd11bf8102afe3b0748',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['gettype',['getType',['../classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3',1,'photo_driver']]], - ['getwidth',['getWidth',['../classphoto__driver.html#acc30486acee9e89e32701f44a1738117',1,'photo_driver']]], - ['goaway',['goaway',['../boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1',1,'boot.php']]], - ['gprobe_5frun',['gprobe_run',['../gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1',1,'gprobe.php']]], - ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], - ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], - ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], - ['group_5fcontent',['group_content',['../mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83',1,'group.php']]], - ['group_5fget_5fmembers',['group_get_members',['../include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09',1,'group.php']]], - ['group_5fpost',['group_post',['../mod_2group_8php.html#aed1f009b1221348021bb34761160ef35',1,'group.php']]], - ['group_5frec_5fbyhash',['group_rec_byhash',['../include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245',1,'group.php']]], - ['group_5frmv',['group_rmv',['../include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5',1,'group.php']]], - ['group_5frmv_5fmember',['group_rmv_member',['../include_2group_8php.html#a540e3ef36f47d47532646be4241f6518',1,'group.php']]], - ['group_5fselect',['group_select',['../acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0',1,'acl_selectors.php']]], - ['group_5fside',['group_side',['../include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9',1,'group.php']]], - ['groups_5fcontaining',['groups_containing',['../include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f',1,'group.php']]], - ['guess_5fimage_5ftype',['guess_image_type',['../photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa',1,'photo_driver.php']]] -]; diff --git a/doc/html/search/functions_68.html b/doc/html/search/functions_68.html deleted file mode 100644 index 77d37fe1a..000000000 --- a/doc/html/search/functions_68.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_68.js b/doc/html/search/functions_68.js deleted file mode 100644 index 03d0a1048..000000000 --- a/doc/html/search/functions_68.js +++ /dev/null @@ -1,33 +0,0 @@ -var searchData= -[ - ['handle_5ffeed',['handle_feed',['../items_8php.html#a52c24114b73c0bdb605a03cd29712223',1,'items.php']]], - ['handle_5ftag',['handle_tag',['../text_8php.html#aa22feef4de326e1d7078dedd892e615c',1,'text.php']]], - ['has_5fpermissions',['has_permissions',['../items_8php.html#a77051724d1784074ff187e73a4db93fe',1,'items.php']]], - ['hcard_5fcontent',['hcard_content',['../hcard_8php.html#a3663012f1549849af88aba2bb87388e3',1,'hcard.php']]], - ['hcard_5finit',['hcard_init',['../hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d',1,'hcard.php']]], - ['head_5fadd_5fcss',['head_add_css',['../plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a',1,'plugin.php']]], - ['head_5fadd_5fjs',['head_add_js',['../plugin_8php.html#a516591850f4fd49fd1425cfa54089db8',1,'plugin.php']]], - ['head_5fget_5fcss',['head_get_css',['../plugin_8php.html#af92789f559b89a380e49d303218aeeca',1,'plugin.php']]], - ['head_5fget_5ficon',['head_get_icon',['../classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166',1,'App\head_get_icon()'],['../boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77',1,'head_get_icon(): boot.php']]], - ['head_5fget_5fjs',['head_get_js',['../plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1',1,'plugin.php']]], - ['head_5fget_5fmain_5fjs',['head_get_main_js',['../plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff',1,'plugin.php']]], - ['head_5fremove_5fcss',['head_remove_css',['../plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf',1,'plugin.php']]], - ['head_5fremove_5fjs',['head_remove_js',['../plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4',1,'plugin.php']]], - ['head_5fset_5ficon',['head_set_icon',['../classApp.html#a8863703a0305eaa45eb970dbd2046291',1,'App\head_set_icon()'],['../boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84',1,'head_set_icon(): boot.php']]], - ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], - ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], - ['hivenet_5finit',['hivenet_init',['../extend_2theme_2deadsuperhero_2hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29',1,'theme.php']]], - ['home_5fcontent',['home_content',['../home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f',1,'home.php']]], - ['home_5finit',['home_init',['../home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde',1,'home.php']]], - ['host',['host',['../classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612',1,'zotsh.ZotSH.host'],['../classzotsh_1_1ZotSH.html#a198cb4f3d63547b67a8da1bdec709612',1,'zotsh.ZotSH.host']]], - ['hostname',['hostname',['../classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea',1,'zotsh.ZotSH.hostname'],['../classzotsh_1_1ZotSH.html#af98b4ff9030e983e6bb9cf8fe724f4ea',1,'zotsh.ZotSH.hostname']]], - ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], - ['html2bb_5fvideo',['html2bb_video',['../text_8php.html#a138a3a611fa7f4f3630674145fc826bf',1,'text.php']]], - ['html2bbcode',['html2bbcode',['../html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837',1,'html2bbcode.php']]], - ['html2plain',['html2plain',['../html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04',1,'html2plain.php']]], - ['htmlactionspanel',['htmlActionsPanel',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf',1,'RedMatrix::RedDAV::RedBrowser']]], - ['http_5fstatus_5fexit',['http_status_exit',['../include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2',1,'network.php']]], - ['hub_5fpost_5freturn',['hub_post_return',['../pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945',1,'pubsub.php']]], - ['hub_5freturn',['hub_return',['../pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb',1,'pubsub.php']]], - ['hubloc_5fchange_5fprimary',['hubloc_change_primary',['../hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d',1,'hubloc.php']]] -]; diff --git a/doc/html/search/functions_69.html b/doc/html/search/functions_69.html deleted file mode 100644 index 9edd1a1c1..000000000 --- a/doc/html/search/functions_69.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_69.js b/doc/html/search/functions_69.js deleted file mode 100644 index 3e709a7e5..000000000 --- a/doc/html/search/functions_69.js +++ /dev/null @@ -1,67 +0,0 @@ -var searchData= -[ - ['ical_5fwrapper',['ical_wrapper',['../event_8php.html#ab8cc2825013e724dc26229026711cf93',1,'event.php']]], - ['identity_5fbasic_5fexport',['identity_basic_export',['../identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249',1,'identity.php']]], - ['identity_5fcheck_5fservice_5fclass',['identity_check_service_class',['../identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633',1,'identity.php']]], - ['identity_5fselector',['identity_selector',['../identity_8php.html#a2ab5172eabd375869060c9ad68323f5c',1,'identity.php']]], - ['ids_5fto_5fquerystr',['ids_to_querystr',['../text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a',1,'text.php']]], - ['imagestring',['imageString',['../classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd',1,'photo_driver\imageString()'],['../classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00',1,'photo_gd\imageString()'],['../classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019',1,'photo_imagick\imageString()']]], - ['impel_5finit',['impel_init',['../impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b',1,'impel.php']]], - ['import_5fauthor_5fdiaspora',['import_author_diaspora',['../items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc',1,'items.php']]], - ['import_5fauthor_5frss',['import_author_rss',['../items_8php.html#a6bee35961f2e32905f20367a9309d627',1,'items.php']]], - ['import_5fauthor_5funknown',['import_author_unknown',['../items_8php.html#a37f79991f36811cf847446ff60e8e11f',1,'items.php']]], - ['import_5fauthor_5fxchan',['import_author_xchan',['../items_8php.html#ae73794179b62d39bb597ff670ab1c1e5',1,'items.php']]], - ['import_5fauthor_5fzot',['import_author_zot',['../zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d',1,'zot.php']]], - ['import_5fchannel_5fphoto',['import_channel_photo',['../photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a',1,'photo_driver.php']]], - ['import_5fcontent',['import_content',['../import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184',1,'import.php']]], - ['import_5fdirectory_5fkeywords',['import_directory_keywords',['../zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a',1,'zot.php']]], - ['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#a20750dd2c36961013fd382fb34e1366c',1,'zot.php']]], - ['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]], - ['import_5fprofile_5fphoto',['import_profile_photo',['../photo__driver_8php.html#a78f5a10c568d2a9bbbb129dc96548887',1,'photo_driver.php']]], - ['import_5fsite',['import_site',['../zot_8php.html#a2657e141d62d5f67ad3c87651b585299',1,'zot.php']]], - ['import_5fxchan',['import_xchan',['../zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315',1,'zot.php']]], - ['importelm_5fpost',['importelm_post',['../importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f',1,'importelm.php']]], - ['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]], - ['in_5fgroup',['in_group',['../include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355',1,'attach.php']]], - ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], - ['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']]], - ['invite_5fcontent',['invite_content',['../invite_8php.html#a244385b28cfd021d308715f01158bfd9',1,'invite.php']]], - ['invite_5fpost',['invite_post',['../invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5',1,'invite.php']]], - ['is_5fa_5fdate_5farg',['is_a_date_arg',['../text_8php.html#a1557112a774ec00fa06ed6b6f6495506',1,'text.php']]], - ['is_5fajax',['is_ajax',['../boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c',1,'boot.php']]], - ['is_5fcommentable',['is_commentable',['../classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3',1,'Conversation\is_commentable()'],['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item\is_commentable()']]], - ['is_5fdeveloper',['is_developer',['../boot_8php.html#a6252d8eca67c689d9035ec6da544cf46',1,'boot.php']]], - ['is_5fforeigner',['is_foreigner',['../identity_8php.html#ae2b140df652a55ca11bb6a99005fce35',1,'identity.php']]], - ['is_5fmatrix_5furl',['is_matrix_url',['../hubloc_8php.html#aebd244b4616ded022cbbee5e82926951',1,'hubloc.php']]], - ['is_5fmember',['is_member',['../identity_8php.html#a9637c557e13d9671f3eeb124ab98212a',1,'identity.php']]], - ['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]], - ['is_5fpublic_5fprofile',['is_public_profile',['../identity_8php.html#a4e996e44b50330098a04b467367a559f',1,'identity.php']]], - ['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]], - ['is_5fsys_5fchannel',['is_sys_channel',['../identity_8php.html#aa4bd4abfcba883f43919e89ec6419025',1,'identity.php']]], - ['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]], - ['is_5ftoplevel',['is_toplevel',['../classItem.html#aa49e40f961dff66da32c5ae110e32993',1,'Item']]], - ['is_5fvalid',['is_valid',['../classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab',1,'photo_driver']]], - ['is_5fvisiting',['is_visiting',['../classItem.html#a97c7feeea7f26a73176cb19faa455e12',1,'Item']]], - ['is_5fwall_5fto_5fwall',['is_wall_to_wall',['../classItem.html#aabf87ded59c25b5fe2b2296678e70509',1,'Item']]], - ['is_5fwindows',['is_windows',['../boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08',1,'boot.php']]], - ['is_5fwritable',['is_writable',['../classConversation.html#a5879199008b96bee7550b576d614e1c1',1,'Conversation']]], - ['item_5fadd_5fcid',['item_add_cid',['../items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df',1,'items.php']]], - ['item_5fcheck_5fservice_5fclass',['item_check_service_class',['../item_8php.html#a5b1b36cb301a94b38150074f0d424e74',1,'item.php']]], - ['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]], - ['item_5fexpire',['item_expire',['../items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc',1,'items.php']]], - ['item_5fextract_5fimages',['item_extract_images',['../conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654',1,'conversation.php']]], - ['item_5fgetfeedattach',['item_getfeedattach',['../items_8php.html#a09d425596b9f8663472cf7474ad36d96',1,'items.php']]], - ['item_5fgetfeedtags',['item_getfeedtags',['../items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7',1,'items.php']]], - ['item_5fmessage_5fid',['item_message_id',['../text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e',1,'text.php']]], - ['item_5fpermissions_5fsql',['item_permissions_sql',['../security_8php.html#a9355488460ab11d6058656ff919e5cf9',1,'security.php']]], - ['item_5fphoto_5fmenu',['item_photo_menu',['../conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3',1,'conversation.php']]], - ['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]], - ['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]], - ['item_5fredir_5fand_5freplace_5fimages',['item_redir_and_replace_images',['../conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533',1,'conversation.php']]], - ['item_5fremove_5fcid',['item_remove_cid',['../items_8php.html#a5ed782ff5b9cf050bec931e06de12c00',1,'items.php']]], - ['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]], - ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]], - ['items_5ffetch',['items_fetch',['../items_8php.html#a756738301f2ed96be50232500677d58a',1,'items.php']]] -]; diff --git a/doc/html/search/functions_6a.html b/doc/html/search/functions_6a.html deleted file mode 100644 index 948495f1b..000000000 --- a/doc/html/search/functions_6a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6a.js b/doc/html/search/functions_6a.js deleted file mode 100644 index d6a51a5d9..000000000 --- a/doc/html/search/functions_6a.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['jindent',['jindent',['../text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8',1,'text.php']]], - ['json_5fdecode_5fplus',['json_decode_plus',['../text_8php.html#a0271381208acfa2d4cff36da281e3e23',1,'text.php']]], - ['json_5freturn_5fand_5fdie',['json_return_and_die',['../include_2network_8php.html#a4c5d50079e089168d9248427018fffd4',1,'network.php']]] -]; diff --git a/doc/html/search/functions_6b.html b/doc/html/search/functions_6b.html deleted file mode 100644 index a0d07a92d..000000000 --- a/doc/html/search/functions_6b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6b.js b/doc/html/search/functions_6b.js deleted file mode 100644 index d29bcec09..000000000 --- a/doc/html/search/functions_6b.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['killme',['killme',['../boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c',1,'boot.php']]] -]; diff --git a/doc/html/search/functions_6c.html b/doc/html/search/functions_6c.html deleted file mode 100644 index 33c0d6dd1..000000000 --- a/doc/html/search/functions_6c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js deleted file mode 100644 index a6b154c3d..000000000 --- a/doc/html/search/functions_6c.js +++ /dev/null @@ -1,48 +0,0 @@ -var searchData= -[ - ['lang_5fcontent',['lang_content',['../lang_8php.html#a4c5c1140f51a638f224275cd618c2f37',1,'lang.php']]], - ['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']]], - ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], - ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], - ['linkify',['linkify',['../text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0',1,'text.php']]], - ['linkify_5ftags',['linkify_tags',['../text_8php.html#a4e4045a07c55cacf3e4b63bde190d954',1,'text.php']]], - ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], - ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], - ['list_5fsmilies',['list_smilies',['../text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc',1,'text.php']]], - ['load',['load',['../classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712',1,'photo_driver\load()'],['../classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9',1,'photo_gd\load()'],['../classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8',1,'photo_imagick\load()']]], - ['load_5fconf',['load_conf',['../namespacezotsh.html#a562892f8907e608886f70a872671c0b5',1,'zotsh']]], - ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], - ['load_5fcontact_5flinks',['load_contact_links',['../boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6',1,'boot.php']]], - ['load_5fdatabase',['load_database',['../setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a',1,'setup.php']]], - ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], - ['load_5fhooks',['load_hooks',['../plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813',1,'plugin.php']]], - ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b',1,'config.php']]], - ['load_5fpdl',['load_pdl',['../boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501',1,'boot.php']]], - ['load_5fplugin',['load_plugin',['../plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d',1,'plugin.php']]], - ['load_5ftranslation_5ftable',['load_translation_table',['../language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05',1,'language.php']]], - ['load_5fxconfig',['load_xconfig',['../include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52',1,'config.php']]], - ['local_5fchannel',['local_channel',['../boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb',1,'boot.php']]], - ['local_5fdir_5fupdate',['local_dir_update',['../dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e',1,'dir_fns.php']]], - ['local_5fuser',['local_user',['../boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44',1,'boot.php']]], - ['localize_5fitem',['localize_item',['../conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c',1,'conversation.php']]], - ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], - ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], - ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], - ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], - ['log_5ffailed_5flogin',['log_failed_login',['../auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1',1,'auth.php']]], - ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], - ['login',['login',['../boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4',1,'boot.php']]], - ['login_5fcontent',['login_content',['../login_8php.html#a1d69ca88eb9005a7026e128b9a645904',1,'login.php']]], - ['loginuser',['loginUser',['../classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f',1,'FKOAuth1']]], - ['lookup_5fconsumer',['lookup_consumer',['../classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1',1,'FKOAuthDataStore']]], - ['lookup_5fnonce',['lookup_nonce',['../classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599',1,'FKOAuthDataStore']]], - ['lookup_5ftoken',['lookup_token',['../classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab',1,'FKOAuthDataStore']]], - ['lostpass_5fcontent',['lostpass_content',['../lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3',1,'lostpass.php']]], - ['lostpass_5fpost',['lostpass_post',['../lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc',1,'lostpass.php']]], - ['ls',['ls',['../classeasywebdav_1_1client_1_1Client.html#ad843202f103b9ab9fbc70014dcb0049c',1,'easywebdav::client::Client']]] -]; diff --git a/doc/html/search/functions_6d.html b/doc/html/search/functions_6d.html deleted file mode 100644 index 73fecffde..000000000 --- a/doc/html/search/functions_6d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6d.js b/doc/html/search/functions_6d.js deleted file mode 100644 index 49274a9eb..000000000 --- a/doc/html/search/functions_6d.js +++ /dev/null @@ -1,49 +0,0 @@ -var searchData= -[ - ['magic_5finit',['magic_init',['../magic_8php.html#acea2cc792849ca2d71d4b689f66518bf',1,'magic.php']]], - ['magic_5flink',['magic_link',['../text_8php.html#a1e510c53624933ce9b7d6715784894db',1,'text.php']]], - ['magiclink_5furl',['magiclink_url',['../text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6',1,'text.php']]], - ['mail_5fcontent',['mail_content',['../mail_8php.html#a3c7c485fc69f92371e8b20936040eca1',1,'mail.php']]], - ['mail_5fpost',['mail_post',['../mail_8php.html#acfc2cc0bf4e0b178207758384977f25a',1,'mail.php']]], - ['mail_5fstore',['mail_store',['../items_8php.html#a77da7ce9a117601d49ac4a67c71b514f',1,'items.php']]], - ['make_5fxchan_5fhash',['make_xchan_hash',['../zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75',1,'zot.php']]], - ['manage_5fcontent',['manage_content',['../manage_8php.html#a2bca247b5296827638959138367db4f5',1,'manage.php']]], - ['manual_5fconfig',['manual_config',['../setup_8php.html#abe405d227ba7232971964a706d4f3bce',1,'setup.php']]], - ['map_5fscope',['map_scope',['../items_8php.html#a8675e62674de6fb7c42e4a408c7116cc',1,'items.php']]], - ['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]], - ['marital_5fselector_5fmin',['marital_selector_min',['../profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534',1,'profile_selectors.php']]], - ['mark_5forphan_5fhubsxchans',['mark_orphan_hubsxchans',['../Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8',1,'Contact.php']]], - ['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]], - ['match_5fopenid',['match_openid',['../auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2',1,'auth.php']]], - ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], - ['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]], - ['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]], - ['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]], - ['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]], - ['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]], - ['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]], - ['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]], - ['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]], - ['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]], - ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], - ['menu_5flist',['menu_list',['../include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d',1,'menu.php']]], - ['menu_5flist_5fcount',['menu_list_count',['../include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485',1,'menu.php']]], - ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], - ['menu_5frender',['menu_render',['../include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a',1,'menu.php']]], - ['message_5fcontent',['message_content',['../mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f',1,'message.php']]], - ['metopem',['metopem',['../crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85',1,'crypto.php']]], - ['metorsa',['metorsa',['../crypto_8php.html#a573f02517abe4ac9241268263063b2a0',1,'crypto.php']]], - ['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]], - ['mimetype_5fselect',['mimetype_select',['../text_8php.html#a1633412120f52bdce5f43e0a127d9293',1,'text.php']]], - ['minded_5finit',['minded_init',['../extend_2theme_2deadsuperhero_2minded_2php_2theme_8php.html#a7e81433bad392d56c3020e71b3d7530a',1,'theme.php']]], - ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32',1,'group.php']]], - ['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]], - ['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]], - ['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]], - ['mkdir',['mkdir',['../classeasywebdav_1_1client_1_1Client.html#a0601c37a357cccb10fa05af95fbf306f',1,'easywebdav::client::Client']]], - ['mkdirs',['mkdirs',['../classeasywebdav_1_1client_1_1Client.html#a57116f274a2b4bf0c3a21978558bfe96',1,'easywebdav::client::Client']]], - ['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]], - ['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]], - ['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]], - ['mytheme_5finit',['mytheme_init',['../view_2theme_2mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8',1,'theme.php']]] -]; diff --git a/doc/html/search/functions_6e.html b/doc/html/search/functions_6e.html deleted file mode 100644 index 5e54741d4..000000000 --- a/doc/html/search/functions_6e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6e.js b/doc/html/search/functions_6e.js deleted file mode 100644 index e9981a764..000000000 --- a/doc/html/search/functions_6e.js +++ /dev/null @@ -1,37 +0,0 @@ -var searchData= -[ - ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], - ['nav',['nav',['../nav_8php.html#a43be0df73b90647ea70947ce004e231e',1,'nav.php']]], - ['nav_5fset_5fselected',['nav_set_selected',['../nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a',1,'nav.php']]], - ['navbar_5fcomplete',['navbar_complete',['../acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f',1,'acl.php']]], - ['net_5fhave_5fdriver',['net_have_driver',['../include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8',1,'probe.php']]], - ['netgrowth_5fcontent',['netgrowth_content',['../netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919',1,'netgrowth.php']]], - ['network_5fcontent',['network_content',['../mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4',1,'network.php']]], - ['network_5finit',['network_init',['../mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec',1,'network.php']]], - ['network_5ftabs',['network_tabs',['../conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4',1,'conversation.php']]], - ['network_5fto_5fname',['network_to_name',['../contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be',1,'contact_selectors.php']]], - ['new_5faccess_5ftoken',['new_access_token',['../classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934',1,'FKOAuthDataStore']]], - ['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]], - ['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]], - ['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]], - ['new_5fcontact',['new_contact',['../include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7',1,'follow.php']]], - ['new_5fcookie',['new_cookie',['../session_8php.html#a4c0ead624f95483e386bc80abf570a8f',1,'session.php']]], - ['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]], - ['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]], - ['node2bbcode',['node2bbcode',['../html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8',1,'html2bbcode.php']]], - ['node2bbcodesub',['node2bbcodesub',['../html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7',1,'html2bbcode.php']]], - ['normalise_5flink',['normalise_link',['../text_8php.html#a4bbb7d00c05cd20b4e043424f322388f',1,'text.php']]], - ['normalise_5fopenid',['normalise_openid',['../text_8php.html#adba17ec946f4285285dc100f7860bf51',1,'text.php']]], - ['notags',['notags',['../text_8php.html#a1af49756c8c71902a66c7e329c462beb',1,'text.php']]], - ['notes_5finit',['notes_init',['../notes_8php.html#a4dbd7b1f906440746af48b484d66535a',1,'notes.php']]], - ['notice',['notice',['../boot_8php.html#a9255af5ae9c887520091ea04763c1a88',1,'boot.php']]], - ['notification',['notification',['../enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc',1,'enotify.php']]], - ['notifications_5fcontent',['notifications_content',['../notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62',1,'notifications.php']]], - ['notifications_5foff',['notifications_off',['../identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe',1,'identity.php']]], - ['notifications_5fon',['notifications_on',['../identity_8php.html#a5650319c799de09d1b6d1076b6f839a4',1,'identity.php']]], - ['notifications_5fpost',['notifications_post',['../notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33',1,'notifications.php']]], - ['notifier_5frun',['notifier_run',['../notifier_8php.html#a568c502f626cff95e344c0748938b85d',1,'notifier.php']]], - ['notify_5fcontent',['notify_content',['../mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3',1,'notify.php']]], - ['notify_5finit',['notify_init',['../mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae',1,'notify.php']]], - ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.php']]] -]; diff --git a/doc/html/search/functions_6f.html b/doc/html/search/functions_6f.html deleted file mode 100644 index 9d6926417..000000000 --- a/doc/html/search/functions_6f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_6f.js b/doc/html/search/functions_6f.js deleted file mode 100644 index 4eb0c3442..000000000 --- a/doc/html/search/functions_6f.js +++ /dev/null @@ -1,27 +0,0 @@ -var searchData= -[ - ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], - ['obj_5fverb_5fselector',['obj_verb_selector',['../taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7',1,'taxonomy.php']]], - ['obj_5fverbs',['obj_verbs',['../taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce',1,'taxonomy.php']]], - ['occupant_5finit',['occupant_init',['../extend_2theme_2deadsuperhero_2occupant_2php_2theme_8php.html#abc29b3f62307e0356873963fee8484e8',1,'theme.php']]], - ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], - ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], - ['oembed_5fbbcode2html',['oembed_bbcode2html',['../include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2',1,'oembed.php']]], - ['oembed_5ffetch_5furl',['oembed_fetch_url',['../include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2',1,'oembed.php']]], - ['oembed_5fformat_5fobject',['oembed_format_object',['../include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3',1,'oembed.php']]], - ['oembed_5fhtml2bbcode',['oembed_html2bbcode',['../include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172',1,'oembed.php']]], - ['oembed_5fiframe',['oembed_iframe',['../include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a',1,'oembed.php']]], - ['oembed_5finit',['oembed_init',['../mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014',1,'oembed.php']]], - ['oembed_5freplacecb',['oembed_replacecb',['../include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0',1,'oembed.php']]], - ['oexchange_5fcontent',['oexchange_content',['../oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26',1,'oexchange.php']]], - ['oexchange_5finit',['oexchange_init',['../oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59',1,'oexchange.php']]], - ['old_5fwebfinger',['old_webfinger',['../include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec',1,'network.php']]], - ['onedirsync_5frun',['onedirsync_run',['../onedirsync_8php.html#a411aedd47c57476099647961e6a86691',1,'onedirsync.php']]], - ['onepoll_5frun',['onepoll_run',['../onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d',1,'onepoll.php']]], - ['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_70.html b/doc/html/search/functions_70.html deleted file mode 100644 index 8ef7fb962..000000000 --- a/doc/html/search/functions_70.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js deleted file mode 100644 index 454180df7..000000000 --- a/doc/html/search/functions_70.js +++ /dev/null @@ -1,123 +0,0 @@ -var searchData= -[ - ['p_5finit',['p_init',['../p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e',1,'p.php']]], - ['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]], - ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], - ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], - ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], - ['papp_5fencode',['papp_encode',['../include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680',1,'apps.php']]], - ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.php']]], - ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], - ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], - ['parsed',['parsed',['../classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9',1,'FriendicaSmarty']]], - ['parseurl_5fgetsiteinfo',['parseurl_getsiteinfo',['../parse__url_8php.html#a25635549f2c22955d72465f4d2e58993',1,'parse_url.php']]], - ['pdl_5fselector',['pdl_selector',['../comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e',1,'comanche.php']]], - ['pdledit_5fcontent',['pdledit_content',['../pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619',1,'pdledit.php']]], - ['pdledit_5fpost',['pdledit_post',['../pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7',1,'pdledit.php']]], - ['pemtome',['pemtome',['../crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c',1,'crypto.php']]], - ['pemtorsa',['pemtorsa',['../crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8',1,'crypto.php']]], - ['perm_5fis_5fallowed',['perm_is_allowed',['../permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835',1,'permissions.php']]], - ['permissions_5fsql',['permissions_sql',['../security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f',1,'security.php']]], - ['perms2str',['perms2str',['../text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee',1,'text.php']]], - ['photo_5ffactory',['photo_factory',['../photo__driver_8php.html#a32e2817faa25d7f11f60a8abff565035',1,'photo_driver.php']]], - ['photo_5finit',['photo_init',['../photo_8php.html#a582779d24882b0d31ee909a91d70a448',1,'photo.php']]], - ['photo_5fnew_5fresource',['photo_new_resource',['../text_8php.html#aa5528f41533927e1bd2da3618a74a6d7',1,'text.php']]], - ['photo_5fupload',['photo_upload',['../include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109',1,'photos.php']]], - ['photos_5falbum_5fexists',['photos_album_exists',['../include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35',1,'photos.php']]], - ['photos_5falbum_5fget_5fdb_5fidstr',['photos_album_get_db_idstr',['../include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe',1,'photos.php']]], - ['photos_5falbum_5frename',['photos_album_rename',['../include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab',1,'photos.php']]], - ['photos_5falbum_5fwidget',['photos_album_widget',['../include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979',1,'photos.php']]], - ['photos_5falbums_5flist',['photos_albums_list',['../include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9',1,'photos.php']]], - ['photos_5fcontent',['photos_content',['../mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812',1,'photos.php']]], - ['photos_5fcreate_5fitem',['photos_create_item',['../include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274',1,'photos.php']]], - ['photos_5finit',['photos_init',['../mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014',1,'photos.php']]], - ['photos_5flist_5fphotos',['photos_list_photos',['../include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51',1,'photos.php']]], - ['photos_5fpost',['photos_post',['../mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080',1,'photos.php']]], - ['php_5finit',['php_init',['../php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6',1,'php.php']]], - ['ping_5finit',['ping_init',['../ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1',1,'ping.php']]], - ['pipe_5fstreams',['pipe_streams',['../include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34',1,'attach.php']]], - ['pkcs1_5fencode',['pkcs1_encode',['../crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5',1,'crypto.php']]], - ['pkcs1to8',['pkcs1to8',['../crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9',1,'crypto.php']]], - ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec',1,'crypto.php']]], - ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], - ['pkcs8_5fencode',['pkcs8_encode',['../crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2',1,'crypto.php']]], - ['pkcs8to1',['pkcs8to1',['../crypto_8php.html#a7427a18417341aa35e2207bfa205e432',1,'crypto.php']]], - ['plugin_5fis_5finstalled',['plugin_is_installed',['../plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9',1,'plugin.php']]], - ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], - ['poco',['poco',['../socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1',1,'socgraph.php']]], - ['poco_5finit',['poco_init',['../poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498',1,'poco.php']]], - ['poco_5fload',['poco_load',['../socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6',1,'socgraph.php']]], - ['poke_5fcontent',['poke_content',['../poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993',1,'poke.php']]], - ['poke_5finit',['poke_init',['../poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b',1,'poke.php']]], - ['poll_5fcontent',['poll_content',['../poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263',1,'poll.php']]], - ['poll_5finit',['poll_init',['../poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930',1,'poll.php']]], - ['poll_5fpost',['poll_post',['../poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77',1,'poll.php']]], - ['poller_5frun',['poller_run',['../poller_8php.html#a5f12df3a4738124b6c039971e87e76da',1,'poller.php']]], - ['pop_5flang',['pop_lang',['../language_8php.html#a78bd204955ec4cc3a9ac651285a1689d',1,'language.php']]], - ['populate_5facl',['populate_acl',['../acl__selectors_8php.html#ad25bba63a51a2b0b5b463efae50df528',1,'acl_selectors.php']]], - ['post_5factivity_5fitem',['post_activity_item',['../items_8php.html#a410f9c743877c125ca06312373346903',1,'items.php']]], - ['post_5finit',['post_init',['../post_8php.html#af4b48181ce773ef0cdfc972441445c34',1,'post.php']]], - ['post_5fpost',['post_post',['../post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75',1,'post.php']]], - ['post_5fvar',['post_var',['../pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd',1,'pubsubhubbub.php']]], - ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], - ['prate_5finit',['prate_init',['../prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d',1,'prate.php']]], - ['prate_5fpost',['prate_post',['../prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd',1,'prate.php']]], - ['preg_5fcallback_5fhelp_5finclude',['preg_callback_help_include',['../help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4',1,'help.php']]], - ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], - ['prepare_5fbody',['prepare_body',['../text_8php.html#ae4df74296fbe55051ed3c035e55205e5',1,'text.php']]], - ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], - ['prepare_5ftext',['prepare_text',['../text_8php.html#afe54312607d92f7ce9593f5760831f80',1,'text.php']]], - ['pretheme_5finit',['pretheme_init',['../pretheme_8php.html#af5660943ee99db5fd75182316522eafe',1,'pretheme.php']]], - ['print_5ftemplate',['print_template',['../tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3',1,'tpldebug.php']]], - ['printable',['printable',['../dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249',1,'dba_driver.php']]], - ['private_5fmessages_5fdrop',['private_messages_drop',['../include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1',1,'message.php']]], - ['private_5fmessages_5ffetch_5fconversation',['private_messages_fetch_conversation',['../include_2message_8php.html#a5f8de9847e203329e317ac38dc646898',1,'message.php']]], - ['private_5fmessages_5ffetch_5fmessage',['private_messages_fetch_message',['../include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091',1,'message.php']]], - ['private_5fmessages_5flist',['private_messages_list',['../include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e',1,'message.php']]], - ['probe_5factivity_5fstream',['probe_activity_stream',['../include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c',1,'probe.php']]], - ['probe_5fcontent',['probe_content',['../mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99',1,'probe.php']]], - ['probe_5fdfrn',['probe_dfrn',['../include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0',1,'probe.php']]], - ['probe_5fdiaspora',['probe_diaspora',['../include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a',1,'probe.php']]], - ['probe_5flegacy_5ffeed',['probe_legacy_feed',['../include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7',1,'probe.php']]], - ['probe_5flegacy_5fwebfinger',['probe_legacy_webfinger',['../include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481',1,'probe.php']]], - ['probe_5fwebfinger',['probe_webfinger',['../include_2probe_8php.html#a950a200372393f706851103cd3fffcba',1,'probe.php']]], - ['probe_5fwell_5fknown',['probe_well_known',['../include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d',1,'probe.php']]], - ['probe_5fzot',['probe_zot',['../include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85',1,'probe.php']]], - ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], - ['process_5fchannel_5fsync_5fdelivery',['process_channel_sync_delivery',['../zot_8php.html#ac301c67864917c35922257950ae0f95c',1,'zot.php']]], - ['process_5fdelivery',['process_delivery',['../zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d',1,'zot.php']]], - ['process_5flocation_5fdelivery',['process_location_delivery',['../zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988',1,'zot.php']]], - ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], - ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], - ['process_5frating_5fdelivery',['process_rating_delivery',['../zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181',1,'zot.php']]], - ['profile_5factivity',['profile_activity',['../activities_8php.html#a80134e807719b3c54aba971958d2e132',1,'activities.php']]], - ['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]], - ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620',1,'identity.php']]], - ['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]], - ['profile_5fload',['profile_load',['../identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68',1,'identity.php']]], - ['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]], - ['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]], - ['profile_5fphoto_5fset_5fprofile_5fperms',['profile_photo_set_profile_perms',['../profile__photo_8php.html#a561103564199da56e58061a4196eb102',1,'profile_photo.php']]], - ['profile_5fsidebar',['profile_sidebar',['../identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc',1,'identity.php']]], - ['profile_5ftabs',['profile_tabs',['../conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'conversation.php']]], - ['profiler',['profiler',['../text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6',1,'text.php']]], - ['profiles_5fcontent',['profiles_content',['../profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00',1,'profiles.php']]], - ['profiles_5finit',['profiles_init',['../profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e',1,'profiles.php']]], - ['profiles_5fpost',['profiles_post',['../profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04',1,'profiles.php']]], - ['profperm_5fcontent',['profperm_content',['../profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023',1,'profperm.php']]], - ['profperm_5finit',['profperm_init',['../profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6',1,'profperm.php']]], - ['prop',['prop',['../namespaceeasywebdav_1_1client.html#a5e093458640c0bd98f7ef39adc2fe159',1,'easywebdav::client']]], - ['protect_5fsprintf',['protect_sprintf',['../text_8php.html#a4e7698aca48982512594b274543c3b9b',1,'text.php']]], - ['prune_5fhub_5freinstalls',['prune_hub_reinstalls',['../hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002',1,'hubloc.php']]], - ['ps1',['PS1',['../classzotsh_1_1ZotSH.html#a02e7a436389baa6c2c1f7a530760606e',1,'zotsh::ZotSH']]], - ['public_5fpermissions_5fsql',['public_permissions_sql',['../security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01',1,'security.php']]], - ['public_5frecips',['public_recips',['../zot_8php.html#a083aec6c900d244e1bfc1406f9461465',1,'zot.php']]], - ['pubrsatome',['pubrsatome',['../crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287',1,'crypto.php']]], - ['pubsites_5fcontent',['pubsites_content',['../pubsites_8php.html#af614e279aab54065345bda6b03eafdf0',1,'pubsites.php']]], - ['pubsub_5finit',['pubsub_init',['../pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e',1,'pubsub.php']]], - ['pubsub_5fpost',['pubsub_post',['../pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123',1,'pubsub.php']]], - ['pubsubhubbub_5finit',['pubsubhubbub_init',['../pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0',1,'pubsubhubbub.php']]], - ['purify_5fhtml',['purify_html',['../text_8php.html#a4841df5beabdd1bdd1ed56781a915d61',1,'text.php']]], - ['push_5flang',['push_lang',['../language_8php.html#ac9142ef1d01a235c760deb0f16643f5a',1,'language.php']]], - ['put',['put',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0',1,'RedMatrix::RedDAV::RedFile']]] -]; diff --git a/doc/html/search/functions_71.html b/doc/html/search/functions_71.html deleted file mode 100644 index d8d7e7358..000000000 --- a/doc/html/search/functions_71.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_71.js b/doc/html/search/functions_71.js deleted file mode 100644 index ce23278cf..000000000 --- a/doc/html/search/functions_71.js +++ /dev/null @@ -1,8 +0,0 @@ -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()'],['../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_72.html b/doc/html/search/functions_72.html deleted file mode 100644 index 71f58bbd1..000000000 --- a/doc/html/search/functions_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js deleted file mode 100644 index babbd0d83..000000000 --- a/doc/html/search/functions_72.js +++ /dev/null @@ -1,88 +0,0 @@ -var searchData= -[ - ['random_5fprofile',['random_profile',['../Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713',1,'Contact.php']]], - ['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]], - ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], - ['rate_5fcontent',['rate_content',['../rate_8php.html#a22fc66202522acb53fb3746fc21d80f2',1,'rate.php']]], - ['rate_5finit',['rate_init',['../rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771',1,'rate.php']]], - ['rate_5fpost',['rate_post',['../rate_8php.html#acae9f41835b07e3c977464030e8831fc',1,'rate.php']]], - ['ratenotif_5frun',['ratenotif_run',['../ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37',1,'ratenotif.php']]], - ['ratings_5fcontent',['ratings_content',['../ratings_8php.html#a25f835d136b884354cf1fa4d897c857b',1,'ratings.php']]], - ['ratings_5finit',['ratings_init',['../ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3',1,'ratings.php']]], - ['ratingsearch_5finit',['ratingsearch_init',['../ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466',1,'ratingsearch.php']]], - ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], - ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], - ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], - ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], - ['receive_5fpost',['receive_post',['../receive_8php.html#a03d8fa26e77844020ba5602deca7d494',1,'receive.php']]], - ['recursive_5factivity_5frecipients',['recursive_activity_recipients',['../include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886',1,'attach.php']]], - ['red_5fescape_5fcodeblock',['red_escape_codeblock',['../items_8php.html#a49905ea75adfe8a2d110be344d18d6a6',1,'items.php']]], - ['red_5fescape_5fzrl_5fcallback',['red_escape_zrl_callback',['../items_8php.html#a83a349062945d585edb4b3c5d763ab6e',1,'items.php']]], - ['red_5fitem_5fnew',['red_item_new',['../include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898',1,'api.php']]], - ['red_5funescape_5fcodeblock',['red_unescape_codeblock',['../items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a',1,'items.php']]], - ['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]], - ['red_5fzrlify_5fimg_5fcallback',['red_zrlify_img_callback',['../items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a',1,'items.php']]], - ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793',1,'config.php']]], - ['redbasic_5finit',['redbasic_init',['../view_2theme_2redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], - ['redchannellist',['RedChannelList',['../reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66',1,'reddav.php']]], - ['redcollectiondata',['RedCollectionData',['../reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266',1,'reddav.php']]], - ['redfiledata',['RedFileData',['../reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088',1,'reddav.php']]], - ['reduce',['reduce',['../docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f',1,'docblox_errorchecker.php']]], - ['ref_5fsession_5fclose',['ref_session_close',['../session_8php.html#a5e1c616e02b863d5450317d101366bb7',1,'session.php']]], - ['ref_5fsession_5fdestroy',['ref_session_destroy',['../session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052',1,'session.php']]], - ['ref_5fsession_5fgc',['ref_session_gc',['../session_8php.html#ac95373f4966862a028033dd2f94d4da1',1,'session.php']]], - ['ref_5fsession_5fopen',['ref_session_open',['../session_8php.html#a26fa1042356d555023cbf15ddd4f8507',1,'session.php']]], - ['ref_5fsession_5fread',['ref_session_read',['../session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e',1,'session.php']]], - ['ref_5fsession_5fwrite',['ref_session_write',['../session_8php.html#ac4461c1984543d3553e73dba2771568f',1,'session.php']]], - ['refimport_5fcontent',['refimport_content',['../refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29',1,'refimport.php']]], - ['reflect_5farticle_5fcallback',['reflect_article_callback',['../refimport_8php.html#a53434bc19e6264db89e18d92ddc09860',1,'refimport.php']]], - ['reflect_5fcomment_5fstore',['reflect_comment_store',['../refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c',1,'refimport.php']]], - ['reflect_5ffind_5fuser',['reflect_find_user',['../refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d',1,'refimport.php']]], - ['reflect_5fget_5fchannel',['reflect_get_channel',['../refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c',1,'refimport.php']]], - ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], - ['regdir_5finit',['regdir_init',['../regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd',1,'regdir.php']]], - ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], - ['register_5fhook',['register_hook',['../plugin_8php.html#a425472c5f3afc137268b2ad45652b209',1,'plugin.php']]], - ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], - ['register_5fpage_5ftemplate',['register_page_template',['../comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f',1,'comanche.php']]], - ['register_5fpost',['register_post',['../register_8php.html#a51731dcc1917c58a790eb1c0f6132271',1,'register.php']]], - ['register_5ftemplate_5fengine',['register_template_engine',['../classApp.html#abf46a653d8499e7c253cc1be894a6d83',1,'App']]], - ['regmod_5fcontent',['regmod_content',['../regmod_8php.html#a7953df4e32e63946565e90cdd5d50409',1,'regmod.php']]], - ['regver_5fcontent',['regver_content',['../regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f',1,'regver.php']]], - ['relative_5fdate',['relative_date',['../datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82',1,'datetime.php']]], - ['reload_5fplugins',['reload_plugins',['../plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025',1,'plugin.php']]], - ['reltoabs',['reltoabs',['../text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2',1,'text.php']]], - ['remote_5fchannel',['remote_channel',['../boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458',1,'boot.php']]], - ['remote_5fonline_5fstatus',['remote_online_status',['../identity_8php.html#a47d6f53216f23a3484061793bef29854',1,'identity.php']]], - ['remote_5fuser',['remote_user',['../boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209',1,'boot.php']]], - ['remove_5fall_5fxchan_5fresources',['remove_all_xchan_resources',['../Contact_8php.html#acc12cda999c88c4d6185cca967c15125',1,'Contact.php']]], - ['remove_5fchild',['remove_child',['../classItem.html#a2ce70ef63f9f4d86a09c351678806925',1,'Item']]], - ['remove_5fcommunity_5ftag',['remove_community_tag',['../zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10',1,'zot.php']]], - ['remove_5fobsolete_5fhublocs',['remove_obsolete_hublocs',['../hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea',1,'hubloc.php']]], - ['remove_5fparent',['remove_parent',['../classItem.html#aa452b5bcd8dea12119b09212c615cb41',1,'Item']]], - ['remove_5fqueue_5fitem',['remove_queue_item',['../queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24',1,'queue_fn.php']]], - ['removeaccount_5fcontent',['removeaccount_content',['../removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695',1,'removeaccount.php']]], - ['removeaccount_5fpost',['removeaccount_post',['../removeaccount_8php.html#a26a3325292e932c59793430ab737126a',1,'removeaccount.php']]], - ['removeme_5fcontent',['removeme_content',['../removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c',1,'removeme.php']]], - ['removeme_5fpost',['removeme_post',['../removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88',1,'removeme.php']]], - ['render_5flocation_5fdefault',['render_location_default',['../conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2',1,'conversation.php']]], - ['replace',['replace',['../classTemplate.html#a285b5b2007dbbf733476273df3fed4ef',1,'Template']]], - ['replace_5fmacros',['replace_macros',['../interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243',1,'ITemplateEngine\replace_macros()'],['../classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2',1,'FriendicaSmartyEngine\replace_macros()'],['../classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b',1,'Template\replace_macros()'],['../text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09',1,'replace_macros(): text.php']]], - ['requestdata',['requestdata',['../include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e',1,'api.php']]], - ['retain_5fitem',['retain_item',['../items_8php.html#af6237605c60d69abdd959ddbbee3420c',1,'items.php']]], - ['return_5fbytes',['return_bytes',['../text_8php.html#ae2126da85966da0e79c6bcbac63b0bda',1,'text.php']]], - ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], - ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], - ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], - ['rmdir',['rmdir',['../classeasywebdav_1_1client_1_1Client.html#a65654cbf48e7d123ce52d8bd3335b03d',1,'easywebdav::client::Client']]], - ['rotate',['rotate',['../classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec',1,'photo_driver\rotate()'],['../classphoto__gd.html#a77f87730b11093b76980c541159df37d',1,'photo_gd\rotate()'],['../classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f',1,'photo_imagick\rotate()']]], - ['rpost_5fcallback',['rpost_callback',['../bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7',1,'bbcode.php']]], - ['rpost_5fcontent',['rpost_content',['../rpost_8php.html#a8190354d789000806d9879aea276728f',1,'rpost.php']]], - ['rrmdir',['rrmdir',['../Contact_8php.html#ab5895b75a3b2abdddf1cb351a8c6b58b',1,'Contact.php']]], - ['rsa_5fsign',['rsa_sign',['../crypto_8php.html#a920e5f222d0020f47556033d8b2b6552',1,'crypto.php']]], - ['rsa_5fverify',['rsa_verify',['../crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96',1,'crypto.php']]], - ['rsatopem',['rsatopem',['../crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26',1,'crypto.php']]], - ['rsd_5fxml_5fcontent',['rsd_xml_content',['../rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82',1,'rsd_xml.php']]], - ['run',['run',['../classRedMatrix_1_1Import_1_1Import.html#a8d138a9a7d4f79b81d3446ca216a602c',1,'RedMatrix::Import::Import']]], - ['runs',['runs',['../docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec',1,'docblox_errorchecker.php']]] -]; diff --git a/doc/html/search/functions_73.html b/doc/html/search/functions_73.html deleted file mode 100644 index c80660e8c..000000000 --- a/doc/html/search/functions_73.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js deleted file mode 100644 index 4c6c63e10..000000000 --- a/doc/html/search/functions_73.js +++ /dev/null @@ -1,120 +0,0 @@ -var searchData= -[ - ['salmon_5fkey',['salmon_key',['../crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5',1,'crypto.php']]], - ['sanitise_5facl',['sanitise_acl',['../text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c',1,'text.php']]], - ['save',['save',['../classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac',1,'photo_driver']]], - ['saveimage',['saveImage',['../classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3',1,'photo_driver']]], - ['scale_5fexternal_5fimages',['scale_external_images',['../include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f',1,'network.php']]], - ['scaleimage',['scaleImage',['../classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0',1,'photo_driver']]], - ['scaleimagesquare',['scaleImageSquare',['../classphoto__driver.html#a56634842b071b96502716e9843ea5361',1,'photo_driver']]], - ['scaleimageup',['scaleImageUp',['../classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce',1,'photo_driver']]], - ['scrape_5ffeed',['scrape_feed',['../include_2network_8php.html#a316f318167a039c89719afbd129a8f3c',1,'network.php']]], - ['scrape_5fvcard',['scrape_vcard',['../include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070',1,'network.php']]], - ['script_5fpath',['script_path',['../plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3',1,'plugin.php']]], - ['search',['search',['../text_8php.html#a876e94892867019935b348b573299352',1,'text.php']]], - ['search_5fac_5finit',['search_ac_init',['../search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138',1,'search_ac.php']]], - ['search_5fcontent',['search_content',['../search_8php.html#ab2568591359edde5b483a6cd9a24b2cc',1,'search.php']]], - ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], - ['searchbox',['searchbox',['../text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447',1,'text.php']]], - ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], - ['send_5fmessage',['send_message',['../include_2message_8php.html#a751ffd6635022b2190f56154ee745752',1,'message.php']]], - ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], - ['send_5fstatus_5fnotifications',['send_status_notifications',['../items_8php.html#aab9e0c58247427126de0699c729c3b6c',1,'items.php']]], - ['send_5fverification_5femail',['send_verification_email',['../account_8php.html#aa9c29c497c17d8f9344dce8631ad8761',1,'account.php']]], - ['service_5fclass_5fallows',['service_class_allows',['../account_8php.html#a030cec6793b909c439c0336ba39b1571',1,'account.php']]], - ['service_5fclass_5ffetch',['service_class_fetch',['../account_8php.html#a905b54e10704b283ac64680a8abc0971',1,'account.php']]], - ['service_5flimits_5fcontent',['service_limits_content',['../service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a',1,'service_limits.php']]], - ['service_5fplink',['service_plink',['../include_2network_8php.html#adf741da85aa82493f2084eca63092dd5',1,'network.php']]], - ['session',['session',['../classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506',1,'zotsh.ZotSH.session'],['../classzotsh_1_1ZotSH.html#add6b1b6529d95e90766805885bed1506',1,'zotsh.ZotSH.session']]], - ['set',['set',['../classCache.html#ae622b82adc1c2fb1f3e2cc4fd9688fce',1,'Cache']]], - ['set_5faccount',['set_account',['../classApp.html#aeb1fe1c8ad9aa639909bd183ce578536',1,'App']]], - ['set_5fapp',['set_app',['../classBaseObject.html#a0a9acda12d751692834cf6999f889223',1,'BaseObject']]], - ['set_5fapps',['set_apps',['../classApp.html#abea5a4f77dcd53c928dc4eed86616637',1,'App']]], - ['set_5fbaseurl',['set_baseurl',['../classApp.html#a78788f6e9d8b713b138f81e457c5cd08',1,'App']]], - ['set_5fchannel',['set_channel',['../classApp.html#a89e9feb2bfb5253883a9720beaffe876',1,'App']]], - ['set_5fcommentable',['set_commentable',['../classItem.html#aa1bd19fc8b5577078530265a7bf64123',1,'Item']]], - ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], - ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], - ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], - ['set_5fdisplay_5fmode',['set_display_mode',['../classItem.html#ac09a4728d37b7783714243f7f8167214',1,'Item']]], - ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], - ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], - ['set_5flinkified_5fperms',['set_linkified_perms',['../items_8php.html#a5db83ea87c32d1ccd953a372dcc5919c',1,'items.php']]], - ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], - ['set_5fobserver',['set_observer',['../classApp.html#a4776d9322edea17fae56afa5d01a323e',1,'App']]], - ['set_5fpager_5fitemspage',['set_pager_itemspage',['../classApp.html#a4bdd7bfed62f50515fce652127bf481b',1,'App']]], - ['set_5fpager_5ftotal',['set_pager_total',['../classApp.html#a560189f048d3db2f526841963cc43e97',1,'App']]], - ['set_5fparent',['set_parent',['../classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7',1,'Item']]], - ['set_5fpath',['set_path',['../classApp.html#adb060d5c7f35a521ec7ec0effbe08097',1,'App']]], - ['set_5fpconfig',['set_pconfig',['../include_2config_8php.html#a61591371cb18764138655d67dc817ab2',1,'config.php']]], - ['set_5fperms',['set_perms',['../classApp.html#a557d7b779d8259027f4724ebf7b248dc',1,'App']]], - ['set_5fprofile_5fowner',['set_profile_owner',['../classConversation.html#a8898bddc1e8990e81dab9a13a532cc93',1,'Conversation']]], - ['set_5ftemplate',['set_template',['../classItem.html#af1b73df9b7c4b927e26b7e243b491f42',1,'Item']]], - ['set_5ftemplate_5fengine',['set_template_engine',['../classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7',1,'App']]], - ['set_5fwidget',['set_widget',['../classApp.html#a123b903dfe5d3488cc68db3471d36fd2',1,'App']]], - ['set_5fwriteable',['set_writeable',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19',1,'RedMatrix::RedDAV::RedBrowser']]], - ['set_5fxconfig',['set_xconfig',['../include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e',1,'config.php']]], - ['setauthenticated',['setAuthenticated',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a2926fe923baade564f2663632fa8c633',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setbrowserplugin',['setBrowserPlugin',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#adc72f36f0b2b17b20ea4df900afcd697',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setcurrentuser',['setCurrentUser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aadce020fb595c7943829d7f995d3f998',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['setdimensions',['setDimensions',['../classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143',1,'photo_driver\setDimensions()'],['../classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e',1,'photo_gd\setDimensions()'],['../classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb',1,'photo_imagick\setDimensions()']]], - ['setname',['setName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a14ac61d31a031d139956763db4e03956',1,'RedMatrix\RedDAV\RedDirectory\setName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a0350cb4e0327e1f9922869a48ee04f1d',1,'RedMatrix\RedDAV\RedFile\setName()']]], - ['settimezone',['setTimezone',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#af6d239fefed05859327ee8db626703f9',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['settings_5finit',['settings_init',['../settings_8php.html#a3a4cde287482fced008583f54ba2a722',1,'settings.php']]], - ['settings_5fpost',['settings_post',['../settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586',1,'settings.php']]], - ['setup_5fcontent',['setup_content',['../setup_8php.html#a88247384a96e14516f474d7af6a465c1',1,'setup.php']]], - ['setup_5finit',['setup_init',['../setup_8php.html#a267555abd17290e659b4bf44b885e4e0',1,'setup.php']]], - ['setup_5fpost',['setup_post',['../setup_8php.html#a13cf286774149a0a7bd8adb8179cec75',1,'setup.php']]], - ['sexpref_5fselector',['sexpref_selector',['../profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7',1,'profile_selectors.php']]], - ['sexpref_5fselector_5fmin',['sexpref_selector_min',['../profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074',1,'profile_selectors.php']]], - ['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]], - ['share_5fshield',['share_shield',['../bb2diaspora_8php.html#ad033be99e87a2aaa05e569c68f30792d',1,'bb2diaspora.php']]], - ['share_5funshield',['share_unshield',['../bb2diaspora_8php.html#ab61b4f8c065e97b151411858bb2f209a',1,'bb2diaspora.php']]], - ['sharedwithme_5fcontent',['sharedwithme_content',['../sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190',1,'sharedwithme.php']]], - ['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]], - ['site_5fdefault_5fperms',['site_default_perms',['../permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d',1,'permissions.php']]], - ['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]], - ['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]], - ['sitelist_5finit',['sitelist_init',['../sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1',1,'sitelist.php']]], - ['smile_5fshield',['smile_shield',['../text_8php.html#a10dde167249ed5abf190a7a0986878ea',1,'text.php']]], - ['smile_5funshield',['smile_unshield',['../text_8php.html#a273156a6f5cddc6652ad656821cd5805',1,'text.php']]], - ['smilies',['smilies',['../text_8php.html#a3d225b253bb9e0f2498c11647d927b0b',1,'text.php']]], - ['smilies_5fcontent',['smilies_content',['../smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f',1,'smilies.php']]], - ['sort_5fby_5fdate',['sort_by_date',['../event_8php.html#a018ea4484910a873a7c1eaa126de9b1a',1,'event.php']]], - ['sort_5fitem_5fchildren',['sort_item_children',['../conversation_8php.html#ae996eb116d397a2c6396c312d7b98664',1,'conversation.php']]], - ['sort_5fthr_5fcommented',['sort_thr_commented',['../conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11',1,'conversation.php']]], - ['sort_5fthr_5fcreated',['sort_thr_created',['../conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d',1,'conversation.php']]], - ['sort_5fthr_5fcreated_5frev',['sort_thr_created_rev',['../conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0',1,'conversation.php']]], - ['sources_5fcontent',['sources_content',['../sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7',1,'sources.php']]], - ['sources_5fpost',['sources_post',['../sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e',1,'sources.php']]], - ['splitfilename',['splitFilename',['../functions_8php.html#adefe514c95680928b3aae250cbc3c663',1,'functions.php']]], - ['sporadic_5finit',['sporadic_init',['../extend_2theme_2deadsuperhero_2sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6',1,'theme.php']]], - ['sslify',['sslify',['../text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9',1,'text.php']]], - ['sslify_5finit',['sslify_init',['../sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316',1,'sslify.php']]], - ['starred_5finit',['starred_init',['../starred_8php.html#a63024fb418c678e49fd535e3752d349a',1,'starred.php']]], - ['start_5fdelivery_5fchain',['start_delivery_chain',['../items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2',1,'items.php']]], - ['startup',['startup',['../boot_8php.html#aca47505b8732177f52bb2d647eb2741c',1,'boot.php']]], - ['status_5feditor',['status_editor',['../conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a',1,'conversation.php']]], - ['store',['store',['../classRedMatrix_1_1Import_1_1Import.html#a33ed595de044c0ec1cd84cca719e31dc',1,'RedMatrix\Import\Import\store()'],['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver\store()']]], - ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#a25221826fa4621f523c68483e3b6af26',1,'items.php']]], - ['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]], - ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#a6126c77a1267e046ac59cf864613f011',1,'security.php']]], - ['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c',1,'security.php']]], - ['string_5fplural_5fselect_5fdefault',['string_plural_select_default',['../language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0',1,'language.php']]], - ['string_5fsplitter',['string_splitter',['../spam_8php.html#a05861201147b9a538d006f0269255cf9',1,'spam.php']]], - ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], - ['strip_5fzids',['strip_zids',['../text_8php.html#a2f2585385530cb935a6325c809d84a4d',1,'text.php']]], - ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], - ['stumble_5finit',['stumble_init',['../extend_2theme_2deadsuperhero_2stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753',1,'theme.php']]], - ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], - ['suckerberg_5finit',['suckerberg_init',['../extend_2theme_2deadsuperhero_2suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], - ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], - ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], - ['suggestion_5fquery',['suggestion_query',['../socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329',1,'socgraph.php']]], - ['sunbeam_5finit',['sunbeam_init',['../extend_2theme_2deadsuperhero_2sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525',1,'theme.php']]], - ['supportedtypes',['supportedTypes',['../classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da',1,'photo_driver\supportedTypes()'],['../classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd',1,'photo_gd\supportedTypes()'],['../classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7',1,'photo_imagick\supportedTypes()']]], - ['sync_5fdirectories',['sync_directories',['../dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6',1,'dir_fns.php']]], - ['sync_5flocations',['sync_locations',['../zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254',1,'zot.php']]], - ['system_5fdown',['system_down',['../system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa',1,'system_unavailable.php']]], - ['system_5funavailable',['system_unavailable',['../boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0',1,'boot.php']]] -]; diff --git a/doc/html/search/functions_74.html b/doc/html/search/functions_74.html deleted file mode 100644 index 1605901ee..000000000 --- a/doc/html/search/functions_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js deleted file mode 100644 index d20c9760d..000000000 --- a/doc/html/search/functions_74.js +++ /dev/null @@ -1,38 +0,0 @@ -var searchData= -[ - ['t',['t',['../language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96',1,'language.php']]], - ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], - ['tag_5fsort_5flength',['tag_sort_length',['../text_8php.html#ac2ff88e800f74b22e9cc091c10809c54',1,'text.php']]], - ['tagadelic',['tagadelic',['../taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a',1,'taxonomy.php']]], - ['tagblock',['tagblock',['../taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2',1,'taxonomy.php']]], - ['tagger_5fcontent',['tagger_content',['../tagger_8php.html#a0e4a3eb177d1684553c547503d67161c',1,'tagger.php']]], - ['tagrm_5fcontent',['tagrm_content',['../tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a',1,'tagrm.php']]], - ['tagrm_5fpost',['tagrm_post',['../tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78',1,'tagrm.php']]], - ['tags_5fsort',['tags_sort',['../taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43',1,'taxonomy.php']]], - ['template_5fengine',['template_engine',['../classApp.html#a94a1ed2dc493c58612d17035b74ae736',1,'App']]], - ['template_5fescape',['template_escape',['../template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5',1,'template_processor.php']]], - ['template_5funescape',['template_unescape',['../template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e',1,'template_processor.php']]], - ['term_5fquery',['term_query',['../taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c',1,'taxonomy.php']]], - ['termtype',['termtype',['../items_8php.html#ad34827ed330898456783fb14c7b46154',1,'items.php']]], - ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], - ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], - ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], - ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], - ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], - ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], - ['thing_5fcontent',['thing_content',['../thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b',1,'thing.php']]], - ['thing_5finit',['thing_init',['../thing_8php.html#a8be23b1d475ec3d9291999221c674c80',1,'thing.php']]], - ['timesel',['timesel',['../datetime_8php.html#a3f239f94e23335d860b148958d87a093',1,'datetime.php']]], - ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], - ['title_5fis_5fbody',['title_is_body',['../items_8php.html#aa371905f0a211b307cb3f7188c6cba04',1,'items.php']]], - ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], - ['toggle_5fsafesearch_5finit',['toggle_safesearch_init',['../toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79',1,'toggle_safesearch.php']]], - ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], - ['translate_5fscope',['translate_scope',['../items_8php.html#aabfaa193b83154c2a81e91284e5d5e59',1,'items.php']]], - ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], - ['trim_5fmessage',['trim_message',['../po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334',1,'po2php.php']]], - ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], - ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], - ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], - ['tt',['tt',['../language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997',1,'language.php']]] -]; diff --git a/doc/html/search/functions_75.html b/doc/html/search/functions_75.html deleted file mode 100644 index a6c28fa65..000000000 --- a/doc/html/search/functions_75.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js deleted file mode 100644 index c393d7e4e..000000000 --- a/doc/html/search/functions_75.js +++ /dev/null @@ -1,41 +0,0 @@ -var searchData= -[ - ['uexport_5fcontent',['uexport_content',['../uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84',1,'uexport.php']]], - ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], - ['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']]], - ['unregister_5fhook',['unregister_hook',['../plugin_8php.html#a56f71fe5adf9586ce950523d8180443e',1,'plugin.php']]], - ['unxmlify',['unxmlify',['../text_8php.html#a1360fed7f918d859daaca1c9f384f9af',1,'text.php']]], - ['update_5fbirthdays',['update_birthdays',['../datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826',1,'datetime.php']]], - ['update_5fchannel_5fcontent',['update_channel_content',['../update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba',1,'update_channel.php']]], - ['update_5fchannels_5factive_5fhalfyear_5fstat',['update_channels_active_halfyear_stat',['../statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6',1,'statistics_fns.php']]], - ['update_5fchannels_5factive_5fmonthly_5fstat',['update_channels_active_monthly_stat',['../statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe',1,'statistics_fns.php']]], - ['update_5fchannels_5ftotal_5fstat',['update_channels_total_stat',['../statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c',1,'statistics_fns.php']]], - ['update_5fdirectory_5fentry',['update_directory_entry',['../dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13',1,'dir_fns.php']]], - ['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]], - ['update_5ffeed_5fitem',['update_feed_item',['../items_8php.html#a9b449eeae50003414b8b30ca927af434',1,'items.php']]], - ['update_5fhome_5fcontent',['update_home_content',['../update__home_8php.html#a668340089acd150b830134476a647d05',1,'update_home.php']]], - ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], - ['update_5flocal_5fposts_5fstat',['update_local_posts_stat',['../statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa',1,'statistics_fns.php']]], - ['update_5fmodtime',['update_modtime',['../zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd',1,'zot.php']]], - ['update_5fnetwork_5fcontent',['update_network_content',['../update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41',1,'update_network.php']]], - ['update_5fqueue_5ftime',['update_queue_time',['../queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1',1,'queue_fn.php']]], - ['update_5fremote_5fid',['update_remote_id',['../items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6',1,'items.php']]], - ['update_5fsearch_5fcontent',['update_search_content',['../update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52',1,'update_search.php']]], - ['update_5fsuggestions',['update_suggestions',['../socgraph_8php.html#a790690bb1a1d02483fe31632a160144d',1,'socgraph.php']]], - ['upgrade_5fbool_5fmessage',['upgrade_bool_message',['../account_8php.html#a754d7f53b3abc557b753c057dc4e021d',1,'account.php']]], - ['upgrade_5flink',['upgrade_link',['../account_8php.html#a4fc13e528367f510fcb6d8bbfc559040',1,'account.php']]], - ['upgrade_5fmessage',['upgrade_message',['../account_8php.html#a901657dd078e070516cf97285e0bada7',1,'account.php']]], - ['upload',['upload',['../classeasywebdav_1_1client_1_1Client.html#a0a5c361cb58763f5a363f786480c29cc',1,'easywebdav::client::Client']]], - ['user_5fallow',['user_allow',['../account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1',1,'account.php']]], - ['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',['../text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb',1,'text.php']]], - ['utcnow',['utcnow',['../classdba__driver.html#ad700712879719bee23752b8f424d97d0',1,'dba_driver']]] -]; diff --git a/doc/html/search/functions_76.html b/doc/html/search/functions_76.html deleted file mode 100644 index e5263cc30..000000000 --- a/doc/html/search/functions_76.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_76.js b/doc/html/search/functions_76.js deleted file mode 100644 index 7a4c524e4..000000000 --- a/doc/html/search/functions_76.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['valid_5femail',['valid_email',['../text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb',1,'text.php']]], - ['validate_5fchannelname',['validate_channelname',['../identity_8php.html#af2802bc13a00a17b867bba7978ba8f58',1,'identity.php']]], - ['validate_5femail',['validate_email',['../include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02',1,'network.php']]], - ['validate_5furl',['validate_url',['../include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2',1,'network.php']]], - ['validateuserpass',['validateUserPass',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a6ece02655b780469e59e204c5979a624',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['var_5freplace',['var_replace',['../classTemplate.html#abbc484016ddf5d818f55b823cae6feb0',1,'Template']]], - ['vcard_5ffrom_5fxchan',['vcard_from_xchan',['../Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960',1,'Contact.php']]], - ['verify_5femail_5faddress',['verify_email_address',['../account_8php.html#acd6b8d2124ba5ea4f4794d2c58ae8bf5',1,'account.php']]], - ['view_5finit',['view_init',['../view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e',1,'view.php']]], - ['viewconnections_5fcontent',['viewconnections_content',['../viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776',1,'viewconnections.php']]], - ['viewconnections_5finit',['viewconnections_init',['../viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330',1,'viewconnections.php']]], - ['viewsrc_5fcontent',['viewsrc_content',['../viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4',1,'viewsrc.php']]], - ['visible_5factivity',['visible_activity',['../conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3',1,'conversation.php']]], - ['vote_5fcontent',['vote_content',['../vote_8php.html#a6aa67489bf458ca5e3206e46dac68596',1,'vote.php']]], - ['vote_5finit',['vote_init',['../vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2',1,'vote.php']]], - ['vote_5fpost',['vote_post',['../vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2',1,'vote.php']]] -]; diff --git a/doc/html/search/functions_77.html b/doc/html/search/functions_77.html deleted file mode 100644 index add7295de..000000000 --- a/doc/html/search/functions_77.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js deleted file mode 100644 index bdfee0c54..000000000 --- a/doc/html/search/functions_77.js +++ /dev/null @@ -1,48 +0,0 @@ -var searchData= -[ - ['wall_5fattach_5fpost',['wall_attach_post',['../wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653',1,'wall_attach.php']]], - ['wall_5fupload_5fpost',['wall_upload_post',['../wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f',1,'wall_upload.php']]], - ['webfinger_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']]], - ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], - ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], - ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], - ['widget_5fcatcloud_5fwall',['widget_catcloud_wall',['../widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5',1,'widgets.php']]], - ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], - ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], - ['widget_5fclock',['widget_clock',['../widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a',1,'widgets.php']]], - ['widget_5fcollections',['widget_collections',['../widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f',1,'widgets.php']]], - ['widget_5fdesign_5ftools',['widget_design_tools',['../widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b',1,'widgets.php']]], - ['widget_5fdirsafemode',['widget_dirsafemode',['../widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091',1,'widgets.php']]], - ['widget_5fdirsort',['widget_dirsort',['../widgets_8php.html#a95c06bc9be133e89768746302d2ac395',1,'widgets.php']]], - ['widget_5fdirtags',['widget_dirtags',['../widgets_8php.html#a08035db02ff6a23260146b4c64153422',1,'widgets.php']]], - ['widget_5ffiler',['widget_filer',['../widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0',1,'widgets.php']]], - ['widget_5ffindpeople',['widget_findpeople',['../widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2',1,'widgets.php']]], - ['widget_5ffollow',['widget_follow',['../widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd',1,'widgets.php']]], - ['widget_5ffullprofile',['widget_fullprofile',['../widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165',1,'widgets.php']]], - ['widget_5fitem',['widget_item',['../widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5',1,'widgets.php']]], - ['widget_5fmailmenu',['widget_mailmenu',['../widgets_8php.html#afa2e55a78f95667a6da082efac7fec74',1,'widgets.php']]], - ['widget_5fmenu_5fpreview',['widget_menu_preview',['../widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013',1,'widgets.php']]], - ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], - ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], - ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], - ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], - ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], - ['widget_5fpubsites',['widget_pubsites',['../widgets_8php.html#afc7a579877414f4eb6f59698d3f69492',1,'widgets.php']]], - ['widget_5frandom_5fblock',['widget_random_block',['../widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e',1,'widgets.php']]], - ['widget_5frating',['widget_rating',['../widgets_8php.html#a7d0724165067077ff46484e4610e4323',1,'widgets.php']]], - ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], - ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], - ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], - ['widget_5fsuggestions',['widget_suggestions',['../widgets_8php.html#a0d404276fedc59f5038cf5c085028326',1,'widgets.php']]], - ['widget_5ftagcloud',['widget_tagcloud',['../widgets_8php.html#a6dbc227aac750774284ee39c45f0a200',1,'widgets.php']]], - ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], - ['widget_5fvcard',['widget_vcard',['../widgets_8php.html#abe03366fd22fd27d683518fa0765da50',1,'widgets.php']]], - ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]], - ['wtagblock',['wtagblock',['../taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287',1,'taxonomy.php']]] -]; diff --git a/doc/html/search/functions_78.html b/doc/html/search/functions_78.html deleted file mode 100644 index 7f647970f..000000000 --- a/doc/html/search/functions_78.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_78.js b/doc/html/search/functions_78.js deleted file mode 100644 index 4b41fd661..000000000 --- a/doc/html/search/functions_78.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['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']]], - ['xchan_5fquery',['xchan_query',['../text_8php.html#a905c3895feb6f276df23f07f16f9bb52',1,'text.php']]], - ['xchan_5fstore',['xchan_store',['../hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b',1,'hubloc.php']]], - ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], - ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], - ['xmlify',['xmlify',['../text_8php.html#aaed4413ed8918838b517e3b2fafaea0d',1,'text.php']]], - ['xpoco_5finit',['xpoco_init',['../xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2',1,'xpoco.php']]], - ['xrd_5finit',['xrd_init',['../xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270',1,'xrd.php']]], - ['xref_5finit',['xref_init',['../xref_8php.html#a9bee399213b8de8226b0d60834307473',1,'xref.php']]] -]; diff --git a/doc/html/search/functions_79.html b/doc/html/search/functions_79.html deleted file mode 100644 index 32abd5ea6..000000000 --- a/doc/html/search/functions_79.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_79.js b/doc/html/search/functions_79.js deleted file mode 100644 index 5180587cc..000000000 --- a/doc/html/search/functions_79.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['yolo_5finit',['yolo_init',['../extend_2theme_2deadsuperhero_2yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da',1,'theme.php']]] -]; diff --git a/doc/html/search/functions_7a.html b/doc/html/search/functions_7a.html deleted file mode 100644 index e23b42fb0..000000000 --- a/doc/html/search/functions_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/functions_7a.js b/doc/html/search/functions_7a.js deleted file mode 100644 index 796b1d2be..000000000 --- a/doc/html/search/functions_7a.js +++ /dev/null @@ -1,37 +0,0 @@ -var searchData= -[ - ['z_5fbirthday',['z_birthday',['../datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'datetime.php']]], - ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], - ['z_5fget_5ftemp_5fdir',['z_get_temp_dir',['../boot_8php.html#a59717d02602a4babf2a54da8b33d93a5',1,'boot.php']]], - ['z_5fget_5fupload_5fdir',['z_get_upload_dir',['../boot_8php.html#a476c499e15caf75972fed134a8f23b2e',1,'boot.php']]], - ['z_5finput_5ffilter',['z_input_filter',['../text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f',1,'text.php']]], - ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], - ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], - ['z_5fpost_5furl',['z_post_url',['../include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc',1,'network.php']]], - ['z_5fpost_5furl_5fjson',['z_post_url_json',['../include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b',1,'network.php']]], - ['z_5freaddir',['z_readdir',['../include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909',1,'attach.php']]], - ['z_5froot',['z_root',['../boot_8php.html#add517a0958ac684792c62142a3877f81',1,'boot.php']]], - ['zfinger_5finit',['zfinger_init',['../zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0',1,'zfinger.php']]], - ['zid',['zid',['../identity_8php.html#a5b815330f3d177ab383af37a6c12e532',1,'identity.php']]], - ['zid_5finit',['zid_init',['../identity_8php.html#a680fbafc2db023c5b1309e0180e81315',1,'identity.php']]], - ['zidify_5fcallback',['zidify_callback',['../text_8php.html#a405afe814a23f3bd94d826101aa168ab',1,'text.php']]], - ['zidify_5fimg_5fcallback',['zidify_img_callback',['../text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4',1,'text.php']]], - ['zidify_5flinks',['zidify_links',['../text_8php.html#a29988052f3944111def3b6aaf2c7a8f6',1,'text.php']]], - ['zot_5fbuild_5fpacket',['zot_build_packet',['../zot_8php.html#a084c581d534e7e3b759488b46602288f',1,'zot.php']]], - ['zot_5fencode_5flocations',['zot_encode_locations',['../zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca',1,'zot.php']]], - ['zot_5ffeed',['zot_feed',['../items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92',1,'items.php']]], - ['zot_5ffetch',['zot_fetch',['../zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea',1,'zot.php']]], - ['zot_5ffinger',['zot_finger',['../zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7',1,'zot.php']]], - ['zot_5fget_5fhublocs',['zot_get_hublocs',['../zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7',1,'zot.php']]], - ['zot_5fgethub',['zot_gethub',['../zot_8php.html#a55056e863a7860bc0cf922e78fcce073',1,'zot.php']]], - ['zot_5fimport',['zot_import',['../zot_8php.html#aeea071f17e306fe3d0c488551906bfab',1,'zot.php']]], - ['zot_5fnew_5fuid',['zot_new_uid',['../zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7',1,'zot.php']]], - ['zot_5fprocess_5fmessage_5frequest',['zot_process_message_request',['../zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac',1,'zot.php']]], - ['zot_5fprocess_5fresponse',['zot_process_response',['../zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03',1,'zot.php']]], - ['zot_5frefresh',['zot_refresh',['../zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c',1,'zot.php']]], - ['zot_5fregister_5fhub',['zot_register_hub',['../zot_8php.html#a5bcdfef419b16075a0eca990956223dc',1,'zot.php']]], - ['zot_5fzot',['zot_zot',['../zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142',1,'zot.php']]], - ['zotfeed_5finit',['zotfeed_init',['../zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac',1,'zotfeed.php']]], - ['zotsh',['zotsh',['../namespacezotsh.html#a0004a83d69a4b175b6829d8377305df2',1,'zotsh']]], - ['zping_5fcontent',['zping_content',['../zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75',1,'zping.php']]] -]; diff --git a/doc/html/search/mag_sel.png b/doc/html/search/mag_sel.png deleted file mode 100644 index 81f6040a2..000000000 Binary files a/doc/html/search/mag_sel.png and /dev/null differ diff --git a/doc/html/search/namespaces_61.html b/doc/html/search/namespaces_61.html deleted file mode 100644 index 05b64569f..000000000 --- a/doc/html/search/namespaces_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_61.js b/doc/html/search/namespaces_61.js deleted file mode 100644 index 3e7051957..000000000 --- a/doc/html/search/namespaces_61.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['acl_5fselectors',['acl_selectors',['../namespaceacl__selectors.html',1,'']]] -]; diff --git a/doc/html/search/namespaces_65.html b/doc/html/search/namespaces_65.html deleted file mode 100644 index 9e066e08a..000000000 --- a/doc/html/search/namespaces_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_65.js b/doc/html/search/namespaces_65.js deleted file mode 100644 index 48e699d6b..000000000 --- a/doc/html/search/namespaces_65.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['_5f_5fversion_5f_5f',['__version__',['../namespaceeasywebdav_1_1____version____.html',1,'easywebdav']]], - ['client',['client',['../namespaceeasywebdav_1_1client.html',1,'easywebdav']]], - ['easywebdav',['easywebdav',['../namespaceeasywebdav.html',1,'']]] -]; diff --git a/doc/html/search/namespaces_66.html b/doc/html/search/namespaces_66.html deleted file mode 100644 index eeb821dc9..000000000 --- a/doc/html/search/namespaces_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_66.js b/doc/html/search/namespaces_66.js deleted file mode 100644 index e9fe2106c..000000000 --- a/doc/html/search/namespaces_66.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['friendica',['Friendica',['../namespaceFriendica.html',1,'']]], - ['friendica_2dto_2dsmarty_2dtpl',['friendica-to-smarty-tpl',['../namespacefriendica-to-smarty-tpl.html',1,'']]] -]; diff --git a/doc/html/search/namespaces_72.html b/doc/html/search/namespaces_72.html deleted file mode 100644 index ae42baffb..000000000 --- a/doc/html/search/namespaces_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_72.js b/doc/html/search/namespaces_72.js deleted file mode 100644 index 56f831e1c..000000000 --- a/doc/html/search/namespaces_72.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['import',['Import',['../namespaceRedMatrix_1_1Import.html',1,'RedMatrix']]], - ['reddav',['RedDAV',['../namespaceRedMatrix_1_1RedDAV.html',1,'RedMatrix']]], - ['redmatrix',['RedMatrix',['../namespaceRedMatrix.html',1,'']]] -]; diff --git a/doc/html/search/namespaces_75.html b/doc/html/search/namespaces_75.html deleted file mode 100644 index 185eb0b07..000000000 --- a/doc/html/search/namespaces_75.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_75.js b/doc/html/search/namespaces_75.js deleted file mode 100644 index 677307359..000000000 --- a/doc/html/search/namespaces_75.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['updatetpl',['updatetpl',['../namespaceupdatetpl.html',1,'']]], - ['util',['util',['../namespaceutil.html',1,'']]] -]; diff --git a/doc/html/search/namespaces_7a.html b/doc/html/search/namespaces_7a.html deleted file mode 100644 index 18929905c..000000000 --- a/doc/html/search/namespaces_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/namespaces_7a.js b/doc/html/search/namespaces_7a.js deleted file mode 100644 index 2bffb3c07..000000000 --- a/doc/html/search/namespaces_7a.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['zotsh',['zotsh',['../namespacezotsh.html',1,'']]] -]; diff --git a/doc/html/search/nomatches.html b/doc/html/search/nomatches.html deleted file mode 100644 index b1ded27e9..000000000 --- a/doc/html/search/nomatches.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - -
        -
        No Matches
        -
        - - diff --git a/doc/html/search/pages_61.html b/doc/html/search/pages_61.html deleted file mode 100644 index 50c3255a8..000000000 --- a/doc/html/search/pages_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_61.js b/doc/html/search/pages_61.js deleted file mode 100644 index 61eb0e85f..000000000 --- a/doc/html/search/pages_61.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['apw',['apw',['../md_README.html',1,'']]] -]; diff --git a/doc/html/search/pages_63.html b/doc/html/search/pages_63.html deleted file mode 100644 index 8a7aaf9e2..000000000 --- a/doc/html/search/pages_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_63.js b/doc/html/search/pages_63.js deleted file mode 100644 index 85cc4ab15..000000000 --- a/doc/html/search/pages_63.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['cli_20config_20utility',['CLI config utility',['../md_config.html',1,'']]] -]; diff --git a/doc/html/search/pages_64.html b/doc/html/search/pages_64.html deleted file mode 100644 index e404fbfc2..000000000 --- a/doc/html/search/pages_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_64.js b/doc/html/search/pages_64.js deleted file mode 100644 index 038da5410..000000000 --- a/doc/html/search/pages_64.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] -]; diff --git a/doc/html/search/pages_66.html b/doc/html/search/pages_66.html deleted file mode 100644 index b5d700d10..000000000 --- a/doc/html/search/pages_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_66.js b/doc/html/search/pages_66.js deleted file mode 100644 index 3bc9f4b01..000000000 --- a/doc/html/search/pages_66.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['fresh_20_2d_20the_20freaking_20red_20shell',['Fresh - The Freaking REd Shell',['../md_fresh.html',1,'']]] -]; diff --git a/doc/html/search/pages_72.html b/doc/html/search/pages_72.html deleted file mode 100644 index 5e9722171..000000000 --- a/doc/html/search/pages_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_72.js b/doc/html/search/pages_72.js deleted file mode 100644 index 6d650d56f..000000000 --- a/doc/html/search/pages_72.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['redstrap_20theme',['Redstrap theme',['../md_README.html',1,'']]] -]; diff --git a/doc/html/search/pages_74.html b/doc/html/search/pages_74.html deleted file mode 100644 index 90a80a10e..000000000 --- a/doc/html/search/pages_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/pages_74.js b/doc/html/search/pages_74.js deleted file mode 100644 index 441b2dec1..000000000 --- a/doc/html/search/pages_74.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['todo_20list',['Todo List',['../todo.html',1,'']]] -]; diff --git a/doc/html/search/search.css b/doc/html/search/search.css deleted file mode 100644 index 5b208eddd..000000000 --- a/doc/html/search/search.css +++ /dev/null @@ -1,271 +0,0 @@ -/*---------------- Search Box */ - -#FSearchBox { - float: left; -} - -#MSearchBox { - white-space : nowrap; - position: absolute; - float: none; - display: inline; - margin-top: 8px; - right: 0px; - width: 170px; - z-index: 102; - background-color: white; -} - -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; -} - -#MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; -} - -#MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; - border:none; - width:116px; - margin-left:20px; - padding-left:4px; - color: #909090; - outline: none; - font: 9pt Arial, Verdana, sans-serif; -} - -#FSearchBox #MSearchField { - margin-left:15px; -} - -#MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:0px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; -} - -#MSearchClose { - display: none; - position: absolute; - top: 4px; - background : none; - border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; - outline: none; -} - -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 1; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - width: 60ex; - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; -} - -.SRResult { - display: none; -} - -DIV.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/doc/html/search/search.js b/doc/html/search/search.js deleted file mode 100644 index 002f22d0d..000000000 --- a/doc/html/search/search.js +++ /dev/null @@ -1,807 +0,0 @@ -// Search script generated by doxygen -// Copyright (C) 2009 by Dimitri van Heesch. - -// The code in this file is loosly based on main.js, part of Natural Docs, -// which is Copyright (C) 2003-2008 Greg Valure -// Natural Docs is licensed under the GPL. - -var indexSectionsWithContent = -{ - 0: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000010111111111111111111111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 1: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111001000001101010010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 2: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100011000000000001001000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 3: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111001111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 4: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111111111111111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 5: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000010111111111111111101111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 6: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101101000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -}; - -var indexSectionNames = -{ - 0: "all", - 1: "classes", - 2: "namespaces", - 3: "files", - 4: "functions", - 5: "variables", - 6: "pages" -}; - -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var hexCode; - if (code<16) - { - hexCode="0"+code.toString(16); - } - else - { - hexCode=code.toString(16); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - if (indexSectionsWithContent[this.searchIndex].charAt(code) == '1') - { - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches.html'; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName == 'DIV' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; e - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js deleted file mode 100644 index 966f1713c..000000000 --- a/doc/html/search/variables_24.js +++ /dev/null @@ -1,159 +0,0 @@ -var searchData= -[ - ['_24a',['$a',['../typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'typo.php']]], - ['_24account',['$account',['../classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3',1,'App']]], - ['_24api',['$API',['../include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8',1,'api.php']]], - ['_24app',['$app',['../classBaseObject.html#a02cc4cd8fa26b6fc76d92fde54b4e4b1',1,'BaseObject']]], - ['_24apps',['$apps',['../classApp.html#a230e975296cf164da2fee35ef720964f',1,'App']]], - ['_24argc',['$argc',['../classApp.html#af58db526040829b1c8bd95561b329262',1,'App']]], - ['_24argv',['$argv',['../classApp.html#ab3da757abe5cb45bf88f07cc51a73b58',1,'App']]], - ['_24arr',['$arr',['../extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb',1,'extract.php']]], - ['_24aside',['$aside',['../minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf',1,'minimalisticdarkness.php']]], - ['_24auth',['$auth',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142',1,'RedMatrix\RedDAV\RedBrowser\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9',1,'RedMatrix\RedDAV\RedDirectory\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215',1,'RedMatrix\RedDAV\RedFile\$auth()']]], - ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], - ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_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']]], - ['_24channel_5fhash',['$channel_hash',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24channel_5fid',['$channel_id',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abe1defedb90ac8e3b6487e124e625521',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24channel_5fname',['$channel_name',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a76fdb7fd5dd7376155abb5a58cd6fd69',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24children',['$children',['../classItem.html#a80dcd0fb7673776c0967839d429c2a0f',1,'Item']]], - ['_24cid',['$cid',['../classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0',1,'App']]], - ['_24cipher',['$cipher',['../classConversation.html#aa95c1a62af38bdfba7add9549bec083b',1,'Conversation']]], - ['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]], - ['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]], - ['_24commentable',['$commentable',['../classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6',1,'Conversation\$commentable()'],['../classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304',1,'Item\$commentable()']]], - ['_24config',['$config',['../classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88',1,'App']]], - ['_24connected',['$connected',['../classdba__driver.html#a205f6535e399700b6fca2492f96f2229',1,'dba_driver']]], - ['_24contact',['$contact',['../classApp.html#a98ef4cfd36693a3457c879b76bc6d694',1,'App']]], - ['_24contacts',['$contacts',['../classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2',1,'App']]], - ['_24content',['$content',['../classApp.html#ac1d80a14492acc932715d54567d8a589',1,'App']]], - ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], - ['_24credentials',['$credentials',['../classRedMatrix_1_1Import_1_1Import.html#a864aac9fadb4846f5d9f840e8e0f440f',1,'RedMatrix::Import::Import']]], - ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',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',['../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']]], - ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], - ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], - ['_24display_5fmode',['$display_mode',['../classItem.html#a88a99e2d1245925867f249f543358e72',1,'Item']]], - ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], - ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], - ['_24ext_5fpath',['$ext_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24fext',['$fext',['../view_2theme_2apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9',1,'style.php']]], - ['_24filelist',['$filelist',['../docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b',1,'docblox_errorchecker.php']]], - ['_24filename',['$filename',['../classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690',1,'FriendicaSmarty']]], - ['_24files',['$files',['../extract_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): extract.php'],['../tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149',1,'$files(): tpldebug.php'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], - ['_24fname',['$fname',['../view_2theme_2apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc',1,'style.php']]], - ['_24folder_5fhash',['$folder_hash',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a2fc4e6b9be2108bbaa1ca1a03fd6d44e',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], - ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], - ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], - ['_24height',['$height',['../classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80',1,'photo_driver']]], - ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], - ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], - ['_24i',['$i',['../docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f',1,'docblox_errorchecker.php']]], - ['_24iconsize',['$iconsize',['../view_2theme_2apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30',1,'style.php']]], - ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], - ['_24image',['$image',['../classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55',1,'photo_driver']]], - ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], - ['_24ink',['$ink',['../php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0',1,'php2po.php']]], - ['_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#ad0d2bdc3b388220479063915b4f5c2fc',1,'RedMatrix::Import::Import']]], - ['_24items',['$items',['../classRedMatrix_1_1Import_1_1Import.html#a0a05dac405ccc5b617b7b7b3c8ed783c',1,'RedMatrix::Import::Import']]], - ['_24js_5fsources',['$js_sources',['../classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d',1,'App']]], - ['_24k',['$k',['../php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178',1,'php2po.php']]], - ['_24lang',['$lang',['../classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8',1,'Template']]], - ['_24language',['$language',['../classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f',1,'App']]], - ['_24layout',['$layout',['../classApp.html#a58ac598544892ff7c32890291b72635e',1,'App']]], - ['_24ldelim',['$ldelim',['../classApp.html#a59dd4b665c70e7dbd80682c014ff7145',1,'App']]], - ['_24minwidth',['$minwidth',['../minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb',1,'minimalisticdarkness.php']]], - ['_24mode',['$mode',['../classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a',1,'Conversation']]], - ['_24module',['$module',['../classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d',1,'App']]], - ['_24module_5floaded',['$module_loaded',['../classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165',1,'App']]], - ['_24name',['$name',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2',1,'RedMatrix\RedDAV\RedFile\$name()'],['../classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02',1,'FriendicaSmartyEngine\$name()'],['../classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae',1,'Template\$name()']]], - ['_24nav_5fpercent_5fmin_5fopacity',['$nav_percent_min_opacity',['../view_2theme_2redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c',1,'style.php']]], - ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], - ['_24navheight',['$navheight',['../view_2theme_2apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872',1,'style.php']]], - ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], - ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], - ['_24obliquemacro',['$obliquemacro',['../view_2theme_2apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0',1,'style.php']]], - ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classConversation.html#a8748445aa26047ebed5141f3c3cbc244',1,'Conversation\$observer()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a605aa09565a097316b80f0d17d6b5823',1,'RedMatrix\RedDAV\RedBasicAuth\$observer()']]], - ['_24os_5fpath',['$os_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a17ea47e34cb76b6e79f36ebed790d76a',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], - ['_24owner_5fid',['$owner_id',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a1a23c349cc4699a8474505972684ea9c',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24owner_5fname',['$owner_name',['../classItem.html#a9594df6014b0b6f45364ea7a34510130',1,'Item']]], - ['_24owner_5fnick',['$owner_nick',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#aad0ef0cc05c407de84dbfbf2050bbbbe',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24owner_5fphoto',['$owner_photo',['../classItem.html#a078f95b4134ce3a1df344cf8d386f986',1,'Item']]], - ['_24owner_5furl',['$owner_url',['../classItem.html#afa54851df82962c7c42dea3cc9f5c92c',1,'Item']]], - ['_24page',['$page',['../classApp.html#a4b67935096f66d1f14b657399a8461ac',1,'App']]], - ['_24pager',['$pager',['../classApp.html#a6bcb19cdc4907077da72864686d5a780',1,'App']]], - ['_24parent',['$parent',['../classItem.html#a1a1e42877e6ac7af50286142ceb483d2',1,'Item']]], - ['_24path',['$path',['../classApp.html#acad5896b7a79ae31433ad8f89606c728',1,'App']]], - ['_24perms',['$perms',['../classApp.html#ab47de68fa39806d1fb0976407e188b77',1,'App']]], - ['_24phpath',['$phpath',['../typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd',1,'typo.php']]], - ['_24phpfile',['$phpfile',['../php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4',1,'php2po.php']]], - ['_24plugins',['$plugins',['../classApp.html#ae9f96338f32187d308b67b980eea0008',1,'App']]], - ['_24pofile',['$pofile',['../php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1',1,'php2po.php']]], - ['_24poi',['$poi',['../classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a',1,'App']]], - ['_24prepared_5fitem',['$prepared_item',['../classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2',1,'Conversation']]], - ['_24preview',['$preview',['../classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae',1,'Conversation']]], - ['_24profile',['$profile',['../classApp.html#a57d041fcc003d08c127dfa99a02bc192',1,'App']]], - ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], - ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], - ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], - ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], - ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], - ['_24replace',['$replace',['../classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10',1,'Template']]], - ['_24res',['$res',['../docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5',1,'docblox_errorchecker.php']]], - ['_24root_5fdir',['$root_dir',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a438066fb1565fbcffa22c12d5ce23695',1,'RedMatrix::RedDAV::RedDirectory']]], - ['_24s',['$s',['../extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634',1,'extract.php']]], - ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], - ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], - ['_24sectionleft',['$sectionleft',['../minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead',1,'minimalisticdarkness.php']]], - ['_24sectiontop',['$sectiontop',['../view_2theme_2apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a',1,'style.php']]], - ['_24sectionwidth',['$sectionwidth',['../minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f',1,'minimalisticdarkness.php']]], - ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], - ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], - ['_24showlock',['$showlock',['../view_2theme_2apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425',1,'style.php']]], - ['_24sourcename',['$sourcename',['../classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11',1,'App']]], - ['_24src_5fitems',['$src_items',['../classRedMatrix_1_1Import_1_1Import.html#a88c2eeba8d0cba3e7c12a2c45ba0fbc6',1,'RedMatrix::Import::Import']]], - ['_24stack',['$stack',['../classTemplate.html#a6f0efc256688c36110180b501067ff11',1,'Template']]], - ['_24str',['$str',['../typohelper_8php.html#a7542d95618011800c61773127fa625cf',1,'typohelper.php']]], - ['_24strings',['$strings',['../classApp.html#a5f64620473a9727a48ebe9cf6f335a98',1,'App']]], - ['_24strongmacro',['$strongmacro',['../view_2theme_2apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea',1,'style.php']]], - ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], - ['_24template_5fengine_5finstance',['$template_engine_instance',['../classApp.html#a6844aedad10e201b8c3d80cfc9e876d3',1,'App']]], - ['_24template_5fengines',['$template_engines',['../classApp.html#a6859a4848a5c0049b4134cc4b34228b6',1,'App']]], - ['_24theme',['$theme',['../classApp.html#a764cc6cd7578132c21d2b4545de9301c',1,'App']]], - ['_24theme_5finfo',['$theme_info',['../classApp.html#aeca29fd4f7192ca07369b3c598c36e67',1,'App']]], - ['_24theme_5fthread_5fallow',['$theme_thread_allow',['../classApp.html#a487332f8de40414ca1a54a4265570b70',1,'App']]], - ['_24threaded',['$threaded',['../classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2',1,'Item']]], - ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], - ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], - ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], - ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], - ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], - ['_24uid',['$uid',['../view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], - ['_24user',['$user',['../classApp.html#a91fd3c8b89016113b05f3be24805ccff',1,'App']]], - ['_24valid',['$valid',['../classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9',1,'photo_driver']]], - ['_24videoheight',['$videoheight',['../classApp.html#a56b1a432c96aef8b1971f779c9d93c8c',1,'App']]], - ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], - ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], - ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_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']]], - ['_24x',['$x',['../view_2theme_2apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7',1,'style.php']]], - ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] -]; diff --git a/doc/html/search/variables_5f.html b/doc/html/search/variables_5f.html deleted file mode 100644 index fc799e51c..000000000 --- a/doc/html/search/variables_5f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_5f.js b/doc/html/search/variables_5f.js deleted file mode 100644 index 887658276..000000000 --- a/doc/html/search/variables_5f.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['_5f_5fversion_5f_5f',['__version__',['../namespaceeasywebdav_1_1____version____.html#a79e00ae40b23fd17c38e3fb7a0feeddb',1,'easywebdav.__version__.__version__()'],['../namespacezotsh.html#a31d85cca46babd5138e15a19167617b1',1,'zotsh.__version__()']]], - ['_5fhost',['_host',['../classzotsh_1_1ZotSH.html#a6e5ab6ac97a89b18761120bab26a397a',1,'zotsh::ZotSH']]], - ['_5fhostname',['_hostname',['../classzotsh_1_1ZotSH.html#a65623483056d05833d1edfe714dfac96',1,'zotsh::ZotSH']]], - ['_5foperations',['_OPERATIONS',['../classeasywebdav_1_1client_1_1OperationFailed.html#a0102ba5be95f92727887f66eb1f760d0',1,'easywebdav::client::OperationFailed']]], - ['_5fsession',['_session',['../classzotsh_1_1ZotSH.html#a778a232b947fa563a21bf09e992589ad',1,'zotsh::ZotSH']]] -]; diff --git a/doc/html/search/variables_61.html b/doc/html/search/variables_61.html deleted file mode 100644 index a0de7a473..000000000 --- a/doc/html/search/variables_61.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_61.js b/doc/html/search/variables_61.js deleted file mode 100644 index 13269277b..000000000 --- a/doc/html/search/variables_61.js +++ /dev/null @@ -1,64 +0,0 @@ -var searchData= -[ - ['abook_5fflag_5farchived',['ABOOK_FLAG_ARCHIVED',['../boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5',1,'boot.php']]], - ['abook_5fflag_5fblocked',['ABOOK_FLAG_BLOCKED',['../boot_8php.html#a52b599cd13e152ebc80d7e4413683195',1,'boot.php']]], - ['abook_5fflag_5ffeed',['ABOOK_FLAG_FEED',['../boot_8php.html#ae0d9527117cd87dcba11986047ae336e',1,'boot.php']]], - ['abook_5fflag_5fhidden',['ABOOK_FLAG_HIDDEN',['../boot_8php.html#a34c756469ebed32e2fc987bcde62d382',1,'boot.php']]], - ['abook_5fflag_5fignored',['ABOOK_FLAG_IGNORED',['../boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6',1,'boot.php']]], - ['abook_5fflag_5fpending',['ABOOK_FLAG_PENDING',['../boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155',1,'boot.php']]], - ['abook_5fflag_5fself',['ABOOK_FLAG_SELF',['../boot_8php.html#a0450389f24c632906fbc24347700a543',1,'boot.php']]], - ['abook_5fflag_5funconnected',['ABOOK_FLAG_UNCONNECTED',['../boot_8php.html#a7eeb83e15968f7a6cc5937d493815773',1,'boot.php']]], - ['access_5ffree',['ACCESS_FREE',['../boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4',1,'boot.php']]], - ['access_5fpaid',['ACCESS_PAID',['../boot_8php.html#a9c80420e5a063a4a87ce4831f086134d',1,'boot.php']]], - ['access_5fprivate',['ACCESS_PRIVATE',['../boot_8php.html#a7f3474fec541e261fc8dff47313c4017',1,'boot.php']]], - ['access_5ftiered',['ACCESS_TIERED',['../boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8',1,'boot.php']]], - ['access_5ftoken_5fduration',['ACCESS_TOKEN_DURATION',['../oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6',1,'oauth.php']]], - ['account_5fblocked',['ACCOUNT_BLOCKED',['../boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9',1,'boot.php']]], - ['account_5fexpired',['ACCOUNT_EXPIRED',['../boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a',1,'boot.php']]], - ['account_5fok',['ACCOUNT_OK',['../boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8',1,'boot.php']]], - ['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]], - ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], - ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], - ['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]], - ['account_5frole_5fdeveloper',['ACCOUNT_ROLE_DEVELOPER',['../boot_8php.html#a4f507a5996dbb3da148add0339a40d5a',1,'boot.php']]], - ['account_5frole_5fsystem',['ACCOUNT_ROLE_SYSTEM',['../boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b',1,'boot.php']]], - ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], - ['activity_5fabstain',['ACTIVITY_ABSTAIN',['../boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3',1,'boot.php']]], - ['activity_5fagree',['ACTIVITY_AGREE',['../boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c',1,'boot.php']]], - ['activity_5fattend',['ACTIVITY_ATTEND',['../boot_8php.html#a137f161c8ca8d51ef58f2e1b6781905b',1,'boot.php']]], - ['activity_5fattendmaybe',['ACTIVITY_ATTENDMAYBE',['../boot_8php.html#a3fff33eae4da657d433bafedc55cb2c5',1,'boot.php']]], - ['activity_5fattendno',['ACTIVITY_ATTENDNO',['../boot_8php.html#a5d8d55cf192d1d50ad188411d58bd404',1,'boot.php']]], - ['activity_5fdisagree',['ACTIVITY_DISAGREE',['../boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb',1,'boot.php']]], - ['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]], - ['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]], - ['activity_5ffollow',['ACTIVITY_FOLLOW',['../boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434',1,'boot.php']]], - ['activity_5ffriend',['ACTIVITY_FRIEND',['../boot_8php.html#a176664e78dcb9132e16be69418223eb2',1,'boot.php']]], - ['activity_5fjoin',['ACTIVITY_JOIN',['../boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3',1,'boot.php']]], - ['activity_5flike',['ACTIVITY_LIKE',['../boot_8php.html#abdcdfc873ace4e0902177bad934de0c0',1,'boot.php']]], - ['activity_5fmood',['ACTIVITY_MOOD',['../boot_8php.html#a7aa57438db03834aaa0b468bdce773a6',1,'boot.php']]], - ['activity_5fobj_5falbum',['ACTIVITY_OBJ_ALBUM',['../boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14',1,'boot.php']]], - ['activity_5fobj_5fcomment',['ACTIVITY_OBJ_COMMENT',['../boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562',1,'boot.php']]], - ['activity_5fobj_5fevent',['ACTIVITY_OBJ_EVENT',['../boot_8php.html#a2e90096fede6acce16abf0da8cb2febe',1,'boot.php']]], - ['activity_5fobj_5ffile',['ACTIVITY_OBJ_FILE',['../boot_8php.html#aa726114f13c1119ae77c3464d6afeaed',1,'boot.php']]], - ['activity_5fobj_5fgroup',['ACTIVITY_OBJ_GROUP',['../boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3',1,'boot.php']]], - ['activity_5fobj_5fheart',['ACTIVITY_OBJ_HEART',['../boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f',1,'boot.php']]], - ['activity_5fobj_5flocation',['ACTIVITY_OBJ_LOCATION',['../boot_8php.html#a9687c702656af105e9a09048c21aec4c',1,'boot.php']]], - ['activity_5fobj_5fnote',['ACTIVITY_OBJ_NOTE',['../boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f',1,'boot.php']]], - ['activity_5fobj_5fp_5fphoto',['ACTIVITY_OBJ_P_PHOTO',['../boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab',1,'boot.php']]], - ['activity_5fobj_5fperson',['ACTIVITY_OBJ_PERSON',['../boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab',1,'boot.php']]], - ['activity_5fobj_5fphoto',['ACTIVITY_OBJ_PHOTO',['../boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966',1,'boot.php']]], - ['activity_5fobj_5fprofile',['ACTIVITY_OBJ_PROFILE',['../boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5',1,'boot.php']]], - ['activity_5fobj_5ftagterm',['ACTIVITY_OBJ_TAGTERM',['../boot_8php.html#a1da180f961f49a11573cac4ff6c62c05',1,'boot.php']]], - ['activity_5fobj_5fthing',['ACTIVITY_OBJ_THING',['../boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8',1,'boot.php']]], - ['activity_5fpoke',['ACTIVITY_POKE',['../boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd',1,'boot.php']]], - ['activity_5fpost',['ACTIVITY_POST',['../boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4',1,'boot.php']]], - ['activity_5freq_5ffriend',['ACTIVITY_REQ_FRIEND',['../boot_8php.html#afe084c30a1810c10442edb4fbcbc0086',1,'boot.php']]], - ['activity_5ftag',['ACTIVITY_TAG',['../boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5',1,'boot.php']]], - ['activity_5funfollow',['ACTIVITY_UNFOLLOW',['../boot_8php.html#a53e4bdb6f225da55115acb9277f75e53',1,'boot.php']]], - ['activity_5funfriend',['ACTIVITY_UNFRIEND',['../boot_8php.html#a29528a2544373cc19a378f350040c6a1',1,'boot.php']]], - ['activity_5fupdate',['ACTIVITY_UPDATE',['../boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866',1,'boot.php']]], - ['actual_5fcode',['actual_code',['../classeasywebdav_1_1client_1_1OperationFailed.html#a3c42e9edf259eca30ac7fbcb7e181eac',1,'easywebdav::client::OperationFailed']]], - ['atom_5ftime',['ATOM_TIME',['../boot_8php.html#ad34c1547020a305915bcc39707744690',1,'boot.php']]], - ['attach_5fflag_5fdir',['ATTACH_FLAG_DIR',['../boot_8php.html#aa74438cf71e48e37bf7b440b94243985',1,'boot.php']]], - ['attach_5fflag_5fos',['ATTACH_FLAG_OS',['../boot_8php.html#a781916f83fcc8ff1035649afa45f0292',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_62.html b/doc/html/search/variables_62.html deleted file mode 100644 index ff4152508..000000000 --- a/doc/html/search/variables_62.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_62.js b/doc/html/search/variables_62.js deleted file mode 100644 index e7312fcd4..000000000 --- a/doc/html/search/variables_62.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['baseurl',['baseurl',['../classeasywebdav_1_1client_1_1Client.html#a6b4ef9c67ea641e4e42eb04123876a5f',1,'easywebdav::client::Client']]] -]; diff --git a/doc/html/search/variables_63.html b/doc/html/search/variables_63.html deleted file mode 100644 index 422085c12..000000000 --- a/doc/html/search/variables_63.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_63.js b/doc/html/search/variables_63.js deleted file mode 100644 index 0c7419181..000000000 --- a/doc/html/search/variables_63.js +++ /dev/null @@ -1,11 +0,0 @@ -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']]], - ['commands',['commands',['../classzotsh_1_1ZotSH.html#ad026a070692fe754e256e9b429591713',1,'zotsh::ZotSH']]], - ['contact_5fis_5ffollower',['CONTACT_IS_FOLLOWER',['../boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29',1,'boot.php']]], - ['contact_5fis_5ffriend',['CONTACT_IS_FRIEND',['../boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f',1,'boot.php']]], - ['contact_5fis_5fsharing',['CONTACT_IS_SHARING',['../boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9',1,'boot.php']]], - ['cwd',['cwd',['../classeasywebdav_1_1client_1_1Client.html#a8129b9db86535dd99218cdba49fe3fb4',1,'easywebdav::client::Client']]] -]; diff --git a/doc/html/search/variables_64.html b/doc/html/search/variables_64.html deleted file mode 100644 index df4414b92..000000000 --- a/doc/html/search/variables_64.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_64.js b/doc/html/search/variables_64.js deleted file mode 100644 index bf00a2518..000000000 --- a/doc/html/search/variables_64.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['davclient',['davclient',['../classzotsh_1_1ZotSH.html#a7d75b322c19fc685a654641a873b2ea3',1,'zotsh::ZotSH']]], - ['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']]], - ['directory_5fmode_5fprimary',['DIRECTORY_MODE_PRIMARY',['../boot_8php.html#a8a60cc38bb567765fd926fef70205f16',1,'boot.php']]], - ['directory_5fmode_5fsecondary',['DIRECTORY_MODE_SECONDARY',['../boot_8php.html#aedfb9501ed408278667995524e0d15cf',1,'boot.php']]], - ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], - ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], - ['do',['do',['../docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085',1,'docblox_errorchecker.php']]], - ['download_5fchunk_5fsize_5fbytes',['DOWNLOAD_CHUNK_SIZE_BYTES',['../namespaceeasywebdav_1_1client.html#a6be7601c21385a35feb357dcc7fd22bd',1,'easywebdav::client']]], - ['dropitem_5fnormal',['DROPITEM_NORMAL',['../boot_8php.html#a7037bcbca223395c06bc67f65024de7a',1,'boot.php']]], - ['dropitem_5fphase1',['DROPITEM_PHASE1',['../boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06',1,'boot.php']]], - ['dropitem_5fphase2',['DROPITEM_PHASE2',['../boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_65.html b/doc/html/search/variables_65.html deleted file mode 100644 index 38eb9f67f..000000000 --- a/doc/html/search/variables_65.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_65.js b/doc/html/search/variables_65.js deleted file mode 100644 index 095495616..000000000 --- a/doc/html/search/variables_65.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['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'],['../view_2theme_2redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459',1,'else(): style.php']]], - ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], - ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], - ['excludepaths',['excludepaths',['../namespaceupdatetpl.html#a988d937ed5d5c2b592b763036af5cf94',1,'updatetpl']]], - ['expected_5fcode',['expected_code',['../classeasywebdav_1_1client_1_1OperationFailed.html#aa2fb71a2b07dfc6edd208059463d4052',1,'easywebdav::client::OperationFailed']]], - ['ext',['ext',['../namespacefriendica-to-smarty-tpl.html#aecf730e0884bb4ddc6c0deb1ef85f8eb',1,'friendica-to-smarty-tpl']]] -]; diff --git a/doc/html/search/variables_66.html b/doc/html/search/variables_66.html deleted file mode 100644 index 6e1863868..000000000 --- a/doc/html/search/variables_66.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_66.js b/doc/html/search/variables_66.js deleted file mode 100644 index 434e80b8f..000000000 --- a/doc/html/search/variables_66.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['f',['f',['../namespacefriendica-to-smarty-tpl.html#a965e1d6d6293654a56e029a7e454dec7',1,'friendica-to-smarty-tpl']]], - ['file',['File',['../namespaceeasywebdav_1_1client.html#a1cc63f6c4dd4e5e6c8c8324b75e78b9d',1,'easywebdav::client']]], - ['filename',['filename',['../namespacefriendica-to-smarty-tpl.html#a5f9bf7a67d955c0d6be70a82097611c5',1,'friendica-to-smarty-tpl']]], - ['files',['files',['../namespacefriendica-to-smarty-tpl.html#ae74419b16516956c66f7db714a93a6ac',1,'friendica-to-smarty-tpl']]], - ['fnull',['fnull',['../namespaceupdatetpl.html#a79c20eb62d568c999b56eb08530355d3',1,'updatetpl']]], - ['foreach',['foreach',['../typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5',1,'typo.php']]] -]; diff --git a/doc/html/search/variables_67.html b/doc/html/search/variables_67.html deleted file mode 100644 index 8a1f3d9e5..000000000 --- a/doc/html/search/variables_67.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_67.js b/doc/html/search/variables_67.js deleted file mode 100644 index cf66f0cdb..000000000 --- a/doc/html/search/variables_67.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['gravity_5fcomment',['GRAVITY_COMMENT',['../boot_8php.html#a4a12ce5de39789b0361e308d89925a20',1,'boot.php']]], - ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], - ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_68.html b/doc/html/search/variables_68.html deleted file mode 100644 index 2f0a862b9..000000000 --- a/doc/html/search/variables_68.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_68.js b/doc/html/search/variables_68.js deleted file mode 100644 index d03d6723e..000000000 --- a/doc/html/search/variables_68.js +++ /dev/null @@ -1,14 +0,0 @@ -var searchData= -[ - ['host',['host',['../classzotsh_1_1ZotSH.html#a49d42aee1a0b1a98c5a523434fe99973',1,'zotsh::ZotSH']]], - ['hostname',['hostname',['../classzotsh_1_1ZotSH.html#aef5c2b2a549ec923314dce9d1badcaac',1,'zotsh::ZotSH']]], - ['hubloc_5fflags_5fdeleted',['HUBLOC_FLAGS_DELETED',['../boot_8php.html#a7c286add8961fd2d79216314cd4aadd8',1,'boot.php']]], - ['hubloc_5fflags_5forphancheck',['HUBLOC_FLAGS_ORPHANCHECK',['../boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673',1,'boot.php']]], - ['hubloc_5fflags_5fprimary',['HUBLOC_FLAGS_PRIMARY',['../boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955',1,'boot.php']]], - ['hubloc_5fflags_5funverified',['HUBLOC_FLAGS_UNVERIFIED',['../boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764',1,'boot.php']]], - ['hubloc_5fnotused',['HUBLOC_NOTUSED',['../boot_8php.html#aa589421267f0c2f0d643f727792cce35',1,'boot.php']]], - ['hubloc_5foffline',['HUBLOC_OFFLINE',['../boot_8php.html#a845891f82bf6edd7fa2d578b66703112',1,'boot.php']]], - ['hubloc_5freceive_5ferror',['HUBLOC_RECEIVE_ERROR',['../boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1',1,'boot.php']]], - ['hubloc_5fsend_5ferror',['HUBLOC_SEND_ERROR',['../boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456',1,'boot.php']]], - ['hubloc_5fworks',['HUBLOC_WORKS',['../boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_69.html b/doc/html/search/variables_69.html deleted file mode 100644 index 44c2cd1ee..000000000 --- a/doc/html/search/variables_69.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js deleted file mode 100644 index 82954f789..000000000 --- a/doc/html/search/variables_69.js +++ /dev/null @@ -1,34 +0,0 @@ -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'],['../view_2theme_2apw_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']]], - ['item_5fconsensus',['ITEM_CONSENSUS',['../boot_8php.html#a670c35028dda5a20dfdb48bb863253a5',1,'boot.php']]], - ['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]], - ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], - ['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]], - ['item_5fmentionsme',['ITEM_MENTIONSME',['../boot_8php.html#a8da836617174eed9fc2ac8054125354b',1,'boot.php']]], - ['item_5fmoderated',['ITEM_MODERATED',['../boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450',1,'boot.php']]], - ['item_5fnocomment',['ITEM_NOCOMMENT',['../boot_8php.html#a949116d9a295b214293006c060ca4848',1,'boot.php']]], - ['item_5fnotshown',['ITEM_NOTSHOWN',['../boot_8php.html#a8663f32171568489dbb2a01dd00371f8',1,'boot.php']]], - ['item_5fnsfw',['ITEM_NSFW',['../boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08',1,'boot.php']]], - ['item_5fobscured',['ITEM_OBSCURED',['../boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d',1,'boot.php']]], - ['item_5forigin',['ITEM_ORIGIN',['../boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7',1,'boot.php']]], - ['item_5fpdl',['ITEM_PDL',['../boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d',1,'boot.php']]], - ['item_5fpending_5fremove',['ITEM_PENDING_REMOVE',['../boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb',1,'boot.php']]], - ['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]], - ['item_5fretained',['ITEM_RETAINED',['../boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81',1,'boot.php']]], - ['item_5frss',['ITEM_RSS',['../boot_8php.html#ac4d1c93dabcace711ffb4931204c336b',1,'boot.php']]], - ['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]], - ['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]], - ['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]], - ['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]], - ['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]], - ['item_5fuplink',['ITEM_UPLINK',['../boot_8php.html#aefba06f1c0842036329033e7567ecf6d',1,'boot.php']]], - ['item_5fverified',['ITEM_VERIFIED',['../boot_8php.html#a18a400fa45e5632811b33041d8c048bf',1,'boot.php']]], - ['item_5fvisible',['ITEM_VISIBLE',['../boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf',1,'boot.php']]], - ['item_5fwall',['ITEM_WALL',['../boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322',1,'boot.php']]], - ['item_5fwebpage',['ITEM_WEBPAGE',['../boot_8php.html#af489d0c3166551b93e63a79ff2c9be35',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_6a.html b/doc/html/search/variables_6a.html deleted file mode 100644 index e87ecc409..000000000 --- a/doc/html/search/variables_6a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6a.js b/doc/html/search/variables_6a.js deleted file mode 100644 index 43e76e798..000000000 --- a/doc/html/search/variables_6a.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['jpeg_5fquality',['JPEG_QUALITY',['../boot_8php.html#a3475ff6c2e575f946ea0ee377e944173',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_6b.html b/doc/html/search/variables_6b.html deleted file mode 100644 index d1001a969..000000000 --- a/doc/html/search/variables_6b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6b.js b/doc/html/search/variables_6b.js deleted file mode 100644 index dd6ee4759..000000000 --- a/doc/html/search/variables_6b.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['key_5fnot_5fexists',['KEY_NOT_EXISTS',['../template__processor_8php.html#a797745996c7839a93b2ab1af456631ab',1,'template_processor.php']]] -]; diff --git a/doc/html/search/variables_6c.html b/doc/html/search/variables_6c.html deleted file mode 100644 index 8d08e812e..000000000 --- a/doc/html/search/variables_6c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6c.js b/doc/html/search/variables_6c.js deleted file mode 100644 index 9540ea4f0..000000000 --- a/doc/html/search/variables_6c.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['language_5fdetect_5fmin_5fconfidence',['LANGUAGE_DETECT_MIN_CONFIDENCE',['../boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11',1,'boot.php']]], - ['language_5fdetect_5fmin_5flength',['LANGUAGE_DETECT_MIN_LENGTH',['../boot_8php.html#a17cf72338b040891781a4bcbdd9a8595',1,'boot.php']]], - ['ldelim',['ldelim',['../namespacefriendica-to-smarty-tpl.html#a0b4cf73d1a8d201a28d269eeb62a5d5c',1,'friendica-to-smarty-tpl']]], - ['logger_5fall',['LOGGER_ALL',['../boot_8php.html#afe63ae69ba55299f813766e54df06ede',1,'boot.php']]], - ['logger_5fdata',['LOGGER_DATA',['../boot_8php.html#a6969947145a139ec374ce098224d8e81',1,'boot.php']]], - ['logger_5fdebug',['LOGGER_DEBUG',['../boot_8php.html#a93823d15ae07548a4c49de88d325cd26',1,'boot.php']]], - ['logger_5fnormal',['LOGGER_NORMAL',['../boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805',1,'boot.php']]], - ['logger_5ftrace',['LOGGER_TRACE',['../boot_8php.html#a022cea669f9f13ef7c6268b63884c57f',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_6d.html b/doc/html/search/variables_6d.html deleted file mode 100644 index 1b8f1a83a..000000000 --- a/doc/html/search/variables_6d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6d.js b/doc/html/search/variables_6d.js deleted file mode 100644 index 0373ec261..000000000 --- a/doc/html/search/variables_6d.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['mail_5fdeleted',['MAIL_DELETED',['../boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8',1,'boot.php']]], - ['mail_5fisreply',['MAIL_ISREPLY',['../boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2',1,'boot.php']]], - ['mail_5fobscured',['MAIL_OBSCURED',['../boot_8php.html#a44ae1542a805ffd7f826fb511db07374',1,'boot.php']]], - ['mail_5frecalled',['MAIL_RECALLED',['../boot_8php.html#ae4861de36017fe399c1839f778bad9f5',1,'boot.php']]], - ['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]], - ['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]], - ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], - ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], - ['menu_5fbookmark',['MENU_BOOKMARK',['../boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e',1,'boot.php']]], - ['menu_5fitem_5fchatroom',['MENU_ITEM_CHATROOM',['../boot_8php.html#af6b3de425e5849c73370a484c44607a3',1,'boot.php']]], - ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], - ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]], - ['menu_5fsystem',['MENU_SYSTEM',['../boot_8php.html#a718a801b0be6cbaef5e519516da12721',1,'boot.php']]], - ['method',['method',['../classeasywebdav_1_1client_1_1OperationFailed.html#a606a07fbfc1fd05d94c12695c831ae77',1,'easywebdav::client::OperationFailed']]] -]; diff --git a/doc/html/search/variables_6e.html b/doc/html/search/variables_6e.html deleted file mode 100644 index 2eb4def97..000000000 --- a/doc/html/search/variables_6e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js deleted file mode 100644 index 0045afbae..000000000 --- a/doc/html/search/variables_6e.js +++ /dev/null @@ -1,47 +0,0 @@ -var searchData= -[ - ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], - ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], - ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], - ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], - ['namespace_5fatom1',['NAMESPACE_ATOM1',['../boot_8php.html#a444ce608ce34efb82ee11852f36e825f',1,'boot.php']]], - ['namespace_5fdfrn',['NAMESPACE_DFRN',['../boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028',1,'boot.php']]], - ['namespace_5ffeed',['NAMESPACE_FEED',['../boot_8php.html#ac195fc9003298923ea81f144388e24b1',1,'boot.php']]], - ['namespace_5fgeorss',['NAMESPACE_GEORSS',['../boot_8php.html#a03d19251c245587de7ed959300b87bdf',1,'boot.php']]], - ['namespace_5fmedia',['NAMESPACE_MEDIA',['../boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16',1,'boot.php']]], - ['namespace_5fostatus',['NAMESPACE_OSTATUS',['../boot_8php.html#acca19aae62e1a6951a856b945de20d67',1,'boot.php']]], - ['namespace_5fostatussub',['NAMESPACE_OSTATUSSUB',['../boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd',1,'boot.php']]], - ['namespace_5fpoco',['NAMESPACE_POCO',['../boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a',1,'boot.php']]], - ['namespace_5fsalmon_5fme',['NAMESPACE_SALMON_ME',['../boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67',1,'boot.php']]], - ['namespace_5fstatusnet',['NAMESPACE_STATUSNET',['../boot_8php.html#afaf93b7026f784b113b4f8921745891e',1,'boot.php']]], - ['namespace_5fthread',['NAMESPACE_THREAD',['../boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86',1,'boot.php']]], - ['namespace_5ftomb',['NAMESPACE_TOMB',['../boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e',1,'boot.php']]], - ['namespace_5fymedia',['NAMESPACE_YMEDIA',['../boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0',1,'boot.php']]], - ['namespace_5fzot',['NAMESPACE_ZOT',['../boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47',1,'boot.php']]], - ['network_5fdfrn',['NETWORK_DFRN',['../boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e',1,'boot.php']]], - ['network_5fdiaspora',['NETWORK_DIASPORA',['../boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa',1,'boot.php']]], - ['network_5ffacebook',['NETWORK_FACEBOOK',['../boot_8php.html#af3905ea8f8568d0236db13fca40514e3',1,'boot.php']]], - ['network_5ffeed',['NETWORK_FEED',['../boot_8php.html#ab4bddb41a0cf407178ec5278b950c393',1,'boot.php']]], - ['network_5fgplus',['NETWORK_GPLUS',['../boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701',1,'boot.php']]], - ['network_5flinkedin',['NETWORK_LINKEDIN',['../boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa',1,'boot.php']]], - ['network_5fmail',['NETWORK_MAIL',['../boot_8php.html#a7236b2cdcf59f02a42302e893a99013b',1,'boot.php']]], - ['network_5fmail2',['NETWORK_MAIL2',['../boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42',1,'boot.php']]], - ['network_5fmyspace',['NETWORK_MYSPACE',['../boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95',1,'boot.php']]], - ['network_5fostatus',['NETWORK_OSTATUS',['../boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d',1,'boot.php']]], - ['network_5fphantom',['NETWORK_PHANTOM',['../boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f',1,'boot.php']]], - ['network_5fxmpp',['NETWORK_XMPP',['../boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e',1,'boot.php']]], - ['network_5fzot',['NETWORK_ZOT',['../boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0',1,'boot.php']]], - ['newfilename',['newfilename',['../namespacefriendica-to-smarty-tpl.html#ad9ef87ccb2c9960501f5e02424a22d80',1,'friendica-to-smarty-tpl']]], - ['notify_5fcomment',['NOTIFY_COMMENT',['../boot_8php.html#a20f0eed431d25870b624b8937a07a59f',1,'boot.php']]], - ['notify_5fconfirm',['NOTIFY_CONFIRM',['../boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d',1,'boot.php']]], - ['notify_5fintro',['NOTIFY_INTRO',['../boot_8php.html#a56fd673eaa7014150297ce1162502db5',1,'boot.php']]], - ['notify_5fmail',['NOTIFY_MAIL',['../boot_8php.html#a285732e7889fa7f333cbe431111e1029',1,'boot.php']]], - ['notify_5fpoke',['NOTIFY_POKE',['../boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8',1,'boot.php']]], - ['notify_5fprofile',['NOTIFY_PROFILE',['../boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b',1,'boot.php']]], - ['notify_5fsuggest',['NOTIFY_SUGGEST',['../boot_8php.html#a9d01ef178b72b145016cca1393415bc4',1,'boot.php']]], - ['notify_5fsystem',['NOTIFY_SYSTEM',['../boot_8php.html#a14d44d4a00223dc3db4ea962325db192',1,'boot.php']]], - ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], - ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], - ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], - ['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_6f.html b/doc/html/search/variables_6f.html deleted file mode 100644 index f06e2e0f4..000000000 --- a/doc/html/search/variables_6f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_6f.js b/doc/html/search/variables_6f.js deleted file mode 100644 index f7979a46a..000000000 --- a/doc/html/search/variables_6f.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['outf',['outf',['../namespacefriendica-to-smarty-tpl.html#a87182a9bab47640428bd0b2b9946bef9',1,'friendica-to-smarty-tpl']]], - ['outpath',['outpath',['../namespacefriendica-to-smarty-tpl.html#a005c1b7a69cac31fad72a941974ba7bb',1,'friendica-to-smarty-tpl']]] -]; diff --git a/doc/html/search/variables_70.html b/doc/html/search/variables_70.html deleted file mode 100644 index 439d152f5..000000000 --- a/doc/html/search/variables_70.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_70.js b/doc/html/search/variables_70.js deleted file mode 100644 index e0fc4c472..000000000 --- a/doc/html/search/variables_70.js +++ /dev/null @@ -1,54 +0,0 @@ -var searchData= -[ - ['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'mod_import.php']]], - ['page_5fadult',['PAGE_ADULT',['../boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32',1,'boot.php']]], - ['page_5fallowcode',['PAGE_ALLOWCODE',['../boot_8php.html#adb4c9bd011f9aaeb253742da18373b64',1,'boot.php']]], - ['page_5fapplication',['PAGE_APPLICATION',['../boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed',1,'boot.php']]], - ['page_5fautoconnect',['PAGE_AUTOCONNECT',['../boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9',1,'boot.php']]], - ['page_5fcensored',['PAGE_CENSORED',['../boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214',1,'boot.php']]], - ['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]], - ['page_5fhubadmin',['PAGE_HUBADMIN',['../boot_8php.html#afbb21ecccac9819aa65397e816868a5f',1,'boot.php']]], - ['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]], - ['page_5fpremium',['PAGE_PREMIUM',['../boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8',1,'boot.php']]], - ['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]], - ['page_5fsystem',['PAGE_SYSTEM',['../boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932',1,'boot.php']]], - ['passwd',['PASSWD',['../namespacezotsh.html#af095a954e499000ad500a47ebea3f3ce',1,'zotsh']]], - ['path',['path',['../classeasywebdav_1_1client_1_1OperationFailed.html#a95d48cca4944cc68a6220f6f9030ad70',1,'easywebdav.client.OperationFailed.path()'],['../namespacefriendica-to-smarty-tpl.html#a68d15934660cd1f4301ce251b1646f09',1,'friendica-to-smarty-tpl.path()'],['../namespaceupdatetpl.html#ae694f5e1f25f8a92a945eb90c432dfe6',1,'updatetpl.path()']]], - ['perms_5fa_5fdelegate',['PERMS_A_DELEGATE',['../boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b',1,'boot.php']]], - ['perms_5fa_5frepublish',['PERMS_A_REPUBLISH',['../boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead',1,'boot.php']]], - ['perms_5fauthed',['PERMS_AUTHED',['../boot_8php.html#a852d4036a3bed66af1534d014c4ecde2',1,'boot.php']]], - ['perms_5fcontacts',['PERMS_CONTACTS',['../boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6',1,'boot.php']]], - ['perms_5fnetwork',['PERMS_NETWORK',['../boot_8php.html#a6df1102664f64b274810db85197c2755',1,'boot.php']]], - ['perms_5fpending',['PERMS_PENDING',['../boot_8php.html#a205d013103997adfa72953d2f20c01e1',1,'boot.php']]], - ['perms_5fpublic',['PERMS_PUBLIC',['../boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7',1,'boot.php']]], - ['perms_5fr_5fabook',['PERMS_R_ABOOK',['../boot_8php.html#a3d6d4fc5fafcc9156811669158541caf',1,'boot.php']]], - ['perms_5fr_5fpages',['PERMS_R_PAGES',['../boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e',1,'boot.php']]], - ['perms_5fr_5fphotos',['PERMS_R_PHOTOS',['../boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62',1,'boot.php']]], - ['perms_5fr_5fprofile',['PERMS_R_PROFILE',['../boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137',1,'boot.php']]], - ['perms_5fr_5fstorage',['PERMS_R_STORAGE',['../boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc',1,'boot.php']]], - ['perms_5fr_5fstream',['PERMS_R_STREAM',['../boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4',1,'boot.php']]], - ['perms_5fsite',['PERMS_SITE',['../boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f',1,'boot.php']]], - ['perms_5fspecific',['PERMS_SPECIFIC',['../boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964',1,'boot.php']]], - ['perms_5fw_5fchat',['PERMS_W_CHAT',['../boot_8php.html#acd877c405b06b348b37b6f7e62a211e9',1,'boot.php']]], - ['perms_5fw_5fcomment',['PERMS_W_COMMENT',['../boot_8php.html#a32df13fec0e43281da5979e1f5579aa8',1,'boot.php']]], - ['perms_5fw_5flike',['PERMS_W_LIKE',['../boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007',1,'boot.php']]], - ['perms_5fw_5fmail',['PERMS_W_MAIL',['../boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf',1,'boot.php']]], - ['perms_5fw_5fpages',['PERMS_W_PAGES',['../boot_8php.html#aa9244fc9cc221980c07a20cc534111be',1,'boot.php']]], - ['perms_5fw_5fphotos',['PERMS_W_PHOTOS',['../boot_8php.html#a57eee7352714c004d36c26dda74af73e',1,'boot.php']]], - ['perms_5fw_5fstorage',['PERMS_W_STORAGE',['../boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115',1,'boot.php']]], - ['perms_5fw_5fstream',['PERMS_W_STREAM',['../boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55',1,'boot.php']]], - ['perms_5fw_5ftagwall',['PERMS_W_TAGWALL',['../boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777',1,'boot.php']]], - ['perms_5fw_5fwall',['PERMS_W_WALL',['../boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2',1,'boot.php']]], - ['photo_5fadult',['PHOTO_ADULT',['../boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0',1,'boot.php']]], - ['photo_5fflag_5fos',['PHOTO_FLAG_OS',['../boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f',1,'boot.php']]], - ['photo_5fnormal',['PHOTO_NORMAL',['../boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4',1,'boot.php']]], - ['photo_5fprofile',['PHOTO_PROFILE',['../boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0',1,'boot.php']]], - ['photo_5fthing',['PHOTO_THING',['../boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383',1,'boot.php']]], - ['photo_5fxchan',['PHOTO_XCHAN',['../boot_8php.html#ac43182e0d8bae7576a30b603774974f8',1,'boot.php']]], - ['php_5ftpl',['php_tpl',['../namespacefriendica-to-smarty-tpl.html#a5dfc21ab8282dda8e3a7dff43cd0e283',1,'friendica-to-smarty-tpl']]], - ['png_5fquality',['PNG_QUALITY',['../boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce',1,'boot.php']]], - ['poll_5fmultiple_5fchoice',['POLL_MULTIPLE_CHOICE',['../boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86',1,'boot.php']]], - ['poll_5foverwrite',['POLL_OVERWRITE',['../boot_8php.html#a2b525996e4426bdddbcec277778bde08',1,'boot.php']]], - ['poll_5fsimple_5frating',['POLL_SIMPLE_RATING',['../boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5',1,'boot.php']]], - ['poll_5ftenscale',['POLL_TENSCALE',['../boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_72.html b/doc/html/search/variables_72.html deleted file mode 100644 index 8a4ee7bb3..000000000 --- a/doc/html/search/variables_72.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_72.js b/doc/html/search/variables_72.js deleted file mode 100644 index 674ea9309..000000000 --- a/doc/html/search/variables_72.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['random_5fstring_5fhex',['RANDOM_STRING_HEX',['../text_8php.html#aad557c054cf2ed915633701018fc7e3f',1,'text.php']]], - ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], - ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], - ['reason',['reason',['../classeasywebdav_1_1client_1_1OperationFailed.html#ad1026cc529cf839da18542f6907df022',1,'easywebdav::client::OperationFailed']]], - ['red_5fplatform',['RED_PLATFORM',['../boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4',1,'boot.php']]], - ['red_5fversion',['RED_VERSION',['../boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3',1,'boot.php']]], - ['redmatrix_5fimportchannel',['REDMATRIX_IMPORTCHANNEL',['../refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6',1,'refimport.php']]], - ['reflect_5fbaseurl',['REFLECT_BASEURL',['../refimport_8php.html#ac43699d8ae86175e049aa4e87853caac',1,'refimport.php']]], - ['reflect_5fblogname',['REFLECT_BLOGNAME',['../refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f',1,'refimport.php']]], - ['reflect_5fexportusername',['REFLECT_EXPORTUSERNAME',['../refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025',1,'refimport.php']]], - ['reflect_5fmaxperrun',['REFLECT_MAXPERRUN',['../refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f',1,'refimport.php']]], - ['reflect_5foverwrite',['REFLECT_OVERWRITE',['../refimport_8php.html#aeec793cefa260f788b7d005adcb35796',1,'refimport.php']]], - ['reflect_5fuserfile',['REFLECT_USERFILE',['../refimport_8php.html#a684a44d2401abf75f441591bcb41d10d',1,'refimport.php']]], - ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], - ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], - ['register_5fopen',['REGISTER_OPEN',['../boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63',1,'boot.php']]], - ['request_5ftoken_5fduration',['REQUEST_TOKEN_DURATION',['../oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16',1,'oauth.php']]] -]; diff --git a/doc/html/search/variables_73.html b/doc/html/search/variables_73.html deleted file mode 100644 index 388a6d74b..000000000 --- a/doc/html/search/variables_73.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_73.js b/doc/html/search/variables_73.js deleted file mode 100644 index 7c0d0cce8..000000000 --- a/doc/html/search/variables_73.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['server',['SERVER',['../namespacezotsh.html#a701660e74baf39d745d202f282240f3c',1,'zotsh']]], - ['session',['session',['../classeasywebdav_1_1client_1_1Client.html#a3ae2c2f4b07692c2e81fa4c9643fd4cf',1,'easywebdav.client.Client.session()'],['../classzotsh_1_1ZotSH.html#a817b058af7f90c6d4bbbe590b3f7faaf',1,'zotsh.ZotSH.session()']]], - ['sessions',['sessions',['../classzotsh_1_1ZotSH.html#a40f05be2cd1eec8da7237e73e6ed4cd6',1,'zotsh::ZotSH']]], - ['ssl_5fpolicy_5ffull',['SSL_POLICY_FULL',['../boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc',1,'boot.php']]], - ['ssl_5fpolicy_5fnone',['SSL_POLICY_NONE',['../boot_8php.html#af86c651547aa8f9e549ee40a09455549',1,'boot.php']]], - ['ssl_5fpolicy_5fselfsign',['SSL_POLICY_SELFSIGN',['../boot_8php.html#adca48aee78465ae3064ca4432c0d87b5',1,'boot.php']]], - ['storage_5fdefault_5fpermissions',['STORAGE_DEFAULT_PERMISSIONS',['../boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_74.html b/doc/html/search/variables_74.html deleted file mode 100644 index 1665fb806..000000000 --- a/doc/html/search/variables_74.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_74.js b/doc/html/search/variables_74.js deleted file mode 100644 index 1a6a21f09..000000000 --- a/doc/html/search/variables_74.js +++ /dev/null @@ -1,21 +0,0 @@ -var searchData= -[ - ['template_5fbuild_5fpath',['TEMPLATE_BUILD_PATH',['../boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1',1,'boot.php']]], - ['term_5fbookmark',['TERM_BOOKMARK',['../boot_8php.html#a115faf8797718c3165498abbd6895843',1,'boot.php']]], - ['term_5fcategory',['TERM_CATEGORY',['../boot_8php.html#af33d1b2e98a1e21af672005525d46dfe',1,'boot.php']]], - ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], - ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], - ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], - ['term_5fobj_5fapp',['TERM_OBJ_APP',['../boot_8php.html#ace6d70ac290397ddd40e561fd0831858',1,'boot.php']]], - ['term_5fobj_5fchannel',['TERM_OBJ_CHANNEL',['../boot_8php.html#a8892374789fd261eb32a7969d934a14a',1,'boot.php']]], - ['term_5fobj_5fobject',['TERM_OBJ_OBJECT',['../boot_8php.html#a882b666adfe21f035a0f8c02806066d6',1,'boot.php']]], - ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], - ['term_5fobj_5fpost',['TERM_OBJ_POST',['../boot_8php.html#a9eeb8989272d5ff804a616898bb13659',1,'boot.php']]], - ['term_5fobj_5fprofile',['TERM_OBJ_PROFILE',['../boot_8php.html#aead84fa27d7516b855220fe004964a45',1,'boot.php']]], - ['term_5fobj_5fthing',['TERM_OBJ_THING',['../boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe',1,'boot.php']]], - ['term_5fpcategory',['TERM_PCATEGORY',['../boot_8php.html#a45b12aefab9675baffc7a07a09486db8',1,'boot.php']]], - ['term_5fsavedsearch',['TERM_SAVEDSEARCH',['../boot_8php.html#abd7bb40da9cc073297e49736b338ca07',1,'boot.php']]], - ['term_5fthing',['TERM_THING',['../boot_8php.html#a0d877df1e20bae765e1708be50f6b503',1,'boot.php']]], - ['term_5funknown',['TERM_UNKNOWN',['../boot_8php.html#a0c59dde058efebbc66520d136cbd1631',1,'boot.php']]], - ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]] -]; diff --git a/doc/html/search/variables_75.html b/doc/html/search/variables_75.html deleted file mode 100644 index 7850aec50..000000000 --- a/doc/html/search/variables_75.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_75.js b/doc/html/search/variables_75.js deleted file mode 100644 index 9b5f41ef2..000000000 --- a/doc/html/search/variables_75.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['update_5ffailed',['UPDATE_FAILED',['../boot_8php.html#a75fc600186b13c3b25e661afefb5eac8',1,'boot.php']]], - ['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']]], - ['user',['USER',['../namespacezotsh.html#a12660918ec1a79487c98172e0d74d064',1,'zotsh']]], - ['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_76.html b/doc/html/search/variables_76.html deleted file mode 100644 index 8af237461..000000000 --- a/doc/html/search/variables_76.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_76.js b/doc/html/search/variables_76.js deleted file mode 100644 index 29a6f4997..000000000 --- a/doc/html/search/variables_76.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['verify_5fssl',['VERIFY_SSL',['../namespacezotsh.html#a9b17c9ddf6c3b49c00d74ba46f54398e',1,'zotsh']]], - ['vnotify_5falert',['VNOTIFY_ALERT',['../boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f',1,'boot.php']]], - ['vnotify_5fbirthday',['VNOTIFY_BIRTHDAY',['../boot_8php.html#ac89396b9144391acd08d6d0f9b332220',1,'boot.php']]], - ['vnotify_5fchannel',['VNOTIFY_CHANNEL',['../boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe',1,'boot.php']]], - ['vnotify_5fevent',['VNOTIFY_EVENT',['../boot_8php.html#ad94aca4c260b8a892397786201dc4664',1,'boot.php']]], - ['vnotify_5feventtoday',['VNOTIFY_EVENTTODAY',['../boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9',1,'boot.php']]], - ['vnotify_5finfo',['VNOTIFY_INFO',['../boot_8php.html#a37281c30bd92cecb499878d6778c570f',1,'boot.php']]], - ['vnotify_5fintro',['VNOTIFY_INTRO',['../boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71',1,'boot.php']]], - ['vnotify_5fmail',['VNOTIFY_MAIL',['../boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3',1,'boot.php']]], - ['vnotify_5fnetwork',['VNOTIFY_NETWORK',['../boot_8php.html#a997614f25e58f8313641e1eb0109fd10',1,'boot.php']]], - ['vnotify_5fregister',['VNOTIFY_REGISTER',['../boot_8php.html#ae09767b94688657978ff9366ec63684b',1,'boot.php']]], - ['vnotify_5fsystem',['VNOTIFY_SYSTEM',['../boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1',1,'boot.php']]] -]; diff --git a/doc/html/search/variables_77.html b/doc/html/search/variables_77.html deleted file mode 100644 index 434c6df9e..000000000 --- a/doc/html/search/variables_77.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_77.js b/doc/html/search/variables_77.js deleted file mode 100644 index 59eb7ded7..000000000 --- a/doc/html/search/variables_77.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]] -]; diff --git a/doc/html/search/variables_78.html b/doc/html/search/variables_78.html deleted file mode 100644 index 602e87995..000000000 --- a/doc/html/search/variables_78.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_78.js b/doc/html/search/variables_78.js deleted file mode 100644 index 312bf2391..000000000 --- a/doc/html/search/variables_78.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['xchan_5fflags_5fcensored',['XCHAN_FLAGS_CENSORED',['../boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e',1,'boot.php']]], - ['xchan_5fflags_5fdeleted',['XCHAN_FLAGS_DELETED',['../boot_8php.html#a9ea1290e00c6d40684892047f2c778a9',1,'boot.php']]], - ['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/search/variables_7a.html b/doc/html/search/variables_7a.html deleted file mode 100644 index 8a5710483..000000000 --- a/doc/html/search/variables_7a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/doc/html/search/variables_7a.js b/doc/html/search/variables_7a.js deleted file mode 100644 index c1d257f75..000000000 --- a/doc/html/search/variables_7a.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['zcurl_5ftimeout',['ZCURL_TIMEOUT',['../boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af',1,'boot.php']]], - ['zot_5frevision',['ZOT_REVISION',['../boot_8php.html#a36b31575f992a10b5927b76efba9362e',1,'boot.php']]] -]; diff --git a/doc/html/search_8php.html b/doc/html/search_8php.html deleted file mode 100644 index ec93dbf2b..000000000 --- a/doc/html/search_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/search.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        search.php File Reference
        -
        -
        - - - - - - -

        -Functions

         search_init (&$a)
         
         search_content (&$a, $update=0, $load=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        search_content ($a,
         $update = 0,
         $load = false 
        )
        -
        - -

        Referenced by update_search_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        search_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/search_8php.js b/doc/html/search_8php.js deleted file mode 100644 index 254c8c72e..000000000 --- a/doc/html/search_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var search_8php = -[ - [ "search_content", "search_8php.html#ab2568591359edde5b483a6cd9a24b2cc", null ], - [ "search_init", "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435", null ] -]; \ No newline at end of file diff --git a/doc/html/search__ac_8php.html b/doc/html/search__ac_8php.html deleted file mode 100644 index 93c763f53..000000000 --- a/doc/html/search__ac_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/search_ac.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        search_ac.php File Reference
        -
        -
        - - - - -

        -Functions

         search_ac_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        search_ac_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/search__ac_8php.js b/doc/html/search__ac_8php.js deleted file mode 100644 index 27ce8db46..000000000 --- a/doc/html/search__ac_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var search__ac_8php = -[ - [ "search_ac_init", "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138", null ] -]; \ No newline at end of file diff --git a/doc/html/security_8php.html b/doc/html/security_8php.html deleted file mode 100644 index 4ff740f9f..000000000 --- a/doc/html/security_8php.html +++ /dev/null @@ -1,515 +0,0 @@ - - - - - - -The Red Matrix: include/security.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        security.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         authenticate_success ($user_record, $login_initial=false, $interactive=false, $return=false, $update_lastlog=false)
         
         change_channel ($change_channel)
         Change to another channel with current logged-in account. More...
         
         permissions_sql ($owner_id, $remote_verified=false, $groups=null)
         Creates an addiontal SQL where statement to check permissions. More...
         
         item_permissions_sql ($owner_id, $remote_verified=false, $groups=null)
         Creates an addiontal SQL where statement to check permissions for an item. More...
         
         public_permissions_sql ($observer_hash)
         
         get_form_security_token ($typename= '')
         
         check_form_security_token ($typename= '', $formname= 'form_security_token')
         
         check_form_security_std_err_msg ()
         
         check_form_security_token_redirectOnErr ($err_redirect, $typename= '', $formname= 'form_security_token')
         
         check_form_security_token_ForbiddenOnErr ($typename= '', $formname= 'form_security_token')
         
        if(!function_exists('init_groups_visitor')) stream_perms_api_uids ($perms=NULL)
         
         stream_perms_xchans ($perms=NULL)
         
        -

        Detailed Description

        -

        Some security related functions.

        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        authenticate_success ( $user_record,
         $login_initial = false,
         $interactive = false,
         $return = false,
         $update_lastlog = false 
        )
        -
        -
        Parameters
        - - - - - - -
        int$user_recordThe account_id
        bool$login_initialdefault false
        bool$interactivedefault false
        bool$return
        bool$update_lastlog
        -
        -
        - -

        Referenced by api_login(), openid_content(), and register_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        change_channel ( $change_channel)
        -
        - -

        Change to another channel with current logged-in account.

        -
        Parameters
        - - -
        int$change_channelThe channel_id of the channel you want to change to
        -
        -
        -
        Returns
        bool|array false or channel record of the new channel
        - -

        Referenced by api_login(), api_user(), authenticate_success(), import_post(), FKOAuth1\loginUser(), manage_content(), new_channel_post(), and rpost_content().

        - -
        -
        - -
        -
        - - - - - - - -
        check_form_security_std_err_msg ()
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        check_form_security_token ( $typename = '',
         $formname = 'form_security_token' 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        check_form_security_token_ForbiddenOnErr ( $typename = '',
         $formname = 'form_security_token' 
        )
        -
        - -

        Referenced by group_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        check_form_security_token_redirectOnErr ( $err_redirect,
         $typename = '',
         $formname = 'form_security_token' 
        )
        -
        -
        - - - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        item_permissions_sql ( $owner_id,
         $remote_verified = false,
         $groups = null 
        )
        -
        - -

        Creates an addiontal SQL where statement to check permissions for an item.

        -
        Parameters
        - - - - -
        int$owner_id
        bool$remote_verifieddefault false, not used at all
        string$groupsthis param is not used at all
        -
        -
        -
        Returns
        string additional SQL where statement
        -

        Construct permissions

        -

        default permissions - anonymous user

        -

        Profile owner - everything is visible

        -

        Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

        - -

        Referenced by block_content(), channel_content(), items_fetch(), page_init(), pdl_selector(), share_init(), tagadelic(), widget_item(), widget_random_block(), and zot_feed().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        permissions_sql ( $owner_id,
         $remote_verified = false,
         $groups = null 
        )
        -
        - -

        Creates an addiontal SQL where statement to check permissions.

        -
        Parameters
        - - - - -
        int$owner_id
        bool$remote_verifieddefault false, not used at all
        string$groupsthis param is not used at all
        -
        -
        -
        Returns
        string additional SQL where statement
        -

        Construct permissions

        -

        default permissions - anonymous user

        -

        Profile owner - everything is visible

        -

        Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

        - -

        Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), chat_content(), chat_message(), chatroom_enter(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_post(), menu_fetch(), photo_init(), photos_albums_list(), photos_content(), photos_list_photos(), RedCollectionData(), RedFileData(), and z_readdir().

        - -
        -
        - -
        -
        - - - - - - - - -
        public_permissions_sql ( $observer_hash)
        -
        -
        Parameters
        - - -
        string$observer_hash
        -
        -
        -
        Returns
        string additional SQL where statement
        - -

        Referenced by display_content(), and search_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        if (!function_exists('init_groups_visitor')) stream_perms_api_uids ( $perms = NULL)
        -
        -
        - -
        -
        - - - - - - - - -
        stream_perms_xchans ( $perms = NULL)
        -
        - -

        Referenced by display_content(), and search_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/security_8php.js b/doc/html/security_8php.js deleted file mode 100644 index 594c3ce3a..000000000 --- a/doc/html/security_8php.js +++ /dev/null @@ -1,15 +0,0 @@ -var security_8php = -[ - [ "authenticate_success", "security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733", null ], - [ "change_channel", "security_8php.html#a8d23d2597aae380a3341872fe9513380", null ], - [ "check_form_security_std_err_msg", "security_8php.html#a20f8b9851f23ee8894b8925584ef6821", null ], - [ "check_form_security_token", "security_8php.html#a9c6180e82150a5a9af91a1255d096b5c", null ], - [ "check_form_security_token_ForbiddenOnErr", "security_8php.html#a444ac867dfa8c37cf0a7a226412bee28", null ], - [ "check_form_security_token_redirectOnErr", "security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433", null ], - [ "get_form_security_token", "security_8php.html#acd06ef411116115c2f0a92633700db8a", null ], - [ "item_permissions_sql", "security_8php.html#a9355488460ab11d6058656ff919e5cf9", null ], - [ "permissions_sql", "security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f", null ], - [ "public_permissions_sql", "security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01", null ], - [ "stream_perms_api_uids", "security_8php.html#a6126c77a1267e046ac59cf864613f011", null ], - [ "stream_perms_xchans", "security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c", null ] -]; \ No newline at end of file diff --git a/doc/html/service__limits_8php.html b/doc/html/service__limits_8php.html deleted file mode 100644 index 808e3ca9a..000000000 --- a/doc/html/service__limits_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/service_limits.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        service_limits.php File Reference
        -
        -
        - - - - -

        -Functions

         service_limits_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        service_limits_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/service__limits_8php.js b/doc/html/service__limits_8php.js deleted file mode 100644 index 4ab8d3a33..000000000 --- a/doc/html/service__limits_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var service__limits_8php = -[ - [ "service_limits_content", "service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a", null ] -]; \ No newline at end of file diff --git a/doc/html/session_8php.html b/doc/html/session_8php.html deleted file mode 100644 index 0c02c1ec6..000000000 --- a/doc/html/session_8php.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - -The Red Matrix: include/session.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        session.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - -

        -Functions

         new_cookie ($time)
         
         ref_session_open ($s, $n)
         
         ref_session_read ($id)
         
         ref_session_write ($id, $data)
         
         ref_session_close ()
         
         ref_session_destroy ($id)
         
         ref_session_gc ($expire)
         
        - - - - - - - -

        -Variables

         $session_exists = 0
         
         $session_expire = 180000
         
         $gc_probability = 50
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        new_cookie ( $time)
        -
        - -

        Referenced by nuke_session().

        - -
        -
        - -
        -
        - - - - - - - -
        ref_session_close ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        ref_session_destroy ( $id)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        ref_session_gc ( $expire)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ref_session_open ( $s,
         $n 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        ref_session_read ( $id)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ref_session_write ( $id,
         $data 
        )
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $gc_probability = 50
        -
        - -
        -
        - -
        -
        - - - - -
        $session_exists = 0
        -
        - -

        Referenced by ref_session_read(), and ref_session_write().

        - -
        -
        - -
        -
        - - - - -
        $session_expire = 180000
        -
        - -

        Referenced by ref_session_write().

        - -
        -
        -
        -
        - diff --git a/doc/html/session_8php.js b/doc/html/session_8php.js deleted file mode 100644 index 5d69851d0..000000000 --- a/doc/html/session_8php.js +++ /dev/null @@ -1,13 +0,0 @@ -var session_8php = -[ - [ "new_cookie", "session_8php.html#a4c0ead624f95483e386bc80abf570a8f", null ], - [ "ref_session_close", "session_8php.html#a5e1c616e02b863d5450317d101366bb7", null ], - [ "ref_session_destroy", "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052", null ], - [ "ref_session_gc", "session_8php.html#ac95373f4966862a028033dd2f94d4da1", null ], - [ "ref_session_open", "session_8php.html#a26fa1042356d555023cbf15ddd4f8507", null ], - [ "ref_session_read", "session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e", null ], - [ "ref_session_write", "session_8php.html#ac4461c1984543d3553e73dba2771568f", null ], - [ "$gc_probability", "session_8php.html#a96b09cc763572f45280786a7b33feb7e", null ], - [ "$session_exists", "session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb", null ], - [ "$session_expire", "session_8php.html#af0100a2642a5268594bbd5742a03d885", null ] -]; \ No newline at end of file diff --git a/doc/html/settings_8php.html b/doc/html/settings_8php.html deleted file mode 100644 index cb50bbc52..000000000 --- a/doc/html/settings_8php.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -The Red Matrix: mod/settings.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        settings.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         get_theme_config_file ($theme)
         
         settings_init (&$a)
         
         settings_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        get_theme_config_file ( $theme)
        -
        - -

        Referenced by settings_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        settings_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        settings_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/settings_8php.js b/doc/html/settings_8php.js deleted file mode 100644 index 9185251bc..000000000 --- a/doc/html/settings_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var settings_8php = -[ - [ "get_theme_config_file", "settings_8php.html#a39abc76ff5459c57e3b957664f273f18", null ], - [ "settings_init", "settings_8php.html#a3a4cde287482fced008583f54ba2a722", null ], - [ "settings_post", "settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586", null ] -]; \ No newline at end of file diff --git a/doc/html/setup_8php.html b/doc/html/setup_8php.html deleted file mode 100644 index 8c57c8058..000000000 --- a/doc/html/setup_8php.html +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - -The Red Matrix: mod/setup.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        setup.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         setup_init (&$a)
         
         setup_post (&$a)
         
         get_db_errno ()
         
         setup_content (&$a)
         
         check_add (&$checks, $title, $status, $required, $help)
         
         check_php (&$phpath, &$checks)
         
         check_keys (&$checks)
         
         check_funcs (&$checks)
         
         check_htconfig (&$checks)
         
         check_smarty3 (&$checks)
         
         check_store (&$checks)
         
         check_htaccess (&$checks)
         
         manual_config (&$a)
         
         load_database_rem ($v, $i)
         
         load_database ($db)
         
         what_next ()
         
        - - - -

        -Variables

         $install_wizard_pass =1
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        check_add ($checks,
         $title,
         $status,
         $required,
         $help 
        )
        -
        -

        checks : array passed to template title : string status : boolean required : boolean help : string optional

        - -

        Referenced by check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), and check_store().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_funcs ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_htaccess ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_htconfig ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_keys ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        check_php ($phpath,
        $checks 
        )
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_smarty3 ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        check_store ($checks)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - -
        get_db_errno ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        load_database ( $db)
        -
        - -

        Referenced by setup_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        load_database_rem ( $v,
         $i 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        manual_config ($a)
        -
        - -

        Referenced by setup_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        setup_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        setup_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        setup_post ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - -
        what_next ()
        -
        - -

        Referenced by setup_content().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $install_wizard_pass =1
        -
        - -

        Referenced by setup_content(), setup_init(), and setup_post().

        - -
        -
        -
        -
        - diff --git a/doc/html/setup_8php.js b/doc/html/setup_8php.js deleted file mode 100644 index e02d5899c..000000000 --- a/doc/html/setup_8php.js +++ /dev/null @@ -1,20 +0,0 @@ -var setup_8php = -[ - [ "check_add", "setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1", null ], - [ "check_funcs", "setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e", null ], - [ "check_htaccess", "setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4", null ], - [ "check_htconfig", "setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f", null ], - [ "check_keys", "setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76", null ], - [ "check_php", "setup_8php.html#a14d208682a88632290c895d20da6e7d6", null ], - [ "check_smarty3", "setup_8php.html#afd8b0b3ade1507c45325caf377bf459d", null ], - [ "check_store", "setup_8php.html#ab4b71369a25021d59247c917e98d8246", null ], - [ "get_db_errno", "setup_8php.html#a8652788e8589778c5f81634a9d5b9429", null ], - [ "load_database", "setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a", null ], - [ "load_database_rem", "setup_8php.html#a2b375ddc555140236fc500135de99371", null ], - [ "manual_config", "setup_8php.html#abe405d227ba7232971964a706d4f3bce", null ], - [ "setup_content", "setup_8php.html#a88247384a96e14516f474d7af6a465c1", null ], - [ "setup_init", "setup_8php.html#a267555abd17290e659b4bf44b885e4e0", null ], - [ "setup_post", "setup_8php.html#a13cf286774149a0a7bd8adb8179cec75", null ], - [ "what_next", "setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58", null ], - [ "$install_wizard_pass", "setup_8php.html#addb24714bc2542aa4f4215e98fe48432", null ] -]; \ No newline at end of file diff --git a/doc/html/share_8php.html b/doc/html/share_8php.html deleted file mode 100644 index 89298f55f..000000000 --- a/doc/html/share_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/share.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        share.php File Reference
        -
        -
        - - - - -

        -Functions

         share_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        share_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/share_8php.js b/doc/html/share_8php.js deleted file mode 100644 index 6f63d2afc..000000000 --- a/doc/html/share_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var share_8php = -[ - [ "share_init", "share_8php.html#afeb26046bdd02567ecd29ab5f188b249", null ] -]; \ No newline at end of file diff --git a/doc/html/sharedwithme_8php.html b/doc/html/sharedwithme_8php.html deleted file mode 100644 index 331c0eb03..000000000 --- a/doc/html/sharedwithme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/sharedwithme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        sharedwithme.php File Reference
        -
        -
        - - - - -

        -Functions

         sharedwithme_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sharedwithme_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/sharedwithme_8php.js b/doc/html/sharedwithme_8php.js deleted file mode 100644 index a6186aede..000000000 --- a/doc/html/sharedwithme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var sharedwithme_8php = -[ - [ "sharedwithme_content", "sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190", null ] -]; \ No newline at end of file diff --git a/doc/html/simple__black__on__white_8php.html b/doc/html/simple__black__on__white_8php.html deleted file mode 100644 index 24c0fcde5..000000000 --- a/doc/html/simple__black__on__white_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/simple_black_on_white.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        simple_black_on_white.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/simple__green__on__black_8php.html b/doc/html/simple__green__on__black_8php.html deleted file mode 100644 index 58eb19f83..000000000 --- a/doc/html/simple__green__on__black_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/simple_green_on_black.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        simple_green_on_black.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/simple__white__on__black_8php.html b/doc/html/simple__white__on__black_8php.html deleted file mode 100644 index 932361b92..000000000 --- a/doc/html/simple__white__on__black_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/schema/simple_white_on_black.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        simple_white_on_black.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/siteinfo_8php.html b/doc/html/siteinfo_8php.html deleted file mode 100644 index c53a3c42f..000000000 --- a/doc/html/siteinfo_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/siteinfo.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        siteinfo.php File Reference
        -
        -
        - - - - - - -

        -Functions

         siteinfo_init (&$a)
         
         siteinfo_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        siteinfo_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        siteinfo_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/siteinfo_8php.js b/doc/html/siteinfo_8php.js deleted file mode 100644 index f293cd4f6..000000000 --- a/doc/html/siteinfo_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var siteinfo_8php = -[ - [ "siteinfo_content", "siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656", null ], - [ "siteinfo_init", "siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0", null ] -]; \ No newline at end of file diff --git a/doc/html/sitelist_8php.html b/doc/html/sitelist_8php.html deleted file mode 100644 index 976943283..000000000 --- a/doc/html/sitelist_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/sitelist.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        sitelist.php File Reference
        -
        -
        - - - - -

        -Functions

         sitelist_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sitelist_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/sitelist_8php.js b/doc/html/sitelist_8php.js deleted file mode 100644 index 5feccee65..000000000 --- a/doc/html/sitelist_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var sitelist_8php = -[ - [ "sitelist_init", "sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1", null ] -]; \ No newline at end of file diff --git a/doc/html/smarty_8php.html b/doc/html/smarty_8php.html deleted file mode 100644 index 8828f6757..000000000 --- a/doc/html/smarty_8php.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - -The Red Matrix: include/smarty.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        smarty.php File Reference
        -
        -
        - - - - - - -

        -Classes

        class  FriendicaSmarty
         
        class  FriendicaSmartyEngine
         
        -
        -
        - diff --git a/doc/html/smilies_8php.html b/doc/html/smilies_8php.html deleted file mode 100644 index 624cb9b90..000000000 --- a/doc/html/smilies_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/smilies.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        smilies.php File Reference
        -
        -
        - - - - -

        -Functions

         smilies_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        smilies_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/smilies_8php.js b/doc/html/smilies_8php.js deleted file mode 100644 index dc1c06b09..000000000 --- a/doc/html/smilies_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var smilies_8php = -[ - [ "smilies_content", "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f", null ] -]; \ No newline at end of file diff --git a/doc/html/socgraph_8php.html b/doc/html/socgraph_8php.html deleted file mode 100644 index 60524b746..000000000 --- a/doc/html/socgraph_8php.html +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - -The Red Matrix: include/socgraph.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        socgraph.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         poco_load ($xchan= '', $url=null)
         
         count_common_friends ($uid, $xchan)
         
         common_friends ($uid, $xchan, $start=0, $limit=100000000, $shuffle=false)
         
         count_common_friends_zcid ($uid, $zcid)
         
         common_friends_zcid ($uid, $zcid, $start=0, $limit=9999, $shuffle=false)
         
         count_all_friends ($uid, $cid)
         
         all_friends ($uid, $cid, $start=0, $limit=80)
         
         suggestion_query ($uid, $myxchan, $start=0, $limit=80)
         
         update_suggestions ()
         
         poco ($a, $extended=false)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        all_friends ( $uid,
         $cid,
         $start = 0,
         $limit = 80 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        common_friends ( $uid,
         $xchan,
         $start = 0,
         $limit = 100000000,
         $shuffle = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        common_friends_zcid ( $uid,
         $zcid,
         $start = 0,
         $limit = 9999,
         $shuffle = false 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        count_all_friends ( $uid,
         $cid 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        count_common_friends ( $uid,
         $xchan 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        count_common_friends_zcid ( $uid,
         $zcid 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        poco ( $a,
         $extended = false 
        )
        -
        - -

        Referenced by poco_init(), and xpoco_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        poco_load ( $xchan = '',
         $url = null 
        )
        -
        - -

        Referenced by onepoll_run(), and update_suggestions().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        suggestion_query ( $uid,
         $myxchan,
         $start = 0,
         $limit = 80 
        )
        -
        -
        - -
        -
        - - - - - - - -
        update_suggestions ()
        -
        - -

        Referenced by cli_suggest_run().

        - -
        -
        -
        -
        - diff --git a/doc/html/socgraph_8php.js b/doc/html/socgraph_8php.js deleted file mode 100644 index e059af540..000000000 --- a/doc/html/socgraph_8php.js +++ /dev/null @@ -1,13 +0,0 @@ -var socgraph_8php = -[ - [ "all_friends", "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586", null ], - [ "common_friends", "socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918", null ], - [ "common_friends_zcid", "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9", null ], - [ "count_all_friends", "socgraph_8php.html#af29d056beec10b4e38e5209c92452894", null ], - [ "count_common_friends", "socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84", null ], - [ "count_common_friends_zcid", "socgraph_8php.html#af175807406d94407a5e11742a3287746", null ], - [ "poco", "socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1", null ], - [ "poco_load", "socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6", null ], - [ "suggestion_query", "socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329", null ], - [ "update_suggestions", "socgraph_8php.html#a790690bb1a1d02483fe31632a160144d", null ] -]; \ No newline at end of file diff --git a/doc/html/sources_8php.html b/doc/html/sources_8php.html deleted file mode 100644 index 5e565616e..000000000 --- a/doc/html/sources_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/sources.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        sources.php File Reference
        -
        -
        - - - - - - -

        -Functions

         sources_post (&$a)
         
         sources_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sources_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        sources_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/sources_8php.js b/doc/html/sources_8php.js deleted file mode 100644 index 182247a56..000000000 --- a/doc/html/sources_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var sources_8php = -[ - [ "sources_content", "sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7", null ], - [ "sources_post", "sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e", null ] -]; \ No newline at end of file diff --git a/doc/html/spam_8php.html b/doc/html/spam_8php.html deleted file mode 100644 index 448abfb17..000000000 --- a/doc/html/spam_8php.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -The Red Matrix: include/spam.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        spam.php File Reference
        -
        -
        - - - - - - -

        -Functions

         string_splitter ($s)
         
         get_words ($uid, $list)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_words ( $uid,
         $list 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        string_splitter ( $s)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/spam_8php.js b/doc/html/spam_8php.js deleted file mode 100644 index 3867b1aec..000000000 --- a/doc/html/spam_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var spam_8php = -[ - [ "get_words", "spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6", null ], - [ "string_splitter", "spam_8php.html#a05861201147b9a538d006f0269255cf9", null ] -]; \ No newline at end of file diff --git a/doc/html/sporadic_2php_2style_8php.html b/doc/html/sporadic_2php_2style_8php.html deleted file mode 100644 index f655e4611..000000000 --- a/doc/html/sporadic_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sporadic/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/sporadic_2php_2theme_8php.html b/doc/html/sporadic_2php_2theme_8php.html deleted file mode 100644 index 5609a12da..000000000 --- a/doc/html/sporadic_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sporadic/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         sporadic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sporadic_init ($a)
        -
        -
          -
        • Name: Sporadic
        • -
        • Description: A Diaspora-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/sporadic_2php_2theme_8php.js b/doc/html/sporadic_2php_2theme_8php.js deleted file mode 100644 index 8943c38cb..000000000 --- a/doc/html/sporadic_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var sporadic_2php_2theme_8php = -[ - [ "sporadic_init", "sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6", null ] -]; \ No newline at end of file diff --git a/doc/html/sslify_8php.html b/doc/html/sslify_8php.html deleted file mode 100644 index e408329b5..000000000 --- a/doc/html/sslify_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/sslify.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        sslify.php File Reference
        -
        -
        - - - - -

        -Functions

         sslify_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sslify_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/sslify_8php.js b/doc/html/sslify_8php.js deleted file mode 100644 index ec3ef3c09..000000000 --- a/doc/html/sslify_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var sslify_8php = -[ - [ "sslify_init", "sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316", null ] -]; \ No newline at end of file diff --git a/doc/html/starred_8php.html b/doc/html/starred_8php.html deleted file mode 100644 index 43fa8769e..000000000 --- a/doc/html/starred_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/starred.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        starred.php File Reference
        -
        -
        - - - - -

        -Functions

         starred_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        starred_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/starred_8php.js b/doc/html/starred_8php.js deleted file mode 100644 index 328089950..000000000 --- a/doc/html/starred_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var starred_8php = -[ - [ "starred_init", "starred_8php.html#a63024fb418c678e49fd535e3752d349a", null ] -]; \ No newline at end of file diff --git a/doc/html/statistics__fns_8php.html b/doc/html/statistics__fns_8php.html deleted file mode 100644 index 541842b29..000000000 --- a/doc/html/statistics__fns_8php.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - -The Red Matrix: include/statistics_fns.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        statistics_fns.php File Reference
        -
        -
        - - - - - - - - - - -

        -Functions

         update_channels_total_stat ()
         
         update_channels_active_halfyear_stat ()
         
         update_channels_active_monthly_stat ()
         
         update_local_posts_stat ()
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        update_channels_active_halfyear_stat ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        update_channels_active_monthly_stat ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        update_channels_total_stat ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        - -
        -
        - - - - - - - -
        update_local_posts_stat ()
        -
        - -

        Referenced by poller_run().

        - -
        -
        -
        -
        - diff --git a/doc/html/statistics__fns_8php.js b/doc/html/statistics__fns_8php.js deleted file mode 100644 index 6ef78ffae..000000000 --- a/doc/html/statistics__fns_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var statistics__fns_8php = -[ - [ "update_channels_active_halfyear_stat", "statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6", null ], - [ "update_channels_active_monthly_stat", "statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe", null ], - [ "update_channels_total_stat", "statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c", null ], - [ "update_local_posts_stat", "statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa", null ] -]; \ No newline at end of file diff --git a/doc/html/stumble_2php_2style_8php.html b/doc/html/stumble_2php_2style_8php.html deleted file mode 100644 index 57672ce6a..000000000 --- a/doc/html/stumble_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/stumble/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/stumble_2php_2theme_8php.html b/doc/html/stumble_2php_2theme_8php.html deleted file mode 100644 index 1d04d981d..000000000 --- a/doc/html/stumble_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/stumble/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         stumble_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        stumble_init ($a)
        -
        -
          -
        • Name: Stumble
        • -
        • Description: A Tumblr-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/stumble_2php_2theme_8php.js b/doc/html/stumble_2php_2theme_8php.js deleted file mode 100644 index 88ddab748..000000000 --- a/doc/html/stumble_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var stumble_2php_2theme_8php = -[ - [ "stumble_init", "stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753", null ] -]; \ No newline at end of file diff --git a/doc/html/style_8php.html b/doc/html/style_8php.html deleted file mode 100644 index ccd1aee87..000000000 --- a/doc/html/style_8php.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - -The Red Project: view/theme/redbasic/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

         $line_height = false
         
         $redbasic_font_size = false
         
         $resolution = false
         
         $colour = false
         
         $shadows = false
         
         $navcolour = false
         
         $nav_bg_1 = "f88"
         
         $nav_bg_2 = "b00"
         
         $nav_bg_3 = "f00"
         
         $nav_bg_4 = "b00"
         
         $displaystyle = false
         
         $linkcolour = false
         
         $shiny = false
         
         $site_line_height = get_config("redbasic","line_height")
         
         $site_redbasic_font_size = get_config("redbasic", "font_size" )
         
         $site_colour = get_config("redbasic", "colour" )
         
        if(local_channel()) if(!feature_enabled(local_channel(),'expert'))
        -if($line_height===false) if($line_height===false)
        -if($redbasic_font_size===false)
        -if($redbasic_font_size===false)
        -if($colour===false) if($colour===false)
        -if($navcolour==="black") 
        if (file_exists('view/theme/'.current_theme(). '/css/style.css'))
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $colour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $displaystyle = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $line_height = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $linkcolour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $nav_bg_1 = "f88"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_2 = "b00"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_3 = "f00"
        -
        - -
        -
        - -
        -
        - - - - -
        $nav_bg_4 = "b00"
        -
        - -
        -
        - -
        -
        - - - - -
        $navcolour = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $redbasic_font_size = false
        -
        - -
        -
        - -
        -
        - - - - -
        $resolution = false
        -
        - -

        Referenced by photo_init().

        - -
        -
        - -
        -
        - - - - -
        $shadows = false
        -
        - -

        Referenced by redbasic_form().

        - -
        -
        - -
        -
        - - - - -
        $shiny = false
        -
        - -

        Referenced by redbasic_form(), and theme_content().

        - -
        -
        - -
        -
        - - - - -
        $site_colour = get_config("redbasic", "colour" )
        -
        - -
        -
        - -
        -
        - - - - -
        $site_line_height = get_config("redbasic","line_height")
        -
        - -
        -
        - -
        -
        - - - - -
        $site_redbasic_font_size = get_config("redbasic", "font_size" )
        -
        - -
        -
        - -
        -
        - - - - -
        if ($colour==="dark") if (($redbasic_font_size >=8.0)&&($redbasic_font_size<=20.0)) if (($line_height >=1.0)&&($line_height<=2.0)) if($shadows==="true")
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/style_8php.js b/doc/html/style_8php.js deleted file mode 100644 index 35e00198f..000000000 --- a/doc/html/style_8php.js +++ /dev/null @@ -1,20 +0,0 @@ -var style_8php = -[ - [ "$colour", "style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab", null ], - [ "$displaystyle", "style_8php.html#aa658152b727ea1233f6df6ded6437dad", null ], - [ "$line_height", "style_8php.html#a4131d1765ee4deb28e83fc4527943ee0", null ], - [ "$linkcolour", "style_8php.html#a6628a80911a6b37b464ef110ac8f6e42", null ], - [ "$nav_bg_1", "style_8php.html#a232513bf4339fe34908c4c63cb93168b", null ], - [ "$nav_bg_2", "style_8php.html#a03a72942b7428fd9af1224770d20a8ba", null ], - [ "$nav_bg_3", "style_8php.html#acc190405dda0a23a80551dee11c74c0c", null ], - [ "$nav_bg_4", "style_8php.html#aef266cfcb27c6ddb3292584c945bab33", null ], - [ "$navcolour", "style_8php.html#a938168352fd3cdaa1c10c16a34f5938a", null ], - [ "$redbasic_font_size", "style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda", null ], - [ "$resolution", "style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc", null ], - [ "$shadows", "style_8php.html#acb3046ad9c01b7d60cde20f58d77c548", null ], - [ "$shiny", "style_8php.html#a0b942d36d8862908864e2ffa4521be70", null ], - [ "$site_colour", "style_8php.html#a02d39b683a42fffbb27823d3860283bd", null ], - [ "$site_line_height", "style_8php.html#a8749837e08dfb3372662af9c33fa2a2e", null ], - [ "$site_redbasic_font_size", "style_8php.html#a45e6fafa363bc4586fa91dce1786be4f", null ], - [ "if", "style_8php.html#a0a473a25349f07563d6c56d14031f02a", null ] -]; \ No newline at end of file diff --git a/doc/html/subthread_8php.html b/doc/html/subthread_8php.html deleted file mode 100644 index ec10a25fa..000000000 --- a/doc/html/subthread_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/subthread.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        subthread.php File Reference
        -
        -
        - - - - -

        -Functions

         subthread_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        subthread_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/subthread_8php.js b/doc/html/subthread_8php.js deleted file mode 100644 index 93781b6dd..000000000 --- a/doc/html/subthread_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var subthread_8php = -[ - [ "subthread_content", "subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3", null ] -]; \ No newline at end of file diff --git a/doc/html/suckerberg_2php_2style_8php.html b/doc/html/suckerberg_2php_2style_8php.html deleted file mode 100644 index 97bb9bdec..000000000 --- a/doc/html/suckerberg_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/suckerberg/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/suckerberg_2php_2theme_8php.html b/doc/html/suckerberg_2php_2theme_8php.html deleted file mode 100644 index bca524b6e..000000000 --- a/doc/html/suckerberg_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/suckerberg/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         suckerberg_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        suckerberg_init ($a)
        -
        -
          -
        • Name: Suckerberg
        • -
        • Description: A Facebook-like theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/suckerberg_2php_2theme_8php.js b/doc/html/suckerberg_2php_2theme_8php.js deleted file mode 100644 index 3ab17833a..000000000 --- a/doc/html/suckerberg_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var suckerberg_2php_2theme_8php = -[ - [ "suckerberg_init", "suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8", null ] -]; \ No newline at end of file diff --git a/doc/html/suggest_8php.html b/doc/html/suggest_8php.html deleted file mode 100644 index 822cf8fd4..000000000 --- a/doc/html/suggest_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/suggest.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        suggest.php File Reference
        -
        -
        - - - - - - -

        -Functions

         suggest_init (&$a)
         
         suggest_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        suggest_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        suggest_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/suggest_8php.js b/doc/html/suggest_8php.js deleted file mode 100644 index 6a1ef5b3d..000000000 --- a/doc/html/suggest_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var suggest_8php = -[ - [ "suggest_content", "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91", null ], - [ "suggest_init", "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c", null ] -]; \ No newline at end of file diff --git a/doc/html/sunbeam_2php_2style_8php.html b/doc/html/sunbeam_2php_2style_8php.html deleted file mode 100644 index 6418a7c49..000000000 --- a/doc/html/sunbeam_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sunbeam/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/sunbeam_2php_2theme_8php.html b/doc/html/sunbeam_2php_2theme_8php.html deleted file mode 100644 index 8ee8c0006..000000000 --- a/doc/html/sunbeam_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/sunbeam/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         sunbeam_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        sunbeam_init ($a)
        -
        -
          -
        • Name: Sunbeam
        • -
        • Description: A fresh theme based on redbasic
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/sunbeam_2php_2theme_8php.js b/doc/html/sunbeam_2php_2theme_8php.js deleted file mode 100644 index 9756acbb9..000000000 --- a/doc/html/sunbeam_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var sunbeam_2php_2theme_8php = -[ - [ "sunbeam_init", "sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525", null ] -]; \ No newline at end of file diff --git a/doc/html/sync_off.png b/doc/html/sync_off.png deleted file mode 100644 index 3b443fc62..000000000 Binary files a/doc/html/sync_off.png and /dev/null differ diff --git a/doc/html/sync_on.png b/doc/html/sync_on.png deleted file mode 100644 index e08320fb6..000000000 Binary files a/doc/html/sync_on.png and /dev/null differ diff --git a/doc/html/system__unavailable_8php.html b/doc/html/system__unavailable_8php.html deleted file mode 100644 index 35036ed15..000000000 --- a/doc/html/system__unavailable_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Matrix: include/system_unavailable.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        system_unavailable.php File Reference
        -
        -
        - - - - -

        -Functions

         system_down ()
         
        -

        Function Documentation

        - -
        -
        - - - - - - - -
        system_down ()
        -
        - -

        Referenced by system_unavailable().

        - -
        -
        -
        -
        - diff --git a/doc/html/system__unavailable_8php.js b/doc/html/system__unavailable_8php.js deleted file mode 100644 index c92284b98..000000000 --- a/doc/html/system__unavailable_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var system__unavailable_8php = -[ - [ "system_down", "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa", null ] -]; \ No newline at end of file diff --git a/doc/html/tab_a.png b/doc/html/tab_a.png deleted file mode 100644 index 3b725c41c..000000000 Binary files a/doc/html/tab_a.png and /dev/null differ diff --git a/doc/html/tab_b.png b/doc/html/tab_b.png deleted file mode 100644 index e2b4a8638..000000000 Binary files a/doc/html/tab_b.png and /dev/null differ diff --git a/doc/html/tab_h.png b/doc/html/tab_h.png deleted file mode 100644 index fd5cb7054..000000000 Binary files a/doc/html/tab_h.png and /dev/null differ diff --git a/doc/html/tab_s.png b/doc/html/tab_s.png deleted file mode 100644 index ab478c95b..000000000 Binary files a/doc/html/tab_s.png and /dev/null differ diff --git a/doc/html/tabs.css b/doc/html/tabs.css deleted file mode 100644 index 9cf578f23..000000000 --- a/doc/html/tabs.css +++ /dev/null @@ -1,60 +0,0 @@ -.tabs, .tabs2, .tabs3 { - background-image: url('tab_b.png'); - width: 100%; - z-index: 101; - font-size: 13px; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; -} - -.tabs2 { - font-size: 10px; -} -.tabs3 { - font-size: 9px; -} - -.tablist { - margin: 0; - padding: 0; - display: table; -} - -.tablist li { - float: left; - display: table-cell; - background-image: url('tab_b.png'); - line-height: 36px; - list-style: none; -} - -.tablist a { - display: block; - padding: 0 20px; - font-weight: bold; - background-image:url('tab_s.png'); - background-repeat:no-repeat; - background-position:right; - color: #283A5D; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; - outline: none; -} - -.tabs3 .tablist a { - padding: 0 10px; -} - -.tablist a:hover { - background-image: url('tab_h.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); - text-decoration: none; -} - -.tablist li.current a { - background-image: url('tab_a.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); -} diff --git a/doc/html/tagger_8php.html b/doc/html/tagger_8php.html deleted file mode 100644 index ee6c23754..000000000 --- a/doc/html/tagger_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/tagger.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        tagger.php File Reference
        -
        -
        - - - - -

        -Functions

         tagger_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        tagger_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/tagger_8php.js b/doc/html/tagger_8php.js deleted file mode 100644 index 845567bb3..000000000 --- a/doc/html/tagger_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var tagger_8php = -[ - [ "tagger_content", "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c", null ] -]; \ No newline at end of file diff --git a/doc/html/tagrm_8php.html b/doc/html/tagrm_8php.html deleted file mode 100644 index 2350816ae..000000000 --- a/doc/html/tagrm_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/tagrm.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        tagrm.php File Reference
        -
        -
        - - - - - - -

        -Functions

         tagrm_post (&$a)
         
         tagrm_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        tagrm_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        tagrm_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/tagrm_8php.js b/doc/html/tagrm_8php.js deleted file mode 100644 index 2753559fd..000000000 --- a/doc/html/tagrm_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var tagrm_8php = -[ - [ "tagrm_content", "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a", null ], - [ "tagrm_post", "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78", null ] -]; \ No newline at end of file diff --git a/doc/html/taxonomy_8php.html b/doc/html/taxonomy_8php.html deleted file mode 100644 index 2336f9d83..000000000 --- a/doc/html/taxonomy_8php.html +++ /dev/null @@ -1,697 +0,0 @@ - - - - - - -The Red Matrix: include/taxonomy.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        taxonomy.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         file_tag_encode ($s)
         
         file_tag_decode ($s)
         
         file_tag_file_query ($table, $s, $type= 'file')
         
         term_query ($table, $s, $type=TERM_UNKNOWN)
         
         store_item_tag ($uid, $iid, $otype, $type, $term, $url= '')
         
         get_terms_oftype ($arr, $type)
         
         format_term_for_display ($term)
         
         tagadelic ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG)
         
         tags_sort ($a, $b)
         
         dir_tagadelic ($count=0)
         
         tagblock ($link, $uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG)
         
         wtagblock ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG)
         
         catblock ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_CATEGORY)
         
         dir_tagblock ($link, $r)
         
         obj_verbs ()
         
         obj_verb_selector ($current= '')
         
         get_things ($profile_hash, $uid)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        catblock ( $uid,
         $count = 0,
         $authors = '',
         $flags = 0,
         $restrict = 0,
         $type = TERM_CATEGORY 
        )
        -
        - -

        Referenced by widget_catcloud_wall().

        - -
        -
        - -
        -
        - - - - - - - - -
        dir_tagadelic ( $count = 0)
        -
        - -

        Referenced by dirsearch_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        dir_tagblock ( $link,
         $r 
        )
        -
        - -

        Referenced by widget_dirtags().

        - -
        -
        - -
        -
        - - - - - - - - -
        file_tag_decode ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        file_tag_encode ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        file_tag_file_query ( $table,
         $s,
         $type = 'file' 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        format_term_for_display ( $term)
        -
        - -

        Referenced by conversation().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_terms_oftype ( $arr,
         $type 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_things ( $profile_hash,
         $uid 
        )
        -
        - -

        Referenced by advanced_profile().

        - -
        -
        - -
        -
        - - - - - - - - -
        obj_verb_selector ( $current = '')
        -
        - -

        Referenced by thing_content().

        - -
        -
        - -
        -
        - - - - - - - -
        obj_verbs ()
        -
        -

        verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person singular, e.g. "Bill wants" We use the first person form when creating an activity, but the third person for use in activities FIXME: There is no accounting for verb gender for languages where this is significant. We may eventually require obj_verbs() to provide full conjugations and specify which form to use in the $_REQUEST params to this module.

        - -

        Referenced by get_things(), obj_verb_selector(), and thing_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        store_item_tag ( $uid,
         $iid,
         $otype,
         $type,
         $term,
         $url = '' 
        )
        -
        - -

        Referenced by filer_content(), tag_deliver(), and tagger_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tagadelic ( $uid,
         $count = 0,
         $authors = '',
         $flags = 0,
         $restrict = 0,
         $type = TERM_HASHTAG 
        )
        -
        - -

        Referenced by catblock(), tagblock(), widget_tagcloud(), and wtagblock().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tagblock ( $link,
         $uid,
         $count = 0,
         $authors = '',
         $flags = 0,
         $restrict = 0,
         $type = TERM_HASHTAG 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        tags_sort ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        term_query ( $table,
         $s,
         $type = TERM_UNKNOWN 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        wtagblock ( $uid,
         $count = 0,
         $authors = '',
         $flags = 0,
         $restrict = 0,
         $type = TERM_HASHTAG 
        )
        -
        - -

        Referenced by widget_tagcloud_wall().

        - -
        -
        -
        -
        - diff --git a/doc/html/taxonomy_8php.js b/doc/html/taxonomy_8php.js deleted file mode 100644 index bb390422e..000000000 --- a/doc/html/taxonomy_8php.js +++ /dev/null @@ -1,20 +0,0 @@ -var taxonomy_8php = -[ - [ "catblock", "taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4", null ], - [ "dir_tagadelic", "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332", null ], - [ "dir_tagblock", "taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1", null ], - [ "file_tag_decode", "taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6", null ], - [ "file_tag_encode", "taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37", null ], - [ "file_tag_file_query", "taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1", null ], - [ "format_term_for_display", "taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1", null ], - [ "get_terms_oftype", "taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1", null ], - [ "get_things", "taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de", null ], - [ "obj_verb_selector", "taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7", null ], - [ "obj_verbs", "taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce", null ], - [ "store_item_tag", "taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd", null ], - [ "tagadelic", "taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a", null ], - [ "tagblock", "taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2", null ], - [ "tags_sort", "taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43", null ], - [ "term_query", "taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c", null ], - [ "wtagblock", "taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287", null ] -]; \ No newline at end of file diff --git a/doc/html/template__processor_8php.html b/doc/html/template__processor_8php.html deleted file mode 100644 index 256076b85..000000000 --- a/doc/html/template__processor_8php.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - -The Red Matrix: include/template_processor.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        template_processor.php File Reference
        -
        -
        - - - - -

        -Classes

        class  Template
         
        - - - - - -

        -Functions

         template_escape ($s)
         
         template_unescape ($s)
         
        - - - -

        -Variables

        const KEY_NOT_EXISTS '^R_key_not_Exists^'
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        template_escape ( $s)
        -
        -
        - -
        -
        - - - - - - - - -
        template_unescape ( $s)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        const KEY_NOT_EXISTS '^R_key_not_Exists^'
        -
        - -

        Referenced by Template\_get_var(), and Template\var_replace().

        - -
        -
        -
        -
        - diff --git a/doc/html/template__processor_8php.js b/doc/html/template__processor_8php.js deleted file mode 100644 index 23335a2cc..000000000 --- a/doc/html/template__processor_8php.js +++ /dev/null @@ -1,7 +0,0 @@ -var template__processor_8php = -[ - [ "Template", "classTemplate.html", "classTemplate" ], - [ "template_escape", "template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5", null ], - [ "template_unescape", "template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e", null ], - [ "KEY_NOT_EXISTS", "template__processor_8php.html#a797745996c7839a93b2ab1af456631ab", null ] -]; \ No newline at end of file diff --git a/doc/html/test_2php_2theme_8php.html b/doc/html/test_2php_2theme_8php.html deleted file mode 100644 index 322ba3135..000000000 --- a/doc/html/test_2php_2theme_8php.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - -The Red Project: view/theme/test/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         test_init (&$a)
         
        - - - -

        -Variables

        $a theme_info = array()
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        test_init ($a)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a theme_info = array()
        -
        - -
        -
        -
        -
        - - - - diff --git a/doc/html/test_2php_2theme_8php.js b/doc/html/test_2php_2theme_8php.js deleted file mode 100644 index cac936eda..000000000 --- a/doc/html/test_2php_2theme_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var test_2php_2theme_8php = -[ - [ "test_init", "test_2php_2theme_8php.html#ad4235a22a5389b2291cdee55677e3cc5", null ], - [ "theme_info", "test_2php_2theme_8php.html#ae74b5c3ec259b616b5137f6cfc591fb5", null ] -]; \ No newline at end of file diff --git a/doc/html/test_8php.html b/doc/html/test_8php.html deleted file mode 100644 index 64f4f7c3d..000000000 --- a/doc/html/test_8php.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - -The Red Project: mod/test.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        test.php File Reference
        -
        -
        - - - - -

        -Functions

         test_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        test_content ($a)
        -
        - -
        -
        -
        -
        - - - - diff --git a/doc/html/test_8php.js b/doc/html/test_8php.js deleted file mode 100644 index 3d877ee85..000000000 --- a/doc/html/test_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var test_8php = -[ - [ "test_content", "test_8php.html#aaff133c1f566a332b5a3ae41b70941f8", null ] -]; \ No newline at end of file diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html deleted file mode 100644 index deb827cc9..000000000 --- a/doc/html/text_8php.html +++ /dev/null @@ -1,2676 +0,0 @@ - - - - - - -The Red Matrix: include/text.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        text.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         replace_macros ($s, $r)
         
         random_string ($size=64, $type=RANDOM_STRING_HEX)
         
         notags ($string)
         
         escape_tags ($string)
         
         z_input_filter ($channel_id, $s, $type= 'text/bbcode')
         
         purify_html ($s)
         
         autoname ($len)
         
         xmlify ($str)
         
         unxmlify ($s)
         
        if(!function_exists('hex2bin')) paginate (&$a)
         
         alt_pager (&$a, $i, $more= '', $less= '')
         
         expand_acl ($s)
         
         sanitise_acl (&$item)
         
         perms2str ($p)
         
         item_message_id ()
         Generate a guaranteed unique (for this domain) item ID for ATOM. More...
         
         photo_new_resource ()
         Generate a guaranteed unique photo ID. More...
         
         attribute_contains ($attr, $s)
         
         logger ($msg, $level=0)
         Logging function for RedMatrix. More...
         
         dlogger ($msg, $level=0)
         This is a special logging facility for developers. More...
         
         profiler ($t1, $t2, $label)
         
         activity_match ($haystack, $needle)
         
         get_tags ($s)
         
         tag_sort_length ($a, $b)
         
         strip_zids ($s)
         
         qp ($s)
         
         get_mentions ($item, $tags)
         
         contact_block ()
         
         chanlink_hash ($s)
         
         chanlink_url ($s)
         
         chanlink_cid ($d)
         
         magiclink_url ($observer, $myaddr, $url)
         
         micropro ($contact, $redirect=false, $class= '', $textmode=false)
         
         search ($s, $id='search-box', $url='/search', $save=false)
         
         searchbox ($s, $id='search-box', $url='/search', $save=false)
         
         valid_email ($x)
         
         linkify ($s, $me=false)
         
         sslify ($s)
         
         get_poke_verbs ()
         
         get_mood_verbs ()
         
         list_smilies ()
         
         smilies ($s, $sample=false)
         
         smile_shield ($m)
         
         smile_unshield ($m)
         
         preg_heart ($x)
         
         day_translate ($s)
         
         normalise_link ($url)
         
         link_compare ($a, $b)
         
         unobscure (&$item)
         
         theme_attachments (&$item)
         
         format_categories (&$item, $writeable)
         
         format_hashtags (&$item)
         
         format_mentions (&$item)
         
         format_filer (&$item)
         
         generate_map ($coord)
         
         generate_named_map ($location)
         
         prepare_body (&$item, $attach=false)
         
         prepare_text ($text, $content_type= 'text/bbcode')
         
         zidify_callback ($match)
         
         zidify_img_callback ($match)
         
         zidify_links ($s)
         
         feed_hublinks ()
         
         feed_salmonlinks ($nick)
         
         get_plink ($item, $conversation_mode=true)
         
         unamp ($s)
         
         layout_select ($channel_id, $current= '')
         
         mimetype_select ($channel_id, $current= 'text/bbcode')
         
         lang_selector ()
         
         return_bytes ($size_str)
         
         base64url_encode ($s, $strip_padding=true)
         
         base64url_decode ($s)
         
         cleardiv ()
         
         bb_translate_video ($s)
         
         html2bb_video ($s)
         
         array_xmlify ($val)
         
         reltoabs ($text, $base)
         
         item_post_type ($item)
         
         undo_post_tagging ($s)
         
         fix_mce_lf ($s)
         
         protect_sprintf ($s)
         
         is_a_date_arg ($s)
         
         legal_webbie ($s)
         
         check_webbie ($arr)
         
         ids_to_querystr ($arr, $idx= 'id')
         
         xchan_query (&$items, $abook=true, $effective_uid=0)
         
         xchan_mail_query (&$item)
         
         find_xchan_in_array ($xchan, $arr)
         
         get_rel_link ($j, $rel)
         
         magic_link ($s)
         
         stringify_array_elms (&$arr, $escape=false)
         
         jindent ($json)
         
         json_decode_plus ($s)
         
         design_tools ()
         
         in_arrayi ($needle, $haystack)
         
         normalise_openid ($s)
         
         extra_query_args ()
         
         handle_tag ($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag)
         
         linkify_tags ($a, &$body, $uid)
         
         getIconFromType ($type)
         returns icon name for use with e.g. font-awesome based on mime-type More...
         
         userReadableSize ($size)
         Returns a human readable formatted string for filesizes. More...
         
        - - - - - -

        -Variables

        const RANDOM_STRING_HEX 0x00
         
        const RANDOM_STRING_TEXT 0x01
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        activity_match ( $haystack,
         $needle 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        alt_pager ($a,
         $i,
         $more = '',
         $less = '' 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        array_xmlify ( $val)
        -
        -

        apply xmlify() to all values of array $val, recursively

        - -

        Referenced by api_apply_template(), and poco().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        attribute_contains ( $attr,
         $s 
        )
        -
        - -

        Referenced by scrape_vcard().

        - -
        -
        - -
        -
        - - - - - - - - -
        autoname ( $len)
        -
        -

        generate a string that's random, but usually pronounceable. used to generate initial passwords

        -
        Parameters
        - - -
        int$len
        -
        -
        -
        Returns
        string
        - -

        Referenced by check_php(), invite_post(), and lostpass_content().

        - -
        -
        - - - - - -
        -
        - - - - - - - - -
        bb_translate_video ( $s)
        -
        - -

        Referenced by item_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        chanlink_cid ( $d)
        -
        - -

        Referenced by connedit_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        chanlink_hash ( $s)
        -
        -
        - - - -
        -
        - - - - - - - - -
        check_webbie ( $arr)
        -
        - -

        Referenced by create_identity(), foofoo(), and new_channel_init().

        - -
        -
        - -
        -
        - - - - - - - -
        cleardiv ()
        -
        -

        @ Return a div to clear floats.

        -
        Returns
        string
        - -

        Referenced by common_content(), and match_content().

        - -
        -
        - -
        -
        - - - - - - - -
        contact_block ()
        -
        - -

        Referenced by profile_sidebar().

        - -
        -
        - - - -
        -
        - - - - - - - -
        design_tools ()
        -
        - -

        Referenced by widget_design_tools().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        dlogger ( $msg,
         $level = 0 
        )
        -
        - -

        This is a special logging facility for developers.

        -

        It allows one to target specific things to trace/debug and is identical to logger() with the exception of the log filename. This allows one to isolate specific calls while allowing logger() to paint a bigger picture of overall activity and capture more detail.

        -

        If you find dlogger() calls in checked in code, you are free to remove them - so as to provide a noise-free development environment which responds to events you are targetting personally.

        -
        Parameters
        - - - -
        string$msgMessage to log
        int$levelA log level.
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        escape_tags ( $string)
        -
        -
        - -
        -
        - - - - - - - - -
        expand_acl ( $s)
        -
        -
        - -
        -
        - - - - - - - -
        extra_query_args ()
        -
        -
        - -
        -
        - - - - - - - -
        feed_hublinks ()
        -
        -

        return atom link elements for all of our hubs

        - -
        -
        - -
        -
        - - - - - - - - -
        feed_salmonlinks ( $nick)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        find_xchan_in_array ( $xchan,
         $arr 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        fix_mce_lf ( $s)
        -
        - -

        Referenced by profiles_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        format_categories ($item,
         $writeable 
        )
        -
        - -

        Referenced by prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_filer ($item)
        -
        - -

        Referenced by prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_hashtags ($item)
        -
        - -

        Referenced by prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        format_mentions ($item)
        -
        - -

        Referenced by prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        generate_map ( $coord)
        -
        - -

        Referenced by bb_map_coords(), and prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        generate_named_map ( $location)
        -
        - -

        Referenced by bb_map_location().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_mentions ( $item,
         $tags 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - -
        get_mood_verbs ()
        -
        - -

        Referenced by mood_content(), and mood_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_plink ( $item,
         $conversation_mode = true 
        )
        -
        - -

        Referenced by conversation(), and Item\get_template_data().

        - -
        -
        - -
        -
        - - - - - - - -
        get_poke_verbs ()
        -
        - -

        Referenced by poke_content(), and poke_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        get_rel_link ( $j,
         $rel 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        get_tags ( $s)
        -
        - -

        Referenced by linkify_tags().

        - -
        -
        - -
        -
        - - - - - - - - -
        getIconFromType ( $type)
        -
        - -

        returns icon name for use with e.g. font-awesome based on mime-type

        -
        Parameters
        - - -
        string$type
        -
        -
        -
        Returns
        string
        - -

        Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), and sharedwithme_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        handle_tag ( $a,
        $body,
        $access_tag,
        $str_tags,
         $profile_uid,
         $tag 
        )
        -
        -

        This function removes the tag $tag from the text $body and replaces it with the appropiate link.

        -
        Parameters
        - - - - - - -
        unknown_type$bodythe text to replace the tag in
        unknown_type$access_tag- used to return tag ACL exclusions e.g. @!foo
        unknown_type$str_tagsstring to add the tag to
        unknown_type$profile_uid
        unknown_type$tagthe tag to replace
        -
        -
        -
        Returns
        boolean true if replaced, false if not replaced
        - -

        Referenced by linkify_tags().

        - -
        -
        - -
        -
        - - - - - - - - -
        html2bb_video ( $s)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        ids_to_querystr ( $arr,
         $idx = 'id' 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        in_arrayi ( $needle,
         $haystack 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        is_a_date_arg ( $s)
        -
        - -

        Referenced by channel_content(), and network_content().

        - -
        -
        - -
        -
        - - - - - - - -
        item_message_id ()
        -
        - -

        Generate a guaranteed unique (for this domain) item ID for ATOM.

        -

        Safe from birthday paradox.

        -
        Returns
        string a unique id
        - -

        Referenced by event_store_item(), file_activity(), impel_init(), item_post(), like_content(), mood_init(), photo_upload(), photos_create_item(), post_activity_item(), profile_activity(), and subthread_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        item_post_type ( $item)
        -
        - -

        Referenced by notification().

        - -
        -
        - -
        -
        - - - - - - - - -
        jindent ( $json)
        -
        -

        Indents a flat JSON string to make it more human-readable.

        -
        Parameters
        - - -
        string$jsonThe original JSON string to process.
        -
        -
        -
        Returns
        string Indented version of the original JSON string.
        - -
        -
        - - - -
        -
        - - - - - - - -
        lang_selector ()
        -
        - -

        Referenced by lang_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        layout_select ( $channel_id,
         $current = '' 
        )
        -
        - -

        Referenced by editwebpage_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        legal_webbie ( $s)
        -
        - -

        Referenced by check_webbie(), and new_channel_init().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        link_compare ( $a,
         $b 
        )
        -
        -

        Compare two URLs to see if they are the same, but ignore slight but hopefully insignificant differences such as if one is https and the other isn't, or if one is www.something and the other isn't - and also ignore case differences.

        -

        Return true if the URLs match, otherwise false.

        - -

        Referenced by consume_feed(), diaspora_retraction(), pubsub_init(), pubsubhubbub_init(), tag_deliver(), tgroup_check(), and zid().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        linkify ( $s,
         $me = false 
        )
        -
        -

        Function: linkify

        -

        Replace naked text hyperlink with HTML formatted hyperlink

        - -

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

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        linkify_tags ( $a,
        $body,
         $uid 
        )
        -
        -
        - -
        -
        - - - - - - - -
        list_smilies ()
        -
        - -

        Referenced by smilies(), and smilies_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        logger ( $msg,
         $level = 0 
        )
        -
        - -

        Logging function for RedMatrix.

        -

        Logging output is configured through RedMatrix's system config. The log file is set in system logfile, log level in system loglevel and to enable logging set system debugging.

        -

        Available constants for log level are LOGGER_NORMAL, LOGGER_TRACE, LOGGER_DEBUG, LOGGER_DATA and LOGGER_ALL.

        -

        Since PHP5.4 we get the file, function and line automatically where the logger was caleld, so no need to add it to the message anymore.

        -
        Parameters
        - - - -
        string$msgMessage to log
        int$levelA log level.
        -
        -
        - -

        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(), bookmark_add(), bookmarks_init(), build_sync_packet(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), cloud_init(), connedit_post(), consume_feed(), contact_remove(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), dav_init(), 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(), events_post(), 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(), 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(), local_user(), 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(), 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(), process_rating_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), ratenotif_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), remote_user(), 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(), set_linkified_perms(), 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().

        - -
        -
        - -
        -
        - - - - - - - - -
        magic_link ( $s)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        magiclink_url ( $observer,
         $myaddr,
         $url 
        )
        -
        - -

        Referenced by item_redir_and_replace_images().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        micropro ( $contact,
         $redirect = false,
         $class = '',
         $textmode = false 
        )
        -
        - -

        Referenced by contact_block().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        mimetype_select ( $channel_id,
         $current = 'text/bbcode' 
        )
        -
        - -

        Referenced by editblock_content(), and editwebpage_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        normalise_link ( $url)
        -
        -
        - -
        -
        - - - - - - - - -
        normalise_openid ( $s)
        -
        - -

        Referenced by openid_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        notags ( $string)
        -
        -

        This is our primary input filter.

        -

        The high bit hack only involved some old IE browser, forget which (IE5/Mac?) that had an XSS attack vector due to stripping the high-bit on an 8-bit character after cleansing, and angle chars with the high bit set could get through as markup.

        -

        This is now disabled because it was interfering with some legitimate unicode sequences and hopefully there aren't a lot of those browsers left.

        -

        Use this on any text input where angle chars are not valid or permitted They will be replaced with safer brackets. This may be filtered further if these are not allowed either.

        -
        Parameters
        - - -
        string$stringInput string
        -
        -
        -
        Returns
        string Filtered string
        - -

        Referenced by admin_page_logs_post(), admin_page_site_post(), channel_content(), connections_content(), conversation(), create_account(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_reshare(), diaspora_retraction(), diaspora_signed_retraction(), directory_content(), discover_by_url(), filestorage_post(), follow_init(), get_atom_elements(), get_diaspora_reshare_xml(), group_post(), help_content(), invite_post(), item_post(), item_store(), item_store_update(), like_content(), lostpass_post(), mail_post(), mail_store(), mood_init(), network_content(), oexchange_content(), openid_content(), photos_post(), poco(), poke_init(), post_var(), profiles_post(), pubsub_init(), pubsub_post(), register_post(), sanitise_acl(), settings_post(), setup_content(), setup_post(), subthread_content(), tagger_content(), and xrd_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        if (!function_exists('hex2bin')) paginate ($a)
        -
        -
        - - - -
        -
        - - - - - - - -
        photo_new_resource ()
        -
        - -

        Generate a guaranteed unique photo ID.

        -

        Safe from birthday paradox.

        -
        Returns
        string a uniqe hash
        - -

        Referenced by import_channel_photo(), import_profile_photo(), and photo_upload().

        - -
        -
        - -
        -
        - - - - - - - - -
        preg_heart ( $x)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        prepare_body ($item,
         $attach = false 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        prepare_text ( $text,
         $content_type = 'text/bbcode' 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        profiler ( $t1,
         $t2,
         $label 
        )
        -
        - -
        -
        - - - -
        -
        - - - - - - - - -
        purify_html ( $s)
        -
        - -

        Referenced by get_atom_elements(), and z_input_filter().

        - -
        -
        - -
        -
        - - - - - - - - -
        qp ( $s)
        -
        - -
        -
        - - - -
        -
        - - - - - - - - - - - - - - - - - - -
        reltoabs ( $text,
         $base 
        )
        -
        - -

        Referenced by get_atom_elements().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        replace_macros ( $s,
         $r 
        )
        -
        -

        This is our template processor

        -
        Parameters
        - - - -
        string | FriendicaSmarty$sthe string requiring macro substitution, or an instance of FriendicaSmarty
        array$rkey value pairs (search => replace)
        -
        -
        -
        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(), 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(), 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(), home_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(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rate_content(), ratings_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(), sharedwithme_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_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().

        - -
        -
        - -
        -
        - - - - - - - - -
        return_bytes ( $size_str)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        sanitise_acl ($item)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        search ( $s,
         $id = 'search-box',
         $url = '/search',
         $save = false 
        )
        -
        - -

        Referenced by search_content().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        searchbox ( $s,
         $id = 'search-box',
         $url = '/search',
         $save = false 
        )
        -
        - -

        Referenced by widget_savedsearch().

        - -
        -
        - -
        -
        - - - - - - - - -
        smile_shield ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        smile_unshield ( $m)
        -
        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        smilies ( $s,
         $sample = false 
        )
        -
        -

        Function: smilies

        -

        Description: Replaces text emoticons with graphical images

        -

        : string $s

        -

        Returns string

        -

        It is expected that this function will be called using HTML text. We will escape text between HTML pre and code blocks, and HTML attributes (such as urls) from being processed.

        -

        At a higher level, the bbcode [nosmile] tag can be used to prevent this function from being executed by the prepare_text() routine when preparing bbcode source for HTML display

        - -

        Referenced by chatsvc_content(), mail_content(), message_content(), and smilies_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        sslify ( $s)
        -
        -

        sslify($s) Replace media element using http url with https to a local redirector if using https locally

        -
        Parameters
        - - -
        string$sLooks for HTML tags containing src elements that are http when we're viewing an https page Typically this throws an insecure content violation in the browser. So we redirect them to a local redirector which uses https and which redirects to the selected content
        -
        -
        -
        Returns
        string
        - -

        Referenced by prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        stringify_array_elms ($arr,
         $escape = false 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        strip_zids ( $s)
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        tag_sort_length ( $a,
         $b 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_attachments ($item)
        -
        - -

        Referenced by mail_content(), and prepare_body().

        - -
        -
        - -
        -
        - - - - - - - - -
        unamp ( $s)
        -
        - -

        Referenced by discover_by_webbie().

        - -
        -
        - -
        -
        - - - - - - - - -
        undo_post_tagging ( $s)
        -
        -
        - -
        -
        - - - - - - - - -
        unobscure ($item)
        -
        -
        - - - -
        -
        - - - - - - - - -
        userReadableSize ( $size)
        -
        - -

        Returns a human readable formatted string for filesizes.

        -
        Parameters
        - - -
        int$sizefilesize in bytes
        -
        -
        -
        Returns
        string
        - -

        Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), and sharedwithme_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        valid_email ( $x)
        -
        -
        - -
        -
        - - - - - - - - -
        xchan_mail_query ($item)
        -
        - -

        Referenced by notifier_run().

        - -
        -
        - - - - - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        z_input_filter ( $channel_id,
         $s,
         $type = 'text/bbcode' 
        )
        -
        -
        - -
        -
        - - - - - - - - -
        zidify_callback ( $match)
        -
        -

        zidify_callback() and zidify_links() work together to turn any HTML a tags with class="zrl" into zid links These will typically be generated by a bbcode '[zrl]' tag. This is done inside prepare_text() rather than bbcode() because the latter is used for general purpose conversions and the former is used only when preparing text for immediate display.

        -

        Issues: Currently the order of HTML parameters in the text is somewhat rigid and inflexible. We assume it looks like and will not work if zrl and href appear in a different order.

        - -
        -
        - -
        -
        - - - - - - - - -
        zidify_img_callback ( $match)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        zidify_links ( $s)
        -
        - -

        Referenced by notification().

        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        const RANDOM_STRING_HEX 0x00
        -
        - -
        -
        - -
        -
        - - - - -
        const RANDOM_STRING_TEXT 0x01
        -
        - -

        Referenced by aes_encapsulate(), and random_string().

        - -
        -
        -
        -
        - diff --git a/doc/html/text_8php.js b/doc/html/text_8php.js deleted file mode 100644 index 4acfd5c10..000000000 --- a/doc/html/text_8php.js +++ /dev/null @@ -1,104 +0,0 @@ -var text_8php = -[ - [ "activity_match", "text_8php.html#af8a3e3a66a7b862d4510f145d2e13186", null ], - [ "alt_pager", "text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85", null ], - [ "array_xmlify", "text_8php.html#acedb584f65114a33f389efb796172a91", null ], - [ "attribute_contains", "text_8php.html#a95fd2f8f23a1948414a03ebc963bac57", null ], - [ "autoname", "text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca", null ], - [ "base64url_decode", "text_8php.html#a13286f8a95d2de6b102966ecc270c8d6", null ], - [ "base64url_encode", "text_8php.html#a070384ec000fd65043fce11d5392d241", null ], - [ "bb_translate_video", "text_8php.html#a3d2793d66db3345fd290b71e2eadf98e", null ], - [ "chanlink_cid", "text_8php.html#a85e3a4851c16674834010d8419a5d7ca", null ], - [ "chanlink_hash", "text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0", null ], - [ "chanlink_url", "text_8php.html#a2e8d6c402603be3a1256a16605e09c2a", null ], - [ "check_webbie", "text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3", null ], - [ "cleardiv", "text_8php.html#afe18627c4983ee5f7c940a0992818cd5", null ], - [ "contact_block", "text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784", null ], - [ "day_translate", "text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63", null ], - [ "design_tools", "text_8php.html#a87a3cefc603302c78982f1d8e1245265", null ], - [ "dlogger", "text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c", null ], - [ "escape_tags", "text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64", null ], - [ "expand_acl", "text_8php.html#ae4282a39492caa23ccbc2ce98e54f110", null ], - [ "extra_query_args", "text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc", null ], - [ "feed_hublinks", "text_8php.html#a8d8c4a11e53461caca21181ebd72daca", null ], - [ "feed_salmonlinks", "text_8php.html#a89929fa6f70a8ba54d5273fcf622b665", null ], - [ "find_xchan_in_array", "text_8php.html#ace3c98538c63e09b70a363210b414112", null ], - [ "fix_mce_lf", "text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28", null ], - [ "format_categories", "text_8php.html#a3054189cff173977f4216c9a3dd29e1b", null ], - [ "format_filer", "text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91", null ], - [ "format_hashtags", "text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59", null ], - [ "format_mentions", "text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08", null ], - [ "generate_map", "text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357", null ], - [ "generate_named_map", "text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b", null ], - [ "get_mentions", "text_8php.html#a76d1b3435c067978d7b484c45f56472b", null ], - [ "get_mood_verbs", "text_8php.html#a736db13a966b8abaf8c9198faa35911a", null ], - [ "get_plink", "text_8php.html#aac0969ae09853205992ba06ab9f9f61a", null ], - [ "get_poke_verbs", "text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66", null ], - [ "get_rel_link", "text_8php.html#a3972701c5c83624ec4e2d06242f614e7", null ], - [ "get_tags", "text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623", null ], - [ "getIconFromType", "text_8php.html#a5ee0715f7fa144b1307a3ff10222c609", null ], - [ "handle_tag", "text_8php.html#aa22feef4de326e1d7078dedd892e615c", null ], - [ "html2bb_video", "text_8php.html#a138a3a611fa7f4f3630674145fc826bf", null ], - [ "ids_to_querystr", "text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a", null ], - [ "in_arrayi", "text_8php.html#a75c326298519ed14ebe762194c8a3f2a", null ], - [ "is_a_date_arg", "text_8php.html#a1557112a774ec00fa06ed6b6f6495506", null ], - [ "item_message_id", "text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e", null ], - [ "item_post_type", "text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e", null ], - [ "jindent", "text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8", null ], - [ "json_decode_plus", "text_8php.html#a0271381208acfa2d4cff36da281e3e23", null ], - [ "lang_selector", "text_8php.html#a71f6952243d3fe1c5a8154f78027e29c", null ], - [ "layout_select", "text_8php.html#a3999a0b3e22e440f280ee791ce34d384", null ], - [ "legal_webbie", "text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728", null ], - [ "link_compare", "text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285", null ], - [ "linkify", "text_8php.html#a0d5e9e685334233c0590dc9c4f3d64c0", null ], - [ "linkify_tags", "text_8php.html#a4e4045a07c55cacf3e4b63bde190d954", null ], - [ "list_smilies", "text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc", null ], - [ "logger", "text_8php.html#a030fa5ecc64168af0c4f44897a9bce63", null ], - [ "magic_link", "text_8php.html#a1e510c53624933ce9b7d6715784894db", null ], - [ "magiclink_url", "text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6", null ], - [ "micropro", "text_8php.html#a2a902f5fdba8646333e997898ac45ea3", null ], - [ "mimetype_select", "text_8php.html#a1633412120f52bdce5f43e0a127d9293", null ], - [ "normalise_link", "text_8php.html#a4bbb7d00c05cd20b4e043424f322388f", null ], - [ "normalise_openid", "text_8php.html#adba17ec946f4285285dc100f7860bf51", null ], - [ "notags", "text_8php.html#a1af49756c8c71902a66c7e329c462beb", null ], - [ "paginate", "text_8php.html#afe9f178d264d44a94dc1292aaf0fd585", null ], - [ "perms2str", "text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee", null ], - [ "photo_new_resource", "text_8php.html#aa5528f41533927e1bd2da3618a74a6d7", null ], - [ "preg_heart", "text_8php.html#ac19d2b33a58372a357a43d51eed19162", null ], - [ "prepare_body", "text_8php.html#ae4df74296fbe55051ed3c035e55205e5", null ], - [ "prepare_text", "text_8php.html#afe54312607d92f7ce9593f5760831f80", null ], - [ "profiler", "text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6", null ], - [ "protect_sprintf", "text_8php.html#a4e7698aca48982512594b274543c3b9b", null ], - [ "purify_html", "text_8php.html#a4841df5beabdd1bdd1ed56781a915d61", null ], - [ "qp", "text_8php.html#afc998d2796a6b2a08e96f7cc061e7221", null ], - [ "random_string", "text_8php.html#a9d6a5ee1290de7a8b483fe78585daade", null ], - [ "reltoabs", "text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2", null ], - [ "replace_macros", "text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09", null ], - [ "return_bytes", "text_8php.html#ae2126da85966da0e79c6bcbac63b0bda", null ], - [ "sanitise_acl", "text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c", null ], - [ "search", "text_8php.html#a876e94892867019935b348b573299352", null ], - [ "searchbox", "text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447", null ], - [ "smile_shield", "text_8php.html#a10dde167249ed5abf190a7a0986878ea", null ], - [ "smile_unshield", "text_8php.html#a273156a6f5cddc6652ad656821cd5805", null ], - [ "smilies", "text_8php.html#a3d225b253bb9e0f2498c11647d927b0b", null ], - [ "sslify", "text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9", null ], - [ "stringify_array_elms", "text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13", null ], - [ "strip_zids", "text_8php.html#a2f2585385530cb935a6325c809d84a4d", null ], - [ "tag_sort_length", "text_8php.html#ac2ff88e800f74b22e9cc091c10809c54", null ], - [ "theme_attachments", "text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53", null ], - [ "unamp", "text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7", null ], - [ "undo_post_tagging", "text_8php.html#a740ad03e00459039a2c0992246c4e727", null ], - [ "unobscure", "text_8php.html#a8264348059abd1d4d5bb521323d3b19a", null ], - [ "unxmlify", "text_8php.html#a1360fed7f918d859daaca1c9f384f9af", null ], - [ "userReadableSize", "text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb", null ], - [ "valid_email", "text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb", null ], - [ "xchan_mail_query", "text_8php.html#a543447c5ed766535221e2d9636b379ee", null ], - [ "xchan_query", "text_8php.html#a905c3895feb6f276df23f07f16f9bb52", null ], - [ "xmlify", "text_8php.html#aaed4413ed8918838b517e3b2fafaea0d", null ], - [ "z_input_filter", "text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f", null ], - [ "zidify_callback", "text_8php.html#a405afe814a23f3bd94d826101aa168ab", null ], - [ "zidify_img_callback", "text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4", null ], - [ "zidify_links", "text_8php.html#a29988052f3944111def3b6aaf2c7a8f6", null ], - [ "RANDOM_STRING_HEX", "text_8php.html#aad557c054cf2ed915633701018fc7e3f", null ], - [ "RANDOM_STRING_TEXT", "text_8php.html#a2ffd79c60cc87cec24ef76447b905187", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2apw_2php_2theme__init_8php.html b/doc/html/theme_2apw_2php_2theme__init_8php.html deleted file mode 100644 index 9bfbbacb8..000000000 --- a/doc/html/theme_2apw_2php_2theme__init_8php.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme_init.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

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

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

        - -
        -
        -
        -
        - diff --git a/doc/html/theme_2apw_2php_2theme__init_8php.js b/doc/html/theme_2apw_2php_2theme__init_8php.js deleted file mode 100644 index b15dd05db..000000000 --- a/doc/html/theme_2apw_2php_2theme__init_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var theme_2apw_2php_2theme__init_8php = -[ - [ "$channel", "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2apw_2schema_2default_8php.html b/doc/html/theme_2apw_2schema_2default_8php.html deleted file mode 100644 index 3fbc57ee8..000000000 --- a/doc/html/theme_2apw_2schema_2default_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        default.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/theme_2blogga_2php_2default_8php.html b/doc/html/theme_2blogga_2php_2default_8php.html deleted file mode 100644 index 5c1171d23..000000000 --- a/doc/html/theme_2blogga_2php_2default_8php.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - - - - - -

        -Variables

         $headimg = get_config('blogtheme', 'headimg')
         
         $headimghome = get_config('blogtheme', 'headimghome')
         
        if($a->module=='display') $bodyclass =""
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        if ($a->module=='display') $bodyclass =""
        -
        - -
        -
        - -
        -
        - - - - -
        $headimg = get_config('blogtheme', 'headimg')
        -
        -
        - -
        -
        - - - - -
        $headimghome = get_config('blogtheme', 'headimghome')
        -
        - -

        Referenced by blogtheme_form(), theme_admin(), and theme_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/theme_2blogga_2php_2default_8php.js b/doc/html/theme_2blogga_2php_2default_8php.js deleted file mode 100644 index 5cade9149..000000000 --- a/doc/html/theme_2blogga_2php_2default_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var theme_2blogga_2php_2default_8php = -[ - [ "$bodyclass", "theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a", null ], - [ "$headimg", "theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527", null ], - [ "$headimghome", "theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2blogga_2php_2theme__init_8php.html b/doc/html/theme_2blogga_2php_2theme__init_8php.html deleted file mode 100644 index 06acd8602..000000000 --- a/doc/html/theme_2blogga_2php_2theme__init_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme_init.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html b/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html deleted file mode 100644 index 3abf19ff5..000000000 --- a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view/theme/blog/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - - - - - -

        -Variables

         $headimg = get_config('blogtheme', 'headimg')
         
         $headimghome = get_config('blogtheme', 'headimghome')
         
        if($a->module=='display') $bodyclass =""
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        if ($a->module=='display') $bodyclass =""
        -
        - -
        -
        - -
        -
        - - - - -
        if (local_channel()) $headimg = get_config('blogtheme', 'headimg')
        -
        - -
        -
        - -
        -
        - - - - -
        $headimghome = get_config('blogtheme', 'headimghome')
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.js b/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.js deleted file mode 100644 index 6f23bcd93..000000000 --- a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var theme_2blogga_2view_2theme_2blog_2default_8php = -[ - [ "$bodyclass", "theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a", null ], - [ "$headimg", "theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539", null ], - [ "$headimghome", "theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2mytheme_2php_2default_8php.html b/doc/html/theme_2mytheme_2php_2default_8php.html deleted file mode 100644 index ea01d8615..000000000 --- a/doc/html/theme_2mytheme_2php_2default_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

        - -
        -
        - - - - -
        if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/theme_2mytheme_2php_2default_8php.js b/doc/html/theme_2mytheme_2php_2default_8php.js deleted file mode 100644 index 89e5b2391..000000000 --- a/doc/html/theme_2mytheme_2php_2default_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var theme_2mytheme_2php_2default_8php = -[ - [ "if", "theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2redbasic_2php_2theme__init_8php.html b/doc/html/theme_2redbasic_2php_2theme__init_8php.html deleted file mode 100644 index 078c11e4a..000000000 --- a/doc/html/theme_2redbasic_2php_2theme__init_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme_init.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/theme_2redstrap_2php_2default_8php.html b/doc/html/theme_2redstrap_2php_2default_8php.html deleted file mode 100644 index 021a442d1..000000000 --- a/doc/html/theme_2redstrap_2php_2default_8php.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php/default.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        default.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

        - -
        -
        - - - - -
        if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body ><?php if(x($page
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/theme_2redstrap_2php_2default_8php.js b/doc/html/theme_2redstrap_2php_2default_8php.js deleted file mode 100644 index 2de3bcbba..000000000 --- a/doc/html/theme_2redstrap_2php_2default_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var theme_2redstrap_2php_2default_8php = -[ - [ "if", "theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762", null ] -]; \ No newline at end of file diff --git a/doc/html/theme_2redstrap_2php_2theme__init_8php.html b/doc/html/theme_2redstrap_2php_2theme__init_8php.html deleted file mode 100644 index 01523bbaf..000000000 --- a/doc/html/theme_2redstrap_2php_2theme__init_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        theme_init.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/theme_8php.html b/doc/html/theme_8php.html deleted file mode 100644 index 4d2c3a1e3..000000000 --- a/doc/html/theme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Project: view/theme/redbasic/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         redbasic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        redbasic_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/theme_8php.js b/doc/html/theme_8php.js deleted file mode 100644 index 2a9bf5efa..000000000 --- a/doc/html/theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var theme_8php = -[ - [ "redbasic_init", "theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b", null ] -]; \ No newline at end of file diff --git a/doc/html/theme__init_8php.html b/doc/html/theme__init_8php.html deleted file mode 100644 index 262bf0941..000000000 --- a/doc/html/theme__init_8php.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -The Red Matrix: view/php/theme_init.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme_init.php File Reference
        -
        -
        - - - - -

        -Variables

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

        Variable Documentation

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

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

        - -

        Referenced by api_call(), api_user(), attach_mkdir(), attach_store(), blocks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), connections_content(), connections_init(), connections_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), import_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), lastpost_init(), layouts_content(), magic_init(), message_content(), message_post(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), photo_upload(), photos_albums_list(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profile_tabs(), profiles_post(), rpost_content(), send_message(), settings_aside(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), zot_build_packet(), zot_finger(), and zot_refresh().

        - -
        -
        -
        -
        - diff --git a/doc/html/theme__init_8php.js b/doc/html/theme__init_8php.js deleted file mode 100644 index 5500e5a4f..000000000 --- a/doc/html/theme__init_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var theme__init_8php = -[ - [ "$channel", "theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864", null ] -]; \ No newline at end of file diff --git a/doc/html/thing_8php.html b/doc/html/thing_8php.html deleted file mode 100644 index f8cfdd7cc..000000000 --- a/doc/html/thing_8php.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - -The Red Matrix: mod/thing.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        thing.php File Reference
        -
        -
        - - - - - - -

        -Functions

         thing_init (&$a)
         
         thing_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        thing_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        thing_init ($a)
        -
        -

        verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person singular, e.g. "Bill wants" We use the first person form when creating an activity, but the third person for use in activities FIXME: There is no accounting for verb gender for languages where this is significant. We may eventually require obj_verbs() to provide full conjugations and specify which form to use in the $_REQUEST params to this module.

        -

        The site administrator can do things that normals cannot. This is restricted because it will likely cause an activitystreams protocol violation and the activity might choke in some other network and result in unnecessary support requests. It isn't because we're trying to be heavy-handed about what you can and can't do.

        -

        Things, objects: We do not provide definite (a, an) or indefinite (the) articles or singular/plural designators That needs to be specified in your thing. e.g. Mike has "a carrot", Greg wants "balls", Bob likes "the Boston Red Sox".

        -

        Future work on this module might produce more complex activities with targets, e.g. Phillip likes Karen's moustache and to describe other non-thing objects like channels, such as Karl wants Susan - where Susan represents a channel profile.

        - -
        -
        -
        -
        - diff --git a/doc/html/thing_8php.js b/doc/html/thing_8php.js deleted file mode 100644 index 9fe6a8ff6..000000000 --- a/doc/html/thing_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var thing_8php = -[ - [ "thing_content", "thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b", null ], - [ "thing_init", "thing_8php.html#a8be23b1d475ec3d9291999221c674c80", null ] -]; \ No newline at end of file diff --git a/doc/html/todo.html b/doc/html/todo.html deleted file mode 100644 index f09357862..000000000 --- a/doc/html/todo.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -The Red Matrix: Todo List - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        Todo List
        -
        -
        -
        -
        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 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)
        -
        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
        -
        split up the classes into own files.
        -
        Member RedMatrix::__construct (&$auth)
        -
        disable enablePost by default and only activate if permissions grant edit rights.
        -
        Member RedMatrix::set_writeable ()
        -
        Maybe this whole way of doing this can be solved with some $server->subscribeEvent().
        -
        Member RedMatrix::getDir ()
        -
        add description of what this function does.
        -
        Member RedMatrix::setName ($name)
        -
        handle duplicate directory name
        -
        -
        -
        - diff --git a/doc/html/toggle__mobile_8php.html b/doc/html/toggle__mobile_8php.html deleted file mode 100644 index 5f3db201a..000000000 --- a/doc/html/toggle__mobile_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/toggle_mobile.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        toggle_mobile.php File Reference
        -
        -
        - - - - -

        -Functions

         toggle_mobile_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        toggle_mobile_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/toggle__mobile_8php.js b/doc/html/toggle__mobile_8php.js deleted file mode 100644 index 81ee78e90..000000000 --- a/doc/html/toggle__mobile_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var toggle__mobile_8php = -[ - [ "toggle_mobile_init", "toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254", null ] -]; \ No newline at end of file diff --git a/doc/html/toggle__safesearch_8php.html b/doc/html/toggle__safesearch_8php.html deleted file mode 100644 index c91a17ec7..000000000 --- a/doc/html/toggle__safesearch_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/toggle_safesearch.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        toggle_safesearch.php File Reference
        -
        -
        - - - - -

        -Functions

         toggle_safesearch_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        toggle_safesearch_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/toggle__safesearch_8php.js b/doc/html/toggle__safesearch_8php.js deleted file mode 100644 index 414a8a12a..000000000 --- a/doc/html/toggle__safesearch_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var toggle__safesearch_8php = -[ - [ "toggle_safesearch_init", "toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79", null ] -]; \ No newline at end of file diff --git a/doc/html/tpldebug_8php.html b/doc/html/tpldebug_8php.html deleted file mode 100644 index 842dc1972..000000000 --- a/doc/html/tpldebug_8php.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -The Red Matrix: util/tpldebug.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        tpldebug.php File Reference
        -
        -
        - - - - -

        -Functions

        foreach($files as $file) print_template ($s)
         
        - - - - - -

        -Variables

        if($argc > 1) else
         
         $files = glob('include/*.php')
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        foreach ($files as $file) print_template ( $s)
        -
        - -
        -
        -

        Variable Documentation

        - -
        -
        - - - - -
        foreach ($files as $file) $files = glob('include/*.php')
        -
        - -
        -
        - -
        -
        - - - - -
        if ($argc > 1) else
        -
        -Initial value:
        {
        -
        -
        -
        echo 'boot.php: templates' . "\n"
        -
        -
        -
        -
        -
        - diff --git a/doc/html/tpldebug_8php.js b/doc/html/tpldebug_8php.js deleted file mode 100644 index 2391d96cc..000000000 --- a/doc/html/tpldebug_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var tpldebug_8php = -[ - [ "print_template", "tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3", null ], - [ "$files", "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149", null ], - [ "else", "tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c", null ] -]; \ No newline at end of file diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html deleted file mode 100644 index 688d2de11..000000000 --- a/doc/html/typo_8php.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -The Red Matrix: util/typo.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        typo.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Variables

         $a = new App()
         
         $files = glob('include/*.php')
         
         foreach ($files as $file) = glob('mod/*.php')
         
         $dirs = glob('addon/*')
         
        else $phpath = 'php'
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $a = new App()
        -
        - -

        Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), account_service_class_allows(), 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(), 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(), dav_init(), 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(), 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(), linkify_tags(), list_smilies(), 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(), manage_content(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), minded_init(), 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(), occupant_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(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), prate_init(), prate_post(), preg_heart(), 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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), push_lang(), queue_run(), randprof_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratings_content(), ratings_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(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), smilies(), smilies_content(), sources_post(), sporadic_init(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), sunbeam_init(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_home_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_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xpoco_init(), xrd_init(), yolo_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

        - -
        -
        - -
        -
        - - - - -
        $dirs = glob('addon/*')
        -
        - -
        -
        - -
        -
        - - - - -
        $files = glob('include/*.php')
        -
        - -
        -
        - -
        -
        - - - - -
        else $phpath = 'php'
        -
        - -

        Referenced by check_php(), setup_content(), and setup_post().

        - -
        -
        - -
        -
        - - - - -
        foreach = glob('mod/*.php')
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/typo_8php.js b/doc/html/typo_8php.js deleted file mode 100644 index 83a7f7010..000000000 --- a/doc/html/typo_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var typo_8php = -[ - [ "$a", "typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f", null ], - [ "$dirs", "typo_8php.html#a1b709c1d79631ebc8320b41bda028b54", null ], - [ "$files", "typo_8php.html#a9590b15215a21e9b42eb546aeef79704", null ], - [ "$phpath", "typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd", null ], - [ "foreach", "typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5", null ] -]; \ No newline at end of file diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html deleted file mode 100644 index c1cf8bdc9..000000000 --- a/doc/html/typohelper_8php.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -The Red Matrix: util/typohelper.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - - - diff --git a/doc/html/typohelper_8php.js b/doc/html/typohelper_8php.js deleted file mode 100644 index 7fb5a8d08..000000000 --- a/doc/html/typohelper_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var typohelper_8php = -[ - [ "$str", "typohelper_8php.html#a7542d95618011800c61773127fa625cf", null ], - [ "EOT", "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805", null ] -]; \ No newline at end of file diff --git a/doc/html/uexport_8php.html b/doc/html/uexport_8php.html deleted file mode 100644 index dc0265b2e..000000000 --- a/doc/html/uexport_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/uexport.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        uexport.php File Reference
        -
        -
        - - - - - - -

        -Functions

         uexport_init (&$a)
         
         uexport_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        uexport_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        uexport_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/uexport_8php.js b/doc/html/uexport_8php.js deleted file mode 100644 index ec8404f5c..000000000 --- a/doc/html/uexport_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var uexport_8php = -[ - [ "uexport_content", "uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84", null ], - [ "uexport_init", "uexport_8php.html#a118920137dedebe0581623a2e57e7b0d", null ] -]; \ No newline at end of file diff --git a/doc/html/update__channel_8php.html b/doc/html/update__channel_8php.html deleted file mode 100644 index db2663d76..000000000 --- a/doc/html/update__channel_8php.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: mod/update_channel.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_channel.php File Reference
        -
        -
        - - - - -

        -Functions

         update_channel_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_channel_content ($a)
        -
        -

        Module: update_profile Purpose: AJAX synchronisation of profile page

        -

        We can remove this hack once Internet Explorer recognises HTML5 natively

        -

        Grab the page inner contents by calling the content function from the profile module directly, but move any image src attributes to another attribute name. This is because some browsers will prefetch all the images for the page even if we don't need them. The only ones we need to fetch are those for new page additions, which we'll discover on the client side and then swap the image back.

        -

        reportedly some versions of MSIE don't handle tabs in XMLHttpRequest documents very well

        - -
        -
        -
        -
        - diff --git a/doc/html/update__channel_8php.js b/doc/html/update__channel_8php.js deleted file mode 100644 index 94dbeff08..000000000 --- a/doc/html/update__channel_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__channel_8php = -[ - [ "update_channel_content", "update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba", null ] -]; \ No newline at end of file diff --git a/doc/html/update__community_8php.html b/doc/html/update__community_8php.html deleted file mode 100644 index c869c47b3..000000000 --- a/doc/html/update__community_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/update_community.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_community.php File Reference
        -
        -
        - - - - -

        -Functions

         update_community_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_community_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/update__community_8php.js b/doc/html/update__community_8php.js deleted file mode 100644 index eda76aa18..000000000 --- a/doc/html/update__community_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__community_8php = -[ - [ "update_community_content", "update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1", null ] -]; \ No newline at end of file diff --git a/doc/html/update__display_8php.html b/doc/html/update__display_8php.html deleted file mode 100644 index d4bdfc89a..000000000 --- a/doc/html/update__display_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/update_display.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_display.php File Reference
        -
        -
        - - - - -

        -Functions

         update_display_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_display_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/update__display_8php.js b/doc/html/update__display_8php.js deleted file mode 100644 index 05acc47d5..000000000 --- a/doc/html/update__display_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__display_8php = -[ - [ "update_display_content", "update__display_8php.html#aa36ac524059e209d5d75a03c16206246", null ] -]; \ No newline at end of file diff --git a/doc/html/update__home_8php.html b/doc/html/update__home_8php.html deleted file mode 100644 index ce5a5581e..000000000 --- a/doc/html/update__home_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/update_home.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_home.php File Reference
        -
        -
        - - - - -

        -Functions

         update_home_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_home_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/update__home_8php.js b/doc/html/update__home_8php.js deleted file mode 100644 index eda951a37..000000000 --- a/doc/html/update__home_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__home_8php = -[ - [ "update_home_content", "update__home_8php.html#a668340089acd150b830134476a647d05", null ] -]; \ No newline at end of file diff --git a/doc/html/update__network_8php.html b/doc/html/update__network_8php.html deleted file mode 100644 index 72e54103c..000000000 --- a/doc/html/update__network_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/update_network.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_network.php File Reference
        -
        -
        - - - - -

        -Functions

         update_network_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_network_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/update__network_8php.js b/doc/html/update__network_8php.js deleted file mode 100644 index 54bc186a3..000000000 --- a/doc/html/update__network_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__network_8php = -[ - [ "update_network_content", "update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41", null ] -]; \ No newline at end of file diff --git a/doc/html/update__search_8php.html b/doc/html/update__search_8php.html deleted file mode 100644 index 402d8eec3..000000000 --- a/doc/html/update__search_8php.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: mod/update_search.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        update_search.php File Reference
        -
        -
        - - - - -

        -Functions

         update_search_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        update_search_content ($a)
        -
        -

        Module: update_profile Purpose: AJAX synchronisation of search page

        -

        We can remove this hack once Internet Explorer recognises HTML5 natively

        -

        Grab the page inner contents by calling the content function from the profile module directly, but move any image src attributes to another attribute name. This is because some browsers will prefetch all the images for the page even if we don't need them. The only ones we need to fetch are those for new page additions, which we'll discover on the client side and then swap the image back.

        -

        reportedly some versions of MSIE don't handle tabs in XMLHttpRequest documents very well

        - -
        -
        -
        -
        - diff --git a/doc/html/update__search_8php.js b/doc/html/update__search_8php.js deleted file mode 100644 index 8eb5c446d..000000000 --- a/doc/html/update__search_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var update__search_8php = -[ - [ "update_search_content", "update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52", null ] -]; \ No newline at end of file diff --git a/doc/html/updatetpl_8py.html b/doc/html/updatetpl_8py.html deleted file mode 100644 index 08ad9b393..000000000 --- a/doc/html/updatetpl_8py.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - -The Red Matrix: util/updatetpl.py File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        updatetpl.py File Reference
        -
        -
        - - - - -

        -Namespaces

        namespace  updatetpl
         
        - - - -

        -Functions

        def updatetpl.help
         
        - - - - - - - - - - - -

        -Variables

        string updatetpl.path = ''
         
        list updatetpl.excludepaths = ['css', 'img', 'js', 'php', 'theme']
         
        list updatetpl.tplpaths = []
         
        tuple updatetpl.names = os.listdir(path + 'view/')
         
        tuple updatetpl.fnull = open(os.devnull, "w")
         
        -
        -
        - diff --git a/doc/html/updatetpl_8py.js b/doc/html/updatetpl_8py.js deleted file mode 100644 index 38f8a5299..000000000 --- a/doc/html/updatetpl_8py.js +++ /dev/null @@ -1,9 +0,0 @@ -var updatetpl_8py = -[ - [ "help", "updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f", null ], - [ "excludepaths", "updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94", null ], - [ "fnull", "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3", null ], - [ "names", "updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6", null ], - [ "path", "updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6", null ], - [ "tplpaths", "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2apw_2php_2config_8php.html b/doc/html/view_2theme_2apw_2php_2config_8php.html deleted file mode 100644 index 7bd0dd712..000000000 --- a/doc/html/view_2theme_2apw_2php_2config_8php.html +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         theme_content (&$a)
         
         theme_post (&$a)
         
         apw_form (&$a, $schema, $font_size, $font, $iconpath, $bigshadow, $smallshadow, $shadowcolour, $radius, $line_height, $background, $bgattach, $bgcolour, $sectionbackground, $sectioncolour, $item_colour, $link_colour, $width, $minwidth, $gcrwidth, $font_colour, $symmetry, $aside, $scaling, $opacity, $nav, $itemfloat, $sectionleft, $sectionright, $sectionwidth, $asideleft, $asideright)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        apw_form ($a,
         $schema,
         $font_size,
         $font,
         $iconpath,
         $bigshadow,
         $smallshadow,
         $shadowcolour,
         $radius,
         $line_height,
         $background,
         $bgattach,
         $bgcolour,
         $sectionbackground,
         $sectioncolour,
         $item_colour,
         $link_colour,
         $width,
         $minwidth,
         $gcrwidth,
         $font_colour,
         $symmetry,
         $aside,
         $scaling,
         $opacity,
         $nav,
         $itemfloat,
         $sectionleft,
         $sectionright,
         $sectionwidth,
         $asideleft,
         $asideright 
        )
        -
        - -

        Referenced by theme_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_content ($a)
        -
        -

        Theme settings

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_post ($a)
        -
        - -

        Referenced by settings_post().

        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2apw_2php_2config_8php.js b/doc/html/view_2theme_2apw_2php_2config_8php.js deleted file mode 100644 index 4cf68a451..000000000 --- a/doc/html/view_2theme_2apw_2php_2config_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var view_2theme_2apw_2php_2config_8php = -[ - [ "apw_form", "view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0", null ], - [ "theme_content", "view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], - [ "theme_post", "view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2apw_2php_2style_8php.html b/doc/html/view_2theme_2apw_2php_2style_8php.html deleted file mode 100644 index 1eea4bdf1..000000000 --- a/doc/html/view_2theme_2apw_2php_2style_8php.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Variables

         $uid = get_theme_uid()
         
         if ($uid) load_pconfig($uid
         
         $x = splitFilename($font)
         
         $fname = $x[0]
         
         $fext = $x[1]
         
        if(file_exists('view/theme/apw/font/'.$fname.
        -'i.'.$fext)) if(file_exists('view/theme/apw/font/'.$fname.
        -'b.'.$fext)) 
        $strongmacro = ''
         
         $obliquemacro = ''
         
        if($nav$sectiontop = "28px"
         
         $iconsize = "16px"
         
         $navheight = "27px"
         
         $showlock = "block"
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $fext = $x[1]
        -
        - -
        -
        - -
        -
        - - - - -
        $fname = $x[0]
        -
        -
        - -
        -
        - - - - -
        $iconsize = "16px"
        -
        - -
        -
        - -
        -
        - - - - -
        $navheight = "27px"
        -
        - -
        -
        - -
        -
        - - - - -
        $obliquemacro = ''
        -
        - -
        -
        - -
        -
        - - - - -
        if ($nav) $sectiontop = "28px"
        -
        - -
        -
        - -
        -
        - - - - -
        $showlock = "block"
        -
        - -
        -
        - -
        -
        - - - - -
        if (file_exists('view/theme/apw/font/'.$fname. 'i.'.$fext)) if (file_exists('view/theme/apw/font/'.$fname. 'b.'.$fext)) $strongmacro = ''
        -
        - -
        -
        - -
        -
        - - - - -
        $uid = get_theme_uid()
        -
        - -

        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(), linkify_tags(), 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(), wtagblock(), and zot_feed().

        - -
        -
        - -
        -
        - - - - -
        $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_upstream_directory(), 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(), dav_init(), decode_tags(), delete_imported_item(), 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_primary(), get_directory_realm(), get_file_activity_object(), 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(), help_content(), 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(), in_group(), invite_content(), invite_post(), item_post(), item_remove_cid(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), randprof_init(), ratenotif_run(), ratings_init(), recursive_activity_recipients(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), regdir_init(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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().

        - -
        -
        - -
        -
        - - - - -
        if (($schema)&&($schema!= '---')) if(!$schema||($schema== '---'))
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2apw_2php_2style_8php.js b/doc/html/view_2theme_2apw_2php_2style_8php.js deleted file mode 100644 index 7188526bf..000000000 --- a/doc/html/view_2theme_2apw_2php_2style_8php.js +++ /dev/null @@ -1,14 +0,0 @@ -var view_2theme_2apw_2php_2style_8php = -[ - [ "$fext", "view_2theme_2apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9", null ], - [ "$fname", "view_2theme_2apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc", null ], - [ "$iconsize", "view_2theme_2apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30", null ], - [ "$navheight", "view_2theme_2apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872", null ], - [ "$obliquemacro", "view_2theme_2apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0", null ], - [ "$sectiontop", "view_2theme_2apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a", null ], - [ "$showlock", "view_2theme_2apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425", null ], - [ "$strongmacro", "view_2theme_2apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea", null ], - [ "$uid", "view_2theme_2apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a", null ], - [ "$x", "view_2theme_2apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7", null ], - [ "if", "view_2theme_2apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2apw_2php_2theme_8php.html b/doc/html/view_2theme_2apw_2php_2theme_8php.html deleted file mode 100644 index 5a47faae1..000000000 --- a/doc/html/view_2theme_2apw_2php_2theme_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         apw_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        apw_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2apw_2php_2theme_8php.js b/doc/html/view_2theme_2apw_2php_2theme_8php.js deleted file mode 100644 index 9137e5f13..000000000 --- a/doc/html/view_2theme_2apw_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var view_2theme_2apw_2php_2theme_8php = -[ - [ "apw_init", "view_2theme_2apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2blogga_2php_2config_8php.html b/doc/html/view_2theme_2blogga_2php_2config_8php.html deleted file mode 100644 index 2f384b38a..000000000 --- a/doc/html/view_2theme_2blogga_2php_2config_8php.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/php/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Functions

         theme_content (&$a)
         
         theme_post (&$a)
         
         theme_admin (&$a)
         
         theme_admin_post (&$a)
         
         blogtheme_form (&$a, $headimg, $headimghome)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        blogtheme_form ($a,
         $headimg,
         $headimghome 
        )
        -
        - -

        Referenced by theme_admin(), and theme_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_admin ($a)
        -
        - -

        Referenced by admin_page_themes().

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_admin_post ($a)
        -
        - -

        Referenced by admin_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_content ($a)
        -
        -

        Theme settings

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2blogga_2php_2config_8php.js b/doc/html/view_2theme_2blogga_2php_2config_8php.js deleted file mode 100644 index 7d1e21a69..000000000 --- a/doc/html/view_2theme_2blogga_2php_2config_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var view_2theme_2blogga_2php_2config_8php = -[ - [ "blogtheme_form", "view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27", null ], - [ "theme_admin", "view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53", null ], - [ "theme_admin_post", "view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b", null ], - [ "theme_content", "view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], - [ "theme_post", "view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.html b/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.html deleted file mode 100644 index 614fbcb7b..000000000 --- a/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - -The Red Matrix: view/theme/blogga/view/theme/blog/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - - - - - - - - - - - - -

        -Functions

         theme_content (&$a)
         
         theme_post (&$a)
         
         theme_admin (&$a)
         
         theme_admin_post (&$a)
         
         blogtheme_form (&$a, $headimg, $headimghome)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        blogtheme_form ($a,
         $headimg,
         $headimghome 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_admin ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_admin_post ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_content ($a)
        -
        -

        Theme settings

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.js b/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.js deleted file mode 100644 index 1603323f9..000000000 --- a/doc/html/view_2theme_2blogga_2view_2theme_2blog_2config_8php.js +++ /dev/null @@ -1,8 +0,0 @@ -var view_2theme_2blogga_2view_2theme_2blog_2config_8php = -[ - [ "blogtheme_form", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27", null ], - [ "theme_admin", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53", null ], - [ "theme_admin_post", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b", null ], - [ "theme_content", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], - [ "theme_post", "view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2mytheme_2php_2style_8php.html b/doc/html/view_2theme_2mytheme_2php_2style_8php.html deleted file mode 100644 index ab6224509..000000000 --- a/doc/html/view_2theme_2mytheme_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2mytheme_2php_2theme_8php.html b/doc/html/view_2theme_2mytheme_2php_2theme_8php.html deleted file mode 100644 index 021d2498c..000000000 --- a/doc/html/view_2theme_2mytheme_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/mytheme/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         mytheme_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        mytheme_init ($a)
        -
        -
          -
        • Name: Mytheme
        • -
        • Description: Sample Derived theme
        • -
        • Version: 1.0
        • -
        • Author: Your Name
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2mytheme_2php_2theme_8php.js b/doc/html/view_2theme_2mytheme_2php_2theme_8php.js deleted file mode 100644 index da74bab06..000000000 --- a/doc/html/view_2theme_2mytheme_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var view_2theme_2mytheme_2php_2theme_8php = -[ - [ "mytheme_init", "view_2theme_2mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2redbasic_2php_2config_8php.html b/doc/html/view_2theme_2redbasic_2php_2config_8php.html deleted file mode 100644 index ea12c42cb..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2config_8php.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         theme_content (&$a)
         
         theme_post (&$a)
         
         redbasic_form (&$a, $arr)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        redbasic_form ($a,
         $arr 
        )
        -
        - -

        Referenced by theme_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2redbasic_2php_2config_8php.js b/doc/html/view_2theme_2redbasic_2php_2config_8php.js deleted file mode 100644 index 3a5955982..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2config_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var view_2theme_2redbasic_2php_2config_8php = -[ - [ "redbasic_form", "view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793", null ], - [ "theme_content", "view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], - [ "theme_post", "view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2redbasic_2php_2style_8php.html b/doc/html/view_2theme_2redbasic_2php_2style_8php.html deleted file mode 100644 index cc127a436..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2style_8php.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        style.php File Reference
        -
        -
        - - - - - - -

        -Variables

        if($nav_min_opacity===false||$nav_min_opacity=== '') else
         
         $nav_percent_min_opacity = (int) 100 * $nav_min_opacity
         
        -

        Variable Documentation

        - -
        -
        - - - - -
        $nav_percent_min_opacity = (int) 100 * $nav_min_opacity
        -
        - -
        -
        - -
        -
        - - - - -
        if ($nav_min_opacity===false||$nav_min_opacity=== '') else
        -
        -Initial value:
        {
        -
        $nav_float_min_opacity = (float) $nav_min_opacity
        -
        -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2redbasic_2php_2style_8php.js b/doc/html/view_2theme_2redbasic_2php_2style_8php.js deleted file mode 100644 index 8fd86bc11..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2style_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var view_2theme_2redbasic_2php_2style_8php = -[ - [ "$nav_percent_min_opacity", "view_2theme_2redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c", null ], - [ "else", "view_2theme_2redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2redbasic_2php_2theme_8php.html b/doc/html/view_2theme_2redbasic_2php_2theme_8php.html deleted file mode 100644 index 7ff433e0d..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2theme_8php.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redbasic/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         redbasic_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        redbasic_init ($a)
        -
        -
          -
        • Name: Redbasic
        • -
        • Description: RedMatrix standard theme
        • -
        • Version: 1.0
        • -
        • Author: Fabrixxm
        • -
        • Maintainer: Mike Macgirvin
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2redbasic_2php_2theme_8php.js b/doc/html/view_2theme_2redbasic_2php_2theme_8php.js deleted file mode 100644 index 50dd9e88a..000000000 --- a/doc/html/view_2theme_2redbasic_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var view_2theme_2redbasic_2php_2theme_8php = -[ - [ "redbasic_init", "view_2theme_2redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b", null ] -]; \ No newline at end of file diff --git a/doc/html/view_2theme_2redstrap_2php_2config_8php.html b/doc/html/view_2theme_2redstrap_2php_2config_8php.html deleted file mode 100644 index 018994597..000000000 --- a/doc/html/view_2theme_2redstrap_2php_2config_8php.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - -The Red Matrix: view/theme/redstrap/php/config.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        config.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         theme_content (&$a)
         
         theme_post (&$a)
         
         redbasic_form (&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        redbasic_form ($a,
         $font_size,
         $line_height,
         $colour,
         $shadow,
         $navcolour,
         $opaquenav,
         $displaystyle,
         $linkcolour,
         $iconset,
         $shiny 
        )
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        theme_content ($a)
        -
        -

        Theme settings

        - -
        -
        - -
        -
        - - - - - - - - -
        theme_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/view_2theme_2redstrap_2php_2config_8php.js b/doc/html/view_2theme_2redstrap_2php_2config_8php.js deleted file mode 100644 index e209d2eea..000000000 --- a/doc/html/view_2theme_2redstrap_2php_2config_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var view_2theme_2redstrap_2php_2config_8php = -[ - [ "redbasic_form", "view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e", null ], - [ "theme_content", "view_2theme_2redstrap_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], - [ "theme_post", "view_2theme_2redstrap_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] -]; \ No newline at end of file diff --git a/doc/html/view_8php.html b/doc/html/view_8php.html deleted file mode 100644 index b6524b793..000000000 --- a/doc/html/view_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Matrix: mod/view.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        view.php File Reference
        -
        -
        - - - - -

        -Functions

         view_init ($a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        view_init ( $a)
        -
        -

        load view/theme/$current_theme/style.php with Red context

        - -
        -
        -
        -
        - diff --git a/doc/html/view_8php.js b/doc/html/view_8php.js deleted file mode 100644 index d40a196cb..000000000 --- a/doc/html/view_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var view_8php = -[ - [ "view_init", "view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e", null ] -]; \ No newline at end of file diff --git a/doc/html/viewconnections_8php.html b/doc/html/viewconnections_8php.html deleted file mode 100644 index ebdf48289..000000000 --- a/doc/html/viewconnections_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/viewconnections.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        viewconnections.php File Reference
        -
        -
        - - - - - - -

        -Functions

         viewconnections_init (&$a)
         
         viewconnections_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        viewconnections_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        viewconnections_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/viewconnections_8php.js b/doc/html/viewconnections_8php.js deleted file mode 100644 index f74e87152..000000000 --- a/doc/html/viewconnections_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var viewconnections_8php = -[ - [ "viewconnections_content", "viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776", null ], - [ "viewconnections_init", "viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330", null ] -]; \ No newline at end of file diff --git a/doc/html/viewsrc_8php.html b/doc/html/viewsrc_8php.html deleted file mode 100644 index e0d9de8ef..000000000 --- a/doc/html/viewsrc_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/viewsrc.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        viewsrc.php File Reference
        -
        -
        - - - - -

        -Functions

         viewsrc_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        viewsrc_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/viewsrc_8php.js b/doc/html/viewsrc_8php.js deleted file mode 100644 index 0f5ac6b8c..000000000 --- a/doc/html/viewsrc_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var viewsrc_8php = -[ - [ "viewsrc_content", "viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4", null ] -]; \ No newline at end of file diff --git a/doc/html/vote_8php.html b/doc/html/vote_8php.html deleted file mode 100644 index 944e87e2d..000000000 --- a/doc/html/vote_8php.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -The Red Matrix: mod/vote.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        vote.php File Reference
        -
        -
        - - - - - - - - -

        -Functions

         vote_init (&$a)
         
         vote_post (&$a)
         
         vote_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        vote_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        vote_init ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        vote_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/vote_8php.js b/doc/html/vote_8php.js deleted file mode 100644 index 6f0639cd8..000000000 --- a/doc/html/vote_8php.js +++ /dev/null @@ -1,6 +0,0 @@ -var vote_8php = -[ - [ "vote_content", "vote_8php.html#a6aa67489bf458ca5e3206e46dac68596", null ], - [ "vote_init", "vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2", null ], - [ "vote_post", "vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2", null ] -]; \ No newline at end of file diff --git a/doc/html/wall__attach_8php.html b/doc/html/wall__attach_8php.html deleted file mode 100644 index 55f751f2a..000000000 --- a/doc/html/wall__attach_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/wall_attach.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        wall_attach.php File Reference
        -
        -
        - - - - -

        -Functions

         wall_attach_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        wall_attach_post ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/wall__attach_8php.js b/doc/html/wall__attach_8php.js deleted file mode 100644 index c0281be85..000000000 --- a/doc/html/wall__attach_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var wall__attach_8php = -[ - [ "wall_attach_post", "wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653", null ] -]; \ No newline at end of file diff --git a/doc/html/wall__upload_8php.html b/doc/html/wall__upload_8php.html deleted file mode 100644 index 89c438ad4..000000000 --- a/doc/html/wall__upload_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/wall_upload.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        wall_upload.php File Reference
        -
        -
        - - - - -

        -Functions

         wall_upload_post (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        wall_upload_post ($a)
        -
        -
        -
        -
        - diff --git a/doc/html/wall__upload_8php.js b/doc/html/wall__upload_8php.js deleted file mode 100644 index 86f363be5..000000000 --- a/doc/html/wall__upload_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var wall__upload_8php = -[ - [ "wall_upload_post", "wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f", null ] -]; \ No newline at end of file diff --git a/doc/html/webfinger_8php.html b/doc/html/webfinger_8php.html deleted file mode 100644 index 288c6a5d2..000000000 --- a/doc/html/webfinger_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/webfinger.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        webfinger.php File Reference
        -
        -
        - - - - -

        -Functions

         webfinger_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        webfinger_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/webfinger_8php.js b/doc/html/webfinger_8php.js deleted file mode 100644 index f34d3bd88..000000000 --- a/doc/html/webfinger_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var webfinger_8php = -[ - [ "webfinger_content", "webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3", null ] -]; \ No newline at end of file diff --git a/doc/html/webpages_8php.html b/doc/html/webpages_8php.html deleted file mode 100644 index f82e10ed4..000000000 --- a/doc/html/webpages_8php.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -The Red Matrix: mod/webpages.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        webpages.php File Reference
        -
        -
        - - - - - - -

        -Functions

         webpages_init (&$a)
         
         webpages_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        webpages_content ($a)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        webpages_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/webpages_8php.js b/doc/html/webpages_8php.js deleted file mode 100644 index 961f9a5e8..000000000 --- a/doc/html/webpages_8php.js +++ /dev/null @@ -1,5 +0,0 @@ -var webpages_8php = -[ - [ "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/wfinger_8php.html b/doc/html/wfinger_8php.html deleted file mode 100644 index 088eb9aad..000000000 --- a/doc/html/wfinger_8php.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - -The Red Matrix: mod/wfinger.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        wfinger.php File Reference
        -
        -
        - - - - -

        -Functions

         wfinger_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        wfinger_init ($a)
        -
        - -

        Referenced by _well_known_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/wfinger_8php.js b/doc/html/wfinger_8php.js deleted file mode 100644 index b40fe5d03..000000000 --- a/doc/html/wfinger_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var wfinger_8php = -[ - [ "wfinger_init", "wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3", null ] -]; \ No newline at end of file diff --git a/doc/html/widedarkness_8php.html b/doc/html/widedarkness_8php.html deleted file mode 100644 index 1825b557e..000000000 --- a/doc/html/widedarkness_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/apw/schema/widedarkness.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        widedarkness.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/widgets_8php.html b/doc/html/widgets_8php.html deleted file mode 100644 index 6c2cf40dd..000000000 --- a/doc/html/widgets_8php.html +++ /dev/null @@ -1,766 +0,0 @@ - - - - - - -The Red Matrix: include/widgets.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        widgets.php File Reference
        -
        -
        - -

        This file contains the widgets. -More...

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         widget_profile ($args)
         
         widget_tagcloud ($args)
         
         widget_collections ($args)
         
         widget_appselect ($arr)
         
         widget_suggestions ($arr)
         
         widget_follow ($args)
         
         widget_notes ($arr)
         
         widget_savedsearch ($arr)
         
         widget_filer ($arr)
         
         widget_archive ($arr)
         
         widget_fullprofile ($arr)
         
         widget_categories ($arr)
         
         widget_tagcloud_wall ($arr)
         
         widget_catcloud_wall ($arr)
         
         widget_affinity ($arr)
         
         widget_settings_menu ($arr)
         
         widget_mailmenu ($arr)
         
         widget_design_tools ($arr)
         
         widget_findpeople ($arr)
         
         widget_photo_albums ($arr)
         
         widget_vcard ($arr)
         
         widget_dirsafemode ($arr)
         
         widget_dirsort ($arr)
         
         widget_dirtags ($arr)
         
         widget_menu_preview ($arr)
         
         widget_chatroom_list ($arr)
         
         widget_bookmarkedchats ($arr)
         
         widget_suggestedchats ($arr)
         
         widget_item ($arr)
         
         widget_clock ($arr)
         
         widget_photo ($arr)
         
         widget_photo_rand ($arr)
         
         widget_random_block ($arr)
         
         widget_rating ($arr)
         
         widget_pubsites ()
         
        -

        Detailed Description

        -

        This file contains the widgets.

        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        widget_affinity ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_appselect ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_archive ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_bookmarkedchats ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_catcloud_wall ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_categories ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_chatroom_list ( $arr)
        -
        - -

        Referenced by chat_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        widget_clock ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_collections ( $args)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_design_tools ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_dirsafemode ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_dirsort ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_dirtags ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_filer ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_findpeople ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_follow ( $args)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_fullprofile ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_item ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_mailmenu ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_menu_preview ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_notes ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_photo ( $arr)
        -
        -

        widget_photo($arr) widget to display a single photo.

        -
        Parameters
        - - -
        array$arr,;'src' => URL of photo 'zrl' => true or false, use zid in url 'style' => CSS string URL must be an http or https URL
        -
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_photo_albums ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_photo_rand ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_profile ( $args)
        -
        - -

        Referenced by hcard_content().

        - -
        -
        - -
        -
        - - - - - - - -
        widget_pubsites ()
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_random_block ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_rating ( $arr)
        -
        - -

        Referenced by profile_sidebar().

        - -
        -
        - -
        -
        - - - - - - - - -
        widget_savedsearch ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_settings_menu ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_suggestedchats ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_suggestions ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_tagcloud ( $args)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_tagcloud_wall ( $arr)
        -
        - -
        -
        - -
        -
        - - - - - - - - -
        widget_vcard ( $arr)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js deleted file mode 100644 index a65bdf050..000000000 --- a/doc/html/widgets_8php.js +++ /dev/null @@ -1,38 +0,0 @@ -var widgets_8php = -[ - [ "widget_affinity", "widgets_8php.html#add9b24d3304e529a7975e96122315554", null ], - [ "widget_appselect", "widgets_8php.html#aced5cb177f630b30799c5eab873ee75c", null ], - [ "widget_archive", "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65", null ], - [ "widget_bookmarkedchats", "widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3", null ], - [ "widget_catcloud_wall", "widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5", null ], - [ "widget_categories", "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b", null ], - [ "widget_chatroom_list", "widgets_8php.html#a47c72aac42058ea086c9ef8651c259da", null ], - [ "widget_clock", "widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a", null ], - [ "widget_collections", "widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f", null ], - [ "widget_design_tools", "widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b", null ], - [ "widget_dirsafemode", "widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091", null ], - [ "widget_dirsort", "widgets_8php.html#a95c06bc9be133e89768746302d2ac395", null ], - [ "widget_dirtags", "widgets_8php.html#a08035db02ff6a23260146b4c64153422", null ], - [ "widget_filer", "widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0", null ], - [ "widget_findpeople", "widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2", null ], - [ "widget_follow", "widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd", null ], - [ "widget_fullprofile", "widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165", null ], - [ "widget_item", "widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5", null ], - [ "widget_mailmenu", "widgets_8php.html#afa2e55a78f95667a6da082efac7fec74", null ], - [ "widget_menu_preview", "widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013", null ], - [ "widget_notes", "widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256", null ], - [ "widget_photo", "widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20", null ], - [ "widget_photo_albums", "widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e", null ], - [ "widget_photo_rand", "widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380", null ], - [ "widget_profile", "widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ], - [ "widget_pubsites", "widgets_8php.html#afc7a579877414f4eb6f59698d3f69492", null ], - [ "widget_random_block", "widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e", null ], - [ "widget_rating", "widgets_8php.html#a7d0724165067077ff46484e4610e4323", null ], - [ "widget_savedsearch", "widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8", null ], - [ "widget_settings_menu", "widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01", null ], - [ "widget_suggestedchats", "widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8", null ], - [ "widget_suggestions", "widgets_8php.html#a0d404276fedc59f5038cf5c085028326", null ], - [ "widget_tagcloud", "widgets_8php.html#a6dbc227aac750774284ee39c45f0a200", null ], - [ "widget_tagcloud_wall", "widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653", null ], - [ "widget_vcard", "widgets_8php.html#abe03366fd22fd27d683518fa0765da50", null ] -]; \ No newline at end of file diff --git a/doc/html/xchan_8php.html b/doc/html/xchan_8php.html deleted file mode 100644 index ab34d568a..000000000 --- a/doc/html/xchan_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/xchan.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        xchan.php File Reference
        -
        -
        - - - - -

        -Functions

         xchan_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        xchan_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/xchan_8php.js b/doc/html/xchan_8php.js deleted file mode 100644 index 65ea176d4..000000000 --- a/doc/html/xchan_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var xchan_8php = -[ - [ "xchan_content", "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d", null ] -]; \ No newline at end of file diff --git a/doc/html/xpoco_8php.html b/doc/html/xpoco_8php.html deleted file mode 100644 index c7c21f6a3..000000000 --- a/doc/html/xpoco_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/xpoco.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        xpoco.php File Reference
        -
        -
        - - - - -

        -Functions

         xpoco_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        xpoco_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/xpoco_8php.js b/doc/html/xpoco_8php.js deleted file mode 100644 index b46a66f0e..000000000 --- a/doc/html/xpoco_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var xpoco_8php = -[ - [ "xpoco_init", "xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2", null ] -]; \ No newline at end of file diff --git a/doc/html/xrd_8php.html b/doc/html/xrd_8php.html deleted file mode 100644 index b774c08b6..000000000 --- a/doc/html/xrd_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/xrd.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        xrd.php File Reference
        -
        -
        - - - - -

        -Functions

         xrd_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        xrd_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/xrd_8php.js b/doc/html/xrd_8php.js deleted file mode 100644 index 01f00aa54..000000000 --- a/doc/html/xrd_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var xrd_8php = -[ - [ "xrd_init", "xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270", null ] -]; \ No newline at end of file diff --git a/doc/html/xref_8php.html b/doc/html/xref_8php.html deleted file mode 100644 index 2f08a643f..000000000 --- a/doc/html/xref_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/xref.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        xref.php File Reference
        -
        -
        - - - - -

        -Functions

         xref_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        xref_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/xref_8php.js b/doc/html/xref_8php.js deleted file mode 100644 index 01291c5c5..000000000 --- a/doc/html/xref_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var xref_8php = -[ - [ "xref_init", "xref_8php.html#a9bee399213b8de8226b0d60834307473", null ] -]; \ No newline at end of file diff --git a/doc/html/yolo_2php_2style_8php.html b/doc/html/yolo_2php_2style_8php.html deleted file mode 100644 index 45b35d2c5..000000000 --- a/doc/html/yolo_2php_2style_8php.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -The Red Matrix: view/theme/yolo/php/style.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        -
        -
        style.php File Reference
        -
        -
        -
        -
        - diff --git a/doc/html/yolo_2php_2theme_8php.html b/doc/html/yolo_2php_2theme_8php.html deleted file mode 100644 index d23ddf224..000000000 --- a/doc/html/yolo_2php_2theme_8php.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -The Red Matrix: view/theme/yolo/php/theme.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        theme.php File Reference
        -
        -
        - - - - -

        -Functions

         yolo_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        yolo_init ($a)
        -
        -
          -
        • Name: yolo
        • -
        • Description: An Ello-like theme based on redbasic. Because fuck Ello.
        • -
        • Version: 1.0
        • -
        • Author: Sean Tilley
        • -
        • Compat: Red [*]
        • -
        - -
        -
        -
        -
        - diff --git a/doc/html/yolo_2php_2theme_8php.js b/doc/html/yolo_2php_2theme_8php.js deleted file mode 100644 index a49111e15..000000000 --- a/doc/html/yolo_2php_2theme_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var yolo_2php_2theme_8php = -[ - [ "yolo_init", "yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da", null ] -]; \ No newline at end of file diff --git a/doc/html/zfinger_8php.html b/doc/html/zfinger_8php.html deleted file mode 100644 index b35337c42..000000000 --- a/doc/html/zfinger_8php.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -The Red Matrix: mod/zfinger.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zfinger.php File Reference
        -
        -
        - - - - -

        -Functions

         zfinger_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        zfinger_init ($a)
        -
        -

        The special address '[system]' will return a system channel if one has been defined, Or the first valid channel we find if there are no system channels.

        -

        This is used by magic-auth if we have no prior communications with this site - and returns an identity on this site which we can use to create a valid hub record so that we can exchange signed messages. The precise identity is irrelevant. It's the hub information that we really need at the other end - and this will return it.

        - -

        Referenced by _well_known_init().

        - -
        -
        -
        -
        - diff --git a/doc/html/zfinger_8php.js b/doc/html/zfinger_8php.js deleted file mode 100644 index 9bee68767..000000000 --- a/doc/html/zfinger_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var zfinger_8php = -[ - [ "zfinger_init", "zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0", null ] -]; \ No newline at end of file diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html deleted file mode 100644 index f7312c8db..000000000 --- a/doc/html/zot_8php.html +++ /dev/null @@ -1,1321 +0,0 @@ - - - - - - -The Red Matrix: include/zot.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zot.php File Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Functions

         zot_new_uid ($channel_nick)
         
         make_xchan_hash ($guid, $guid_sig)
         
         zot_get_hublocs ($hash)
         
         zot_build_packet ($channel, $type= 'notify', $recipients=null, $remote_key=null, $secret=null, $extra=null)
         
         zot_zot ($url, $data)
         
         zot_finger ($webbie, $channel=null, $autofallback=true)
         
         zot_refresh ($them, $channel=null, $force=false)
         
         zot_gethub ($arr)
         
         zot_register_hub ($arr)
         
         import_xchan ($arr, $ud_flags=UPDATE_FLAGS_UPDATED, $ud_arr=null)
         
         zot_process_response ($hub, $arr, $outq)
         
         zot_fetch ($arr)
         
         zot_import ($arr, $sender_url)
         
         public_recips ($msg)
         
         allowed_public_recips ($msg)
         
         process_delivery ($sender, $arr, $deliveries, $relay, $public=false, $request=false)
         
         remove_community_tag ($sender, $arr, $uid)
         
         update_imported_item ($sender, $item, $uid)
         
         delete_imported_item ($sender, $item, $uid, $relay)
         
         process_mail_delivery ($sender, $arr, $deliveries)
         
         process_rating_delivery ($sender, $arr)
         
         process_profile_delivery ($sender, $arr, $deliveries)
         
         process_location_delivery ($sender, $arr, $deliveries)
         
         sync_locations ($sender, $arr, $absolute=false)
         
         zot_encode_locations ($channel)
         
         import_directory_profile ($hash, $profile, $addr, $ud_flags=UPDATE_FLAGS_UPDATED, $suppress_update=0)
         
         import_directory_keywords ($hash, $keywords)
         
         update_modtime ($hash, $guid, $addr, $flags=0)
         
         import_site ($arr, $pubkey)
         
         build_sync_packet ($uid=0, $packet=null, $groups_changed=false)
         
         process_channel_sync_delivery ($sender, $arr, $deliveries)
         
         get_rpost_path ($observer)
         
         import_author_zot ($x)
         
         zot_process_message_request ($data)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        allowed_public_recips ( $msg)
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        build_sync_packet ( $uid = 0,
         $packet = null,
         $groups_changed = false 
        )
        -
        -

        Send a zot packet to all hubs where this channel is duplicated, refreshing such things as personal settings, channel permissions, address book updates, etc.

        - -

        Referenced by connections_clone(), connedit_clone(), connedit_content(), group_add(), group_add_member(), group_rmv(), group_rmv_member(), notes_init(), profiles_post(), and settings_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        delete_imported_item ( $sender,
         $item,
         $uid,
         $relay 
        )
        -
        - -

        Referenced by process_delivery().

        - -
        -
        - -
        -
        - - - - - - - - -
        get_rpost_path ( $observer)
        -
        - -

        Referenced by rpost_callback(), and rpost_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        import_author_zot ( $x)
        -
        - -

        Referenced by import_author_xchan().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        import_directory_keywords ( $hash,
         $keywords 
        )
        -
        - -

        Referenced by import_directory_profile().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        import_directory_profile ( $hash,
         $profile,
         $addr,
         $ud_flags = UPDATE_FLAGS_UPDATED,
         $suppress_update = 0 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        import_site ( $arr,
         $pubkey 
        )
        -
        - -

        Referenced by import_xchan().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        import_xchan ( $arr,
         $ud_flags = UPDATE_FLAGS_UPDATED,
         $ud_arr = null 
        )
        -
        -

        import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED) Takes an associative array of a fetched discovery packet and updates all internal data structures which need to be updated as a result.

        -
        Parameters
        - - - - -
        array$arr=> json_decoded discovery packet
        int$ud_flagsDetermines whether to create a directory update record if any changes occur, default is UPDATE_FLAGS_UPDATED $ud_flags = UPDATE_FLAGS_FORCED indicates a forced refresh where we unconditionally create a directory update record this typically occurs once a month for each channel as part of a scheduled ping to notify the directory that the channel still exists
        array$ud_arrIf set [typically by update_directory_entry()] indicates a specific update table row and more particularly contains a particular address (ud_addr) which needs to be updated in that table.
        -
        -
        -
        Returns
        array => 'success' (boolean true or false) 'message' (optional error string only if success is false)
        - -

        Referenced by chanview_content(), discover_by_webbie(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), process_channel_sync_delivery(), regdir_init(), update_directory_entry(), zot_refresh(), and zot_register_hub().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        make_xchan_hash ( $guid,
         $guid_sig 
        )
        -
        -

        function make_xchan_hash($guid,$guid_sig)

        -

        Generates a portable hash identifier for the channel identified by $guid and signed with $guid_sig This ID is portable across the network but MUST be calculated locally by verifying the signature and can not be trusted as an identity.

        - -

        Referenced by allowed_public_recips(), create_identity(), get_item_elements(), import_author_zot(), import_xchan(), post_post(), zfinger_init(), zot_import(), zot_process_message_request(), and zot_register_hub().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        process_channel_sync_delivery ( $sender,
         $arr,
         $deliveries 
        )
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        process_delivery ( $sender,
         $arr,
         $deliveries,
         $relay,
         $public = false,
         $request = false 
        )
        -
        - -

        Referenced by externals_run(), onepoll_run(), and zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        process_location_delivery ( $sender,
         $arr,
         $deliveries 
        )
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        process_mail_delivery ( $sender,
         $arr,
         $deliveries 
        )
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        process_profile_delivery ( $sender,
         $arr,
         $deliveries 
        )
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        process_rating_delivery ( $sender,
         $arr 
        )
        -
        - -

        Referenced by zot_import().

        - -
        -
        - -
        -
        - - - - - - - - -
        public_recips ( $msg)
        -
        - -

        Referenced by allowed_public_recips().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        remove_community_tag ( $sender,
         $arr,
         $uid 
        )
        -
        - -

        Referenced by process_delivery().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        sync_locations ( $sender,
         $arr,
         $absolute = false 
        )
        -
        - -

        Referenced by import_xchan(), and process_location_delivery().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        update_imported_item ( $sender,
         $item,
         $uid 
        )
        -
        - -

        Referenced by process_delivery().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        update_modtime ( $hash,
         $guid,
         $addr,
         $flags = 0 
        )
        -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        zot_build_packet ( $channel,
         $type = 'notify',
         $recipients = null,
         $remote_key = null,
         $secret = null,
         $extra = null 
        )
        -
        -

        zot_build_packet($channel,$type = 'notify',$recipients = null, $remote_key = null, $secret = null) builds a zot notification packet that you can either store in the queue with a message array or call zot_zot to immediately zot it to the other side

        -
        Parameters
        - - - - - - -
        array$channel=> sender channel structure
        string$type=> packet type: one of 'ping', 'pickup', 'purge', 'refresh', 'force_refresh', 'notify', 'auth_check'
        array$recipients=> envelope information, array ( 'guid' => string, 'guid_sig' => string ); empty for public posts
        string$remote_key=> optional public site key of target hub used to encrypt entire packet NOTE: remote_key and encrypted packets are required for 'auth_check' packets, optional for all others
        string$secret=> random string, required for packets which require verification/callback e.g. 'pickup', 'purge', 'notify', 'auth_check'. Packet types 'ping', 'force_refresh', and 'refresh' do not require verification
        -
        -
        -
        Returns
        string json encoded zot packet
        - -

        Referenced by admin_page_hubloc_post(), build_sync_packet(), directory_run(), notifier_run(), post_init(), ratenotif_run(), zot_process_message_request(), and zping_content().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_encode_locations ( $channel)
        -
        - -

        Referenced by notifier_run(), and zfinger_init().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_fetch ( $arr)
        -
        -

        zot_fetch($arr)

        -
        We received a notification packet (in mod/post.php) that a message is waiting for us, and we've verified the sender.
        -Now send back a pickup message, using our message tracking ID ($arr['secret']), which we will sign with our site private key.
        -The entire pickup message is encrypted with the remote site's public key. 
        -If everything checks out on the remote end, we will receive back a packet containing one or more messages,
        -which will be processed and delivered before this function ultimately returns.
        -
        Parameters
        - - -
        array$arrdecrypted and json decoded notify packet from remote site
        -
        -
        - -

        Referenced by post_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        zot_finger ( $webbie,
         $channel = null,
         $autofallback = true 
        )
        -
        -

        : zot_finger

        -

        Look up information about channel

        -
        Parameters
        - - - - -
        string $webbie does not have to be host qualified e.g. 'foo' is treated as 'foo'
        array $channel (optional), if supplied permissions will be enumerated specifically for $channel
        boolean $autofallback fallback/failover to http if https connection cannot be established. Default is true.
        -
        -
        -
        Returns
        : array => see z_post_url and mod/zfinger.php
        - -

        Referenced by chanview_content(), check_upstream_directory(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), probe_content(), process_channel_sync_delivery(), regdir_init(), and update_directory_entry().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_get_hublocs ( $hash)
        -
        -

        zot_get_hublocs($hash) Given a zot hash, return all distinct hubs. This function is used in building the zot discovery packet and therefore should only be used by channels which are defined on this hub

        -
        Parameters
        - - -
        string$hash- xchan_hash array of hubloc (hub location structures) hubloc_id int hubloc_guid char(255) hubloc_guid_sig text hubloc_hash char(255) hubloc_addr char(255) hubloc_flags int hubloc_status int hubloc_url char(255) hubloc_url_sig text hubloc_host char(255) hubloc_callback char(255) hubloc_connect char(255) hubloc_sitekey text hubloc_updated datetime hubloc_connected datetime
        -
        -
        -

        Only search for active hublocs - e.g. those that haven't been marked deleted

        - -

        Referenced by process_channel_sync_delivery(), and zot_encode_locations().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_gethub ( $arr)
        -
        -

        : zot_gethub

        -

        A guid and a url, both signed by the sender, distinguish a known sender at a known location This function looks these up to see if the channel is known and therefore previously verified. If not, we will need to verify it.

        -
        Parameters
        - - -
        array$arr$arr must contain: string $arr['guid'] => guid of conversant string $arr['guid_sig'] => guid signed with conversant's private key string $arr['url'] => URL of the origination hub of this communication string $arr['url_sig'] => URL signed with conversant's private key
        -
        -
        -
        Returns
        : array => hubloc record
        - -

        Referenced by import_post(), post_post(), zot_fetch(), and zot_import().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        zot_import ( $arr,
         $sender_url 
        )
        -
        -

        zot_import

        -

        Process an incoming array of messages which were obtained via pickup, and import, update, delete as directed.

        -
        Parameters
        - - - -
        array$arr=> 'pickup' structure returned from remote site
        string$sender_url=> the url specified by the sender in the initial communication we will verify the sender and url in each returned message structure and also verify that all the messages returned match the site url that we are currently processing.
        -
        -
        -

        The message types handled here are 'activity' (e.g. posts), 'mail' , 'profile', 'location', and 'channel_sync'

        -
        Returns
        array => array ( [0] => string $channel_hash, [1] => string $delivery_status, [2] => string $address ) suitable for logging remotely, enumerating the processing results of each message/recipient combination.
        - -

        Referenced by deliver_run(), and zot_fetch().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_new_uid ( $channel_nick)
        -
        -

        Red implementation of zot protocol.

        -

        https://github.com/friendica/red/wiki/zot https://github.com/friendica/red/wiki/Zot&mdash;A-High-Level-Overview

        -

        zot_new_uid($channel_nick)

        -

        Generates a unique string for use as a zot guid using our DNS-based url, the channel nickname and some entropy. The entropy ensures uniqueness against re-installs where the same URL and nickname are chosen. NOTE: zot doesn't require this to be unique. Internally we use a whirlpool hash of this guid and the signature of this guid signed with the channel private key. This can be verified and should make the probability of collision of the verified result negligible within the constraints of our immediate universe.

        -
        Parameters
        - - -
        stringchannel_nickname = unique nickname of controlling entity
        -
        -
        -
        Returns
        string
        - -

        Referenced by create_identity(), and foofoo().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_process_message_request ( $data)
        -
        -

        zot_process_message_request($data) If a site receives a comment to a post but finds they have no parent to attach it with, they may send a 'request' packet containing the message_id of the missing parent. This is the handler for that packet. We will create a message_list array of the entire conversation starting with the missing parent and invoke delivery to the sender of the packet.

        -

        include/deliver.php (for local delivery) and mod/post.php (for web delivery) detect the existence of this 'message_list' at the destination and split it into individual messages which are processed/delivered in order.

        -

        Called from mod/post.php

        - -

        Referenced by post_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        zot_process_response ( $hub,
         $arr,
         $outq 
        )
        -
        -

        zot_process_response($hub,$arr,$outq) { Called immediately after sending a zot message which is using queue processing Updates the queue item according to the response result and logs any information returned to aid communications troubleshooting.

        -
        Parameters
        - - - - -
        string$hub- url of site we just contacted
        array$arr- output of z_post_url()
        array$outq- The queue structure attached to this request
        -
        -
        -
        Returns
        nothing
        - -

        Referenced by deliver_run(), and queue_run().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        zot_refresh ( $them,
         $channel = null,
         $force = false 
        )
        -
        -

        : zot_refresh($them, $channel = null, $force = false)

        -

        zot_refresh is typically invoked when somebody has changed permissions of a channel and they are notified to fetch new permissions via a finger/discovery operation. This may result in a new connection (abook entry) being added to a local channel and it may result in auto-permissions being granted.

        -

        Friending in zot is accomplished by sending a refresh packet to a specific channel which indicates a permission change has been made by the sender which affects the target channel. The hub controlling the target channel does targetted discovery (a zot-finger request requesting permissions for the local channel). These are decoded here, and if necessary and abook structure (addressbook) is created to store the permissions assigned to this channel.

        -

        Initially these abook structures are created with a 'pending' flag, so that no reverse permissions are implied until this is approved by the owner channel. A channel can also auto-populate permissions in return and send back a refresh packet of its own. This is used by forum and group communication channels so that friending and membership in the channel's "club" is automatic.

        -
        Parameters
        - - - -
        array$them=> xchan structure of sender
        array$channel=> local channel structure of target recipient, required for "friending" operations
        -
        -
        -
        Returns
        boolean true if successful, else false
        - -

        Referenced by connedit_content(), import_author_zot(), onepoll_run(), and post_post().

        - -
        -
        - -
        -
        - - - - - - - - -
        zot_register_hub ( $arr)
        -
        -

        zot_register_hub($arr)

        -

        A communication has been received which has an unknown (to us) sender. Perform discovery based on our calculated hash of the sender at the origination address. This will fetch the discovery packet of the sender, which contains the public key we need to verify our guid and url signatures.

        -
        Parameters
        - - -
        array$arr$arr must contain: string $arr['guid'] => guid of conversant string $arr['guid_sig'] => guid signed with conversant's private key string $arr['url'] => URL of the origination hub of this communication string $arr['url_sig'] => URL signed with conversant's private key
        -
        -
        -
        Returns
        array => 'success' (boolean true or false) 'message' (optional error string only if success is false)
        - -

        Referenced by post_post().

        - -
        -
        - -
        -
        - - - - - - - - - - - - - - - - - - -
        zot_zot ( $url,
         $data 
        )
        -
        -

        : zot_zot

        -
        Parameters
        - - - -
        string $url
        array $data
        -
        -
        -
        Returns
        : array => see z_post_url for returned data format
        - -

        Referenced by admin_page_hubloc_post(), deliver_run(), directory_run(), notifier_run(), post_init(), queue_run(), zot_fetch(), and zping_content().

        - -
        -
        -
        -
        - diff --git a/doc/html/zot_8php.js b/doc/html/zot_8php.js deleted file mode 100644 index 62cc2102c..000000000 --- a/doc/html/zot_8php.js +++ /dev/null @@ -1,37 +0,0 @@ -var zot_8php = -[ - [ "allowed_public_recips", "zot_8php.html#a703f528ade8382cf374e4119bd6f7859", null ], - [ "build_sync_packet", "zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5", null ], - [ "delete_imported_item", "zot_8php.html#a2bcda2dd23975087f3627eb72fb6792b", null ], - [ "get_rpost_path", "zot_8php.html#a8e22dbc6f884be3644a892a876cbd972", null ], - [ "import_author_zot", "zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d", null ], - [ "import_directory_keywords", "zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a", null ], - [ "import_directory_profile", "zot_8php.html#a20750dd2c36961013fd382fb34e1366c", null ], - [ "import_site", "zot_8php.html#a2657e141d62d5f67ad3c87651b585299", null ], - [ "import_xchan", "zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315", null ], - [ "make_xchan_hash", "zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75", null ], - [ "process_channel_sync_delivery", "zot_8php.html#ac301c67864917c35922257950ae0f95c", null ], - [ "process_delivery", "zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d", null ], - [ "process_location_delivery", "zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988", null ], - [ "process_mail_delivery", "zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc", null ], - [ "process_profile_delivery", "zot_8php.html#a9a57b40669351c9791126b925cb7ef3b", null ], - [ "process_rating_delivery", "zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181", null ], - [ "public_recips", "zot_8php.html#a083aec6c900d244e1bfc1406f9461465", null ], - [ "remove_community_tag", "zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10", null ], - [ "sync_locations", "zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254", null ], - [ "update_imported_item", "zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df", null ], - [ "update_modtime", "zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd", null ], - [ "zot_build_packet", "zot_8php.html#a084c581d534e7e3b759488b46602288f", null ], - [ "zot_encode_locations", "zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca", null ], - [ "zot_fetch", "zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea", null ], - [ "zot_finger", "zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7", null ], - [ "zot_get_hublocs", "zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7", null ], - [ "zot_gethub", "zot_8php.html#a55056e863a7860bc0cf922e78fcce073", null ], - [ "zot_import", "zot_8php.html#aeea071f17e306fe3d0c488551906bfab", null ], - [ "zot_new_uid", "zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7", null ], - [ "zot_process_message_request", "zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac", null ], - [ "zot_process_response", "zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03", null ], - [ "zot_refresh", "zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c", null ], - [ "zot_register_hub", "zot_8php.html#a5bcdfef419b16075a0eca990956223dc", null ], - [ "zot_zot", "zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142", null ] -]; \ No newline at end of file diff --git a/doc/html/zotfeed_8php.html b/doc/html/zotfeed_8php.html deleted file mode 100644 index 804fc8d80..000000000 --- a/doc/html/zotfeed_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/zotfeed.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zotfeed.php File Reference
        -
        -
        - - - - -

        -Functions

         zotfeed_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        zotfeed_init ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/zotfeed_8php.js b/doc/html/zotfeed_8php.js deleted file mode 100644 index e13749e5b..000000000 --- a/doc/html/zotfeed_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var zotfeed_8php = -[ - [ "zotfeed_init", "zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac", null ] -]; \ No newline at end of file diff --git a/doc/html/zotsh_8py.html b/doc/html/zotsh_8py.html deleted file mode 100644 index 6a1e2c642..000000000 --- a/doc/html/zotsh_8py.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - -The Red Matrix: util/zotsh/zotsh.py File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zotsh.py File Reference
        -
        -
        - - - - - - -

        -Classes

        class  zotsh.CommandNotFound
         
        class  zotsh.ZotSH
         
        - - - -

        -Namespaces

        namespace  zotsh
         
        - - - - - -

        -Functions

        def zotsh.load_conf
         
        def zotsh.zotsh
         
        - - - - - - - - - - - -

        -Variables

        string zotsh.__version__ = "0.0.2"
         
         zotsh.SERVER = None
         
         zotsh.USER = None
         
         zotsh.PASSWD = None
         
         zotsh.VERIFY_SSL = True
         
        -
        -
        - diff --git a/doc/html/zotsh_8py.js b/doc/html/zotsh_8py.js deleted file mode 100644 index 1770ed65f..000000000 --- a/doc/html/zotsh_8py.js +++ /dev/null @@ -1,12 +0,0 @@ -var zotsh_8py = -[ - [ "CommandNotFound", "classzotsh_1_1CommandNotFound.html", null ], - [ "ZotSH", "classzotsh_1_1ZotSH.html", "classzotsh_1_1ZotSH" ], - [ "load_conf", "zotsh_8py.html#a562892f8907e608886f70a872671c0b5", null ], - [ "zotsh", "zotsh_8py.html#a0004a83d69a4b175b6829d8377305df2", null ], - [ "__version__", "zotsh_8py.html#a31d85cca46babd5138e15a19167617b1", null ], - [ "PASSWD", "zotsh_8py.html#af095a954e499000ad500a47ebea3f3ce", null ], - [ "SERVER", "zotsh_8py.html#a701660e74baf39d745d202f282240f3c", null ], - [ "USER", "zotsh_8py.html#a12660918ec1a79487c98172e0d74d064", null ], - [ "VERIFY_SSL", "zotsh_8py.html#a9b17c9ddf6c3b49c00d74ba46f54398e", null ] -]; \ No newline at end of file diff --git a/doc/html/zperms_8php.html b/doc/html/zperms_8php.html deleted file mode 100644 index b5d7369e2..000000000 --- a/doc/html/zperms_8php.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -The Red Project: mod/zperms.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Project -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zperms.php File Reference
        -
        -
        - - - - -

        -Functions

         zperms_init (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        zperms_init ($a)
        -
        -

        hmmm we probably shouldn't sign somebody else's hub. FIXME

        - -
        -
        -
        -
        - diff --git a/doc/html/zperms_8php.js b/doc/html/zperms_8php.js deleted file mode 100644 index 42c93a5b3..000000000 --- a/doc/html/zperms_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var zperms_8php = -[ - [ "zperms_init", "zperms_8php.html#a2f698dcd51150bda3146425f038da628", null ] -]; \ No newline at end of file diff --git a/doc/html/zping_8php.html b/doc/html/zping_8php.html deleted file mode 100644 index 612181d13..000000000 --- a/doc/html/zping_8php.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -The Red Matrix: mod/zping.php File Reference - - - - - - - - - - - - - -
        -
        - - - - - - - -
        -
        The Red Matrix -
        -
        -
        - - - - - -
        -
        - -
        -
        -
        - -
        - - - - -
        - -
        - -
        - -
        -
        zping.php File Reference
        -
        -
        - - - - -

        -Functions

         zping_content (&$a)
         
        -

        Function Documentation

        - -
        -
        - - - - - - - - -
        zping_content ($a)
        -
        - -
        -
        -
        -
        - diff --git a/doc/html/zping_8php.js b/doc/html/zping_8php.js deleted file mode 100644 index 28a58de4a..000000000 --- a/doc/html/zping_8php.js +++ /dev/null @@ -1,4 +0,0 @@ -var zping_8php = -[ - [ "zping_content", "zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75", null ] -]; \ No newline at end of file diff --git a/doc/main.bb b/doc/main.bb index d8682d8ac..67e3c5da0 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -63,12 +63,12 @@ Zot is the great new communicaton protocol invented especially for the RedMatrix [zrl=[baseurl]/help/api_functions]API functions[/zrl] [zrl=[baseurl]/help/api_posting]Posting to the red# using the API[/zrl] [zrl=[baseurl]/help/developer_function_primer]Red Functions 101[/zrl] -[zrl=[baseurl]/doc/html/]Code Reference (doxygen generated - sets cookies)[/zrl] +[zrl=[baseurl]/doc/html/]Code Reference (Doxygen generated - sets cookies)[/zrl] [zrl=[baseurl]/help/to_do_doco]To-Do list for the Red Documentation Project[/zrl] [zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl] [zrl=[baseurl]/help/roadmap]Version 3 roadmap[/zrl] [zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl] -[zrl=[baseurl]/help/dev_beginner]Sep-for-step manual for beginning developers[/zrl] +[zrl=[baseurl]/help/dev_beginner]Step-for-step manual for beginning developers[/zrl] [size=large][b]Frequently Asked Questions For Developers[/b][/size] [zrl=[baseurl]/help/faq_developers]FAQ For Developers[/zrl] diff --git a/util/Doxyfile b/util/Doxyfile index fce6c1359..c5c205de7 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -1,8 +1,8 @@ -INPUT = boot.php mod include setup util view +INPUT = index.php boot.php mod/ include/ setup/ util/ view/ RECURSIVE = YES -PROJECT_NAME = "The Red Matrix" +PROJECT_NAME = "The RedMatrix" PROJECT_LOGO = images/rm-64.png -EXCLUDE = .htconfig.php library doc .git +EXCLUDE = .htconfig.php library/ doc/ vendor/ .git/ util/zotsh/easywebdav/ EXCLUDE_PATTERNS = *smarty3* *strings.php *.out *test* OUTPUT_DIRECTORY = doc GENERATE_HTML = YES @@ -17,5 +17,3 @@ REFERENCED_BY_RELATION = YES GENERATE_TREEVIEW = YES HTML_FOOTER = util/Doxygen.footer - - -- cgit v1.2.3 From ba49060d0fe367fc07cacfbbbaa3320a224282c4 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 02:40:26 -0800 Subject: missed a couple --- doc/addons.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/addons.bb b/doc/addons.bb index 542d0075c..cb7075c40 100644 --- a/doc/addons.bb +++ b/doc/addons.bb @@ -20,6 +20,8 @@ [*] ijpost - crosspost to Insanejournal [*] irc - connect to IRC chatrooms [*] jappixmini - XMPP chat +[*] jsupload - (recommended) upload multiple photos to photo albums at once. +[*] ldapauth - login via account on LDAP or Windows Active Directory domain [*] libertree - crosspost to Libertree [*] likebanner - create a "like us on red#matrix" banner image [*] ljpost - crosspost to LiveJournal -- cgit v1.2.3 From fdd70c19498c456dcf0be90acbadd21378ea4ed6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 14:19:20 +0100 Subject: make on/off switches work better with schemes --- view/theme/redbasic/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e00fee521..542be25e6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2321,14 +2321,14 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .onoffswitch-inner:before { content: attr(data-on); padding-right: 21px; - background-color: #EEEEEE; + background-color: $item_colour; text-align: right; } .onoffswitch-inner:after { content: attr(data-off); padding-left: 21px; - background-color: #EEEEEE; color: #999999; + background-color: $item_colour; color: #ccc; text-align: left; } -- cgit v1.2.3 From 12be436a590f0af75d7d6e1ca47fefac2eb76246 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Mar 2015 14:34:24 +0100 Subject: more on/off switch colour adjustment --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 542be25e6..4878cd23f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2334,7 +2334,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .onoffswitch-switch { display: block; width: 15px; margin:4px; - background: #A1A1A1; + background: #ccc; border-radius: 10px; position: absolute; top: 0; bottom: 0; right: 36px; -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s; -- cgit v1.2.3 From 39c17adc0b1d735b614b88eb4f44af02db5ba7b9 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 11:20:52 -0800 Subject: remove broken sql query from early queue manager. --- mod/admin.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index f97c15786..35e43252c 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -590,9 +590,6 @@ function admin_page_dbsync(&$a) { function admin_page_queue($a) { $o = ''; - $r = q("select count(outq_posturl) as total, outq_posturl, max(hubloc_connected) as connected from outq - where outq_delivered = 0 group by outq_posturl order by total desc"); - if($_REQUEST['drophub']) { require_once('hubloc.php'); hubloc_mark_as_down($_REQUEST['drophub']); -- cgit v1.2.3 From ddaf5c067dcee0b8712e62bd710927d63fdf4d46 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 14:00:36 -0800 Subject: cleanup mail buttons --- view/css/mod_mail.css | 8 ++------ view/tpl/mail_conv.tpl | 4 ++-- view/tpl/mail_list.tpl | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/view/css/mod_mail.css b/view/css/mod_mail.css index 011c3edd5..11affffbd 100644 --- a/view/css/mod_mail.css +++ b/view/css/mod_mail.css @@ -45,8 +45,6 @@ img.mail-list-sender-photo { #prvmail-rotator-wrapper { float: left; margin-top: 10px; -/* margin-right: 10px; - width: 24px; */ cursor: pointer; } @@ -79,16 +77,14 @@ img.mail-list-sender-photo { float: right; margin-right: 30px; margin-top: 15px; -} - -.mail-conv-delete-icon { - border: none; + margin-bottom: 5px; } .mail-conv-recall-wrapper { float: right; margin-right: 10px; margin-top: 15px; + margin-bottom: 5px; } .mail-conv-outside-wrapper-end { diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index a75939617..ec8f8c1e3 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -8,9 +8,9 @@
        {{$mail.date}}
        {{$mail.subject}}
        {{$mail.body}}
        -
        +
        {{if $mail.can_recall}} -
        +
        {{/if}}
        diff --git a/view/tpl/mail_list.tpl b/view/tpl/mail_list.tpl index 8643f27b9..1d499e12f 100755 --- a/view/tpl/mail_list.tpl +++ b/view/tpl/mail_list.tpl @@ -3,6 +3,6 @@ {{$from_name}} {{$subject}} {{$date}} - +
         
        -- cgit v1.2.3 From 24304c53eb594c6cce908e7cbacff5f259445a06 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 14:20:53 -0800 Subject: add repo pointers --- doc/addons.bb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/addons.bb b/doc/addons.bb index cb7075c40..7f2bb59e9 100644 --- a/doc/addons.bb +++ b/doc/addons.bb @@ -14,6 +14,7 @@ [*] embedly - use the embedly (formerly ooehmbed) service to embed media from many providers [*] extcron - use an external cron service to run your hub's scheduled tasks [*] flattr - provides a "Flattr Us" button +[*] flip - create upside down text [*] fortunate - displays random quote (fortune cookie). Requires setting up a fortune server. [*] frphotos - import photo albums from Friendica [*] hexit - headecimal conversion tool @@ -58,6 +59,14 @@ [*] wppost - crosspost to WordPress (or other wordpress XMLRPC service) [/list] +[h3]Addon Repositories[/h3] + +[url=https://github.com/friendica/red-addons]https://github.com/friendica/red-addons[/url] Main project addon repository + +[url=https://github.com/23n/red-addons]https://github.com/23n/red-addons[/url] Oliver's repository (mayan_places and flip) + + + #include doc/macros/main_footer.bb; -- cgit v1.2.3 From 410f3335a9e97276b3262196f50798ff56624af5 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 15:14:10 -0800 Subject: parse_url: if url returns an image/audio/video file instead of a webpage, return the bbcode for the appropriate content type. This results in two web fetches of the url in question, but the first one is just a HEAD. This way we won't try and download and parse an entire video. TODO: img's are checked to see if they should be zid-ified, but audio/video currently are not. --- include/network.php | 7 +++++++ mod/parse_url.php | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/include/network.php b/include/network.php index db32396e4..5912ad79d 100644 --- a/include/network.php +++ b/include/network.php @@ -19,6 +19,7 @@ function get_capath() { * 'timeout' => int seconds, default system config value or 60 seconds * 'http_auth' => username:password * 'novalidate' => do not validate SSL certs, default is to validate using our CA list + * 'nobody' => only return the header * * @returns array * 'return_code' => HTTP return code or 0 if timeout or failure @@ -51,6 +52,9 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { if(x($opts,'headers')) @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']); + if(x($opts,'nobody')) + @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']); + if(x($opts,'timeout') && intval($opts['timeout'])) { @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']); } @@ -182,6 +186,9 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { if(x($opts,'headers')) @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']); + if(x($opts,'nobody')) + @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']); + if(x($opts,'timeout') && intval($opts['timeout'])) { @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']); } diff --git a/mod/parse_url.php b/mod/parse_url.php index 23d608411..49d5cae76 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -250,6 +250,34 @@ function parse_url_content(&$a) { } } + $result = z_fetch_url($url,false,0,array('novalidate' => true, 'nobody' => true)); + if($result['success']) { + $hdrs=array(); + $h = explode("\n",$result['header']); + foreach ($h as $l) { + list($k,$v) = array_map("trim", explode(":", trim($l), 2)); + $hdrs[$k] = $v; + } + if (array_key_exists('Content-Type', $hdrs)) + $type = $hdrs['Content-Type']; + if($type) { + if(in_array($type,array('image/jpeg','image/gif','image/png'))) { + $s = $br . '[img]' . $url . '[/img]' . $br; + $s = preg_replace_callback('/\[img(.*?)\](.*?)\[\/img\]/ism','red_zrlify_img_callback',$s); + echo $s; + killme(); + } + if(stripos($type,'video/') !== false) { + echo $br . '[video]' . $url . '[/video]' . $br; + killme(); + } + if(stripos($type,'audio/') !== false) { + echo $br . '[audio]' . $url . '[/audio]' . $br; + killme(); + } + } + } + logger('parse_url: ' . $url); $template = $br . '#^[url=%s]%s[/url]%s' . $br; -- cgit v1.2.3 From 011ccd57f62335c915b5ac75e20c45a36a64a888 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 17:56:07 -0800 Subject: add queue priority --- boot.php | 2 +- include/deliver.php | 18 ++++++++++++++++++ install/schema_mysql.sql | 4 +++- install/schema_postgres.sql | 2 ++ install/update.php | 11 ++++++++++- 5 files changed, 34 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 4ed5d34c4..5f8dd20fd 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ define ( 'RED_PLATFORM', 'redmatrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1138 ); +define ( 'DB_UPDATE_VERSION', 1139 ); /** * Constant with a HTML line break. diff --git a/include/deliver.php b/include/deliver.php index 47d8562df..459c0f94b 100644 --- a/include/deliver.php +++ b/include/deliver.php @@ -20,6 +20,24 @@ function deliver_run($argv, $argc) { dbesc($argv[$x]) ); if($r) { + $h = parse_url($r[0]['outq_posturl']); + if($h) { + $base = $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : ''); + if($base !== z_root()) { + $x = q("select site_update from site where site_url = '%s' ", + dbesc($base) + ); + if($x && $x[0]['site_update'] < datetime_convert('UTC','UTC','now - 1 month')) { + q("update outq set outq_priority = %d where outq_hash = '%s'", + intval($r[0]['outq_priority'] + 10) + dbesc($r[0]['outq_hash']) + ); + logger('immediate delivery deferred for site ' . $base); + continue; + } + } + } + if($r[0]['outq_driver'] === 'post') { $result = z_post_url($r[0]['outq_posturl'],$r[0]['outq_msg']); if($result['success'] && $result['return_code'] < 300) { diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index da78d9c61..4e481f5c0 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -940,6 +940,7 @@ CREATE TABLE IF NOT EXISTS `outq` ( `outq_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `outq_notify` mediumtext NOT NULL, `outq_msg` mediumtext NOT NULL, + `outq_priority` smallint NOT NULL DEFAULT '0', PRIMARY KEY (`outq_hash`), KEY `outq_account` (`outq_account`), KEY `outq_channel` (`outq_channel`), @@ -947,7 +948,8 @@ CREATE TABLE IF NOT EXISTS `outq` ( KEY `outq_created` (`outq_created`), KEY `outq_updated` (`outq_updated`), KEY `outq_async` (`outq_async`), - KEY `outq_delivered` (`outq_delivered`) + KEY `outq_delivered` (`outq_delivered`), + KEY `outq_priority` (`outq_priority`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 44b8f16a4..20285a352 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -725,6 +725,7 @@ CREATE TABLE "outq" ( "outq_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "outq_notify" text NOT NULL, "outq_msg" text NOT NULL, + "outq_priority" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("outq_hash") ); create index "outq_account" on outq ("outq_account"); @@ -734,6 +735,7 @@ create index "outq_created" on outq ("outq_created"); create index "outq_updated" on outq ("outq_updated"); create index "outq_async" on outq ("outq_async"); create index "outq_delivered" on outq ("outq_delivered"); +create index "outq_priority" on outq ("outq_priority"); CREATE TABLE "pconfig" ( "id" serial NOT NULL, diff --git a/install/update.php b/install/update.php index 70ffb1ebf..75805513d 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 4 Mar 2015 18:11:47 -0800 Subject: don't re-use $x --- include/deliver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deliver.php b/include/deliver.php index 459c0f94b..95fb19a79 100644 --- a/include/deliver.php +++ b/include/deliver.php @@ -24,10 +24,10 @@ function deliver_run($argv, $argc) { if($h) { $base = $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : ''); if($base !== z_root()) { - $x = q("select site_update from site where site_url = '%s' ", + $y = q("select site_update from site where site_url = '%s' ", dbesc($base) ); - if($x && $x[0]['site_update'] < datetime_convert('UTC','UTC','now - 1 month')) { + if($y && $y[0]['site_update'] < datetime_convert('UTC','UTC','now - 1 month')) { q("update outq set outq_priority = %d where outq_hash = '%s'", intval($r[0]['outq_priority'] + 10) dbesc($r[0]['outq_hash']) -- cgit v1.2.3 From ad3b4da3ff5751a5e0da6ba7e46a4fc8731d4d28 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 18:23:54 -0800 Subject: missing comma --- include/deliver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deliver.php b/include/deliver.php index 95fb19a79..498440271 100644 --- a/include/deliver.php +++ b/include/deliver.php @@ -29,7 +29,7 @@ function deliver_run($argv, $argc) { ); if($y && $y[0]['site_update'] < datetime_convert('UTC','UTC','now - 1 month')) { q("update outq set outq_priority = %d where outq_hash = '%s'", - intval($r[0]['outq_priority'] + 10) + intval($r[0]['outq_priority'] + 10), dbesc($r[0]['outq_hash']) ); logger('immediate delivery deferred for site ' . $base); -- cgit v1.2.3 From 76eb0a7e5606d61153b199094482c4c55685a035 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 18:55:17 -0800 Subject: Deprecate the "wall uploads" photo album. Photo uploads (from any source) with no album specified will go now into an album based on YYYY-MM. --- include/photos.php | 2 +- mod/wall_upload.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/photos.php b/include/photos.php index 794ff7748..cd753ffea 100644 --- a/include/photos.php +++ b/include/photos.php @@ -31,7 +31,7 @@ function photo_upload($channel, $observer, $args) { if($newalbum) $album = $newalbum; else - $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y'); + $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y-m'); } /** diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 7ed1859a8..81ca643df 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -32,8 +32,7 @@ function wall_upload_post(&$a) { $observer = $a->get_observer(); - $args = array( 'source' => 'editor', 'album' => t('Wall Photos'), - 'not_visible' => 1, 'contact_allow' => array($channel['channel_hash'])); + $args = array( 'source' => 'editor', 'not_visible' => 1, 'contact_allow' => array($channel['channel_hash'])); $ret = photo_upload($channel,$observer,$args); -- cgit v1.2.3 From 2ea162136e8ab68ca0ad854a4225471ffd35a5a8 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Mar 2015 20:00:54 -0800 Subject: the link icon on comments now calls the link parsing tool (just like the main editor window). Eventually the link specific icons (image, link, audio, video) will all be handled by inserting a link using the link icon (here and in the main editor window) and the separate buttons will go away. We also need to tie this to oembed so that there's one place to insert a link - no matter what kind of link it is, and we'll try to find the best way to render that as content. Similarly upload will upload content, no matter what kind of content; and we'll likewise try and figure out the best way to present whatever content was uploaded (img, file, audio, video, whatever). --- include/js_strings.php | 1 + view/js/main.js | 35 +++++++++++++++++++++++++++++++++++ view/tpl/comment_item.tpl | 2 +- view/tpl/jot.tpl | 2 +- view/tpl/js_strings.tpl | 1 + 5 files changed, 39 insertions(+), 2 deletions(-) diff --git a/include/js_strings.php b/include/js_strings.php index 56ffa9536..84c1d70fb 100644 --- a/include/js_strings.php +++ b/include/js_strings.php @@ -20,6 +20,7 @@ function js_strings() { '$rating_val' => t('Rating'), '$rating_text' => t('Describe (optional)'), '$submit' => t('Submit'), + '$linkurl' => t('Please enter a link URL'), '$t01' => ((t('timeago.prefixAgo') != 'timeago.prefixAgo') ? t('timeago.prefixAgo') : ''), '$t02' => ((t('timeago.prefixFromNow') != 'timeago.prefixFromNow') ? t('timeago.prefixFromNow') : ''), diff --git a/view/js/main.js b/view/js/main.js index 8ee676f0d..c659d25cf 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -118,6 +118,34 @@ return true; } + function insertCommentURL(comment,id) { + + reply = prompt(aStr['linkurl']); + if(reply && reply.length) { + reply = bin2hex(reply); + $('body').css('cursor', 'wait'); + $.get('parse_url?binurl=' + reply, function(data) { + var tmpStr = $("#comment-edit-text-" + id).val(); + if(tmpStr == comment) { + tmpStr = ""; + $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); + $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); + openMenu("comment-tools-" + id); + $("#comment-edit-text-" + id).val(tmpStr); + } + + textarea = document.getElementById("comment-edit-text-" +id); + textarea.value = textarea.value + data; + $('body').css('cursor', 'auto'); + + }); + } + return true; + } + + + + function viewsrc(id) { $.colorbox({href: 'viewsrc/' + id, maxWidth: '80%', maxHeight: '80%' }); } @@ -1230,6 +1258,13 @@ function chanviewFull() { addeditortext(data); } + + function loadText(textRegion,data) { + var currentText = $(textRegion).val(); + $(textRegion).val(currentText + data); + } + + function addeditortext(data) { if(plaintext == 'none') { var currentText = $("#profile-jot-text").val(); diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index cdcf35131..c9a3c451c 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -43,7 +43,7 @@ - - - +
        +
        +
        -{{/if}} diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index 93cee94d6..1dbf4381a 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -1,38 +1,66 @@ -
        -

        {{$ptitle}}

        +
        +
        +

        {{$ptitle}}

        +
        +
        + - - -{{if $theme}} -{{include file="field_themeselect.tpl" field=$theme}} -{{/if}} -{{if $mobile_theme}} -{{include file="field_themeselect.tpl" field=$mobile_theme}} -{{/if}} -{{if $expert}} -{{include file="field_checkbox.tpl" field=$user_scalable}} -{{/if}} -{{include file="field_input.tpl" field=$ajaxint}} -{{include file="field_input.tpl" field=$itemspage}} -{{include file="field_input.tpl" field=$channel_divmore_height}} -{{include file="field_input.tpl" field=$network_divmore_height}} -{{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}} - -
        - -
        -{{if $expert}} -
        -{{$layout_editor}} -
        -{{/if}} -{{if $theme_config}} -

        Theme settings

        -{{$theme_config}} -{{/if}} - -
        +
        +
        + +
        +
        + {{if $theme}} + {{include file="field_themeselect.tpl" field=$theme}} + {{/if}} + {{if $mobile_theme}} + {{include file="field_themeselect.tpl" field=$mobile_theme}} + {{/if}} +
        + +
        +
        +
        +
        + {{if $theme_config}} + {{$theme_config}} + {{/if}} +
        + +
        +
        + {{include file="field_input.tpl" field=$ajaxint}} + {{include file="field_input.tpl" field=$itemspage}} + {{include file="field_input.tpl" field=$channel_divmore_height}} + {{include file="field_input.tpl" field=$network_divmore_height}} + {{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}} + {{include file="field_checkbox.tpl" field=$user_scalable}} + {{if $expert}} + + {{/if}} +
        + +
        +
        +
        +
        +
        +
        -- cgit v1.2.3 From ca641468a1e61964968480c1205d19d0a105bf51 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Mar 2015 17:39:15 +0100 Subject: update theme screenshot --- view/theme/redbasic/img/screenshot.jpg | Bin 135205 -> 199131 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/view/theme/redbasic/img/screenshot.jpg b/view/theme/redbasic/img/screenshot.jpg index 51d4cbb0d..ac9258bd6 100644 Binary files a/view/theme/redbasic/img/screenshot.jpg and b/view/theme/redbasic/img/screenshot.jpg differ -- cgit v1.2.3 From 688ef34d98dbfafb5418f15eabd8bc41e9a5b581 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Mar 2015 18:16:43 +0100 Subject: only show theme settings if we have any themes --- view/tpl/settings_display.tpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index 1dbf4381a..d27ea15e0 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -6,6 +6,7 @@
        + {{if $theme || $mobile_theme}}
        + {{/if}} {{if $theme_config}} {{$theme_config}} {{/if}} -- cgit v1.2.3 From ce229d73f86f90ed102145694780abb54de51345 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Mar 2015 19:08:32 +0100 Subject: whitespace and minor restructuring --- view/theme/redbasic/tpl/theme_settings.tpl | 110 ++++++++++++----------------- view/tpl/settings_display.tpl | 59 ++++++++++------ 2 files changed, 82 insertions(+), 87 deletions(-) diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl index 972620a43..dc33e232a 100644 --- a/view/theme/redbasic/tpl/theme_settings.tpl +++ b/view/theme/redbasic/tpl/theme_settings.tpl @@ -1,65 +1,47 @@ -
        - -
        -
        - {{include file="field_select.tpl" field=$schema}} - - {{if $expert}} - {{include file="field_colorinput.tpl" field=$nav_bg}} - {{include file="field_colorinput.tpl" field=$nav_gradient_top}} - {{include file="field_colorinput.tpl" field=$nav_gradient_bottom}} - {{include file="field_colorinput.tpl" field=$nav_active_gradient_top}} - {{include file="field_colorinput.tpl" field=$nav_active_gradient_bottom}} - {{include file="field_colorinput.tpl" field=$nav_bd}} - {{include file="field_colorinput.tpl" field=$nav_icon_colour}} - {{include file="field_colorinput.tpl" field=$nav_active_icon_colour}} - {{include file="field_input.tpl" field=$nav_min_opacity}} - {{include file="field_colorinput.tpl" field=$bgcolour}} - {{include file="field_colorinput.tpl" field=$background_image}} - {{include file="field_colorinput.tpl" field=$item_colour}} - {{include file="field_colorinput.tpl" field=$comment_item_colour}} - {{include file="field_colorinput.tpl" field=$comment_border_colour}} - {{include file="field_input.tpl" field=$comment_indent}} - {{/if}} - - {{include file="field_input.tpl" field=$body_font_size}} - - {{if $expert}} - {{include file="field_input.tpl" field=$font_size}} - {{include file="field_colorinput.tpl" field=$font_colour}} - {{include file="field_colorinput.tpl" field=$link_colour}} - {{include file="field_colorinput.tpl" field=$banner_colour}} - {{include file="field_colorinput.tpl" field=$toolicon_colour}} - {{include file="field_colorinput.tpl" field=$toolicon_activecolour}} - {{include file="field_input.tpl" field=$radius}} - {{include file="field_input.tpl" field=$shadow}} - {{include file="field_input.tpl" field=$top_photo}} - {{include file="field_input.tpl" field=$reply_photo}} - {{include file="field_input.tpl" field=$converse_width}} - {{include file="field_checkbox.tpl" field=$converse_center}} - {{/if}} - - {{include file="field_checkbox.tpl" field=$narrow_navbar}} - - {{if $expert}} - - {{/if}} -
        - -
        -
        -
        +{{include file="field_select.tpl" field=$schema}} +{{if $expert}} + {{include file="field_colorinput.tpl" field=$nav_bg}} + {{include file="field_colorinput.tpl" field=$nav_gradient_top}} + {{include file="field_colorinput.tpl" field=$nav_gradient_bottom}} + {{include file="field_colorinput.tpl" field=$nav_active_gradient_top}} + {{include file="field_colorinput.tpl" field=$nav_active_gradient_bottom}} + {{include file="field_colorinput.tpl" field=$nav_bd}} + {{include file="field_colorinput.tpl" field=$nav_icon_colour}} + {{include file="field_colorinput.tpl" field=$nav_active_icon_colour}} + {{include file="field_input.tpl" field=$nav_min_opacity}} + {{include file="field_colorinput.tpl" field=$bgcolour}} + {{include file="field_colorinput.tpl" field=$background_image}} + {{include file="field_colorinput.tpl" field=$item_colour}} + {{include file="field_colorinput.tpl" field=$comment_item_colour}} + {{include file="field_colorinput.tpl" field=$comment_border_colour}} + {{include file="field_input.tpl" field=$comment_indent}} +{{/if}} +{{include file="field_input.tpl" field=$body_font_size}} +{{if $expert}} + {{include file="field_input.tpl" field=$font_size}} + {{include file="field_colorinput.tpl" field=$font_colour}} + {{include file="field_colorinput.tpl" field=$link_colour}} + {{include file="field_colorinput.tpl" field=$banner_colour}} + {{include file="field_colorinput.tpl" field=$toolicon_colour}} + {{include file="field_colorinput.tpl" field=$toolicon_activecolour}} + {{include file="field_input.tpl" field=$radius}} + {{include file="field_input.tpl" field=$shadow}} + {{include file="field_input.tpl" field=$top_photo}} + {{include file="field_input.tpl" field=$reply_photo}} + {{include file="field_input.tpl" field=$converse_width}} + {{include file="field_checkbox.tpl" field=$converse_center}} +{{/if}} +{{include file="field_checkbox.tpl" field=$narrow_navbar}} +{{if $expert}} + +{{/if}} +
        +
        diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index d27ea15e0..6532b4ec1 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -17,12 +17,12 @@
        - {{if $theme}} - {{include file="field_themeselect.tpl" field=$theme}} - {{/if}} - {{if $mobile_theme}} - {{include file="field_themeselect.tpl" field=$mobile_theme}} - {{/if}} + {{if $theme}} + {{include file="field_themeselect.tpl" field=$theme}} + {{/if}} + {{if $mobile_theme}} + {{include file="field_themeselect.tpl" field=$mobile_theme}} + {{/if}}
        @@ -30,9 +30,22 @@
        {{/if}} - {{if $theme_config}} - {{$theme_config}} - {{/if}} +
        + +
        +
        + {{if $theme_config}} + {{$theme_config}} + {{/if}} +
        +
        +
        -
        +
        - {{include file="field_input.tpl" field=$ajaxint}} - {{include file="field_input.tpl" field=$itemspage}} - {{include file="field_input.tpl" field=$channel_divmore_height}} - {{include file="field_input.tpl" field=$network_divmore_height}} - {{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}} - {{include file="field_checkbox.tpl" field=$user_scalable}} - {{if $expert}} -
        + {{include file="field_input.tpl" field=$ajaxint}} + {{include file="field_input.tpl" field=$itemspage}} + {{include file="field_input.tpl" field=$channel_divmore_height}} + {{include file="field_input.tpl" field=$network_divmore_height}} + {{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}} + {{include file="field_checkbox.tpl" field=$user_scalable}} + {{if $expert}} + - {{/if}} +
        + {{/if}}
        -- cgit v1.2.3 From 9bbf509ede626223c53a3cf22191559aae4815d1 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 15:07:05 -0800 Subject: should be -ne --- util/add_addon_repo | 3 ++- util/add_theme_repo | 2 +- version.inc | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/util/add_addon_repo b/util/add_addon_repo index 130c0a0cd..4979c06bc 100755 --- a/util/add_addon_repo +++ b/util/add_addon_repo @@ -8,12 +8,13 @@ fi mkdir -p extend/addon/$2 mkdir addon > /dev/null 2>&1 git clone $1 extend/addon/$2 -if [ $? -eq 0 ]; then +if [ $? -ne 0 ]; then exit $? fi filelist=(`ls extend/addon/$2`) + cd addon for a in "${filelist[@]}" ; do base=`basename $a` diff --git a/util/add_theme_repo b/util/add_theme_repo index d2e4b21a5..70a8c6432 100755 --- a/util/add_theme_repo +++ b/util/add_theme_repo @@ -8,7 +8,7 @@ fi mkdir -p extend/theme/$2 git clone $1 extend/theme/$2 -if [ $? -eq '0' ]; then +if [ $? -ne 0 ]; then exit $? fi diff --git a/version.inc b/version.inc index 2bdb6992f..1916c4b26 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-04.961 +2015-03-05.962 -- cgit v1.2.3 From 2b45bf190869f8ad489c2f0e82597b7ffb315f0f Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 6 Mar 2015 00:21:32 +0100 Subject: RedDAV: fix renaming files. How can no one have spot this bug yet?!? Is no one using WebDAV? Took me 2 days to figure out it was not my RedDAV rewrite, but that this should have never worked. :-! --- include/RedDAV/RedFile.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/RedDAV/RedFile.php b/include/RedDAV/RedFile.php index 9ce6490a7..b7aa5473a 100644 --- a/include/RedDAV/RedFile.php +++ b/include/RedDAV/RedFile.php @@ -80,7 +80,8 @@ class RedFile extends DAV\Node implements DAV\IFile { $newName = str_replace('/', '%2F', $newName); $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND id = %d", - dbesc($this->data['filename']), + dbesc($newName), + dbesc($this->data['hash']), intval($this->data['id']) ); } -- cgit v1.2.3 From ec5c989352c91e050d306d234f638bb3fc7f6f6d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 15:53:25 -0800 Subject: make destructive queue management functions an expert option --- mod/admin.php | 5 ++++- view/tpl/admin_queue.tpl | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index 35e43252c..13cf371b0 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -590,6 +590,8 @@ function admin_page_dbsync(&$a) { function admin_page_queue($a) { $o = ''; + $expert = ((array_key_exists('expert',$_REQUEST)) ? intval($_REQUEST['expert']) : 0); + if($_REQUEST['drophub']) { require_once('hubloc.php'); hubloc_mark_as_down($_REQUEST['drophub']); @@ -620,7 +622,8 @@ function admin_page_queue($a) { '$empty' => t('Empty queue for this hub'), '$lastconn' => t('Last known contact'), '$hasentries' => ((count($r)) ? true : false), - '$entries' => $r + '$entries' => $r, + '$expert' => $expert )); return $o; diff --git a/view/tpl/admin_queue.tpl b/view/tpl/admin_queue.tpl index 2abe87db9..6c2df7e31 100644 --- a/view/tpl/admin_queue.tpl +++ b/view/tpl/admin_queue.tpl @@ -6,7 +6,7 @@ {{foreach $entries as $e}} -{{$e.total}}{{$e.outq_posturl}} +{{$e.total}}{{$e.outq_posturl}}{{if $expert}}{{/if}} {{/foreach}} -- cgit v1.2.3 From 22391a24378cae317cdf62dc4be4b31b68e8191f Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 18:24:49 -0800 Subject: straighten out some directory stuff, which required some Comanche structural changes --- boot.php | 22 +++++++++++++-- include/comanche.php | 66 ++++++++++++++++++++++++--------------------- include/dir_fns.php | 26 ++++++++++++++++-- include/widgets.php | 3 --- mod/directory.php | 22 +++++++++++++++ view/pdl/mod_directory.pdl | 1 - view/tpl/dir_sort_links.tpl | 5 ++++ 7 files changed, 106 insertions(+), 39 deletions(-) diff --git a/boot.php b/boot.php index 5f8dd20fd..d89b1bd41 100755 --- a/boot.php +++ b/boot.php @@ -654,7 +654,7 @@ class App { public $profile_uid = 0; // If applicable, the channel_id of the "page owner" public $poi = null; // "person of interest", generally a referenced connection public $layout = array(); // Comanche parsed template - + public $pdl = null; private $perms = null; // observer permissions private $widgets = array(); // widgets for this page //private $widgetlist = null; // widget ordering and inclusion directives @@ -2047,11 +2047,24 @@ function load_pdl(&$a) { if((! $s) && (($p = theme_include($n)) != '')) $s = @file_get_contents($p); - if($s) + if($s) { comanche_parser($a, $s); + $a->pdl = $s; + } + } +} + + +function exec_pdl(&$a) { + require_once('include/comanche.php'); + + if($a->pdl) { + comanche_parser($a, $a->pdl,1); } } + + /** * @brief build the page. * @@ -2061,6 +2074,9 @@ function load_pdl(&$a) { */ function construct_page(&$a) { + + exec_pdl($a); + $comanche = ((count($a->layout)) ? true : false); require_once(theme_include('theme_init.php')); @@ -2074,6 +2090,7 @@ function construct_page(&$a) { } if($comanche) { + if($a->layout['nav']) { $a->page['nav'] = get_custom_nav($a, $a->layout['nav']); } @@ -2124,6 +2141,7 @@ function construct_page(&$a) { call_hooks('construct_page', $arr); $a->layout = $arr['layout']; + foreach($a->layout as $k => $v) { if((strpos($k, 'region_') === 0) && strlen($v)) { if(strpos($v, '$region_') !== false) { diff --git a/include/comanche.php b/include/comanche.php index e8d3ca5a1..1ddabb693 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -43,7 +43,7 @@ function pdl_selector($uid, $current="") { -function comanche_parser(&$a, $s) { +function comanche_parser(&$a, $s, $pass = 0) { $matches = array(); $cnt = preg_match_all("/\[comment\](.*?)\[\/comment\]/ism", $s, $matches, PREG_SET_ORDER); @@ -53,43 +53,47 @@ function comanche_parser(&$a, $s) { } } - $cnt = preg_match("/\[layout\](.*?)\[\/layout\]/ism", $s, $matches); - if($cnt) - $a->page['template'] = trim($matches[1]); + if($pass == 0) { + $cnt = preg_match("/\[layout\](.*?)\[\/layout\]/ism", $s, $matches); + if($cnt) + $a->page['template'] = trim($matches[1]); - $cnt = preg_match("/\[template=(.*?)\](.*?)\[\/template\]/ism", $s, $matches); - if($cnt) { - $a->page['template'] = trim($matches[2]); - $a->page['template_style'] = trim($matches[2]) . '_' . $matches[1]; - } + $cnt = preg_match("/\[template=(.*?)\](.*?)\[\/template\]/ism", $s, $matches); + if($cnt) { + $a->page['template'] = trim($matches[2]); + $a->page['template_style'] = trim($matches[2]) . '_' . $matches[1]; + } - $cnt = preg_match("/\[template\](.*?)\[\/template\]/ism", $s, $matches); - if($cnt) { - $a->page['template'] = trim($matches[1]); - } + $cnt = preg_match("/\[template\](.*?)\[\/template\]/ism", $s, $matches); + if($cnt) { + $a->page['template'] = trim($matches[1]); + } - $cnt = preg_match("/\[theme=(.*?)\](.*?)\[\/theme\]/ism", $s, $matches); - if($cnt) { - $a->layout['schema'] = trim($matches[1]); - $a->layout['theme'] = trim($matches[2]); - } + $cnt = preg_match("/\[theme=(.*?)\](.*?)\[\/theme\]/ism", $s, $matches); + if($cnt) { + $a->layout['schema'] = trim($matches[1]); + $a->layout['theme'] = trim($matches[2]); + } - $cnt = preg_match("/\[theme\](.*?)\[\/theme\]/ism", $s, $matches); - if($cnt) - $a->layout['theme'] = trim($matches[1]); + $cnt = preg_match("/\[theme\](.*?)\[\/theme\]/ism", $s, $matches); + if($cnt) + $a->layout['theme'] = trim($matches[1]); - $cnt = preg_match_all("/\[region=(.*?)\](.*?)\[\/region\]/ism", $s, $matches, PREG_SET_ORDER); - if($cnt) { - foreach($matches as $mtch) { - $a->layout['region_' . $mtch[1]] = comanche_region($a,$mtch[2]); - } } + else { + $cnt = preg_match_all("/\[region=(.*?)\](.*?)\[\/region\]/ism", $s, $matches, PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $a->layout['region_' . $mtch[1]] = comanche_region($a,$mtch[2]); + } + } - $cnt = preg_match_all("/\[webpage\](.*?)\[\/webpage\]/ism", $s, $matches, PREG_SET_ORDER); - if($cnt) { - // only the last webpage definition is used if there is more than one - foreach($matches as $mtch) { - $a->layout['webpage'] = comanche_webpage($a,$mtch[1]); + $cnt = preg_match_all("/\[webpage\](.*?)\[\/webpage\]/ism", $s, $matches, PREG_SET_ORDER); + if($cnt) { + // only the last webpage definition is used if there is more than one + foreach($matches as $mtch) { + $a->layout['webpage'] = comanche_webpage($a,$mtch[1]); + } } } diff --git a/include/dir_fns.php b/include/dir_fns.php index 37a7c04e7..468e28ae5 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -74,7 +74,26 @@ function check_upstream_directory() { function dir_sort_links() { - // Build urls without order and pubforums so it's easy to tack on the changed value + $safe_mode = 1; + + $observer = get_observer_hash(); + + if ($observer) + $safe_mode = get_xconfig($observer,'directory','safe_mode'); + if($safe_mode === false) + $safe_mode = 1; + + if(! $safe_mode) + $toggle = t('Enable Safe Search'); + else + $toggle = t('Disable Safe Search'); + + if($observer) + $globaldir = get_xconfig($observer,'directory','globaldir'); + else + $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); + + // Build urls without order and pubforums so it's easy to tack on the changed value // Probably there's an easier way to do this $current_order = (($_REQUEST['order']) ? $_REQUEST['order'] : 'normal'); @@ -104,7 +123,10 @@ function dir_sort_links() { '$selected_sort' => $current_order, '$sorturl' => $sorturl, '$forumsurl' => $forumsurl, - + '$safemode' => t('Safe Mode'), + '$toggle' => $toggle, + '$globaldir' => $globaldir, + '$localdir' => t('This Website Only'), )); return $o; } diff --git a/include/widgets.php b/include/widgets.php index fbbc74224..17c740967 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -605,9 +605,6 @@ function widget_vcard($arr) { * The following directory widgets are only useful on the directory page */ -function widget_dirsafemode($arr) { - return dir_safe_mode(); -} function widget_dirsort($arr) { return dir_sort_links(); diff --git a/mod/directory.php b/mod/directory.php index bc5aa41e2..dfc60b190 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -14,6 +14,20 @@ function directory_init(&$a) { dbesc($_GET['ignore']) ); } + + $observer = get_observer_hash(); + $global_changed = false; + + if(array_key_exists('global',$_REQUEST)) { + $globaldir = intval($_REQUEST['global']); + $global_changed = true; + } + if($global_changed) { + $_SESSION['globaldir'] = $globaldir; + if($observer) + set_xconfig($observer,'directory','globaldir',$globaldir); + } + } function directory_content(&$a) { @@ -26,6 +40,11 @@ function directory_content(&$a) { $safe_mode = 1; $observer = get_observer_hash(); + + if($observer) + $globaldir = get_xconfig($observer,'directory','globaldir'); + else + $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); if($observer) { $safe_mode = get_xconfig($observer,'directory','safe_mode'); @@ -120,6 +139,9 @@ function directory_content(&$a) { if($token) $query .= '&t=' . $token; + if(! $globaldir) + $query .= '&hub=' . get_app()->get_hostname(); + if($search) $query .= '&name=' . urlencode($search) . '&keywords=' . urlencode($search); if(strpos($search,'@')) diff --git a/view/pdl/mod_directory.pdl b/view/pdl/mod_directory.pdl index 0bc8ed936..452ab66c7 100644 --- a/view/pdl/mod_directory.pdl +++ b/view/pdl/mod_directory.pdl @@ -1,6 +1,5 @@ [region=aside] [widget=findpeople][/widget] -[widget=dirsafemode][/widget] [widget=dirsort][/widget] [widget=dirtags][/widget] [widget=suggestions][/widget] diff --git a/view/tpl/dir_sort_links.tpl b/view/tpl/dir_sort_links.tpl index d9ecd22c6..62cf7ff1b 100644 --- a/view/tpl/dir_sort_links.tpl +++ b/view/tpl/dir_sort_links.tpl @@ -1,5 +1,8 @@ -- cgit v1.2.3 From ea8ea5a351d36b3575c98ccb0dda58805186d154 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 18:30:15 -0800 Subject: reverse the logic of "don't show emoticons" setting which seems awkward --- mod/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/settings.php b/mod/settings.php index bb0bfacbd..3dea83bb6 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -853,7 +853,7 @@ function settings_content(&$a) { '$user_scalable' => array('user_scalable', t("Enable user zoom on mobile devices"), $user_scalable, '', $yes_no), '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')), '$itemspage' => array('itemspage', t("Maximum number of conversations to load at any time:"), $itemspage, t('Maximum of 100 items')), - '$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, '', $yes_no), + '$nosmile' => array('nosmile', t("Show emoticons (smilies) as images"), 1-intval($nosmile), '', $yes_no), '$title_tosource' => array('title_tosource', t("Link post titles to source"), $title_tosource, '', $yes_no), '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, -- cgit v1.2.3 From bd4d2f3b44face9d265c28c84e9ca9eb85d1ee7d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 19:16:50 -0800 Subject: make alpahabetic searches start with A --- mod/dirsearch.php | 41 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 12abfafb8..01cbccbed 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -186,8 +186,10 @@ function dirsearch_content(&$a) { } - if($sort_order == 'normal') + if($sort_order == 'normal') { $order = " order by xchan_name asc "; + $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) > 64 "; + } elseif($sort_order == 'reverse') $order = " order by xchan_name desc "; elseif($sort_order == 'reversedate') @@ -238,15 +240,44 @@ function dirsearch_content(&$a) { json_return_and_die($spkt); } else { - $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $safesql $order $qlimit ", + + // The query mangling is designed to make alphabetic searches start with 'A' and not precede real names + // with those containing a bunch of punctuation + + if($sort_order == 'normal') { + $sql = $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) > 64 "; + } + else { + $sql = $safesql; + } + + $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $sql $order $qlimit ", intval(XCHAN_FLAGS_HIDDEN), intval(XCHAN_FLAGS_ORPHAN), intval(XCHAN_FLAGS_DELETED) ); - } - $ret['page'] = $page + 1; - $ret['records'] = count($r); + $ret['page'] = $page + 1; + $ret['records'] = count($r); + + + if(! $r) { + + if($sort_order == 'normal') { + $sql = $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) <= 64 "; + + $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $sql $order $qlimit ", + intval(XCHAN_FLAGS_HIDDEN), + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_DELETED) + ); + + $ret['page'] = $page + 1; + $ret['records'] = count($r); + + } + } + } if($r) { -- cgit v1.2.3 From f6da235a7d0eae48f7b691a139825708b99dcd75 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Mar 2015 23:31:01 -0800 Subject: major cleanup of directory options --- include/dir_fns.php | 11 +++++++++-- mod/directory.php | 30 +++++++++++++++++------------- mod/dirsearch.php | 42 ++++++++++-------------------------------- view/tpl/dir_sort_links.tpl | 10 +++++----- view/tpl/field_checkbox.tpl | 2 +- 5 files changed, 42 insertions(+), 53 deletions(-) diff --git a/include/dir_fns.php b/include/dir_fns.php index 468e28ae5..cd6d452d6 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -80,6 +80,8 @@ function dir_sort_links() { if ($observer) $safe_mode = get_xconfig($observer,'directory','safe_mode'); + else + $safe_mode = ((array_key_exists('safemode',$_SESSION)) ? intval($_SESSION['safemode']) : false); if($safe_mode === false) $safe_mode = 1; @@ -96,7 +98,7 @@ function dir_sort_links() { // Build urls without order and pubforums so it's easy to tack on the changed value // Probably there's an easier way to do this - $current_order = (($_REQUEST['order']) ? $_REQUEST['order'] : 'normal'); + $current_order = (($_REQUEST['order']) ? $_REQUEST['order'] : 'date'); $url = 'directory?f='; $tmp = array_merge($_GET,$_POST); @@ -107,6 +109,8 @@ function dir_sort_links() { $tmp = array_merge($_GET,$_POST); unset($tmp['pubforums']); + unset($tmp['global']); + unset($tmp['safe']); unset($tmp['q']); unset($tmp['f']); $forumsurl = $url . http_build_query($tmp); @@ -125,7 +129,10 @@ function dir_sort_links() { '$forumsurl' => $forumsurl, '$safemode' => t('Safe Mode'), '$toggle' => $toggle, - '$globaldir' => $globaldir, + '$safemode' => array('safemode', t('Safe Mode'),$safe_mode,'','',' onchange=\'window.location.href="' . $forumsurl . '&safe="+(this.checked ? 1 : 0)\''), + + '$pubforums' => array('pubforums', t('Public Forums Only'),(x($_REQUEST,'pubforums') ? $_REQUEST['pubforums'] : ''),'','',' onchange=\'window.location.href="' . $forumsurl . '&pubforums="+(this.checked ? 1 : 0)\''), + '$globaldir' => array('globaldir', t('This Website Only'), 1-intval($globaldir),'','',' onchange=\'window.location.href="' . $forumsurl . '&global="+(this.checked ? 0 : 1)\''), '$localdir' => t('This Website Only'), )); return $o; diff --git a/mod/directory.php b/mod/directory.php index dfc60b190..17a1776fe 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -17,6 +17,7 @@ function directory_init(&$a) { $observer = get_observer_hash(); $global_changed = false; + $safe_changed = false; if(array_key_exists('global',$_REQUEST)) { $globaldir = intval($_REQUEST['global']); @@ -28,6 +29,16 @@ function directory_init(&$a) { set_xconfig($observer,'directory','globaldir',$globaldir); } + if(array_key_exists('safe',$_REQUEST)) { + $safemode = intval($_REQUEST['safe']); + $safe_changed = true; + } + if($safe_changed) { + $_SESSION['safemode'] = $safemode; + if($observer) + set_xconfig($observer,'directory','safe_mode',$safemode); + } + } function directory_content(&$a) { @@ -46,20 +57,18 @@ function directory_content(&$a) { else $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); - if($observer) { + if($observer) $safe_mode = get_xconfig($observer,'directory','safe_mode'); - } + else + $safe_mode = ((array_key_exists('safemode',$_SESSION)) ? intval($_SESSION['safemode']) : false); if($safe_mode === false) $safe_mode = 1; - else - $safe_mode = intval($safe_mode); - - if(x($_REQUEST,'safe')) - $safe_mode = (intval($_REQUEST['safe'])); $pubforums = null; if(array_key_exists('pubforums',$_REQUEST)) $pubforums = intval($_REQUEST['pubforums']); + if(! $pubforums) + $pubforums = null; $o = ''; nav_set_selected('directory'); @@ -153,15 +162,10 @@ function directory_content(&$a) { if(! is_null($pubforums)) $query .= '&pubforums=' . intval($pubforums); - if(! is_null($pubforums)) - $query .= '&pubforums=' . intval($pubforums); - - $sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : 'normal'); + $sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : 'date'); if($sort_order) $query .= '&order=' . urlencode($sort_order); - - if($a->pager['page'] != 1) $query .= '&p=' . $a->pager['page']; diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 01cbccbed..e734423a6 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -119,7 +119,7 @@ function dirsearch_content(&$a) { $sql_extra .= dir_query_build($joiner,'xprof_keywords',$keywords); if($forums) - $sql_extra .= dir_flag_build($joiner,'xprof_flags',XCHAN_FLAGS_PUBFORUM, $forums); + $sql_extra .= dir_flag_build(' AND ','xchan_flags',XCHAN_FLAGS_PUBFORUM, $forums); // we only support an age range currently. You must set both agege @@ -188,6 +188,11 @@ function dirsearch_content(&$a) { if($sort_order == 'normal') { $order = " order by xchan_name asc "; + + // Start the alphabetic search at 'A' + // This will make a handful of channels whose names begin with + // punctuation un-searchable in this mode + $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) > 64 "; } elseif($sort_order == 'reverse') @@ -241,49 +246,22 @@ function dirsearch_content(&$a) { } else { - // The query mangling is designed to make alphabetic searches start with 'A' and not precede real names - // with those containing a bunch of punctuation - - if($sort_order == 'normal') { - $sql = $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) > 64 "; - } - else { - $sql = $safesql; - } - - $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $sql $order $qlimit ", + $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $safesql $order $qlimit ", intval(XCHAN_FLAGS_HIDDEN), intval(XCHAN_FLAGS_ORPHAN), intval(XCHAN_FLAGS_DELETED) ); + $ret['page'] = $page + 1; $ret['records'] = count($r); - - - if(! $r) { - - if($sort_order == 'normal') { - $sql = $safesql .= " and ascii(substr(xchan_name FROM 1 FOR 1)) <= 64 "; - - $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where ( $logic $sql_extra ) and xchan_network = 'zot' and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 and not ( xchan_flags & %d )>0 $sql $order $qlimit ", - intval(XCHAN_FLAGS_HIDDEN), - intval(XCHAN_FLAGS_ORPHAN), - intval(XCHAN_FLAGS_DELETED) - ); - - $ret['page'] = $page + 1; - $ret['records'] = count($r); - - } - } } + if($r) { $entries = array(); - foreach($r as $rr) { $entry = array(); @@ -348,7 +326,7 @@ function dir_query_build($joiner,$field,$s) { } function dir_flag_build($joiner,$field,$bit,$s) { - return dbesc($joiner) . " ( " . dbesc('xchan_flags') . " & " . intval($bit) . " ) " . ((intval($s)) ? '>' : '=' ) . " 0 "; + return dbesc($joiner) . " ( " . dbesc($field) . " & " . intval($bit) . " ) " . ((intval($s)) ? '>' : '=' ) . " 0 "; } diff --git a/view/tpl/dir_sort_links.tpl b/view/tpl/dir_sort_links.tpl index 62cf7ff1b..5cefe2f28 100644 --- a/view/tpl/dir_sort_links.tpl +++ b/view/tpl/dir_sort_links.tpl @@ -1,15 +1,15 @@ diff --git a/view/tpl/field_checkbox.tpl b/view/tpl/field_checkbox.tpl index b6edd8288..514626d5f 100755 --- a/view/tpl/field_checkbox.tpl +++ b/view/tpl/field_checkbox.tpl @@ -1,6 +1,6 @@
        -
        +
        {{$field.3}}
        -- cgit v1.2.3 From 73891dc5824f7495ce1103f826b88f3b8750f70f Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 6 Mar 2015 03:04:04 -0800 Subject: reverse smilie storage also --- mod/settings.php | 2 +- util/messages.po | 3152 +++++++++++++++++++++++++++++++++++++++++++----------- version.inc | 2 +- 3 files changed, 2531 insertions(+), 625 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 3dea83bb6..595878543 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -185,7 +185,7 @@ function settings_post(&$a) { set_pconfig(local_channel(),'system','user_scalable',$user_scalable); set_pconfig(local_channel(),'system','update_interval', $browser_update); set_pconfig(local_channel(),'system','itemspage', $itemspage); - set_pconfig(local_channel(),'system','no_smilies',$nosmile); + set_pconfig(local_channel(),'system','no_smilies',1-intval($nosmile)); set_pconfig(local_channel(),'system','title_tosource',$title_tosource); set_pconfig(local_channel(),'system','channel_list_mode', $channel_list_mode); set_pconfig(local_channel(),'system','network_list_mode', $network_list_mode); diff --git a/util/messages.po b/util/messages.po index 0c8f6d4fc..93460c397 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-02-27.956\n" +"Project-Id-Version: 2015-03-06.963\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 00:03-0800\n" +"POT-Creation-Date: 2015-03-06 00:05-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,76 +25,14 @@ msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 #: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 #: ../../mod/profile_photo.php:424 ../../mod/photos.php:91 -#: ../../mod/photos.php:625 +#: ../../mod/photos.php:625 ../../addon.old/openclipatar/openclipatar.php:222 msgid "Profile Photos" msgstr "" -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/items.php:4083 ../../include/chat.php:116 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/delegate.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:219 ../../mod/network.php:12 -#: ../../mod/connedit.php:321 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/editpost.php:13 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/rate.php:110 ../../mod/regmod.php:17 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/register.php:72 -#: ../../mod/photos.php:68 ../../mod/message.php:16 ../../mod/mitem.php:106 -#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 -#: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/settings.php:560 ../../mod/suggest.php:26 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:190 ../../index.php:393 -msgid "Permission denied." -msgstr "" - -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "" - -#: ../../include/photos.php:359 -msgid "Upload New Photos" +#: ../../include/security.php:349 +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/notify.php:23 @@ -117,7 +55,7 @@ msgstr "" msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/group.php:254 ../../mod/admin.php:764 +#: ../../include/group.php:254 ../../mod/admin.php:787 msgid "All Channels" msgstr "" @@ -185,9 +123,9 @@ msgstr "" #: ../../include/identity.php:387 ../../include/identity.php:388 #: ../../include/identity.php:395 ../../include/widgets.php:428 #: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:335 ../../mod/settings.php:339 -#: ../../mod/settings.php:340 ../../mod/settings.php:343 -#: ../../mod/settings.php:354 +#: ../../mod/settings.php:336 ../../mod/settings.php:340 +#: ../../mod/settings.php:341 ../../mod/settings.php:344 +#: ../../mod/settings.php:355 msgid "Friends" msgstr "" @@ -207,7 +145,7 @@ msgstr "" #: ../../include/identity.php:840 ../../include/widgets.php:136 #: ../../include/widgets.php:175 ../../include/Contact.php:107 #: ../../include/conversation.php:940 ../../mod/match.php:62 -#: ../../mod/directory.php:276 ../../mod/suggest.php:51 +#: ../../mod/directory.php:302 ../../mod/suggest.php:51 msgid "Connect" msgstr "" @@ -228,6 +166,7 @@ msgid "Create New Profile" msgstr "" #: ../../include/identity.php:865 ../../include/nav.php:95 +#: ../../addon.old/openclipatar/openclipatar.php:57 msgid "Edit Profile" msgstr "" @@ -246,7 +185,7 @@ msgstr "" #: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 #: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:208 +#: ../../mod/directory.php:234 msgid "Location:" msgstr "" @@ -305,7 +244,7 @@ msgstr "" msgid "Profile" msgstr "" -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 +#: ../../include/identity.php:1137 ../../mod/settings.php:1049 msgid "Full Name:" msgstr "" @@ -313,7 +252,7 @@ msgstr "" msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1155 ../../include/taxonomy.php:385 +#: ../../include/identity.php:1155 ../../include/taxonomy.php:391 #: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 #: ../../mod/photos.php:1001 msgctxt "noun" @@ -432,7 +371,7 @@ msgstr "" #: ../../mod/thing.php:233 ../../mod/editlayout.php:139 #: ../../mod/editwebpage.php:174 ../../mod/menu.php:78 #: ../../mod/webpages.php:162 ../../mod/layouts.php:167 -#: ../../mod/settings.php:645 +#: ../../mod/settings.php:646 msgid "Edit" msgstr "" @@ -467,7 +406,7 @@ msgstr "" msgid "Edited" msgstr "" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 +#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 #: ../../include/contact_widgets.php:92 msgid "Categories" msgstr "" @@ -528,7 +467,7 @@ msgstr "" #: ../../include/widgets.php:192 ../../include/text.php:838 #: ../../include/text.php:850 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1368 ../../mod/admin.php:1389 +#: ../../mod/filer.php:50 ../../mod/admin.php:1391 ../../mod/admin.php:1412 msgid "Save" msgstr "" @@ -624,7 +563,8 @@ msgid "Channel Sources" msgstr "" #: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:980 ../../mod/admin.php:1185 +#: ../../include/apps.php:134 ../../mod/admin.php:1003 +#: ../../mod/admin.php:1208 msgid "Settings" msgstr "" @@ -641,31 +581,31 @@ msgstr "" msgid "New Message" msgstr "" -#: ../../include/widgets.php:634 +#: ../../include/widgets.php:631 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:654 +#: ../../include/widgets.php:651 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:674 +#: ../../include/widgets.php:671 msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:801 ../../include/widgets.php:859 +#: ../../include/widgets.php:798 ../../include/widgets.php:856 msgid "photo/image" msgstr "" -#: ../../include/widgets.php:954 ../../include/widgets.php:956 +#: ../../include/widgets.php:951 ../../include/widgets.php:953 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:960 +#: ../../include/widgets.php:957 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:971 +#: ../../include/widgets.php:968 msgid "Public Hubs" msgstr "" @@ -1015,6 +955,51 @@ msgstr "" msgid "Collection" msgstr "" +#: ../../include/attach.php:137 ../../include/attach.php:184 +#: ../../include/attach.php:247 ../../include/attach.php:261 +#: ../../include/attach.php:301 ../../include/attach.php:315 +#: ../../include/attach.php:339 ../../include/attach.php:532 +#: ../../include/attach.php:606 ../../include/photos.php:15 +#: ../../include/items.php:4093 ../../include/chat.php:116 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 +#: ../../mod/manage.php:6 ../../mod/delegate.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 +#: ../../mod/events.php:219 ../../mod/network.php:12 +#: ../../mod/connedit.php:321 ../../mod/group.php:9 ../../mod/setup.php:207 +#: ../../mod/common.php:35 ../../mod/editpost.php:13 +#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 +#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 +#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/rate.php:110 ../../mod/regmod.php:17 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 +#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 +#: ../../mod/poke.php:128 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 +#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:72 +#: ../../mod/photos.php:68 ../../mod/message.php:16 ../../mod/mitem.php:106 +#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 +#: ../../mod/layouts.php:85 ../../mod/mail.php:114 +#: ../../mod/notifications.php:66 ../../mod/settings.php:561 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/appman.php:66 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:90 +#: ../../mod/channel.php:199 ../../mod/channel.php:242 +#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 +#: ../../mod/sharedwithme.php:7 ../../addon.old/pumpio/pumpio.php:38 +#: ../../addon.old/goblin/goblin.php:38 ../../index.php:190 +#: ../../index.php:393 +msgid "Permission denied." +msgstr "" + #: ../../include/attach.php:242 ../../include/attach.php:296 msgid "Item was not found." msgstr "" @@ -1073,6 +1058,19 @@ msgstr "" msgid "database storage failed." msgstr "" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2070 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -1151,89 +1149,101 @@ msgstr "" #: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 #: ../../mod/filestorage.php:155 ../../mod/fsuggest.php:108 #: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:420 -#: ../../mod/admin.php:752 ../../mod/admin.php:888 ../../mod/admin.php:1021 -#: ../../mod/admin.php:1220 ../../mod/admin.php:1307 ../../mod/photos.php:565 +#: ../../mod/admin.php:775 ../../mod/admin.php:911 ../../mod/admin.php:1044 +#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 ../../mod/photos.php:565 #: ../../mod/photos.php:642 ../../mod/photos.php:923 ../../mod/photos.php:963 #: ../../mod/photos.php:1081 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/appman.php:99 ../../mod/settings.php:583 -#: ../../mod/settings.php:708 ../../mod/settings.php:737 -#: ../../mod/settings.php:760 ../../mod/settings.php:842 -#: ../../mod/settings.php:1038 ../../mod/poll.php:68 +#: ../../mod/settings.php:584 ../../mod/settings.php:714 +#: ../../mod/settings.php:742 ../../mod/settings.php:765 +#: ../../mod/settings.php:847 ../../mod/settings.php:1043 +#: ../../mod/appman.php:99 ../../mod/poll.php:68 ../../mod/bulksetclose.php:24 #: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 +#: ../../addon.old/openstreetmap/openstreetmap.php:173 +#: ../../addon.old/piwik/piwik.php:94 +#: ../../addon.old/statusnet/statusnet.php:790 +#: ../../addon.old/webrtc/webrtc.php:26 +#: ../../addon.old/openclipatar/openclipatar.php:52 +#: ../../addon.old/likebanner/likebanner.php:46 +#: ../../addon.old/frphotos/frphotos.php:95 +#: ../../addon.old/goblin/goblin.php:252 msgid "Submit" msgstr "" -#: ../../include/js_strings.php:24 -msgid "timeago.prefixAgo" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" #: ../../include/js_strings.php:25 -msgid "timeago.prefixFromNow" +msgid "timeago.prefixAgo" msgstr "" #: ../../include/js_strings.php:26 -msgid "ago" +msgid "timeago.prefixFromNow" msgstr "" #: ../../include/js_strings.php:27 -msgid "from now" +msgid "ago" msgstr "" #: ../../include/js_strings.php:28 -msgid "less than a minute" +msgid "from now" msgstr "" #: ../../include/js_strings.php:29 -msgid "about a minute" +msgid "less than a minute" msgstr "" #: ../../include/js_strings.php:30 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:31 #, php-format msgid "%d minutes" msgstr "" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about an hour" msgstr "" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "about %d hours" msgstr "" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid "a day" msgstr "" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 #, php-format msgid "%d days" msgstr "" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:36 msgid "about a month" msgstr "" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:37 #, php-format msgid "%d months" msgstr "" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:38 msgid "about a year" msgstr "" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:39 #, php-format msgid "%d years" msgstr "" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:40 msgid " " msgstr "" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:41 msgid "timeago.numbers" msgstr "" @@ -1305,8 +1315,8 @@ msgstr "" msgid "Upload" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/admin.php:895 -#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/admin.php:918 +#: ../../mod/settings.php:586 ../../mod/settings.php:612 #: ../../mod/sharedwithme.php:100 msgid "Name" msgstr "" @@ -1326,8 +1336,8 @@ msgstr "" #: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 #: ../../include/conversation.php:645 ../../include/apps.php:255 #: ../../mod/connedit.php:533 ../../mod/group.php:176 ../../mod/thing.php:234 -#: ../../mod/admin.php:759 ../../mod/admin.php:890 ../../mod/photos.php:1044 -#: ../../mod/settings.php:646 +#: ../../mod/admin.php:782 ../../mod/admin.php:913 ../../mod/photos.php:1044 +#: ../../mod/settings.php:647 msgid "Delete" msgstr "" @@ -1344,44 +1354,34 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:299 -msgid "has" +#: ../../include/comanche.php:34 ../../mod/admin.php:361 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" msgstr "" -#: ../../include/taxonomy.php:300 -msgid "want" +#: ../../include/photos.php:104 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/taxonomy.php:300 -msgid "wants" +#: ../../include/photos.php:111 +msgid "Image file is empty." msgstr "" -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" +#: ../../include/photos.php:139 ../../mod/profile_photo.php:217 +msgid "Unable to process image" msgstr "" -#: ../../include/taxonomy.php:301 -msgid "likes" +#: ../../include/photos.php:210 +msgid "Photo storage failed." msgstr "" -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" +#: ../../include/photos.php:358 ../../include/conversation.php:1589 +msgid "Photo Albums" msgstr "" -#: ../../include/taxonomy.php:302 -msgid "dislikes" +#: ../../include/photos.php:362 +msgid "Upload New Photos" msgstr "" #: ../../include/features.php:38 @@ -1629,6 +1629,7 @@ msgstr "" #: ../../include/items.php:382 ../../mod/like.php:270 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/bulksetclose.php:11 ../../addon.old/frphotos/frphotos.php:80 #: ../../index.php:392 msgid "Permission denied" msgstr "" @@ -1670,32 +1671,33 @@ msgstr "" msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:4013 ../../mod/thing.php:76 +#: ../../include/items.php:4023 ../../mod/thing.php:76 #: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:172 ../../mod/admin.php:925 -#: ../../mod/admin.php:1128 +#: ../../mod/viewsrc.php:20 ../../mod/admin.php:172 ../../mod/admin.php:948 +#: ../../mod/admin.php:1151 msgid "Item not found." msgstr "" -#: ../../include/items.php:4466 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4476 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../mod/bulksetclose.php:51 msgid "Collection not found." msgstr "" -#: ../../include/items.php:4481 +#: ../../include/items.php:4491 msgid "Collection is empty." msgstr "" -#: ../../include/items.php:4488 +#: ../../include/items.php:4498 #, php-format msgid "Collection: %s" msgstr "" -#: ../../include/items.php:4499 +#: ../../include/items.php:4509 #, php-format msgid "Connection: %s" msgstr "" -#: ../../include/items.php:4502 +#: ../../include/items.php:4512 msgid "Connection not found." msgstr "" @@ -1735,8 +1737,8 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:755 -#: ../../mod/admin.php:764 ../../boot.php:1554 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:778 +#: ../../mod/admin.php:787 ../../boot.php:1554 msgid "Email" msgstr "" @@ -1812,11 +1814,6 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" -#: ../../include/comanche.php:35 ../../mod/admin.php:361 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "" - #: ../../include/datetime.php:35 msgid "Miscellaneous" msgstr "" @@ -1830,7 +1827,7 @@ msgstr "" msgid "Required" msgstr "" -#: ../../include/datetime.php:231 +#: ../../include/datetime.php:231 ../../boot.php:2350 msgid "never" msgstr "" @@ -1917,7 +1914,7 @@ msgstr "" msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/Contact.php:215 ../../mod/admin.php:675 +#: ../../include/Contact.php:215 ../../mod/admin.php:698 #, php-format msgid "User '%s' deleted" msgstr "" @@ -1942,19 +1939,6 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2063 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - #: ../../include/chat.php:10 msgid "Missing room name" msgstr "" @@ -1993,6 +1977,7 @@ msgstr "" #: ../../include/nav.php:91 ../../include/conversation.php:937 #: ../../mod/connedit.php:484 ../../mod/connedit.php:634 +#: ../../addon.old/openclipatar/openclipatar.php:56 msgid "View Profile" msgstr "" @@ -2102,7 +2087,7 @@ msgid "Search site content" msgstr "" #: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:338 +#: ../../mod/directory.php:364 msgid "Directory" msgstr "" @@ -2228,10 +2213,44 @@ msgstr "" msgid "Please wait..." msgstr "" -#: ../../include/security.php:357 -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/taxonomy.php:222 ../../include/taxonomy.php:243 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:282 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:303 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:303 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:304 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:304 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:305 ../../include/ItemObject.php:254 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:305 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:306 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:306 +msgid "dislikes" msgstr "" #: ../../include/activities.php:39 @@ -2257,44 +2276,49 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/dir_fns.php:96 +#: ../../include/dir_fns.php:89 ../../include/dir_fns.php:148 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:91 ../../include/dir_fns.php:150 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:119 msgid "Directory Options" msgstr "" -#: ../../include/dir_fns.php:97 +#: ../../include/dir_fns.php:120 msgid "Alphabetic" msgstr "" -#: ../../include/dir_fns.php:98 +#: ../../include/dir_fns.php:121 msgid "Reverse Alphabetic" msgstr "" -#: ../../include/dir_fns.php:99 +#: ../../include/dir_fns.php:122 msgid "Newest to Oldest" msgstr "" -#: ../../include/dir_fns.php:100 +#: ../../include/dir_fns.php:123 msgid "Oldest to Newest" msgstr "" -#: ../../include/dir_fns.php:101 +#: ../../include/dir_fns.php:124 ../../include/dir_fns.php:134 msgid "Public Forums Only" msgstr "" -#: ../../include/dir_fns.php:103 +#: ../../include/dir_fns.php:126 msgid "Sort" msgstr "" -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" +#: ../../include/dir_fns.php:130 ../../include/dir_fns.php:132 +#: ../../include/dir_fns.php:152 +msgid "Safe Mode" msgstr "" -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" +#: ../../include/dir_fns.php:135 ../../include/dir_fns.php:136 +msgid "This Website Only" msgstr "" #: ../../include/event.php:376 @@ -2439,6 +2463,7 @@ msgid "Expires: %s" msgstr "" #: ../../include/ItemObject.php:337 +#: ../../addon.old/bookmarker/bookmarker.php:35 msgid "Save Bookmarks" msgstr "" @@ -2519,7 +2544,7 @@ msgstr "" msgid "Public Timeline" msgstr "" -#: ../../include/network.php:613 +#: ../../include/network.php:620 msgid "view full size" msgstr "" @@ -2807,11 +2832,11 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:334 ../../mod/directory.php:339 +#: ../../mod/directory.php:360 ../../mod/directory.php:365 msgid "Find" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:338 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:364 #: ../../mod/suggest.php:59 msgid "Channel Suggestions" msgstr "" @@ -3190,7 +3215,8 @@ msgstr "" #: ../../include/conversation.php:1227 ../../mod/tagrm.php:11 #: ../../mod/tagrm.php:134 ../../mod/events.php:634 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/editpost.php:155 -#: ../../mod/settings.php:584 ../../mod/settings.php:610 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../addon.old/js_upload/js_upload.php:45 msgid "Cancel" msgstr "" @@ -3247,7 +3273,7 @@ msgstr "" msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1565 ../../mod/admin.php:894 +#: ../../include/conversation.php:1565 ../../mod/admin.php:917 msgid "Channel" msgstr "" @@ -3609,7 +3635,7 @@ msgid "Profile Photo" msgstr "" #: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:609 +#: ../../mod/settings.php:610 msgid "Update" msgstr "" @@ -3943,7 +3969,7 @@ msgstr "" msgid "Add" msgstr "" -#: ../../mod/delegate.php:132 +#: ../../mod/delegate.php:132 ../../addon.old/visage/visage.php:112 msgid "No entries." msgstr "" @@ -3977,13 +4003,15 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../mod/api.php:105 ../../mod/admin.php:400 ../../mod/settings.php:974 -#: ../../mod/settings.php:979 ../../mod/settings.php:1064 +#: ../../mod/api.php:105 ../../mod/admin.php:400 ../../mod/removeme.php:62 +#: ../../mod/settings.php:575 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1556 msgid "Yes" msgstr "" -#: ../../mod/api.php:106 ../../mod/admin.php:398 ../../mod/settings.php:974 -#: ../../mod/settings.php:979 ../../mod/settings.php:1064 +#: ../../mod/api.php:106 ../../mod/admin.php:398 ../../mod/removeme.php:62 +#: ../../mod/settings.php:575 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1556 msgid "No" msgstr "" @@ -4093,6 +4121,7 @@ msgid "Image resize failed." msgstr "" #: ../../mod/profile_photo.php:206 +#: ../../addon.old/openclipatar/openclipatar.php:281 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." @@ -4123,7 +4152,7 @@ msgstr "" msgid "Upload Profile Photo" msgstr "" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:988 msgid "or" msgstr "" @@ -4513,12 +4542,12 @@ msgid "View recent posts and comments" msgstr "" #: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:761 +#: ../../mod/admin.php:784 msgid "Unblock" msgstr "" #: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:760 +#: ../../mod/admin.php:783 msgid "Block" msgstr "" @@ -4795,15 +4824,15 @@ msgstr "" msgid "Collection Editor" msgstr "" -#: ../../mod/group.php:196 +#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 msgid "Members" msgstr "" -#: ../../mod/group.php:198 +#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 msgid "All Connected Channels" msgstr "" -#: ../../mod/group.php:233 +#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 msgid "Click on a channel to add or remove." msgstr "" @@ -5410,7 +5439,7 @@ msgid "You have reached your limit of %1$.0f webpages." msgstr "" #: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 +#: ../../mod/directory.php:47 ../../mod/viewconnections.php:17 #: ../../mod/photos.php:429 msgid "Public access denied." msgstr "" @@ -6227,7 +6256,7 @@ msgstr "" msgid "Interests" msgstr "" -#: ../../mod/profiles.php:447 ../../mod/admin.php:895 +#: ../../mod/profiles.php:447 ../../mod/admin.php:918 msgid "Address" msgstr "" @@ -6395,7 +6424,7 @@ msgstr "" msgid "This is your default profile." msgstr "" -#: ../../mod/profiles.php:728 ../../mod/directory.php:192 +#: ../../mod/profiles.php:728 ../../mod/directory.php:218 msgid "Age: " msgstr "" @@ -6440,54 +6469,54 @@ msgstr "" msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/directory.php:198 +#: ../../mod/directory.php:224 #, php-format msgid "%d rating" msgid_plural "%d ratings" msgstr[0] "" msgstr[1] "" -#: ../../mod/directory.php:210 +#: ../../mod/directory.php:236 msgid "Gender: " msgstr "" -#: ../../mod/directory.php:212 +#: ../../mod/directory.php:238 msgid "Status: " msgstr "" -#: ../../mod/directory.php:214 +#: ../../mod/directory.php:240 msgid "Homepage: " msgstr "" -#: ../../mod/directory.php:217 +#: ../../mod/directory.php:243 msgid "Hometown: " msgstr "" -#: ../../mod/directory.php:219 +#: ../../mod/directory.php:245 msgid "About: " msgstr "" -#: ../../mod/directory.php:277 +#: ../../mod/directory.php:303 msgid "Public Forum:" msgstr "" -#: ../../mod/directory.php:280 +#: ../../mod/directory.php:306 msgid "Keywords: " msgstr "" -#: ../../mod/directory.php:335 +#: ../../mod/directory.php:361 msgid "Finding:" msgstr "" -#: ../../mod/directory.php:340 +#: ../../mod/directory.php:366 msgid "next page" msgstr "" -#: ../../mod/directory.php:340 +#: ../../mod/directory.php:366 msgid "previous page" msgstr "" -#: ../../mod/directory.php:357 +#: ../../mod/directory.php:383 msgid "No entries (some entries may be hidden)." msgstr "" @@ -6540,15 +6569,15 @@ msgstr "" msgid "Accounts" msgstr "" -#: ../../mod/admin.php:99 ../../mod/admin.php:887 +#: ../../mod/admin.php:99 ../../mod/admin.php:910 msgid "Channels" msgstr "" -#: ../../mod/admin.php:100 ../../mod/admin.php:978 ../../mod/admin.php:1020 +#: ../../mod/admin.php:100 ../../mod/admin.php:1001 ../../mod/admin.php:1043 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:1183 ../../mod/admin.php:1219 +#: ../../mod/admin.php:101 ../../mod/admin.php:1206 ../../mod/admin.php:1242 msgid "Themes" msgstr "" @@ -6564,7 +6593,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../mod/admin.php:119 ../../mod/admin.php:126 ../../mod/admin.php:1306 +#: ../../mod/admin.php:119 ../../mod/admin.php:126 ../../mod/admin.php:1329 msgid "Logs" msgstr "" @@ -6581,9 +6610,9 @@ msgid "Message queues" msgstr "" #: ../../mod/admin.php:215 ../../mod/admin.php:418 ../../mod/admin.php:520 -#: ../../mod/admin.php:750 ../../mod/admin.php:886 ../../mod/admin.php:977 -#: ../../mod/admin.php:1019 ../../mod/admin.php:1182 ../../mod/admin.php:1218 -#: ../../mod/admin.php:1305 +#: ../../mod/admin.php:773 ../../mod/admin.php:909 ../../mod/admin.php:1000 +#: ../../mod/admin.php:1042 ../../mod/admin.php:1205 ../../mod/admin.php:1241 +#: ../../mod/admin.php:1328 msgid "Administration" msgstr "" @@ -6611,7 +6640,7 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:371 ../../mod/settings.php:804 +#: ../../mod/admin.php:371 ../../mod/settings.php:809 msgid "mobile" msgstr "" @@ -6655,7 +6684,7 @@ msgstr "" msgid "Policies" msgstr "" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:428 ../../addon.old/statusnet/statusnet.php:781 msgid "Site name" msgstr "" @@ -6879,7 +6908,7 @@ msgstr "" msgid "No server found" msgstr "" -#: ../../mod/admin.php:519 ../../mod/admin.php:764 +#: ../../mod/admin.php:519 ../../mod/admin.php:787 msgid "ID" msgstr "" @@ -6939,267 +6968,279 @@ msgstr "" msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:618 msgid "Queue Statistics" msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:619 msgid "Total Entries" msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:620 msgid "Destination URL" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:621 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../mod/admin.php:622 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../mod/admin.php:623 +msgid "Last known contact" +msgstr "" + +#: ../../mod/admin.php:651 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:658 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:687 msgid "Account not found" msgstr "" -#: ../../mod/admin.php:684 +#: ../../mod/admin.php:707 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:684 +#: ../../mod/admin.php:707 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:751 ../../mod/admin.php:763 +#: ../../mod/admin.php:774 ../../mod/admin.php:786 msgid "Users" msgstr "" -#: ../../mod/admin.php:753 ../../mod/admin.php:889 +#: ../../mod/admin.php:776 ../../mod/admin.php:912 msgid "select all" msgstr "" -#: ../../mod/admin.php:754 +#: ../../mod/admin.php:777 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:755 +#: ../../mod/admin.php:778 msgid "Request date" msgstr "" -#: ../../mod/admin.php:756 +#: ../../mod/admin.php:779 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:780 msgid "Approve" msgstr "" -#: ../../mod/admin.php:758 +#: ../../mod/admin.php:781 msgid "Deny" msgstr "" -#: ../../mod/admin.php:764 +#: ../../mod/admin.php:787 msgid "Register date" msgstr "" -#: ../../mod/admin.php:764 +#: ../../mod/admin.php:787 msgid "Last login" msgstr "" -#: ../../mod/admin.php:764 +#: ../../mod/admin.php:787 msgid "Expires" msgstr "" -#: ../../mod/admin.php:764 +#: ../../mod/admin.php:787 msgid "Service Class" msgstr "" -#: ../../mod/admin.php:766 +#: ../../mod/admin.php:789 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:767 +#: ../../mod/admin.php:790 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:800 +#: ../../mod/admin.php:823 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:807 +#: ../../mod/admin.php:830 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:826 +#: ../../mod/admin.php:849 msgid "Channel not found" msgstr "" -#: ../../mod/admin.php:837 +#: ../../mod/admin.php:860 #, php-format msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/admin.php:848 +#: ../../mod/admin.php:871 #, php-format msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/admin.php:848 +#: ../../mod/admin.php:871 #, php-format msgid "Channel '%s' censored" msgstr "" -#: ../../mod/admin.php:891 +#: ../../mod/admin.php:914 msgid "Censor" msgstr "" -#: ../../mod/admin.php:892 +#: ../../mod/admin.php:915 msgid "Uncensor" msgstr "" -#: ../../mod/admin.php:895 +#: ../../mod/admin.php:918 msgid "UID" msgstr "" -#: ../../mod/admin.php:897 +#: ../../mod/admin.php:920 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:898 +#: ../../mod/admin.php:921 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:937 +#: ../../mod/admin.php:960 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:941 +#: ../../mod/admin.php:964 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +#: ../../mod/admin.php:974 ../../mod/admin.php:1176 msgid "Disable" msgstr "" -#: ../../mod/admin.php:953 ../../mod/admin.php:1155 +#: ../../mod/admin.php:976 ../../mod/admin.php:1178 msgid "Enable" msgstr "" -#: ../../mod/admin.php:979 ../../mod/admin.php:1184 +#: ../../mod/admin.php:1002 ../../mod/admin.php:1207 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:987 ../../mod/admin.php:1194 +#: ../../mod/admin.php:1010 ../../mod/admin.php:1217 msgid "Author: " msgstr "" -#: ../../mod/admin.php:988 ../../mod/admin.php:1195 +#: ../../mod/admin.php:1011 ../../mod/admin.php:1218 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1117 +#: ../../mod/admin.php:1140 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1176 +#: ../../mod/admin.php:1199 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1224 +#: ../../mod/admin.php:1247 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1225 +#: ../../mod/admin.php:1248 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1252 +#: ../../mod/admin.php:1275 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1308 +#: ../../mod/admin.php:1331 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1314 +#: ../../mod/admin.php:1337 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:1315 +#: ../../mod/admin.php:1338 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1315 +#: ../../mod/admin.php:1338 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/admin.php:1316 +#: ../../mod/admin.php:1339 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1363 +#: ../../mod/admin.php:1386 msgid "New Profile Field" msgstr "" -#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +#: ../../mod/admin.php:1387 ../../mod/admin.php:1408 msgid "Field nickname" msgstr "" -#: ../../mod/admin.php:1364 ../../mod/admin.php:1385 +#: ../../mod/admin.php:1387 ../../mod/admin.php:1408 msgid "System name of field" msgstr "" -#: ../../mod/admin.php:1365 ../../mod/admin.php:1386 +#: ../../mod/admin.php:1388 ../../mod/admin.php:1409 msgid "Input type" msgstr "" -#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +#: ../../mod/admin.php:1389 ../../mod/admin.php:1410 msgid "Field Name" msgstr "" -#: ../../mod/admin.php:1366 ../../mod/admin.php:1387 +#: ../../mod/admin.php:1389 ../../mod/admin.php:1410 msgid "Label on profile pages" msgstr "" -#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +#: ../../mod/admin.php:1390 ../../mod/admin.php:1411 msgid "Help text" msgstr "" -#: ../../mod/admin.php:1367 ../../mod/admin.php:1388 +#: ../../mod/admin.php:1390 ../../mod/admin.php:1411 msgid "Additional info (optional)" msgstr "" -#: ../../mod/admin.php:1378 +#: ../../mod/admin.php:1401 msgid "Field definition not found" msgstr "" -#: ../../mod/admin.php:1384 +#: ../../mod/admin.php:1407 msgid "Edit Profile Field" msgstr "" @@ -7285,39 +7326,52 @@ msgstr "" msgid "Please re-enter your password" msgstr "" -#: ../../mod/removeaccount.php:30 +#: ../../mod/removeaccount.php:12 ../../mod/removeaccount.php:26 +#: ../../mod/removeme.php:12 ../../mod/removeme.php:25 +msgid "Password not correct." +msgstr "" + +#: ../../mod/removeaccount.php:32 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "" -#: ../../mod/removeaccount.php:57 +#: ../../mod/removeaccount.php:59 msgid "Remove This Account" msgstr "" -#: ../../mod/removeaccount.php:58 +#: ../../mod/removeaccount.php:60 ../../mod/removeme.php:60 +msgid "WARNING: " +msgstr "" + +#: ../../mod/removeaccount.php:60 msgid "" -"This will completely remove this account including all its channels from the " -"network. Once this has been done it is not recoverable." +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +#: ../../mod/removeaccount.php:60 ../../mod/removeme.php:60 +msgid "This action is permanent and can not be undone!" +msgstr "" + +#: ../../mod/removeaccount.php:61 ../../mod/removeme.php:61 msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/removeaccount.php:60 +#: ../../mod/removeaccount.php:62 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "" -#: ../../mod/removeaccount.php:60 +#: ../../mod/removeaccount.php:62 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "" -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:710 +#: ../../mod/removeaccount.php:63 ../../mod/settings.php:716 msgid "Remove Account" msgstr "" @@ -7468,10 +7522,6 @@ msgid "" "logout and retry." msgstr "" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "" - #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "" @@ -7548,7 +7598,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1071 +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1076 msgid "(click to open/close)" msgstr "" @@ -7604,33 +7654,31 @@ msgstr "" msgid "Average Rating" msgstr "" -#: ../../mod/removeme.php:29 +#: ../../mod/removeme.php:31 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "" -#: ../../mod/removeme.php:57 +#: ../../mod/removeme.php:59 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." +#: ../../mod/removeme.php:60 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../mod/removeme.php:60 +#: ../../mod/removeme.php:62 msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../mod/removeme.php:60 +#: ../../mod/removeme.php:62 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "" -#: ../../mod/removeme.php:61 +#: ../../mod/removeme.php:63 ../../mod/settings.php:1130 msgid "Remove Channel" msgstr "" @@ -7746,703 +7794,708 @@ msgstr "" msgid "Discard" msgstr "" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:113 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:116 -msgid "" -"Or import an existing channel from another location" -msgstr "" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "" - -#: ../../mod/ping.php:355 -msgid "posted an event" -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/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/settings.php:73 +msgid "Name is required" msgstr "" #: ../../mod/settings.php:77 msgid "Key and Secret are required" msgstr "" -#: ../../mod/settings.php:120 +#: ../../mod/settings.php:121 msgid "Diaspora Policy Settings updated." msgstr "" -#: ../../mod/settings.php:228 +#: ../../mod/settings.php:229 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:233 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/settings.php:246 +#: ../../mod/settings.php:247 msgid "Password changed." msgstr "" -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:249 msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/settings.php:262 +#: ../../mod/settings.php:263 msgid "Not valid email." msgstr "" -#: ../../mod/settings.php:265 +#: ../../mod/settings.php:266 msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/settings.php:274 +#: ../../mod/settings.php:275 msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/settings.php:513 +#: ../../mod/settings.php:514 +#: ../../addon.old/openstreetmap/openstreetmap.php:189 +#: ../../addon.old/piwik/piwik.php:115 ../../addon.old/twitter/twitter.php:747 +#: ../../addon.old/webrtc/webrtc.php:33 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:645 msgid "Add application" msgstr "" -#: ../../mod/settings.php:585 +#: ../../mod/settings.php:586 msgid "Name of application" msgstr "" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../addon.old/statusnet/statusnet.php:784 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:586 ../../mod/settings.php:587 +#: ../../mod/settings.php:587 ../../mod/settings.php:588 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +#: ../../addon.old/statusnet/statusnet.php:783 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 +#: ../../mod/settings.php:589 ../../mod/settings.php:615 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:588 +#: ../../mod/settings.php:589 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/settings.php:589 ../../mod/settings.php:615 +#: ../../mod/settings.php:590 ../../mod/settings.php:616 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:589 +#: ../../mod/settings.php:590 msgid "Optional" msgstr "" -#: ../../mod/settings.php:600 +#: ../../mod/settings.php:601 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:643 +#: ../../mod/settings.php:644 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:648 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:648 +#: ../../mod/settings.php:649 msgid "No name" msgstr "" -#: ../../mod/settings.php:649 +#: ../../mod/settings.php:650 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:663 +#: ../../mod/settings.php:664 msgid "No feature settings configured" msgstr "" -#: ../../mod/settings.php:676 -msgid "Feature Settings" +#: ../../mod/settings.php:680 +msgid "Feature/Addon Settings" +msgstr "" + +#: ../../mod/settings.php:682 +msgid "Settings for the built-in Diaspora emulator" msgstr "" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:684 msgid "Diaspora Policy Settings" msgstr "" -#: ../../mod/settings.php:680 +#: ../../mod/settings.php:685 msgid "Allow any Diaspora member to comment on your public posts." msgstr "" -#: ../../mod/settings.php:681 -msgid "Submit Diaspora Policy Settings" +#: ../../mod/settings.php:686 +msgid "Prevent your hashtags from being redirected to other sites" msgstr "" -#: ../../mod/settings.php:704 -msgid "Account Settings" +#: ../../mod/settings.php:688 +msgid "Submit Diaspora Policy Settings" msgstr "" -#: ../../mod/settings.php:705 -msgid "Password Settings" +#: ../../mod/settings.php:711 +msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:706 -msgid "New Password:" +#: ../../mod/settings.php:712 +msgid "Enter New Password:" msgstr "" -#: ../../mod/settings.php:707 -msgid "Confirm:" +#: ../../mod/settings.php:713 +msgid "Confirm New Password:" msgstr "" -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:713 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:709 ../../mod/settings.php:1045 +#: ../../mod/settings.php:715 ../../mod/settings.php:1050 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:711 -msgid "Remove this account from this server including all its channels" -msgstr "" - -#: ../../mod/settings.php:712 ../../mod/settings.php:1126 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/settings.php:717 +msgid "Remove this account including all its channels" msgstr "" -#: ../../mod/settings.php:728 +#: ../../mod/settings.php:733 msgid "Off" msgstr "" -#: ../../mod/settings.php:728 +#: ../../mod/settings.php:733 msgid "On" msgstr "" -#: ../../mod/settings.php:735 +#: ../../mod/settings.php:740 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:764 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:803 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:806 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:845 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:846 +#: ../../mod/settings.php:851 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:852 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:853 msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:854 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:854 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:855 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:855 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" +#: ../../mod/settings.php:856 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../mod/settings.php:852 +#: ../../mod/settings.php:857 msgid "Link post titles to source" msgstr "" -#: ../../mod/settings.php:853 +#: ../../mod/settings.php:858 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/settings.php:856 +#: ../../mod/settings.php:861 msgid "Use blog/list mode on channel page" msgstr "" -#: ../../mod/settings.php:856 ../../mod/settings.php:857 +#: ../../mod/settings.php:861 ../../mod/settings.php:862 msgid "(comments displayed separately)" msgstr "" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:862 msgid "Use blog/list mode on matrix page" msgstr "" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:863 msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../mod/settings.php:858 ../../mod/settings.php:859 +#: ../../mod/settings.php:863 ../../mod/settings.php:864 msgid "click to expand content exceeding this height" msgstr "" -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:864 msgid "Matrix page max height of content (in pixels)" msgstr "" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:898 msgid "Nobody except yourself" msgstr "" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:899 msgid "Only those you specifically allow" msgstr "" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:900 msgid "Approved connections" msgstr "" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:901 msgid "Any connections" msgstr "" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:902 msgid "Anybody on this website" msgstr "" -#: ../../mod/settings.php:898 +#: ../../mod/settings.php:903 msgid "Anybody in this network" msgstr "" -#: ../../mod/settings.php:899 +#: ../../mod/settings.php:904 msgid "Anybody authenticated" msgstr "" -#: ../../mod/settings.php:900 +#: ../../mod/settings.php:905 msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:979 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:984 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:993 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1041 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1048 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1051 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1052 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1052 msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1053 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1055 msgid "Adult Content" msgstr "" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1055 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1057 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1059 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1061 msgid "Hide my online presence" msgstr "" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1061 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/settings.php:1058 +#: ../../mod/settings.php:1063 msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/settings.php:1059 +#: ../../mod/settings.php:1064 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1065 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../mod/settings.php:1061 +#: ../../mod/settings.php:1066 msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1067 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1069 msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1069 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1071 msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1073 msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1073 msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1074 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1074 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1075 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1080 msgid "Channel permissions category:" msgstr "" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1086 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1086 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1089 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1090 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1091 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1092 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1093 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1094 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1095 msgid "You receive a connection request" msgstr "" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1096 msgid "Your connections are confirmed" msgstr "" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1097 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1098 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1099 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1100 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1101 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1102 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1105 msgid "Show visual notifications including:" msgstr "" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1107 msgid "Unseen matrix activity" msgstr "" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1108 msgid "Unseen channel activity" msgstr "" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1109 msgid "Unseen private messages" msgstr "" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1114 +#: ../../mod/settings.php:1115 ../../mod/settings.php:1116 msgid "Recommended" msgstr "" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1110 msgid "Upcoming events" msgstr "" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1111 msgid "Events today" msgstr "" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1112 msgid "Upcoming birthdays" msgstr "" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1112 msgid "Not available in all themes" msgstr "" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1113 msgid "System (personal) notifications" msgstr "" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1114 msgid "System info messages" msgstr "" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1115 msgid "System critical alerts" msgstr "" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1116 msgid "New connections" msgstr "" -#: ../../mod/settings.php:1112 +#: ../../mod/settings.php:1117 msgid "System Registrations" msgstr "" -#: ../../mod/settings.php:1113 +#: ../../mod/settings.php:1118 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1120 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1120 msgid "Must be greater than 0" msgstr "" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1122 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1123 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1126 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1127 msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1129 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/settings.php:1125 -msgid "Remove this channel" +#: ../../mod/settings.php:1131 +msgid "Remove this channel." msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" msgstr "" -#: ../../mod/poll.php:64 -msgid "Poll" +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "" +#: ../../mod/new_channel.php:113 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " +msgstr "" + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "" + +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "" + +#: ../../mod/new_channel.php:116 +msgid "" +"Or import an existing channel from another location" +msgstr "" + +#: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "" + +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "" + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "" + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../mod/ping.php:263 +msgid "sent you a private message" +msgstr "" + +#: ../../mod/ping.php:314 +msgid "added your channel" +msgstr "" + +#: ../../mod/ping.php:355 +msgid "posted an event" +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/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/poll.php:64 +msgid "Poll" +msgstr "" + +#: ../../mod/poll.php:69 +msgid "View Results" +msgstr "" #: ../../mod/service_limits.php:19 msgid "No service class restrictions found." @@ -8479,7 +8532,6 @@ msgid "Theme settings" msgstr "" #: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "" @@ -8608,6 +8660,10 @@ msgstr "" msgid "Light (Red Matrix default)" msgstr "" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Select scheme" +msgstr "" + #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "" @@ -8720,49 +8776,1899 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" +#: ../../addon.old/buglink/buglink.php:15 +msgid "Report Bug" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" +#: ../../addon.old/dwpost/dwpost.php:41 +msgid "Post to Dreamwidth" msgstr "" -#: ../../boot.php:1357 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../addon.old/dwpost/dwpost.php:72 +msgid "Dreamwidth Post Settings" msgstr "" -#: ../../boot.php:1360 -#, php-format -msgid "Update Error at %s" +#: ../../addon.old/dwpost/dwpost.php:76 +msgid "Enable dreamwidth Post Plugin" msgstr "" -#: ../../boot.php:1527 +#: ../../addon.old/dwpost/dwpost.php:81 +msgid "dreamwidth username" +msgstr "" + +#: ../../addon.old/dwpost/dwpost.php:86 +msgid "dreamwidth password" +msgstr "" + +#: ../../addon.old/dwpost/dwpost.php:91 +msgid "Post to dreamwidth by default" +msgstr "" + +#: ../../addon.old/dwpost/dwpost.php:97 +msgid "Submit Dreamwidth Post Settings" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:100 +msgid "Flattr Widget Settings" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:104 +msgid "flattr user" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:107 +msgid "URL of the Thing to flattr (if empty channel URL is used)" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:110 msgid "" -"Create an account to access services and applications within the Red Matrix" +"Title of the Thing (if empty \"channel name on The Red Matrix\" will be used)" msgstr "" -#: ../../boot.php:1555 -msgid "Password" +#: ../../addon.old/flattrwidget/flattrwidget.php:113 +msgid "Static or dynamic flattr button" msgstr "" -#: ../../boot.php:1556 -msgid "Remember me" +#: ../../addon.old/flattrwidget/flattrwidget.php:116 +#: ../../addon.old/flattrwidget/flattrwidget.php:119 +msgid "static" msgstr "" -#: ../../boot.php:1559 -msgid "Forgot your password?" +#: ../../addon.old/flattrwidget/flattrwidget.php:117 +#: ../../addon.old/flattrwidget/flattrwidget.php:120 +msgid "dynamic" msgstr "" -#: ../../boot.php:1674 -msgid "permission denied" +#: ../../addon.old/flattrwidget/flattrwidget.php:124 +msgid "Alignment of the widget" msgstr "" -#: ../../boot.php:1675 -msgid "Got Zot?" +#: ../../addon.old/flattrwidget/flattrwidget.php:127 +#: ../../addon.old/flattrwidget/flattrwidget.php:130 +msgid "left" msgstr "" -#: ../../boot.php:2158 -msgid "toggle mobile" +#: ../../addon.old/flattrwidget/flattrwidget.php:128 +#: ../../addon.old/flattrwidget/flattrwidget.php:131 +msgid "right" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:135 +msgid "Enable Flattr widget" +msgstr "" + +#: ../../addon.old/flattrwidget/flattrwidget.php:140 +msgid "Submit Flattr Widget Settings" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:41 +msgid "Post to Insanejournal" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:72 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:76 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:81 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:86 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:91 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:97 +msgid "Submit InsaneJournal Post Settings" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:110 +msgid "Insane Journal Settings saved." +msgstr "" + +#: ../../addon.old/irc/irc.php:45 +msgid "IRC Settings" +msgstr "" + +#: ../../addon.old/irc/irc.php:48 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "" + +#: ../../addon.old/irc/irc.php:53 +msgid "Popular Channels (comma separated)" +msgstr "" + +#: ../../addon.old/irc/irc.php:57 +msgid "Submit IRC Settings" +msgstr "" + +#: ../../addon.old/irc/irc.php:71 +msgid "IRC settings saved." +msgstr "" + +#: ../../addon.old/irc/irc.php:76 +msgid "IRC Chatroom" +msgstr "" + +#: ../../addon.old/irc/irc.php:98 +msgid "Popular Channels" +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:310 +msgid "No files were uploaded." +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:317 +msgid "Uploaded file is empty" +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:330 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:342 +msgid "File has an invalid extension, it should be one of " +msgstr "" + +#: ../../addon.old/js_upload/js_upload.php:354 +msgid "Upload was cancelled, or server error encountered" +msgstr "" + +#: ../../addon.old/ldapauth/ldapauth.php:63 +msgid "An account has been created for you." +msgstr "" + +#: ../../addon.old/ldapauth/ldapauth.php:70 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../addon.old/libertree/libertree.php:37 +msgid "Post to Libertree" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:68 +msgid "Libertree Post Settings" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:72 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:77 +msgid "Libertree API token" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:82 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:87 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:93 +msgid "Submit Libertree Settings" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:106 +msgid "Libertree Settings saved." +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:41 +msgid "Post to LiveJournal" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:72 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:76 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:81 +msgid "LiveJournal username" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:86 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:91 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:97 +msgid "Submit LiveJournal Post Settings" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:110 +msgid "Livejournal Settings saved." +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:21 +msgid "tie up" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:21 +msgid "tied up" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:23 +msgid "kiss" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:23 +msgid "kissed" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:24 +msgid "tongue" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:24 +msgid "tongued" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:25 +msgid "fondle" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:25 +msgid "fondled" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:26 +msgid "caress" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:26 +msgid "caressed" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:27 +#: ../../addon.old/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:28 +msgid "lick" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:28 +msgid "licked" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:29 +msgid "strip" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:29 +msgid "stripped" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:30 +msgid "suck" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:30 +msgid "sucked" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:31 +msgid "fuck" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:31 +msgid "fucked" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:32 +msgid "rock" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:32 +msgid "rocked" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:33 +msgid "insult" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:33 +msgid "insulted" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:34 +msgid "praise" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:34 +msgid "praised" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:35 +msgid "eat" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:35 +msgid "ate" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:36 +msgid "doubt" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:36 +msgid "doubted" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:37 +msgid "glare" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:37 +msgid "glared at" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:81 +msgid "Not Safe For Work (General Purpose Content Filter) Settings" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:85 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:86 +msgid "Enable Content filter" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:89 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:90 +msgid "Use /expression/ to provide regular expressions" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:93 +msgid "Submit Not Safe For Work Settings" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:186 +msgid "Possible adult content" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:190 +#, php-format +msgid "%s - Click to open/close" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:151 +msgid "View Larger" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:174 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:174 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:175 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:175 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:176 +msgid "Default zoom" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:176 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:177 +msgid "Include marker on map" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:177 +msgid "Include a marker on the map." +msgstr "" + +#: ../../addon.old/piwik/piwik.php:84 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" + +#: ../../addon.old/piwik/piwik.php:87 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" + +#: ../../addon.old/piwik/piwik.php:95 +msgid "Piwik Base URL" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:95 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:96 +msgid "Site ID" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:97 +msgid "Show opt-out cookie link?" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:98 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:99 +msgid "Enable frontend JavaScript error tracking" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:99 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "" + +#: ../../addon.old/planets/planets.php:120 +msgid "Planets Settings updated." +msgstr "" + +#: ../../addon.old/planets/planets.php:152 +msgid "Planets Settings" +msgstr "" + +#: ../../addon.old/planets/planets.php:156 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon.old/planets/planets.php:162 +msgid "Submit Planets Settings" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:154 +msgid "You are now authenticated to pumpio." +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:155 ../../addon.old/goblin/goblin.php:153 +msgid "return to the featured settings page" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:169 ../../addon.old/goblin/goblin.php:168 +msgid "Post to Pump.io" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:204 +msgid "Pump.io Post Settings" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:208 ../../addon.old/goblin/goblin.php:206 +msgid "pump.io servername (without \"http://\" or \"https://\" )" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:213 ../../addon.old/goblin/goblin.php:211 +msgid "pump.io username (without the servername)" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:219 ../../addon.old/goblin/goblin.php:217 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:223 ../../addon.old/goblin/goblin.php:221 +msgid "Enable pump.io Post Plugin" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:228 ../../addon.old/goblin/goblin.php:226 +msgid "Post to pump.io by default" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:233 ../../addon.old/goblin/goblin.php:231 +msgid "Should posts be public?" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:238 ../../addon.old/goblin/goblin.php:236 +msgid "Mirror all public posts" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:247 +msgid "You are not authenticated to pumpio" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:254 +msgid "Submit Pump.io Post Settings" +msgstr "" + +#: ../../addon.old/pumpio/pumpio.php:281 +msgid "PumpIO Settings saved." +msgstr "" + +#: ../../addon.old/redred/redred.php:44 +msgid "Post to Red" +msgstr "" + +#: ../../addon.old/redred/redred.php:59 +msgid "Channel is required." +msgstr "" + +#: ../../addon.old/redred/redred.php:64 +msgid "Invalid channel." +msgstr "" + +#: ../../addon.old/redred/redred.php:77 +msgid "redred Settings saved." +msgstr "" + +#: ../../addon.old/redred/redred.php:96 +msgid "Red to Red (redred) Post Settings" +msgstr "" + +#: ../../addon.old/redred/redred.php:99 +msgid "Allow posting to Red Channel" +msgstr "" + +#: ../../addon.old/redred/redred.php:102 +msgid "Send public postings to Red by default" +msgstr "" + +#: ../../addon.old/redred/redred.php:105 +msgid "Red API Path (https://{sitename}/api)" +msgstr "" + +#: ../../addon.old/redred/redred.php:108 +msgid "Red login name (email)" +msgstr "" + +#: ../../addon.old/redred/redred.php:111 +msgid "Red channel (nick)name" +msgstr "" + +#: ../../addon.old/redred/redred.php:114 +msgid "Red password" +msgstr "" + +#: ../../addon.old/redred/redred.php:117 +msgid "Submit Red to Red Post Settings" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:44 +msgid "Post to Friendica" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:61 +msgid "rtof Settings saved." +msgstr "" + +#: ../../addon.old/rtof/rtof.php:79 +msgid "Red to Friendica (rtof) Post Settings" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:82 +msgid "Allow posting to Friendica" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:88 +msgid "Friendica API Path (https://{sitename}/api)" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:91 +msgid "Friendica login name" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:94 +msgid "Friendica password" +msgstr "" + +#: ../../addon.old/rtof/rtof.php:97 +msgid "Submit Red to Friendica Post Settings" +msgstr "" + +#: ../../addon.old/smileybutton/smileybutton.php:275 +msgid "Smileybutton Settings" +msgstr "" + +#: ../../addon.old/smileybutton/smileybutton.php:279 +msgid "Deactivate the feature" +msgstr "" + +#: ../../addon.old/smileybutton/smileybutton.php:283 +msgid "Hide the button and show the smilies directly." +msgstr "" + +#: ../../addon.old/smileybutton/smileybutton.php:289 +msgid "Submit Smileybutton Settings" +msgstr "" + +#: ../../addon.old/startpage/startpage.php:115 +msgid "Startpage Settings" +msgstr "" + +#: ../../addon.old/startpage/startpage.php:119 +msgid "Home page to load after login - leave blank for Apps page" +msgstr "" + +#: ../../addon.old/startpage/startpage.php:120 +msgid "" +"Examples: "network" or "channel" or "notifications/" +"system"" +msgstr "" + +#: ../../addon.old/startpage/startpage.php:125 +msgid "Submit Startpage Settings" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:139 +msgid "Post to GNU social" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:191 +msgid "" +"Please contact your site administrator.
        The provided API URL is not " +"valid." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:228 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:262 +msgid "GNU social settings updated." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:293 +msgid "GNU social Post Settings" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:308 +msgid "Globally Available GNU social OAuthKeys" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:309 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials. If " +"not feel free to connect to any other GNU social instance (see below)." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:315 +#: ../../addon.old/statusnet/statusnet.php:332 +#: ../../addon.old/statusnet/statusnet.php:358 +#: ../../addon.old/statusnet/statusnet.php:365 +#: ../../addon.old/statusnet/statusnet.php:395 +msgid "Submit GNU social Post Settings" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:317 +msgid "Provide your own OAuth Credentials" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:318 +msgid "" +"No consumer key pair for GNU social found. Register your RedMatrix Account " +"as an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
        Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"RedMatrix installation at your favourite GNU social installation." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:320 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:323 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:326 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:329 +msgid "GNU social application name" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:350 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:351 +msgid "Log in with GNU social" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:353 +msgid "Copy the security code from GNU social here" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:359 +msgid "Cancel Connection Process" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:361 +msgid "Current GNU social API is" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:362 +msgid "Cancel GNU social Connection" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:373 +#: ../../addon.old/twitter/twitter.php:221 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:374 +msgid "" +"If enabled all your public postings can be posted to the " +"associated GNU social account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:376 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:379 +msgid "Allow posting to GNU social" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:382 +msgid "Send public postings to GNU social by default" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:392 +#: ../../addon.old/twitter/twitter.php:242 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:782 +msgid "API URL" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:785 +msgid "Application name" +msgstr "" + +#: ../../addon.old/superblock/superblock.php:55 +msgid "\"Superblock\" Settings" +msgstr "" + +#: ../../addon.old/superblock/superblock.php:59 +msgid "Comma separated profile URLS to block" +msgstr "" + +#: ../../addon.old/superblock/superblock.php:63 +msgid "Submit Superblock Settings" +msgstr "" + +#: ../../addon.old/superblock/superblock.php:76 +msgid "SUPERBLOCK Settings saved." +msgstr "" + +#: ../../addon.old/superblock/superblock.php:188 +msgid "Block Completely" +msgstr "" + +#: ../../addon.old/superblock/superblock.php:208 +msgid "superblock settings updated" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:58 +msgid "New game" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:60 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon.old/tictac/tictac.php:61 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon.old/tictac/tictac.php:63 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon.old/tictac/tictac.php:182 +msgid "You go first..." +msgstr "" + +#: ../../addon.old/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon.old/tictac/tictac.php:193 +msgid "You won!" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon.old/tictac/tictac.php:222 +msgid "I won!" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:98 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:153 +msgid "Twitter settings updated." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:177 +msgid "Twitter Post Settings" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:185 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:204 +msgid "" +"At this RedMatrix instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:205 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:207 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:212 +#: ../../addon.old/twitter/twitter.php:245 +msgid "Submit Twitter Settings" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:222 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for " +"every posting separately in the posting options when writing the entry." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:226 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:229 +msgid "Allow posting to Twitter" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:232 +msgid "Send public postings to Twitter by default" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:754 +msgid "Submit Settings" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:756 +msgid "API key" +msgstr "" + +#: ../../addon.old/twitter/twitter.php:757 +msgid "API secret" +msgstr "" + +#: ../../addon.old/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "" + +#: ../../addon.old/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "" + +#: ../../addon.old/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "" + +#: ../../addon.old/visage/visage.php:99 +msgid "your feature settings page" +msgstr "" + +#: ../../addon.old/visage/visage.php:166 +msgid "Visage Settings" +msgstr "" + +#: ../../addon.old/visage/visage.php:170 +msgid "Enable Visage Visitor Logging" +msgstr "" + +#: ../../addon.old/visage/visage.php:176 +msgid "Submit Visage Settings" +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:20 +msgid "WebRTC Videochat" +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:27 +msgid "WebRTC Base URL" +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:27 +msgid "" +"Page your users will create a WebRTC chat room on. For example you could use " +"https://live.mayfirst.org ." +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:47 +msgid "Video Chat" +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:48 +msgid "" +"WebRTC is a video and audio conferencing tool that works with Firefox " +"(version 21 and above) and Chrome/Chromium (version 25 and above). Just " +"create a new chat room and send the link to someone you want to chat with." +msgstr "" + +#: ../../addon.old/webrtc/webrtc.php:50 +msgid "" +"Please contact your friendica admin and send a reminder to configure the " +"WebRTC addon." +msgstr "" + +#: ../../addon.old/wppost/wppost.php:43 +msgid "Post to WordPress" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:80 +msgid "WordPress Post Settings" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:84 +msgid "Enable WordPress Post Plugin" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:89 +msgid "WordPress username" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:94 +msgid "WordPress password" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:99 +msgid "WordPress API URL" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:104 +msgid "Post to WordPress by default" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:109 +msgid "Forward comments (requires post_to_red plugin)" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:115 +msgid "Submit WordPress Post Settings" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:128 +msgid "Wordpress Settings saved." +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:93 +msgid "RedMatrix Directory Stats" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:94 +msgid "Total Hubs" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:96 +msgid "RedMatrix Hubs" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:98 +msgid "Friendica Hubs" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:100 +msgid "Diaspora Pods" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:102 +msgid "RedMatrix Channels" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:104 +msgid "Friendica Channels" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:106 +msgid "Diaspora Channels" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:108 +msgid "Aged 35 and above" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:110 +msgid "Aged 34 and under" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:112 +msgid "Average Age" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:114 +msgid "Known Chatrooms" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:116 +msgid "Known Tags" +msgstr "" + +#: ../../addon.old/dirstats/dirstats.php:118 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "" + +#: ../../addon.old/tour/tour.php:74 +msgid "Edit your profile and change settings." +msgstr "" + +#: ../../addon.old/tour/tour.php:75 +msgid "Click here to see activity from your connections." +msgstr "" + +#: ../../addon.old/tour/tour.php:76 +msgid "Click here to see your channel home." +msgstr "" + +#: ../../addon.old/tour/tour.php:77 +msgid "You can access your private messages from here." +msgstr "" + +#: ../../addon.old/tour/tour.php:78 +msgid "Create new events here." +msgstr "" + +#: ../../addon.old/tour/tour.php:79 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "" + +#: ../../addon.old/tour/tour.php:80 +msgid "System notifications will arrive here" +msgstr "" + +#: ../../addon.old/tour/tour.php:81 +msgid "Search for content and users" +msgstr "" + +#: ../../addon.old/tour/tour.php:82 +msgid "Browse for new contacts" +msgstr "" + +#: ../../addon.old/tour/tour.php:83 +msgid "Launch installed apps" +msgstr "" + +#: ../../addon.old/tour/tour.php:84 +msgid "Looking for help? Click here." +msgstr "" + +#: ../../addon.old/tour/tour.php:85 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "" + +#: ../../addon.old/tour/tour.php:86 +msgid "You have received a new private message. Click here to see from who!" +msgstr "" + +#: ../../addon.old/tour/tour.php:87 +msgid "There are events this week. Click here too see which!" +msgstr "" + +#: ../../addon.old/tour/tour.php:88 +msgid "You have received a new introduction. Click here to see who!" +msgstr "" + +#: ../../addon.old/tour/tour.php:89 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "" + +#: ../../addon.old/tour/tour.php:92 +msgid "Click here to share text, images, videos and sound." +msgstr "" + +#: ../../addon.old/tour/tour.php:93 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "" + +#: ../../addon.old/tour/tour.php:94 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "" + +#: ../../addon.old/tour/tour.php:95 +msgid "Share photos, links, location, etc." +msgstr "" + +#: ../../addon.old/tour/tour.php:96 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "" + +#: ../../addon.old/tour/tour.php:97 +msgid "You can password protect content." +msgstr "" + +#: ../../addon.old/tour/tour.php:98 +msgid "Choose who you share with." +msgstr "" + +#: ../../addon.old/tour/tour.php:100 +msgid "Click here when you are done." +msgstr "" + +#: ../../addon.old/tour/tour.php:103 +msgid "Adjust from which channels posts should be displayed." +msgstr "" + +#: ../../addon.old/tour/tour.php:104 +msgid "Only show posts from channels in the specified collection." +msgstr "" + +#: ../../addon.old/tour/tour.php:108 +msgid "" +"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "" + +#: ../../addon.old/tour/tour.php:109 +msgid "Easily find posts in given category." +msgstr "" + +#: ../../addon.old/tour/tour.php:110 +msgid "Easily find posts by date." +msgstr "" + +#: ../../addon.old/tour/tour.php:111 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we " +"think you might find interesting." +msgstr "" + +#: ../../addon.old/tour/tour.php:112 +msgid "Here you see channels you have connected to." +msgstr "" + +#: ../../addon.old/tour/tour.php:113 +msgid "Save your search so you can repeat it at a later date." +msgstr "" + +#: ../../addon.old/tour/tour.php:116 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It " +"is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "" + +#: ../../addon.old/tour/tour.php:117 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "" + +#: ../../addon.old/tour/tour.php:124 +msgid "" +"Welcome to Red Matrix! Would you like to see a tour of the UI?

        You " +"can pause it at any time and continue where you left off by reloading the " +"page, or navigting to another page.

        You can also advance by pressing " +"the return key" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:29 +msgid "high" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" + +#: ../../addon.old/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:49 +#: ../../addon.old/openclipatar/openclipatar.php:127 +msgid "System defaults:" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:53 +msgid "Preferred Clipart IDs" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:53 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:54 +msgid "Default Search Term" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:54 +msgid "The default search term. These will be shown second." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:55 +msgid "Return After" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:55 +msgid "Page to load after image selection." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:58 +msgid "Profile List" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:60 +msgid "Order of Preferred" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:60 +msgid "Sort order of preferred clipart ids." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:61 +#: ../../addon.old/openclipatar/openclipatar.php:67 +msgid "Newest first" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:64 +msgid "As entered" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:66 +msgid "Order of other" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:66 +msgid "Sort order of other clipart ids." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:68 +msgid "Most downloaded first" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:69 +msgid "Most liked first" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:71 +msgid "Preferred IDs Message" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:71 +msgid "Message to display above preferred results." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:77 +msgid "Uploaded by: " +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:77 +msgid "Drawn by: " +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:181 +#: ../../addon.old/openclipatar/openclipatar.php:193 +msgid "Use" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:191 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:194 +msgid "Search Term" +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:216 +msgid "Unknown error. Please try again later." +msgstr "" + +#: ../../addon.old/openclipatar/openclipatar.php:291 +msgid "Profile photo updated successfully." +msgstr "" + +#: ../../addon.old/upload_limits/upload_limits.php:24 +msgid "Show Upload Limits" +msgstr "" + +#: ../../addon.old/upload_limits/upload_limits.php:26 +msgid "Redmatrix configured maximum size: " +msgstr "" + +#: ../../addon.old/upload_limits/upload_limits.php:27 +msgid "PHP upload_max_filesize: " +msgstr "" + +#: ../../addon.old/upload_limits/upload_limits.php:28 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" + +#: ../../addon.old/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "" + +#: ../../addon.old/nsabait/nsabait.php:157 +msgid "NSAbait Settings" +msgstr "" + +#: ../../addon.old/nsabait/nsabait.php:161 +msgid "Enable NSAbait Plugin" +msgstr "" + +#: ../../addon.old/nsabait/nsabait.php:167 +msgid "Submit NSAbait Settings" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:36 +msgid "Post to Diaspora" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:141 +msgid "" +"Can't login to your Diaspora account. Please check username and password and " +"ensure you used the complete address (including http...)" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:148 +msgid "Diaspora Post Settings" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:158 +msgid "Enable Diaspora Post Plugin" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:163 +msgid "Diaspora username" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:168 +msgid "Diaspora password" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:173 +msgid "Diaspora site URL" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:178 +msgid "Post to Diaspora by default" +msgstr "" + +#: ../../addon.old/diaspora/diaspora.php:184 +msgid "Submit Diaspora Settings" +msgstr "" + +#: ../../addon.old/rainbowtag/rainbowtag.php:80 +msgid "Rainbowtag Settings" +msgstr "" + +#: ../../addon.old/rainbowtag/rainbowtag.php:84 +msgid "Enable Rainbowtag" +msgstr "" + +#: ../../addon.old/rainbowtag/rainbowtag.php:89 +msgid "Submit Rainbowtag Settings" +msgstr "" + +#: ../../addon.old/rainbowtag/rainbowtag.php:104 +msgid "Rainbowtag Settings saved." +msgstr "" + +#: ../../addon.old/mailhost/mailhost.php:37 +msgid "Mailhost Settings" +msgstr "" + +#: ../../addon.old/mailhost/mailhost.php:41 +msgid "Allow only the following hub to send you email notifications." +msgstr "" + +#: ../../addon.old/mailhost/mailhost.php:42 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../addon.old/mailhost/mailhost.php:46 +msgid "Submit Mailhost Settings" +msgstr "" + +#: ../../addon.old/mailhost/mailhost.php:60 +msgid "MAILHOST Settings saved." +msgstr "" + +#: ../../addon.old/qrator/qrator.php:19 +msgid "QR Generator" +msgstr "" + +#: ../../addon.old/qrator/qrator.php:20 +msgid "Enter some text" +msgstr "" + +#: ../../addon.old/randpost/randpost.php:96 +msgid "You're welcome." +msgstr "" + +#: ../../addon.old/randpost/randpost.php:97 +msgid "Ah shucks..." +msgstr "" + +#: ../../addon.old/randpost/randpost.php:98 +msgid "Don't mention it." +msgstr "" + +#: ../../addon.old/randpost/randpost.php:99 +msgid "<blush>" +msgstr "" + +#: ../../addon.old/donate/donate.php:20 +msgid "Project Servers and Resources" +msgstr "" + +#: ../../addon.old/donate/donate.php:21 +msgid "Project Creator and Tech Lead" +msgstr "" + +#: ../../addon.old/donate/donate.php:22 +msgid "Admin, developer, directorymin, support bloke" +msgstr "" + +#: ../../addon.old/donate/donate.php:49 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"RedMatrix possible." +msgstr "" + +#: ../../addon.old/donate/donate.php:52 +msgid "" +"The RedMatrix is provided primarily by volunteers giving their time and " +"expertise - and often paying out of pocket for services they share with " +"others." +msgstr "" + +#: ../../addon.old/donate/donate.php:53 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" + +#: ../../addon.old/donate/donate.php:54 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." +msgstr "" + +#: ../../addon.old/donate/donate.php:56 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" + +#: ../../addon.old/donate/donate.php:59 +msgid "Donate" +msgstr "" + +#: ../../addon.old/donate/donate.php:61 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" + +#: ../../addon.old/donate/donate.php:62 +msgid "Donate Now" +msgstr "" + +#: ../../addon.old/donate/donate.php:63 +msgid "" +"Or become a project sponsor (RedMatrix Project " +"only)" +msgstr "" + +#: ../../addon.old/donate/donate.php:64 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" + +#: ../../addon.old/donate/donate.php:65 +msgid "Sponsor" +msgstr "" + +#: ../../addon.old/donate/donate.php:68 +msgid "Special thanks to: " +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:302 +msgid "Jappix Mini Settings" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:305 +msgid "Activate addon" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:308 +msgid "Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:311 +msgid "Jabber username" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:314 +msgid "Jabber server name" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:319 +msgid "Jabber BOSH host URL" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:324 +msgid "Jabber password" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:329 +msgid "Encrypt Jabber password with RedMatrix password (recommended)" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:332 +msgid "RedMatrix password" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:335 +msgid "Approve subscription requests from RedMatrix contacts automatically" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:338 +msgid "Subscribe to RedMatrix connections automatically" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:341 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:346 +msgid "Submit Jappix Mini Settings" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:347 +msgid "Add contact" +msgstr "" + +#: ../../addon.old/likebanner/likebanner.php:40 +msgid "Your Webbie:" +msgstr "" + +#: ../../addon.old/likebanner/likebanner.php:43 +msgid "Fontsize (px):" +msgstr "" + +#: ../../addon.old/likebanner/likebanner.php:57 +msgid "Link:" +msgstr "" + +#: ../../addon.old/likebanner/likebanner.php:59 +msgid "Like us on RedMatrix" +msgstr "" + +#: ../../addon.old/likebanner/likebanner.php:61 +msgid "Embed:" +msgstr "" + +#: ../../addon.old/frphotos/frphotos.php:90 +msgid "Friendica Photo Album Import" +msgstr "" + +#: ../../addon.old/frphotos/frphotos.php:91 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" + +#: ../../addon.old/frphotos/frphotos.php:92 +msgid "Friendica Server base URL" +msgstr "" + +#: ../../addon.old/frphotos/frphotos.php:93 +msgid "Friendica Login Username" +msgstr "" + +#: ../../addon.old/frphotos/frphotos.php:94 +msgid "Friendica Login Password" +msgstr "" + +#: ../../addon.old/goblin/goblin.php:152 +msgid "You are now authenticated to goblin." +msgstr "" + +#: ../../addon.old/goblin/goblin.php:203 +msgid "MediaGoblin Post Settings" +msgstr "" + +#: ../../addon.old/goblin/goblin.php:245 +msgid "You are not authenticated to goblin" +msgstr "" + +#: ../../addon.old/goblin/goblin.php:279 +msgid "Goblin Settings saved." +msgstr "" + +#: ../../boot.php:1357 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1360 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1527 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "" + +#: ../../boot.php:1555 +msgid "Password" +msgstr "" + +#: ../../boot.php:1556 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1559 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1674 +msgid "permission denied" +msgstr "" + +#: ../../boot.php:1675 +msgid "Got Zot?" +msgstr "" + +#: ../../boot.php:2176 +msgid "toggle mobile" +msgstr "" + +#: ../../boot.php:2308 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2311 +#, php-format +msgid "[red] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2349 +msgid "Cron/Scheduled tasks not running." +msgstr "" + +#: ../../boot.php:2353 +#, php-format +msgid "[red] Cron tasks not running on %s" msgstr "" diff --git a/version.inc b/version.inc index 1916c4b26..8780222d0 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-05.962 +2015-03-06.963 -- cgit v1.2.3 From dcfa26819fa0913cdea31839792ba436ad6f4e66 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 6 Mar 2015 12:15:56 +0100 Subject: add ability to use css files with schemes --- view/theme/redbasic/php/style.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 5bc702d8c..7234e926f 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -59,6 +59,10 @@ if(! $a->install) { $schemefile = 'view/theme/redbasic/schema/' . $schema . '.php'; require_once ($schemefile); } + if(file_exists('view/theme/redbasic/schema/' . $schema . '.css')) { + $schemecss = file_get_contents('view/theme/redbasic/schema/' . $schema . '.css'); + } + } // If we haven't got a schema, load the default. We shouldn't touch this - we // should leave it for admins to define for themselves. @@ -441,4 +445,8 @@ if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) { if($converse_center && file_exists('view/theme/redbasic/css/converse_center.css')) { $x = file_get_contents('view/theme/redbasic/css/converse_center.css'); echo str_replace(array_keys($options), array_values($options), $x); -} +} + +if($schemecss) { + echo $schemecss; +} -- cgit v1.2.3 From 29c2223c674a2bc355ebbc6527243d230b45b141 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 6 Mar 2015 12:16:36 +0100 Subject: narrow navbar fixes --- view/theme/redbasic/css/narrow_navbar.css | 85 +++++++++++++++++++++---------- 1 file changed, 58 insertions(+), 27 deletions(-) diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index 8254825a5..f403fabbf 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -1,29 +1,60 @@ @media screen and (min-width: 760px) { -.navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;} -.navbar {min-height:25px !important;} -nav img { -height: 30px; -width: 30px; -margin: 2px 0px 1px 10px; -border-radius: 0px; -} -.navbar-left{height: 30px;} -.container-fluid {min-height:30px;} -.collapse .navbar-collapse {min-height:30px;} -#nav-search-text {margin:5px;} -header #banner {margin-top:5px;} -nav .dropdown-menu { -top: 33px;} -nav .badge { - position: relative; - top: -30px; - float: right; - font-size: 10px; - padding: 2px 6px; - cursor: pointer; -} -#jGrowl.top-right { - top: 30px; - right: 15px; -} + .navbar-nav > li > a { + padding-top:7px !important; + padding-bottom:3px !important; + } + + .navbar { + min-height:25px !important; + } + + nav img { + height: 30px; + width: 30px; + margin-top: 1px; + border-radius: 4px; + } + + .navbar-left { + height: 30px; + } + + .container-fluid { + min-height:30px; + } + + .collapse .navbar-collapse { + min-height:30px; + } + + #nav-search-text { + margin:6px 15px 4px 15px; + } + + #nav-search-spinner { + margin: 16px 0px 0px 25px; + } + + header #banner { + margin-top:5px; + } + + nav .dropdown-menu, + nav .acpopup { + top: 31px !important; + } + + nav .badge { + position: relative; + top: -31px; + float: right; + font-size: 10px; + padding: 2px 6px; + cursor: pointer; + } + + #jGrowl.top-right { + top: 30px; + right: 15px; + } } -- cgit v1.2.3 From 83c4c5b0950b0804a9e5777405dec9ca940fbac6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 6 Mar 2015 14:51:11 +0100 Subject: create schema/dark.css and create a sample --- .gitignore | 2 +- view/theme/redbasic/css/style.css | 6 +++--- view/theme/redbasic/php/style.php | 2 -- view/theme/redbasic/schema/dark.css | 13 +++++++++++++ view/theme/redbasic/schema/dark.php | 2 -- 5 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 view/theme/redbasic/schema/dark.css diff --git a/.gitignore b/.gitignore index 4b192fa76..8ded8b44a 100755 --- a/.gitignore +++ b/.gitignore @@ -63,4 +63,4 @@ composer.* #vendor/ # Exclude at least some vendor test files, examples, etc. vendor/sabre/*/tests/ -vendor/sabre/*/examples/ \ No newline at end of file +vendor/sabre/*/examples/ diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2f96c6e0d..69a78f610 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -339,7 +339,7 @@ footer { margin-bottom: 10px; padding: 10px; background-color: $comment_item_colour; - border-bottom: 1px solid $widget_brdrcolour; + border-bottom: 1px solid rgba(238,238,238,0.8); -moz-border-radius: $radiuspx; -webkit-border-radius: $radiuspx; border-radius: $radiuspx; @@ -709,7 +709,7 @@ a.rateme, div.rateme { width: 100%; float: left; background-color: $comment_item_colour; - border-bottom: 1px solid $widget_brdrcolour; + border-bottom: 1px solid rgba(238,238,238,0.8); -moz-border-radius: $radiuspx; -webkit-border-radius: $radiuspx; border-radius: $radiuspx; @@ -1816,7 +1816,7 @@ img.mail-list-sender-photo { .widget { background-color: $comment_item_colour; - border-bottom: 1px solid $widget_brdrcolour; + border-bottom: 1px solid rgba(238,238,238,0.8); -moz-border-radius: $radiuspx; -webkit-border-radius: $radiuspx; border-radius: $radiuspx; diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 7234e926f..a71ba7793 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -149,8 +149,6 @@ if(! $a->install) { $selected_active_colour = "#444"; if (! $selected_active_deco) $selected_active_deco = "none"; - if (! $widget_brdrcolour) - $widget_brdrcolour = "rgba(238,238,238,0.8)"; if (! $blockquote_colour) $blockquote_colour = "#4d4d4d"; if (! $blockquote_bgcolour) diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css new file mode 100644 index 000000000..853cd35a3 --- /dev/null +++ b/view/theme/redbasic/schema/dark.css @@ -0,0 +1,13 @@ +.vcard { + border-bottom: 1px solid #333; +} + +#contact-block { + border-bottom: 1px solid #333; +} + +.widget { + border-bottom: 1px solid #333; +} + + diff --git a/view/theme/redbasic/schema/dark.php b/view/theme/redbasic/schema/dark.php index 0203d30cd..3f462a311 100644 --- a/view/theme/redbasic/schema/dark.php +++ b/view/theme/redbasic/schema/dark.php @@ -64,8 +64,6 @@ $toolicon_activecolour = '#fff'; if (! $font_colour) $font_colour = "#ccc"; - if (! $widget_brdrcolour) - $widget_brdrcolour = "#333"; if (! $blockquote_colour) $blockquote_colour = "#ccc"; if (! $blockquote_bgcolour) -- cgit v1.2.3 From 1cea6144c90ec7e3e2cda07af655a0af36091381 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 6 Mar 2015 14:56:35 +0100 Subject: if we have not got a schema also look for default.css --- view/theme/redbasic/php/style.php | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index a71ba7793..30d5f0a16 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -64,14 +64,18 @@ if(! $a->install) { } } - // If we haven't got a schema, load the default. We shouldn't touch this - we - // should leave it for admins to define for themselves. - if (! $schema) { - if(file_exists('view/theme/redbasic/schema/default.php')) { - $schemefile = 'view/theme/redbasic/schema/default.php'; - require_once ($schemefile); - } - } + + // If we haven't got a schema, load the default. We shouldn't touch this - we + // should leave it for admins to define for themselves. + if (! $schema) { + if(file_exists('view/theme/redbasic/schema/default.php')) { + $schemefile = 'view/theme/redbasic/schema/default.php'; + require_once ($schemefile); + } + if(file_exists('view/theme/redbasic/schema/default.css')) { + $schemecss = file_get_contents('view/theme/redbasic/schema/default.css'); + } + } //Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting -- cgit v1.2.3 From e67983f327745b9c949cec259290658f3ed08618 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 6 Mar 2015 15:24:56 +0100 Subject: add more css files --- view/theme/redbasic/schema/boxy.css | 0 view/theme/redbasic/schema/notred.php | 5 ----- view/theme/redbasic/schema/simple_black_on_white.css | 13 +++++++++++++ view/theme/redbasic/schema/simple_black_on_white.php | 2 -- view/theme/redbasic/schema/simple_green_on_black.css | 13 +++++++++++++ view/theme/redbasic/schema/simple_green_on_black.php | 2 -- view/theme/redbasic/schema/simple_white_on_black.css | 13 +++++++++++++ 7 files changed, 39 insertions(+), 9 deletions(-) create mode 100644 view/theme/redbasic/schema/boxy.css delete mode 100644 view/theme/redbasic/schema/notred.php create mode 100644 view/theme/redbasic/schema/simple_black_on_white.css create mode 100644 view/theme/redbasic/schema/simple_green_on_black.css create mode 100644 view/theme/redbasic/schema/simple_white_on_black.css diff --git a/view/theme/redbasic/schema/boxy.css b/view/theme/redbasic/schema/boxy.css new file mode 100644 index 000000000..e69de29bb diff --git a/view/theme/redbasic/schema/notred.php b/view/theme/redbasic/schema/notred.php deleted file mode 100644 index 5a6dda336..000000000 --- a/view/theme/redbasic/schema/notred.php +++ /dev/null @@ -1,5 +0,0 @@ - Date: Fri, 6 Mar 2015 15:28:50 +0100 Subject: remove unused var --- view/theme/redbasic/schema/simple_white_on_black.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/theme/redbasic/schema/simple_white_on_black.php b/view/theme/redbasic/schema/simple_white_on_black.php index 95ede29ed..beef5e49e 100644 --- a/view/theme/redbasic/schema/simple_white_on_black.php +++ b/view/theme/redbasic/schema/simple_white_on_black.php @@ -64,8 +64,6 @@ $toolicon_activecolour = '#fff'; if (! $font_colour) $font_colour = "#fff"; - if (! $widget_brdrcolour) - $widget_brdrcolour = "#000"; if (! $blockquote_colour) $blockquote_colour = "#eee"; if (! $blockquote_bgcolour) -- cgit v1.2.3 From 53e908d7b7ea1b1ff9aa5ca6154dc4c9e7ca0d13 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 6 Mar 2015 20:45:26 -0800 Subject: when fixing "naked links" make sure not to double link double urls as seen in archive.org - which has the complete unescaped target url, scheme and all, as part of its own. --- include/bbcode.php | 2 +- mod/item.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 9a607c80d..6b8cb941f 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -472,7 +472,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $urlchars = '[a-zA-Z0-9\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\+\,]'; if (strpos($Text,'http') !== false) { - $Text = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/$urlchars+)/ism", '$1$2', $Text); + $Text = preg_replace("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ism", '$1$2', $Text); } if (strpos($Text,'[/qr]') !== false) { diff --git a/mod/item.php b/mod/item.php index dbee2df3b..8b45f5db9 100644 --- a/mod/item.php +++ b/mod/item.php @@ -523,7 +523,7 @@ function item_post(&$a) { $body = preg_replace_callback('/\[url(.*?)\[\/(url)\]/ism','red_escape_codeblock',$body); $body = preg_replace_callback('/\[zrl(.*?)\[\/(zrl)\]/ism','red_escape_codeblock',$body); - $body = preg_replace_callback("/([^\]\='".'"'."]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\+\,]+)/ism", 'red_zrl_callback', $body); + $body = preg_replace_callback("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\+\,]+)/ism", 'red_zrl_callback', $body); $body = preg_replace_callback('/\[\$b64zrl(.*?)\[\/(zrl)\]/ism','red_unescape_codeblock',$body); $body = preg_replace_callback('/\[\$b64url(.*?)\[\/(url)\]/ism','red_unescape_codeblock',$body); -- cgit v1.2.3 From 9cd7546be5ad7f24534653f310c15362c3f2baa6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 7 Mar 2015 15:56:28 +0100 Subject: hopefully fix #919 --- mod/removeaccount.php | 2 -- mod/removeme.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/mod/removeaccount.php b/mod/removeaccount.php index 4505bbea0..70979ec15 100644 --- a/mod/removeaccount.php +++ b/mod/removeaccount.php @@ -9,7 +9,6 @@ function removeaccount_post(&$a) { return; if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) - notice( t('Password not correct.') . EOL); return; if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) @@ -23,7 +22,6 @@ function removeaccount_post(&$a) { $account_id = get_account_id(); if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) - notice( t('Password not correct.') . EOL); return; if($account['account_password_changed'] != NULL_DATE) { diff --git a/mod/removeme.php b/mod/removeme.php index 52145d639..ff955775a 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -9,7 +9,6 @@ function removeme_post(&$a) { return; if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) - notice( t('Password not correct.') . EOL); return; if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) @@ -22,7 +21,6 @@ function removeme_post(&$a) { $account = $a->get_account(); if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) - notice( t('Password not correct.') . EOL); return; if($account['account_password_changed'] != NULL_DATE) { -- cgit v1.2.3 From aac4affe656176f0538513435a4fdd8a69f244fc Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 7 Mar 2015 15:21:23 -0800 Subject: directory: fix public forum listing --- mod/dirsearch.php | 8 +++++--- version.inc | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/mod/dirsearch.php b/mod/dirsearch.php index e734423a6..b4154c1eb 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -12,6 +12,8 @@ function dirsearch_content(&$a) { $ret = array('success' => false); +// logger('request: ' . print_r($_REQUEST,true)); + $dirmode = intval(get_config('system','directory_mode')); @@ -119,7 +121,7 @@ function dirsearch_content(&$a) { $sql_extra .= dir_query_build($joiner,'xprof_keywords',$keywords); if($forums) - $sql_extra .= dir_flag_build(' AND ','xchan_flags',XCHAN_FLAGS_PUBFORUM, $forums); + $safesql .= dir_flag_build(' AND ','xchan_flags',XCHAN_FLAGS_PUBFORUM, $forums); // we only support an age range currently. You must set both agege @@ -165,9 +167,9 @@ function dirsearch_content(&$a) { } - $safesql = (($safe > 0) ? " and not ( xchan_flags & " . intval(XCHAN_FLAGS_CENSORED|XCHAN_FLAGS_SELFCENSORED) . " )>0 " : ''); + $safesql .= (($safe > 0) ? " and not ( xchan_flags & " . intval(XCHAN_FLAGS_CENSORED|XCHAN_FLAGS_SELFCENSORED) . " )>0 " : ''); if($safe < 0) - $safesql = " and ( xchan_flags & " . intval(XCHAN_FLAGS_CENSORED|XCHAN_FLAGS_SELFCENSORED) . " )>0 "; + $safesql .= " and ( xchan_flags & " . intval(XCHAN_FLAGS_CENSORED|XCHAN_FLAGS_SELFCENSORED) . " )>0 "; if($limit) $qlimit = " LIMIT $limit "; diff --git a/version.inc b/version.inc index 8780222d0..c4fb1b2d6 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-06.963 +2015-03-07.964 -- cgit v1.2.3 From 480dac1af2dd5ed5ba3105577559568237fe5d80 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 7 Mar 2015 23:35:56 -0800 Subject: add reddress to profile - but all is not as it seems. Copy to clipboard is blocked because it isn't really a reddress and won't work if you copy it and try and use it somewhere. We should really convert the symbol back to '@' on copy and allow it to be copied, but this isn't as easy as it sounds and is left as an exercise for the community. If we just allow it to be copied we'll get a lot of bugs that making friends doesn't work. It does, but that isn't a legitimate reddress and even if we made allowances for it, Diaspora and Friendica and other webfinger based services wouldn't and would just say it can't be found or it's an illegal address. So if we block copy we'll just get bugs that it can't be copied. Eventually somebody will see this checkin and take it on themselves to figure out how to fix the address when copied to clipboard and then allow it to be copied. And there will be joy. --- .gitignore | 2 +- include/identity.php | 11 +++++++---- view/tpl/profile_vcard.tpl | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 8ded8b44a..b01074eaa 100755 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ *.lock *.kate-swp #Ignore emacs tempfiles -.#* +\#* # patch attempts *.orig *.rej diff --git a/include/identity.php b/include/identity.php index f63b576b2..079c1a245 100644 --- a/include/identity.php +++ b/include/identity.php @@ -724,12 +724,13 @@ function profile_load(&$a, $nickname, $profile = '') { $p[0]['extra_fields'] = $extra_fields; - $z = q("select xchan_photo_date from xchan where xchan_hash = '%s' limit 1", + $z = q("select xchan_photo_date, xchan_addr from xchan where xchan_hash = '%s' limit 1", dbesc($p[0]['channel_hash']) ); - if($z) + if($z) { $p[0]['picdate'] = $z[0]['xchan_photo_date']; - + $p[0]['reddress'] = str_replace('@','@',$z[0]['xchan_addr']); + } // fetch user tags if this isn't the default profile @@ -817,6 +818,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { $location = false; $address = false; $pdesc = true; + $reddress = true; if((! is_array($profile)) && (! count($profile))) return $o; @@ -906,7 +908,7 @@ logger('online: ' . $profile['online']); } if(($profile['hidewall'] && (! local_channel()) && (! remote_channel())) || $block ) { - $location = $pdesc = $gender = $marital = $homepage = $online = False; + $location = $reddress = $pdesc = $gender = $marital = $homepage = $online = False; } $firstname = ((strpos($profile['channel_name'],' ')) @@ -957,6 +959,7 @@ logger('online: ' . $profile['online']); '$homepage' => $homepage, '$chanmenu' => $channel_menu, '$diaspora' => $diaspora, + '$reddress' => $reddress, '$rating' => $z, '$contact_block' => $contact_block, )); diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index cae920c5d..2964d9c4b 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -16,7 +16,7 @@ {{/if}}

        {{$profile.name}}{{if $profile.online}} {{/if}}
        - + {{if $reddress}}
        {{$profile.reddress}}
        {{/if}} {{if $pdesc}}
        {{$profile.pdesc}}
        {{/if}}
        {{$profile.name}}
        -- cgit v1.2.3 From 488d5b871407d5be6e4c38692aa7134a1a0e9899 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 8 Mar 2015 12:07:32 +0100 Subject: port boxy scheme --- view/theme/redbasic/css/style.css | 19 ++++++++----------- view/theme/redbasic/php/style.php | 10 ---------- view/theme/redbasic/schema/boxy.css | 11 +++++++++++ view/theme/redbasic/schema/boxy.php | 15 --------------- 4 files changed, 19 insertions(+), 36 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 69a78f610..de7e8ef81 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1688,25 +1688,22 @@ img.mail-list-sender-photo { border-radius: $radiuspx; } -.comment .wall-item-body { - padding-left: $comment_padding; -} - .wall-item-content-wrapper.comment { background-color: $comment_item_colour; - border-left: $comment_border_left $comment_border_colour; - border-right: $comment_border_right $comment_border_colour; - border-bottom: $comment_border_bottom $comment_border_colour; + border-color: $comment_border_colour; + border-style: solid; + border-width: 1px 0px 0px 3px; border-radius: 0px; padding: 7px 10px 7px 7px; } .hide-comments-outer { background-color: $comment_item_colour; - border-left: $comment_border_left $comment_border_colour; - border-right: $comment_border_right $comment_border_colour; - border-bottom: $comment_border_bottom $comment_border_colour; - border-top: 1px dashed #ccc; + border-color: $comment_border_colour; + border-top-color: #ccc; + border-style: solid; + border-top-style: dashed; + border-width: 1px 0px 0px 3px; text-align: center; border-radius: 0px; } diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 30d5f0a16..cc67aaecc 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -282,16 +282,6 @@ if(! $a->install) { $chat_txtbgcol = "#EEE"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#FFFFFF"; - if (!$comment_padding) - $comment_padding="0px"; - if (!$comment_border_left) - $comment_border_left="3px solid"; - if (!$comment_border_right) - $comment_border_right="0px solid"; - if (!$comment_border_top) - $comment_border_top="0px solid"; - if (!$comment_border_bottom) - $comment_border_bottom="0px solid"; if (!$admintable_hoverbgcol) $admintable_hoverbgcol="#BBC7D7"; if (!$dirpopup_txtcol) diff --git a/view/theme/redbasic/schema/boxy.css b/view/theme/redbasic/schema/boxy.css index e69de29bb..f3da9b262 100644 --- a/view/theme/redbasic/schema/boxy.css +++ b/view/theme/redbasic/schema/boxy.css @@ -0,0 +1,11 @@ +.comment .wall-item-body { + padding-left: 42px; +} + +.wall-item-content-wrapper.comment { + border-width: 0px 1px 1px 1px; +} + +.hide-comments-outer { + border-width: 1px 1px 1px 1px; +} diff --git a/view/theme/redbasic/schema/boxy.php b/view/theme/redbasic/schema/boxy.php index 1de2f98cd..d609ccd25 100644 --- a/view/theme/redbasic/schema/boxy.php +++ b/view/theme/redbasic/schema/boxy.php @@ -1,19 +1,4 @@ Date: Sun, 8 Mar 2015 12:52:31 +0100 Subject: copy/paste typo --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index de7e8ef81..2dca3c428 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1692,7 +1692,7 @@ img.mail-list-sender-photo { background-color: $comment_item_colour; border-color: $comment_border_colour; border-style: solid; - border-width: 1px 0px 0px 3px; + border-width: 0px 0px 0px 3px; border-radius: 0px; padding: 7px 10px 7px 7px; } -- cgit v1.2.3 From 3298b4a0cbb93d83665c411fd4f8dac267bb006e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 8 Mar 2015 12:56:16 +0100 Subject: remove unused variables --- view/theme/redbasic/php/style.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index cc67aaecc..a3234862a 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -342,7 +342,6 @@ $options = array ( '$selected_active_colour' => $selected_active_colour, '$selected_active_deco' => $selected_active_deco, '$body_font_size' => $body_font_size, -'$widget_brdrcolour' => $widget_brdrcolour, '$blockquote_colour' => $blockquote_colour, '$blockquote_bgcolour' => $blockquote_bgcolour, '$blockquote_bordercolour' => $blockquote_bordercolour, @@ -415,10 +414,6 @@ $options = array ( '$comment_indent' => $comment_indent, '$body_width' => $body_width, '$comment_padding' => $comment_padding, -'$comment_border_left' => $comment_border_left, -'$comment_border_right' => $comment_border_right, -'$comment_border_top' => $comment_border_top, -'$comment_border_bottom' => $comment_border_bottom, '$admintable_hoverbgcol' => $admintable_hoverbgcol, '$dirpopup_txtcol' => $dirpopup_txtcol, '$dirpopup_linkcol' => $dirpopup_linkcol, -- cgit v1.2.3 From 23ea974615cc8ffb3756769fe872affcee3d5c3a Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Sat, 7 Mar 2015 18:19:52 +0100 Subject: Add alert to admin page about old PHP version. Add an alert message to admin summary page when a PHP version < 5.4 was detected as this has reached EOL and will not be supported with the new SabreDAV library. Some styleguide optimisation. Add NULL_DATE example to doc/sql_conventions.bb. Display a "0" when no plugins active in summary page. Added some more numbers to summary admin page, expired accounts, channels. Hope I interpreted them right. I have no idea how to get blocked accounts. --- doc/sql_conventions.bb | 6 +- mod/admin.php | 578 ++++++++++++++++++++++----------------------- view/tpl/admin_summary.tpl | 24 +- 3 files changed, 297 insertions(+), 311 deletions(-) diff --git a/doc/sql_conventions.bb b/doc/sql_conventions.bb index 2deb3cff6..f6a4e251f 100644 --- a/doc/sql_conventions.bb +++ b/doc/sql_conventions.bb @@ -56,7 +56,11 @@ $r = q("SELECT * FROM mail WHERE uid=%d AND $sql_extra ORDER BY created DESC LIM [b]NULL dates[/b] [li]To be written -[code]Example[/code][/li] +[code]// Example +$r = q("DELETE FROM mail WHERE expires != '%s' AND expires < %s ", + dbesc(NULL_DATE), + db_utcnow() +);[/code][/li] [b]Storing binary data[/b] [li]To be written diff --git a/mod/admin.php b/mod/admin.php index 13cf371b0..f461474c4 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1,12 +1,14 @@ 1){ - switch (argv(1)){ + if (argc() > 1) { + switch (argv(1)) { case 'site': admin_page_site_post($a); break; @@ -27,7 +29,6 @@ function admin_post(&$a){ case 'channels': admin_page_channels_post($a); break; - case 'plugins': if (argc() > 2 && is_file("addon/" . argv(2) . "/" . argv(2) . ".php")){ @@ -38,7 +39,6 @@ function admin_post(&$a){ } } goaway($a->get_baseurl(true) . '/admin/plugins/' . argv(2) ); - return; // NOTREACHED break; case 'themes': $theme = argv(2); @@ -51,10 +51,8 @@ function admin_post(&$a){ } info(t('Theme settings updated.')); if(is_ajax()) return; - - goaway($a->get_baseurl(true) . '/admin/themes/' . $theme ); - return; + goaway($a->get_baseurl(true) . '/admin/themes/' . $theme ); break; case 'logs': admin_page_logs_post($a); @@ -65,20 +63,17 @@ function admin_post(&$a){ case 'dbsync': admin_page_dbsync_post($a); break; - case 'profs': admin_page_profs_post($a); break; - } } goaway($a->get_baseurl(true) . '/admin' ); - return; // NOTREACHED } /** - * @param App $a + * @param App $$a * @return string */ function admin_content(&$a) { @@ -93,29 +88,29 @@ function admin_content(&$a) { */ // array( url, name, extra css classes ) - $aside = Array( - 'site' => Array($a->get_baseurl(true)."/admin/site/", t("Site") , "site"), - 'users' => Array($a->get_baseurl(true)."/admin/users/", t("Accounts") , "users"), - 'channels' => Array($a->get_baseurl(true)."/admin/channels/", t("Channels") , "channels"), - 'plugins' => Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"), - 'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"), - 'queue' => array(z_root() . '/admin/queue', t('Inspect queue'), 'queue'), -// 'hubloc' => Array($a->get_baseurl(true)."/admin/hubloc/", t("Server") , "server"), - 'profs' => array(z_root() . '/admin/profs', t('Profile Config'), 'profs'), - 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync") + $aside = array( + 'site' => array($a->get_baseurl(true)."/admin/site/", t("Site") , "site"), + 'users' => array($a->get_baseurl(true)."/admin/users/", t("Accounts") , "users"), + 'channels' => array($a->get_baseurl(true)."/admin/channels/", t("Channels") , "channels"), + 'plugins' => array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"), + 'themes' => array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"), + 'queue' => array(z_root() . '/admin/queue', t('Inspect queue'), 'queue'), +// 'hubloc' => array($a->get_baseurl(true)."/admin/hubloc/", t("Server") , "server"), + 'profs' => array(z_root() . '/admin/profs', t('Profile Config'), 'profs'), + 'dbsync' => array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync") ); - + /* get plugins admin page */ - - $r = q("SELECT * FROM `addon` WHERE `plugin_admin`=1"); - $aside['plugins_admin']=Array(); + + $r = q("SELECT * FROM addon WHERE plugin_admin = 1"); + $aside['plugins_admin'] = array(); foreach ($r as $h){ - $plugin =$h['name']; - $aside['plugins_admin'][] = Array($a->get_baseurl(true)."/admin/plugins/".$plugin, $plugin, "plugin"); + $plugin = $h['name']; + $aside['plugins_admin'][] = array($a->get_baseurl(true) . '/admin/plugins/' . $plugin, $plugin, 'plugin'); // temp plugins with admin $a->plugins_admin[] = $plugin; } - + $aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs"); $t = get_markup_template("admin_aside.tpl"); @@ -129,12 +124,11 @@ function admin_content(&$a) { )); - /** * Page content */ $o = ''; - + // urls if (argc() > 1){ switch (argv(1)) { @@ -169,12 +163,12 @@ function admin_content(&$a) { $o = admin_page_queue($a); break; default: - notice( t("Item not found.") ); + notice( t('Item not found.') ); } } else { $o = admin_page_summary($a); } - + if(is_ajax()) { echo $o; killme(); @@ -182,45 +176,76 @@ function admin_content(&$a) { } else { return $o; } -} +} /** - * Admin Summary Page - * @param App $a - * @return string + * @brief Returns content for Admin Summary Page. + * + * @param App $$a + * @return string HTML from parsed admin_summary.tpl */ function admin_page_summary(&$a) { - // list total user accounts, expirations etc. + $accounts = array(); + $r = q("SELECT COUNT(*) AS total, COUNT(IF(account_expires > %s, 1, NULL)) AS expiring, COUNT(IF(account_expires < %s AND account_expires != '%s', 1, NULL)) AS expired, COUNT(IF((account_flags & %d)>0, 1, NULL)) AS blocked FROM account", + db_utcnow(), + db_utcnow(), + dbesc(NULL_DATE), + intval(ACCOUNT_BLOCKED) + ); + if ($r) { + $accounts['total'] = array('label' => t('# Accounts'), 'val' => $r[0]['total']); + //@todo $accounts['blocked'] = array('label' => t('# blocked accounts'), 'val' => $r[0]['blocked']); + $accounts['expired'] = array('label' => t('# expired accounts'), 'val' => $r[0]['expired']); + $accounts['expiring'] = array('label' => t('# expiring accounts'), 'val' => $r[0]['expiring']); + } - - $r = q("SELECT COUNT(account_id) as total FROM `account`"); - $users = $r[0]['total']; - - $r = q("SELECT COUNT(id) as `count` FROM `register`"); + // pending registrations + $r = q("SELECT COUNT(id) AS `count` FROM register"); $pending = $r[0]['count']; - $r = q("select count(*) as total from outq where outq_delivered = 0"); - $queue = (($r) ? $r[0]['total'] : 0); + // available channels, primary and clones + $channels = array(); + $r = q("SELECT COUNT(*) AS total, COUNT(IF(channel_primary = 1, 1, NULL)) AS main, COUNT(IF(channel_primary = 0, 1, NULL)) AS clones FROM channel WHERE NOT (channel_pageflags & %d)>0", + intval(PAGE_REMOVED) + ); + if ($r) { + $channels['total'] = array('label' => t('# Channels'), 'val' => $r[0]['total']); + $channels['main'] = array('label' => t('# primary'), 'val' => $r[0]['main']); + $channels['clones'] = array('label' => t('# clones'), 'val' => $r[0]['clones']); + } // We can do better, but this is a quick queue status - + $r = q("SELECT COUNT(outq_delivered) AS total FROM outq WHERE outq_delivered = 0"); + $queue = (($r) ? $r[0]['total'] : 0); $queues = array( 'label' => t('Message queues'), 'queue' => $queue ); + // If no plugins active return 0, otherwise list of plugin names + $plugins = (count($a->plugins) == 0) ? count($a->plugins) : $a->plugins; + + // Could be extended to provide also other alerts to the admin + $alertmsg = ''; + // annoy admin about upcoming unsupported PHP version + if (version_compare(PHP_VERSION, '5.4', '<')) { + $alertmsg = 'Your PHP version ' . PHP_VERSION . ' will not be supported with the next major release of RedMatrix. You are strongly urged to upgrade to a current version.' + . '
        PHP 5.3 has reached its End of Life (EOL) in August 2014.' + . ' A list about current PHP versions can be found here.'; + } - $t = get_markup_template("admin_summary.tpl"); + $t = get_markup_template('admin_summary.tpl'); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Summary'), + '$adminalertmsg' => $alertmsg, '$queues' => $queues, - '$users' => Array( t('Registered users'), $users), - '$accounts' => $accounts, - '$pending' => Array( t('Pending registrations'), $pending), - '$version' => Array( t('Version'), RED_VERSION), - '$build' => get_config('system','db_version'), - '$plugins' => Array( t('Active plugins'), $a->plugins ) + '$accounts' => array( t('Registered accounts'), $accounts), + '$pending' => array( t('Pending registrations'), $pending), + '$channels' => array( t('Registered channels'), $channels), + '$plugins' => array( t('Active plugins'), $plugins ), + '$version' => array( t('Version'), RED_VERSION), + '$build' => get_config('system', 'db_version') )); } @@ -230,11 +255,11 @@ function admin_page_summary(&$a) { * @param App $a */ function admin_page_site_post(&$a){ - if (!x($_POST,"page_site")){ + if (!x($_POST, 'page_site')){ return; } - check_form_security_token_redirectOnErr('/admin/site', 'admin_site'); + check_form_security_token_redirectOnErr('/admin/site', 'admin_site'); $sitename = ((x($_POST,'sitename')) ? notags(trim($_POST['sitename'])) : ''); $banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false); @@ -244,69 +269,66 @@ function admin_page_site_post(&$a){ $theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : ''); // $site_channel = ((x($_POST,'site_channel')) ? notags(trim($_POST['site_channel'])) : ''); $maximagesize = ((x($_POST,'maximagesize')) ? intval(trim($_POST['maximagesize'])) : 0); - - + $register_policy = ((x($_POST,'register_policy')) ? intval(trim($_POST['register_policy'])) : 0); $access_policy = ((x($_POST,'access_policy')) ? intval(trim($_POST['access_policy'])) : 0); $abandon_days = ((x($_POST,'abandon_days')) ? intval(trim($_POST['abandon_days'])) : 0); - $register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : ''); - + $register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : ''); + $allowed_sites = ((x($_POST,'allowed_sites')) ? notags(trim($_POST['allowed_sites'])) : ''); $allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : ''); - $not_allowed_email = ((x($_POST,'not_allowed_email')) ? notags(trim($_POST['not_allowed_email'])) : ''); + $not_allowed_email = ((x($_POST,'not_allowed_email')) ? notags(trim($_POST['not_allowed_email'])) : ''); $block_public = ((x($_POST,'block_public')) ? True : False); $force_publish = ((x($_POST,'publish_all')) ? True : False); $disable_discover_tab = ((x($_POST,'disable_discover_tab')) ? True : False); $no_login_on_homepage = ((x($_POST,'no_login_on_homepage')) ? True : False); - $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : ''); - $no_community_page = !((x($_POST,'no_community_page')) ? True : False); - - $verifyssl = ((x($_POST,'verifyssl')) ? True : False); - $proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : ''); - $proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : ''); - $timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60); - $delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); - $poll_interval = ((x($_POST,'poll_interval'))? intval(trim($_POST['poll_interval'])) : 0); - $maxloadavg = ((x($_POST,'maxloadavg'))? intval(trim($_POST['maxloadavg'])) : 50); - $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); - $diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? intval($_POST['diaspora_enabled']) : 0); - $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); - - set_config('system','feed_contacts',$feed_contacts); - set_config('system','diaspora_enabled',$diaspora_enabled); - set_config('system','delivery_interval',$delivery_interval); - set_config('system','poll_interval',$poll_interval); - set_config('system','maxloadavg',$maxloadavg); - set_config('system','sitename',$sitename); - set_config('system','no_login_on_homepage',$no_login_on_homepage); - set_config('system','verify_email',$verify_email); - - if ($banner=="") { - del_config('system','banner'); - } - else { - set_config('system','banner', $banner); + $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : ''); + $no_community_page = !((x($_POST,'no_community_page')) ? True : False); + + $verifyssl = ((x($_POST,'verifyssl')) ? True : False); + $proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : ''); + $proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : ''); + $timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60); + $delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); + $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); + $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); + $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); + $diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? intval($_POST['diaspora_enabled']) : 0); + $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); + + set_config('system', 'feed_contacts', $feed_contacts); + set_config('system', 'diaspora_enabled', $diaspora_enabled); + set_config('system', 'delivery_interval', $delivery_interval); + set_config('system', 'poll_interval', $poll_interval); + set_config('system', 'maxloadavg', $maxloadavg); + set_config('system', 'sitename', $sitename); + set_config('system', 'no_login_on_homepage', $no_login_on_homepage); + set_config('system', 'verify_email', $verify_email); + + if ($banner == '') { + del_config('system', 'banner'); + } else { + set_config('system', 'banner', $banner); } - if ($admininfo==''){ - del_config('system','admininfo'); - } - else { + if ($admininfo == ''){ + del_config('system', 'admininfo'); + } else { require_once('include/text.php'); linkify_tags($a, $admininfo, local_channel()); - set_config('system','admininfo', $admininfo); + set_config('system', 'admininfo', $admininfo); } - set_config('system','language', $language); - set_config('system','theme', $theme); + set_config('system', 'language', $language); + set_config('system', 'theme', $theme); if ( $theme_mobile === '---' ) { - del_config('system','mobile_theme'); + del_config('system', 'mobile_theme'); } else { - set_config('system','mobile_theme', $theme_mobile); - } + set_config('system', 'mobile_theme', $theme_mobile); + } // set_config('system','site_channel', $site_channel); set_config('system','maximagesize', $maximagesize); - + set_config('system','register_policy', $register_policy); set_config('system','access_policy', $access_policy); set_config('system','account_abandon_days', $abandon_days); @@ -317,11 +339,10 @@ function admin_page_site_post(&$a){ set_config('system','block_public', $block_public); set_config('system','publish_all', $force_publish); set_config('system','disable_discover_tab', $disable_discover_tab); - if($global_directory=="") { - del_config('system','directory_submit_url'); - } - else { - set_config('system','directory_submit_url', $global_directory); + if ($global_directory == '') { + del_config('system', 'directory_submit_url'); + } else { + set_config('system', 'directory_submit_url', $global_directory); } set_config('system','no_community_page', $no_community_page); @@ -333,8 +354,6 @@ function admin_page_site_post(&$a){ info( t('Site settings updated.') . EOL); goaway($a->get_baseurl(true) . '/admin/site' ); - return; // NOTREACHED - } /** @@ -342,11 +361,11 @@ function admin_page_site_post(&$a){ * @return string */ function admin_page_site(&$a) { - + /* Installed langs */ $lang_choices = array(); $langs = glob('view/*/strings.php'); - + if(is_array($langs) && count($langs)) { if(! in_array('view/en/strings.php',$langs)) $langs[] = 'view/en/'; @@ -358,17 +377,17 @@ function admin_page_site(&$a) { } /* Installed themes */ - $theme_choices_mobile["---"] = t("Default"); - $theme_choices = array(); - $files = glob('view/theme/*'); - if($files) { - foreach($files as $file) { - $vars = ''; - $f = basename($file); - if (file_exists($file . '/library')) - continue; - if (file_exists($file . '/mobile')) - $vars = t('mobile'); + $theme_choices_mobile["---"] = t("Default"); + $theme_choices = array(); + $files = glob('view/theme/*'); + if($files) { + foreach($files as $file) { + $vars = ''; + $f = basename($file); + if (file_exists($file . '/library')) + continue; + if (file_exists($file . '/mobile')) + $vars = t('mobile'); if (file_exists($file . '/experimental')) $vars .= t('experimental'); if (file_exists($file . '/unsupported')) @@ -376,29 +395,30 @@ function admin_page_site(&$a) { if ($vars) { $theme_choices[$f] = $f . ' (' . $vars . ')'; $theme_choices_mobile[$f] = $f . ' (' . $vars . ')'; - } + } else { - $theme_choices[$f] = $f; - $theme_choices_mobile[$f] = $f; - } - } - } + $theme_choices[$f] = $f; + $theme_choices_mobile[$f] = $f; + } + } + } /* Banner */ - $banner = get_config('system','banner'); + $banner = get_config('system', 'banner'); if($banner == false) $banner = 'red'; + $banner = htmlspecialchars($banner); - + /* Admin Info */ - $admininfo = get_config('system','admininfo'); + $admininfo = get_config('system', 'admininfo'); /* Register policy */ $register_choices = Array( REGISTER_CLOSED => t("No"), REGISTER_APPROVE => t("Yes - with approval"), REGISTER_OPEN => t("Yes") - ); + ); /* Acess policy */ $access_choices = Array( @@ -407,7 +427,7 @@ function admin_page_site(&$a) { ACCESS_FREE => t("My site has free access only"), ACCESS_TIERED => t("My site offers free accounts with optional paid upgrades") ); - + // $ssl_choices = array( // SSL_POLICY_NONE => t("No SSL policy, links will track page SSL state"), // SSL_POLICY_FULL => t("Force all links to use SSL") @@ -422,9 +442,9 @@ function admin_page_site(&$a) { '$upload' => t('File upload'), '$corporate' => t('Policies'), '$advanced' => t('Advanced'), - + '$baseurl' => $a->get_baseurl(true), - // name, label, value, help string, extra data... + // name, label, value, help string, extra data... '$sitename' => array('sitename', t("Site name"), htmlspecialchars(get_config('system','sitename'), ENT_QUOTES, 'UTF-8'),''), '$banner' => array('banner', t("Banner/Logo"), $banner, ""), '$admininfo' => array('admininfo', t("Administrator Information"), $admininfo, t("Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here")), @@ -447,15 +467,14 @@ function admin_page_site(&$a) { '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), '$disable_discover_tab' => array('disable_discover_tab', t("Disable discovery tab"), get_config('system','disable_discover_tab'), t("Remove the tab in the network view with public content pulled from sources chosen for this site.")), '$no_login_on_homepage' => array('no_login_on_homepage', t("No login on Homepage"), get_config('system','no_login_on_homepage'), t("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).")), - + '$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""), '$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""), '$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")), '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")), '$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), - '$form_security_token' => get_form_security_token("admin_site"), - + '$form_security_token' => get_form_security_token("admin_site"), )); } @@ -471,10 +490,10 @@ function admin_page_hubloc_post(&$a){ intval($hublocid) ); $hublocurl = $arrhublocurl[0]['hubloc_url'] . '/post'; - + //perform ping $m = zot_build_packet($a->get_channel(),'ping'); - $r = zot_zot($hublocurl,$m); + $r = zot_zot($hublocurl,$m); //handle results and set the hubloc flags in db to make results visible $r2 = $r['body']; $r3 = $r2['success']; @@ -484,53 +503,44 @@ function admin_page_hubloc_post(&$a){ } else { //set HUBLOC_OFFLINE to 1 logger(' success = false ', LOGGER_DEBUG); - } - + //unfotunatly zping wont work, I guess return format is not correct - //require_once('mod/zping.php'); - //$r = zping_content($hublocurl); - //logger('zping answer: ' . $r, LOGGER_DEBUG); - + //require_once('mod/zping.php'); + //$r = zping_content($hublocurl); + //logger('zping answer: ' . $r, LOGGER_DEBUG); //in case of repair store new pub key for tested hubloc (all channel with this hubloc) in db //after repair set hubloc flags to 0 - } - goaway($a->get_baseurl(true) . '/admin/hubloc' ); - return; } function admin_page_hubloc(&$a) { - $o = ''; $hubloc = q("SELECT hubloc_id, hubloc_addr, hubloc_host, hubloc_status FROM hubloc"); - if(! $hubloc){ notice( t('No server found') . EOL); goaway($a->get_baseurl(true) . '/admin/hubloc'); } - $t = get_markup_template("admin_hubloc.tpl"); - return replace_macros($t, array( + $t = get_markup_template('admin_hubloc.tpl'); + return replace_macros($t, array( '$hubloc' => $hubloc, '$th_hubloc' => array(t('ID'), t('for channel'), t('on server'), t('Status')), - '$title' => t('Administration'), - '$page' => t('Server'), - '$queues' => $queues, - //'$accounts' => $accounts, /*$accounts is empty here*/ - '$pending' => Array( t('Pending registrations'), $pending), - '$plugins' => Array( t('Active plugins'), $a->plugins ), - '$form_security_token' => get_form_security_token("admin_hubloc") - )); - return $o; + '$title' => t('Administration'), + '$page' => t('Server'), + '$queues' => $queues, + //'$accounts' => $accounts, /*$accounts is empty here*/ + '$pending' => array( t('Pending registrations'), $pending), + '$plugins' => array( t('Active plugins'), $a->plugins ), + '$form_security_token' => get_form_security_token('admin_hubloc') + )); } function admin_page_dbsync(&$a) { - $o = ''; if(argc() > 3 && intval(argv(3)) && argv(2) === 'mark') { @@ -558,6 +568,7 @@ function admin_page_dbsync(&$a) { } else $o .= sprintf( t('Update function %s could not be found.'), $func); + return $o; } @@ -581,10 +592,9 @@ function admin_page_dbsync(&$a) { '$mark' => t('Mark success (if update was manually applied)'), '$apply' => t('Attempt to execute this update step automatically'), '$failed' => $failed - )); + )); return $o; - } function admin_page_queue($a) { @@ -604,7 +614,6 @@ function admin_page_queue($a) { } - $r = q("select count(outq_posturl) as total, outq_posturl from outq where outq_delivered = 0 group by outq_posturl order by total desc"); @@ -627,7 +636,6 @@ function admin_page_queue($a) { )); return $o; - } /** @@ -639,7 +647,7 @@ function admin_page_users_post(&$a){ $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() ); $users = ( x($_POST, 'user') ? $_POST['user'] : Array() ); - check_form_security_token_redirectOnErr('/admin/users', 'admin_users'); + check_form_security_token_redirectOnErr('/admin/users', 'admin_users'); if (x($_POST,'page_users_block')){ foreach($users as $uid){ @@ -657,7 +665,7 @@ function admin_page_users_post(&$a){ } notice( sprintf( tt("%s user deleted", "%s users deleted", count($users)), count($users)) ); } - + if (x($_POST,'page_users_approve')){ foreach($pending as $hash){ user_allow($hash); @@ -669,7 +677,6 @@ function admin_page_users_post(&$a){ } } goaway($a->get_baseurl(true) . '/admin/users' ); - return; // NOTREACHED } /** @@ -679,18 +686,18 @@ function admin_page_users_post(&$a){ function admin_page_users(&$a){ if (argc() > 2) { $uid = argv(3); - $account = q("SELECT * FROM account WHERE account_id = %d", + $account = q("SELECT * FROM account WHERE account_id = %d", intval($uid) ); if (! $account) { notice( t('Account not found') . EOL); goaway($a->get_baseurl(true) . '/admin/users' ); - } + } switch(argv(2)){ case "delete":{ - check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); + check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); // delete user require_once("include/Contact.php"); account_remove($uid,true,false); @@ -698,7 +705,7 @@ function admin_page_users(&$a){ notice( sprintf(t("User '%s' deleted"), $account[0]['account_email']) . EOL); }; break; case "block":{ - check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); + check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); q("UPDATE account SET account_flags = ( account_flags & ~%d ) where account_id = %d", intval(ACCOUNT_BLOCKED), intval( $uid ) @@ -708,15 +715,13 @@ function admin_page_users(&$a){ }; break; } goaway($a->get_baseurl(true) . '/admin/users' ); - return ''; // NOTREACHED - } - + /* get pending */ $pending = q("SELECT account.*, register.hash from account left join register on account_id = register.uid where (account_flags & %d )>0 ", intval(ACCOUNT_PENDING) - ); - + ); + /* get users */ $total = q("SELECT count(*) as total FROM account"); @@ -724,7 +729,7 @@ function admin_page_users(&$a){ $a->set_pager_total($total[0]['total']); $a->set_pager_itemspage(100); } - + // WEe'll still need to link email addresses to admin/users/channels or some such, but this bit doesn't exist yet. // That's where we need to be doing last post/channel flags/etc, not here. @@ -736,20 +741,20 @@ function admin_page_users(&$a){ $order = " order by account_email asc "; if($_REQUEST['order'] === 'expires') $order = " order by account_expires desc "; - if($_REQUEST['order'] === 'created') + if($_REQUEST['order'] === 'created') $order = " order by account_created desc "; - - $users =q("SELECT `account_id` , `account_email`, `account_lastlog`, `account_created`, `account_expires`, " . "`account_service_class`, ( account_flags & %d )>0 as `blocked`, " . + + $users = q("SELECT `account_id` , `account_email`, `account_lastlog`, `account_created`, `account_expires`, " . "`account_service_class`, ( account_flags & %d )>0 as `blocked`, " . "(SELECT %s FROM channel as ch " . "WHERE ch.channel_account_id = ac.account_id and not (ch.channel_pageflags & %d )>0) as `channels` " . "FROM account as ac where true $serviceclass $order limit %d offset %d ", intval(ACCOUNT_BLOCKED), db_concat('ch.channel_address', ' '), - intval(PAGE_REMOVED), + intval(PAGE_REMOVED), intval($a->pager['itemspage']), intval($a->pager['start']) ); - + // function _setup_users($e){ // $accounts = Array( // t('Normal Account'), @@ -765,8 +770,8 @@ function admin_page_users(&$a){ // return $e; // } // $users = array_map("_setup_users", $users); - - + + $t = get_markup_template("admin_users.tpl"); $o = replace_macros($t, array( // strings // @@ -789,7 +794,7 @@ function admin_page_users(&$a){ '$confirm_delete_multi' => t('Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'), '$confirm_delete' => t('The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'), - '$form_security_token' => get_form_security_token("admin_users"), + '$form_security_token' => get_form_security_token("admin_users"), // values // '$baseurl' => $a->get_baseurl(true), @@ -798,6 +803,7 @@ function admin_page_users(&$a){ '$users' => $users, )); $o .= paginate($a); + return $o; } @@ -817,7 +823,7 @@ function admin_page_channels_post(&$a){ q("UPDATE channel SET channel_pageflags = ( channel_pageflags & ~%d ) where channel_id = %d", intval(PAGE_CENSORED), intval( $uid ) - ); + ); proc_run('php','include/directory.php',$uid,'nopush'); } notice( sprintf( tt("%s channel censored/uncensored", "%s channels censored/uncensored", count($channels)), count($channels)) ); @@ -831,7 +837,6 @@ function admin_page_channels_post(&$a){ } goaway($a->get_baseurl(true) . '/admin/channels' ); - return; // NOTREACHED } /** @@ -841,18 +846,18 @@ function admin_page_channels_post(&$a){ function admin_page_channels(&$a){ if (argc() > 2) { $uid = argv(3); - $channel = q("SELECT * FROM channel WHERE channel_id = %d", + $channel = q("SELECT * FROM channel WHERE channel_id = %d", intval($uid) ); if (! $channel) { notice( t('Channel not found') . EOL); goaway($a->get_baseurl(true) . '/admin/channels' ); - } + } - switch(argv(2)){ + switch(argv(2)) { case "delete":{ - check_form_security_token_redirectOnErr('/admin/channels', 'admin_channels', 't'); + check_form_security_token_redirectOnErr('/admin/channels', 'admin_channels', 't'); // delete channel require_once("include/Contact.php"); channel_remove($uid,true); @@ -872,10 +877,8 @@ function admin_page_channels(&$a){ }; break; } goaway($a->get_baseurl(true) . '/admin/channels' ); - return ''; // NOTREACHED - } - + /* get channels */ $total = q("SELECT count(*) as total FROM channel where not (channel_pageflags & %d)>0", @@ -885,7 +888,7 @@ function admin_page_channels(&$a){ $a->set_pager_total($total[0]['total']); $a->set_pager_itemspage(100); } - + $order = " order by channel_name asc "; $channels = q("SELECT * from channel where not ( channel_pageflags & %d )>0 $order limit %d offset %d ", @@ -893,7 +896,7 @@ function admin_page_channels(&$a){ intval($a->pager['itemspage']), intval($a->pager['start']) ); - + if($channels) { for($x = 0; $x < count($channels); $x ++) { if($channels[$x]['channel_pageflags'] & PAGE_CENSORED) @@ -902,7 +905,7 @@ function admin_page_channels(&$a){ $channels[$x]['blocked'] = false; } } - + $t = get_markup_template("admin_channels.tpl"); $o = replace_macros($t, array( // strings // @@ -920,13 +923,14 @@ function admin_page_channels(&$a){ '$confirm_delete_multi' => t('Selected channels will be deleted!\n\nEverything that was posted in these channels on this site will be permanently deleted!\n\nAre you sure?'), '$confirm_delete' => t('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?'), - '$form_security_token' => get_form_security_token("admin_channels"), + '$form_security_token' => get_form_security_token("admin_channels"), // values // '$baseurl' => $a->get_baseurl(true), '$channels' => $channels, )); $o .= paginate($a); + return $o; } @@ -938,7 +942,7 @@ function admin_page_channels(&$a){ * @return string */ function admin_page_plugins(&$a){ - + /** * Single plugin */ @@ -948,9 +952,9 @@ function admin_page_plugins(&$a){ notice( t("Item not found.") ); return ''; } - + if (x($_GET,"a") && $_GET['a']=="t"){ - check_form_security_token_redirectOnErr('/admin/plugins', 'admin_themes', 't'); + check_form_security_token_redirectOnErr('/admin/plugins', 'admin_plugins', 't'); // Toggle plugin status $idx = array_search($plugin, $a->plugins); @@ -965,27 +969,27 @@ function admin_page_plugins(&$a){ } set_config("system","addon", implode(", ",$a->plugins)); goaway($a->get_baseurl(true) . '/admin/plugins' ); - return ''; // NOTREACHED } // display plugin details require_once('library/markdown.php'); if (in_array($plugin, $a->plugins)){ - $status="on"; $action= t("Disable"); + $status = 'on'; + $action = t('Disable'); } else { - $status="off"; $action= t("Enable"); + $status = 'off'; + $action = t('Enable'); } - - $readme=Null; + + $readme = null; if (is_file("addon/$plugin/README.md")){ $readme = file_get_contents("addon/$plugin/README.md"); $readme = Markdown($readme); } else if (is_file("addon/$plugin/README")){ $readme = "
        ". file_get_contents("addon/$plugin/README") ."
        "; - } - - $admin_form=""; + } + $admin_form = ''; if (is_array($a->plugins_admin) && in_array($plugin, $a->plugins_admin)){ @require_once("addon/$plugin/$plugin.php"); if(function_exists($plugin.'_plugin_admin')) { @@ -994,58 +998,55 @@ function admin_page_plugins(&$a){ } } - - $t = get_markup_template("admin_plugins_details.tpl"); + $t = get_markup_template('admin_plugins_details.tpl'); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Plugins'), '$toggle' => t('Toggle'), '$settings' => t('Settings'), '$baseurl' => $a->get_baseurl(true), - + '$plugin' => $plugin, '$status' => $status, '$action' => $action, '$info' => get_plugin_info($plugin), '$str_author' => t('Author: '), - '$str_maintainer' => t('Maintainer: '), - + '$str_maintainer' => t('Maintainer: '), + '$admin_form' => $admin_form, '$function' => 'plugins', '$screenshot' => '', '$readme' => $readme, - '$form_security_token' => get_form_security_token("admin_themes"), + '$form_security_token' => get_form_security_token('admin_plugins'), )); - } - - - + } + + /** * List plugins */ - $plugins = array(); - $files = glob("addon/*/"); + $files = glob('addon/*/'); if($files) { - foreach($files as $file) { + foreach($files as $file) { if (is_dir($file)){ - list($tmp, $id)=array_map("trim", explode("/",$file)); + list($tmp, $id) = array_map('trim', explode('/', $file)); $info = get_plugin_info($id); $plugins[] = array( $id, (in_array($id, $a->plugins)?"on":"off") , $info); } } } - - $t = get_markup_template("admin_plugins.tpl"); + + $t = get_markup_template('admin_plugins.tpl'); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Plugins'), '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(true), - '$function' => 'plugins', + '$function' => 'plugins', '$plugins' => $plugins, - '$form_security_token' => get_form_security_token("admin_themes"), + '$form_security_token' => get_form_security_token('admin_plugins'), )); } @@ -1074,7 +1075,7 @@ function toggle_theme(&$themes,$th,&$result) { * @param string $th * @return int */ -function theme_status($themes,$th) { +function theme_status($themes, $th) { for($x = 0; $x < count($themes); $x ++) { if($themes[$x]['name'] === $th) { if($themes[$x]['allowed']) { @@ -1107,7 +1108,7 @@ function rebuild_theme_table($themes) { return $o; } - + /** * Themes admin page * @@ -1115,9 +1116,9 @@ function rebuild_theme_table($themes) { * @return string */ function admin_page_themes(&$a){ - - $allowed_themes_str = get_config('system','allowed_themes'); - $allowed_themes_raw = explode(',',$allowed_themes_str); + + $allowed_themes_str = get_config('system', 'allowed_themes'); + $allowed_themes_raw = explode(',', $allowed_themes_str); $allowed_themes = array(); if(count($allowed_themes_raw)) foreach($allowed_themes_raw as $x) @@ -1125,16 +1126,16 @@ function admin_page_themes(&$a){ $allowed_themes[] = trim($x); $themes = array(); - $files = glob('view/theme/*'); - if($files) { - foreach($files as $file) { - $f = basename($file); - $is_experimental = intval(file_exists($file . '/.experimental')); + $files = glob('view/theme/*'); + if($files) { + foreach($files as $file) { + $f = basename($file); + $is_experimental = intval(file_exists($file . '/.experimental')); $is_supported = 1-(intval(file_exists($file . '/.unsupported'))); // Is not used yet $is_allowed = intval(in_array($f,$allowed_themes)); $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed); - } - } + } + } if(! count($themes)) { notice( t('No themes found.')); @@ -1151,22 +1152,21 @@ function admin_page_themes(&$a){ notice( t("Item not found.") ); return ''; } - + if (x($_GET,"a") && $_GET['a']=="t"){ - check_form_security_token_redirectOnErr('/admin/themes', 'admin_themes', 't'); + check_form_security_token_redirectOnErr('/admin/themes', 'admin_themes', 't'); // Toggle theme status - toggle_theme($themes,$theme,$result); + toggle_theme($themes, $theme, $result); $s = rebuild_theme_table($themes); if($result) - info( sprintf('Theme %s enabled.',$theme)); + info( sprintf('Theme %s enabled.', $theme)); else - info( sprintf('Theme %s disabled.',$theme)); + info( sprintf('Theme %s disabled.', $theme)); - set_config('system','allowed_themes',$s); + set_config('system', 'allowed_themes', $s); goaway($a->get_baseurl(true) . '/admin/themes' ); - return ''; // NOTREACHED } // display theme details @@ -1177,30 +1177,28 @@ function admin_page_themes(&$a){ } else { $status="off"; $action= t("Enable"); } - + $readme=Null; if (is_file("view/theme/$theme/README.md")){ $readme = file_get_contents("view/theme/$theme/README.md"); $readme = Markdown($readme); } else if (is_file("view/theme/$theme/README")){ $readme = "
        ". file_get_contents("view/theme/$theme/README") ."
        "; - } - - $admin_form=""; + } + + $admin_form = ''; if (is_file("view/theme/$theme/php/config.php")){ require_once("view/theme/$theme/php/config.php"); if(function_exists("theme_admin")){ $admin_form = theme_admin($a); } - } - $screenshot = array( get_theme_screenshot($theme), t('Screenshot')); if(! stristr($screenshot[0],$theme)) - $screenshot = null; + $screenshot = null; - $t = get_markup_template("admin_plugins_details.tpl"); + $t = get_markup_template('admin_plugins_details.tpl'); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Themes'), @@ -1219,24 +1217,23 @@ function admin_page_themes(&$a){ '$screenshot' => $screenshot, '$readme' => $readme, - '$form_security_token' => get_form_security_token("admin_themes"), + '$form_security_token' => get_form_security_token('admin_themes'), )); - } - - - + } + + /** * List themes */ - + $xthemes = array(); if($themes) { foreach($themes as $th) { $xthemes[] = array($th['name'],(($th['allowed']) ? "on" : "off"), get_theme_info($th['name'])); } } - - $t = get_markup_template("admin_plugins.tpl"); + + $t = get_markup_template('admin_plugins.tpl'); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Themes'), @@ -1246,7 +1243,7 @@ function admin_page_themes(&$a){ '$plugins' => $xthemes, '$experimental' => t('[Experimental]'), '$unsupported' => t('[Unsupported]'), - '$form_security_token' => get_form_security_token("admin_themes"), + '$form_security_token' => get_form_security_token('admin_themes'), )); } @@ -1256,25 +1253,21 @@ function admin_page_themes(&$a){ * * @param App $a */ - function admin_page_logs_post(&$a) { - if (x($_POST,"page_logs")) { - check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs'); + if (x($_POST, 'page_logs')) { + check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs'); - $logfile = ((x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : ''); - $debugging = ((x($_POST,'debugging')) ? true : false); - $loglevel = ((x($_POST,'loglevel')) ? intval(trim($_POST['loglevel'])) : 0); + $logfile = ((x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : ''); + $debugging = ((x($_POST,'debugging')) ? true : false); + $loglevel = ((x($_POST,'loglevel')) ? intval(trim($_POST['loglevel'])) : 0); set_config('system','logfile', $logfile); set_config('system','debugging', $debugging); set_config('system','loglevel', $loglevel); - - } - info( t("Log settings updated.") ); + info( t('Log settings updated.') ); goaway($a->get_baseurl(true) . '/admin/logs' ); - return; // NOTREACHED } /** @@ -1282,7 +1275,7 @@ function admin_page_logs_post(&$a) { * @return string */ function admin_page_logs(&$a){ - + $log_choices = Array( LOGGER_NORMAL => 'Normal', LOGGER_TRACE => 'Trace', @@ -1290,10 +1283,10 @@ function admin_page_logs(&$a){ LOGGER_DATA => 'Data', LOGGER_ALL => 'All' ); - - $t = get_markup_template("admin_logs.tpl"); - $f = get_config('system','logfile'); + $t = get_markup_template('admin_logs.tpl'); + + $f = get_config('system', 'logfile'); $data = ''; @@ -1322,7 +1315,7 @@ readable."); } fclose($fp); } - } + } return replace_macros($t, array( '$title' => t('Administration'), @@ -1332,13 +1325,13 @@ readable."); '$data' => $data, '$baseurl' => $a->get_baseurl(true), '$logname' => get_config('system','logfile'), - - // name, label, value, help string, extra data... - '$debugging' => array('debugging', t("Debugging"),get_config('system','debugging'), ""), - '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Red top-level directory.")), - '$loglevel' => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices), - '$form_security_token' => get_form_security_token("admin_logs"), + // name, label, value, help string, extra data... + '$debugging' => array('debugging', t("Debugging"),get_config('system','debugging'), ""), + '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Red top-level directory.")), + '$loglevel' => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices), + + '$form_security_token' => get_form_security_token('admin_logs'), )); } @@ -1367,7 +1360,6 @@ function admin_page_profs_post(&$a) { // add to chosen array basic or advanced goaway(z_root() . '/admin/profs'); - } function admin_page_profs(&$a) { @@ -1390,7 +1382,6 @@ function admin_page_profs(&$a) { '$field_help' => array('field_help',t('Help text'),$_REQUEST['field_help'],t('Additional info (optional)')), '$submit' => t('Save') )); - } if((argc() > 2) && intval(argv(2))) { @@ -1413,9 +1404,4 @@ function admin_page_profs(&$a) { )); } -} - - - - - +} \ No newline at end of file diff --git a/view/tpl/admin_summary.tpl b/view/tpl/admin_summary.tpl index 7f752a773..259640849 100755 --- a/view/tpl/admin_summary.tpl +++ b/view/tpl/admin_summary.tpl @@ -1,36 +1,32 @@

        {{$title}} - {{$page}}

        - +{{if $adminalertmsg}} + +{{/if}}
        {{$queues.label}}
        {{$queues.queue}}
        +
        +
        {{$accounts.0}}
        +
        {{foreach from=$accounts.1 item=acc name=account}}{{$acc.val}}{{if !$smarty.foreach.account.last}} / {{/if}}{{/foreach}}
        +
        {{$pending.0}}
        {{$pending.1}}
        -
        -
        {{$users.0}}
        -
        {{$users.1}}
        +
        {{$channels.0}}
        +
        {{foreach from=$channels.1 item=ch name=chan}}{{$ch.val}}{{if !$smarty.foreach.chan.last}} / {{/if}}{{/foreach}}
        -
        {{$plugins.0}}
        {{foreach $plugins.1 as $p}} {{$p}} {{/foreach}} -  
        {{$version.0}}
        {{$version.1}} - {{$build}}
        - -
        +
        \ No newline at end of file -- cgit v1.2.3 From 9e6d85b4ea3e04c605f71b22121053c6562a7c3e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 8 Mar 2015 21:28:58 +0100 Subject: add hover effect to checkbox field --- view/theme/redbasic/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2dca3c428..576eba5f6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2297,6 +2297,10 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { display: none; } +.field.checkbox:hover label { + color: $link_colour; +} + .field.checkbox > div label { display: block; overflow: hidden; cursor: pointer; border: 1px solid #ccc; @@ -2319,6 +2323,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { content: attr(data-on); padding-right: 21px; background-color: $item_colour; + color: $font_colour; text-align: right; } -- cgit v1.2.3 From b5683bfac4fd5e0e6cc15995c5c4f574e54e33da Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Mar 2015 14:11:38 -0700 Subject: change default affinity (abook_closeness) to 80 for all new connections going forward (was 99). This way it can be adjusted down later without requiring you to change all your existing connections upward (since your existing connections are likely all sitting at 99 at the moment). The default setting is also configurable with a pconfig system.new_abook_closeness --- include/diaspora.php | 8 +++++++- include/follow.php | 8 +++++++- include/zot.php | 8 +++++++- version.inc | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 553c7474c..7295b4261 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -709,13 +709,19 @@ function diaspora_request($importer,$xml) { $their_perms = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_PHOTOS|PERMS_R_ABOOK|PERMS_W_STREAM|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT|PERMS_R_STORAGE|PERMS_R_PAGES; + + $closeness = get_pconfig($importer['channel_id'],'system','new_abook_closeness'); + if($closeness === false) + $closeness = 80; + + $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_my_perms, abook_their_perms, abook_closeness, abook_rating, abook_created, abook_updated, abook_connected, abook_dob, abook_flags) values ( %d, %d, '%s', %d, %d, %d, %d, '%s', '%s', '%s', '%s', %d )", intval($importer['channel_account_id']), intval($importer['channel_id']), dbesc($ret['xchan_hash']), intval($default_perms), intval($their_perms), - intval(99), + intval($closeness), intval(0), dbesc(datetime_convert()), dbesc(datetime_convert()), diff --git a/include/follow.php b/include/follow.php index 2d6791420..e13b5f775 100644 --- a/include/follow.php +++ b/include/follow.php @@ -227,10 +227,16 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) ); } else { - $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_flags, abook_their_perms, abook_my_perms, abook_created, abook_updated ) + + $closeness = get_pconfig($uid,'system','new_abook_closeness'); + if($closeness === false) + $closeness = 80; + + $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_flags, abook_their_perms, abook_my_perms, abook_created, abook_updated ) values( %d, %d, '%s', %d, %d, %d, '%s', '%s' ) ", intval($aid), intval($uid), + intval($closeness), dbesc($xchan_hash), intval(($is_http) ? ABOOK_FLAG_FEED : 0), intval(($is_http) ? $their_perms|PERMS_R_STREAM|PERMS_A_REPUBLISH : $their_perms), diff --git a/include/zot.php b/include/zot.php index 670583929..c9019ca7a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -464,9 +464,15 @@ function zot_refresh($them,$channel = null, $force = false) { // Keep original perms to check if we need to notify them $previous_perms = get_all_perms($channel['channel_id'],$x['hash']); - $y = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_dob, abook_flags ) values ( %d, %d, '%s', %d, %d, '%s', '%s', '%s', %d )", + + $closeness = get_pconfig($channel['channel_id'],'system','new_abook_closeness'); + if($closeness === false) + $closeness = 80; + + $y = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_dob, abook_flags ) values ( %d, %d, '%s', %d, %d, '%s', '%s', '%s', %d )", intval($channel['channel_account_id']), intval($channel['channel_id']), + intval($closeness), dbesc($x['hash']), intval($their_perms), intval($default_perms), diff --git a/version.inc b/version.inc index c4fb1b2d6..c02f7674a 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-07.964 +2015-03-08.965 -- cgit v1.2.3 From c6d45858bb73c0f3765fcc7257ed1347d6de1577 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Sun, 8 Mar 2015 19:02:48 +0100 Subject: Fixing (un)blocking accounts in /admin/users. When I look at the instructions in sql_conventions about setting bit flags I don't understand how this could have worked before. Changed the behavior for (un)blocking so that it should work now. --- mod/admin.php | 95 +++++++++++++++++++++++++++++++----------------- view/tpl/admin_users.tpl | 54 +++++++++++++-------------- 2 files changed, 87 insertions(+), 62 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index f461474c4..714548f04 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -197,7 +197,7 @@ function admin_page_summary(&$a) { ); if ($r) { $accounts['total'] = array('label' => t('# Accounts'), 'val' => $r[0]['total']); - //@todo $accounts['blocked'] = array('label' => t('# blocked accounts'), 'val' => $r[0]['blocked']); + $accounts['blocked'] = array('label' => t('# blocked accounts'), 'val' => $r[0]['blocked']); $accounts['expired'] = array('label' => t('# expired accounts'), 'val' => $r[0]['expired']); $accounts['expiring'] = array('label' => t('# expiring accounts'), 'val' => $r[0]['expiring']); } @@ -639,48 +639,66 @@ function admin_page_queue($a) { } /** - * Users admin page + * @brief Handle POST actions on users admin page. + * + * This function is called when on the admin user/account page the form was + * submitted to handle multiple operations at once. If one of the icons next + * to an entry are pressed the function admin_page_users() will handle this. * * @param App $a */ -function admin_page_users_post(&$a){ - $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() ); - $users = ( x($_POST, 'user') ? $_POST['user'] : Array() ); +function admin_page_users_post($a) { + $pending = ( x($_POST, 'pending') ? $_POST['pending'] : array() ); + $users = ( x($_POST, 'user') ? $_POST['user'] : array() ); + $blocked = ( x($_POST, 'blocked') ? $_POST['blocked'] : array() ); check_form_security_token_redirectOnErr('/admin/users', 'admin_users'); - if (x($_POST,'page_users_block')){ - foreach($users as $uid){ - q("UPDATE account SET account_flags = (account_flags & %d) where account_id = %d", + // change to switch structure? + // account block/unblock button was submitted + if (x($_POST, 'page_users_block')) { + for ($i = 0; $i < count($users); $i++) { + // if account is blocked remove blocked bit-flag, otherwise add blocked bit-flag + $op = ($blocked[$i]) ? '& ~' : '| '; + q("UPDATE account SET account_flags = (account_flags $op%d) WHERE account_id = %d", intval(ACCOUNT_BLOCKED), - intval( $uid ) + intval($users[$i]) ); } notice( sprintf( tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)), count($users)) ); } - if (x($_POST,'page_users_delete')){ - require_once("include/Contact.php"); - foreach($users as $uid){ - account_remove($uid,true,false); + // account delete button was submitted + if (x($_POST, 'page_users_delete')) { + require_once('include/Contact.php'); + foreach ($users as $uid){ + account_remove($uid, true, false); } notice( sprintf( tt("%s user deleted", "%s users deleted", count($users)), count($users)) ); } - - if (x($_POST,'page_users_approve')){ - foreach($pending as $hash){ + // registration approved button was submitted + if (x($_POST, 'page_users_approve')) { + foreach ($pending as $hash) { user_allow($hash); } } - if (x($_POST,'page_users_deny')){ - foreach($pending as $hash){ + // registration deny button was submitted + if (x($_POST, 'page_users_deny')) { + foreach ($pending as $hash) { user_deny($hash); } } + goaway($a->get_baseurl(true) . '/admin/users' ); } /** - * @param App $a + * @brief Generate users admin page and handle single item operations. + * + * This function generates the users/account admin page and handles the actions + * if an icon next to an entry was clicked. If several items were selected and + * the form was submitted it is handled by the function admin_page_users_post(). + * + * @param App &$a * @return string */ function admin_page_users(&$a){ @@ -695,25 +713,34 @@ function admin_page_users(&$a){ goaway($a->get_baseurl(true) . '/admin/users' ); } - switch(argv(2)){ - case "delete":{ - check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); + check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); + + switch (argv(2)){ + case 'delete': // delete user - require_once("include/Contact.php"); + require_once('include/Contact.php'); account_remove($uid,true,false); - + notice( sprintf(t("User '%s' deleted"), $account[0]['account_email']) . EOL); - }; break; - case "block":{ - check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); - q("UPDATE account SET account_flags = ( account_flags & ~%d ) where account_id = %d", + break; + case 'block': + q("UPDATE account SET account_flags = ( account_flags | %d ) WHERE account_id = %d", intval(ACCOUNT_BLOCKED), - intval( $uid ) + intval($uid) ); - notice( sprintf( (($account[0]['account_flags'] & ACCOUNT_BLOCKED) ? t("User '%s' unblocked"):t("User '%s' blocked")) , $account[0]['account_email']) . EOL); - }; break; + notice( sprintf( t("User '%s' blocked") , $account[0]['account_email']) . EOL); + break; + case 'unblock': + q("UPDATE account SET account_flags = ( account_flags & ~%d ) WHERE account_id = %d", + intval(ACCOUNT_BLOCKED), + intval($uid) + ); + + notice( sprintf( t("User '%s' unblocked"), $account[0]['account_email']) . EOL); + break; } + goaway($a->get_baseurl(true) . '/admin/users' ); } @@ -725,7 +752,7 @@ function admin_page_users(&$a){ /* get users */ $total = q("SELECT count(*) as total FROM account"); - if(count($total)) { + if (count($total)) { $a->set_pager_total($total[0]['total']); $a->set_pager_itemspage(100); } @@ -772,7 +799,7 @@ function admin_page_users(&$a){ // $users = array_map("_setup_users", $users); - $t = get_markup_template("admin_users.tpl"); + $t = get_markup_template('admin_users.tpl'); $o = replace_macros($t, array( // strings // '$title' => t('Administration'), @@ -813,7 +840,7 @@ function admin_page_users(&$a){ * * @param App $a */ -function admin_page_channels_post(&$a){ +function admin_page_channels_post(&$a) { $channels = ( x($_POST, 'channel') ? $_POST['channel'] : Array() ); check_form_security_token_redirectOnErr('/admin/channels', 'admin_channels'); diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index 7e0b828d9..52ccbf253 100755 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -10,15 +10,15 @@ return false; } -
        +

        {{$title}} - {{$page}}

        - +
        - - + +

        {{$h_pending}}

        {{if $pending}} - +
        {{foreach $th_pending as $th}}{{/foreach}} @@ -31,27 +31,25 @@ - + {{/foreach}}
        {{$th}}
        {{$u.account_created}} - - + +
        - -
        + +
        {{else}}

        {{$no_pending}}

        {{/if}} - - - - + +

        {{$h_users}}

        {{if $users}} - +
        {{foreach $th_users as $th}}{{/foreach}} @@ -62,30 +60,30 @@ {{foreach $users as $u}} - - + - - - - - - + + + + + + {{/foreach}}
        {{$th}}
        {{$u.channels}}{{$u.account_created}}{{$u.account_service_class}}{{$u.channels}}{{$u.account_created}}{{$u.account_service_class}} - - + +
        - -
        + +
        {{else}} NO USERS?!? {{/if}}
        -
        +
        \ No newline at end of file -- cgit v1.2.3 From 904596c7da50f63fd23c9008c97f6cc86d8c8697 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Mon, 9 Mar 2015 03:07:48 -0300 Subject: Fix missing value in insert for default closeness --- include/follow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/follow.php b/include/follow.php index e13b5f775..fd4e1597a 100644 --- a/include/follow.php +++ b/include/follow.php @@ -233,7 +233,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $closeness = 80; $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_flags, abook_their_perms, abook_my_perms, abook_created, abook_updated ) - values( %d, %d, '%s', %d, %d, %d, '%s', '%s' ) ", + values( %d, %d, %d, '%s', %d, %d, %d, '%s', '%s' ) ", intval($aid), intval($uid), intval($closeness), -- cgit v1.2.3 From aff75888326e8f3ff2b9fbb91d653c7857940e6b Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 9 Mar 2015 00:44:58 -0700 Subject: fix comanche regions after comanche refactor a few days ago --- mod/page.php | 1 + version.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/page.php b/mod/page.php index e8f17ebda..05d88aa52 100644 --- a/mod/page.php +++ b/mod/page.php @@ -92,6 +92,7 @@ function page_init(&$a) { if($l) { require_once('include/comanche.php'); comanche_parser(get_app(),$l[0]['body']); + get_app()->pdl = $l[0]['body']; } } diff --git a/version.inc b/version.inc index c02f7674a..02cb535df 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-03-08.965 +2015-03-09.966 -- cgit v1.2.3 From 7c3fb06267191adc38a946445d30136fa64817c1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 9 Mar 2015 16:34:25 +0100 Subject: some more hover magic for field checkbox --- view/theme/redbasic/css/style.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 576eba5f6..60acb1974 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2297,17 +2297,21 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { display: none; } -.field.checkbox:hover label { - color: $link_colour; -} - .field.checkbox > div label { display: block; overflow: hidden; cursor: pointer; border: 1px solid #ccc; - border-radius: 5px; + border-radius: 4px; margin:0px; } +.field.checkbox:hover label { + color: $link_colour; +} + +.field.checkbox:hover > div label { + border: 1px solid $link_colour;; +} + .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s; -- cgit v1.2.3 From 00d7ea90a20c82d0f42541d64fe9c5ad23f18d6e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 9 Mar 2015 16:52:37 +0100 Subject: add transition effect for border-color --- view/theme/redbasic/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 60acb1974..e7ccfd19a 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2302,6 +2302,9 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { border: 1px solid #ccc; border-radius: 4px; margin:0px; + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .field.checkbox:hover label { @@ -2309,7 +2312,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { } .field.checkbox:hover > div label { - border: 1px solid $link_colour;; + border-color: $link_colour; } .onoffswitch-inner { -- cgit v1.2.3 From e7d32442762dfda9a65468fb448fcd7e4ec5566a Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 9 Mar 2015 15:16:52 -0700 Subject: Allow site to over-ride directory options. Bugger off. --- include/dir_fns.php | 69 ++++++++++++++++++++++++----------------------------- mod/directory.php | 15 ++---------- 2 files changed, 33 insertions(+), 51 deletions(-) diff --git a/include/dir_fns.php b/include/dir_fns.php index cd6d452d6..4c6c40f15 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -65,6 +65,35 @@ function check_upstream_directory() { return; } +function get_globaldir_setting($observer) { + + if($observer) + $globaldir = get_xconfig($observer,'directory','globaldir'); + else + $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); + + if($globaldir === false) + $globaldir = get_config('directory','globaldir'); + + return $globaldir; +} + +function get_safemode_setting($observer) { + + if ($observer) + $safe_mode = get_xconfig($observer,'directory','safe_mode'); + else + $safe_mode = ((array_key_exists('safemode',$_SESSION)) ? intval($_SESSION['safemode']) : false); + + if($safe_mode === false) + $safe_mode = get_config('directory','safe_mode'); + + if($safe_mode === false) + $safe_mode = 1; + + return $safe_mode; +} + /** * @function dir_sort_links() * Called by the directory_sort widget @@ -78,22 +107,8 @@ function dir_sort_links() { $observer = get_observer_hash(); - if ($observer) - $safe_mode = get_xconfig($observer,'directory','safe_mode'); - else - $safe_mode = ((array_key_exists('safemode',$_SESSION)) ? intval($_SESSION['safemode']) : false); - if($safe_mode === false) - $safe_mode = 1; - - if(! $safe_mode) - $toggle = t('Enable Safe Search'); - else - $toggle = t('Disable Safe Search'); - - if($observer) - $globaldir = get_xconfig($observer,'directory','globaldir'); - else - $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); + $safe_mode = get_safemode_setting($observer); + $globaldir = get_globaldir_setting($observer); // Build urls without order and pubforums so it's easy to tack on the changed value // Probably there's an easier way to do this @@ -121,40 +136,18 @@ function dir_sort_links() { '$reverse' => t('Reverse Alphabetic'), '$date' => t('Newest to Oldest'), '$reversedate' => t('Oldest to Newest'), - '$pubforums' => t('Public Forums Only'), - '$pubforumsonly' => x($_REQUEST,'pubforums') ? $_REQUEST['pubforums'] : '', '$sort' => t('Sort'), '$selected_sort' => $current_order, '$sorturl' => $sorturl, '$forumsurl' => $forumsurl, - '$safemode' => t('Safe Mode'), - '$toggle' => $toggle, '$safemode' => array('safemode', t('Safe Mode'),$safe_mode,'','',' onchange=\'window.location.href="' . $forumsurl . '&safe="+(this.checked ? 1 : 0)\''), '$pubforums' => array('pubforums', t('Public Forums Only'),(x($_REQUEST,'pubforums') ? $_REQUEST['pubforums'] : ''),'','',' onchange=\'window.location.href="' . $forumsurl . '&pubforums="+(this.checked ? 1 : 0)\''), '$globaldir' => array('globaldir', t('This Website Only'), 1-intval($globaldir),'','',' onchange=\'window.location.href="' . $forumsurl . '&global="+(this.checked ? 0 : 1)\''), - '$localdir' => t('This Website Only'), )); return $o; } -function dir_safe_mode() { - $observer = get_observer_hash(); - if (! $observer) - return; - if ($observer) - $safe_mode = get_xconfig($observer,'directory','safe_mode'); - if($safe_mode === '0') - $toggle = t('Enable Safe Search'); - else - $toggle = t('Disable Safe Search'); - $o = replace_macros(get_markup_template('safesearch.tpl'), array( - '$safemode' => t('Safe Mode'), - '$toggle' => $toggle, - )); - - return $o; -} /** * @function sync_directories($mode) diff --git a/mod/directory.php b/mod/directory.php index 17a1776fe..d186a778d 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -48,21 +48,10 @@ function directory_content(&$a) { return; } - $safe_mode = 1; - $observer = get_observer_hash(); - if($observer) - $globaldir = get_xconfig($observer,'directory','globaldir'); - else - $globaldir = ((array_key_exists('globaldir',$_SESSION)) ? intval($_SESSION['globaldir']) : false); - - if($observer) - $safe_mode = get_xconfig($observer,'directory','safe_mode'); - else - $safe_mode = ((array_key_exists('safemode',$_SESSION)) ? intval($_SESSION['safemode']) : false); - if($safe_mode === false) - $safe_mode = 1; + $globaldir = get_globaldir_setting($observer); + $safe_mode = get_safemode_setting($observer); $pubforums = null; if(array_key_exists('pubforums',$_REQUEST)) -- cgit v1.2.3 From 1d59924f4dfe729ef436c715c80482acb4b55581 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 9 Mar 2015 23:21:00 +0100 Subject: make areYouSure alert also if default post perms change --- view/js/acl.js | 5 ++++- view/js/mod_settings.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/view/js/acl.js b/view/js/acl.js index 77c65e21d..152ff6490 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -54,9 +54,12 @@ ACL.prototype.on_submit = function(){ }); $(that.deny_cid).each(function(i,v){ aclfileds.append(""); - }); + }); // alert(aclfileds); + //areYouSure jquery plugin: recheck the form here + $('form').trigger('checkform.areYouSure'); + } ACL.prototype.search = function(){ diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 5e52d56ab..e144ed6cd 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -2,7 +2,7 @@ var ispublic = aStr['everybody'] ; $(document).ready(function() { - $('form').areYouSure(); // Warn user about unsaved settings + $('form').areYouSure({'addRemoveFieldsMarksDirty':true}); // Warn user about unsaved settings $("#id_permissions_role").change(function() { var role = $("#id_permissions_role").val(); -- cgit v1.2.3 From 16bcca6aab0267fb36ad95ca0ee5d1bd14e0ec37 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 9 Mar 2015 15:24:05 -0700 Subject: up the count of directory tags --- mod/directory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/directory.php b/mod/directory.php index d186a778d..274584862 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -131,7 +131,7 @@ function directory_content(&$a) { $numtags = get_config('system','directorytags'); - $kw = ((intval($numtags)) ? $numtags : 24); + $kw = ((intval($numtags)) ? $numtags : 50); $query = $url . '?f=&kw=' . $kw . (($safe_mode != 1) ? '&safe=' . $safe_mode : ''); if($token) -- cgit v1.2.3 From 26a414fe4b3ab4b1d995233f0402532ad41eaeb7 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 9 Mar 2015 16:25:55 -0700 Subject: make network page default options work more or less universally instead of just from the navbar, and fix some saved-search weirdness related to the delete-term icon --- include/nav.php | 3 +-- include/widgets.php | 8 +++++--- mod/network.php | 11 ++++++++++- view/tpl/saved_searches.tpl | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/include/nav.php b/include/nav.php index 5e8317cfa..f8a112592 100644 --- a/include/nav.php +++ b/include/nav.php @@ -176,9 +176,8 @@ EOT; if(local_channel()) { - $network_options = get_pconfig(local_channel(),'system','network_page_default'); - $nav['network'] = array('network' . (($network_options) ? '?f=&' . $network_options : ''), + $nav['network'] = array('network', t('Matrix'), "", t('Your matrix'),'network_nav_btn'); $nav['network']['mark'] = array('', t('Mark all matrix notifications seen'), '',''); diff --git a/include/widgets.php b/include/widgets.php index 17c740967..243c4a25e 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -233,7 +233,6 @@ function widget_savedsearch($arr) { $srchurl = rtrim(preg_replace('/searchsave\=[^\&].*?(\&|$)/is','',$srchurl),'&'); $hasq = ((strpos($srchurl,'?') !== false) ? true : false); $srchurl = rtrim(preg_replace('/searchremove\=[^\&].*?(\&|$)/is','',$srchurl),'&'); - $hasq = ((strpos($srchurl,'?') !== false) ? true : false); $srchurl = rtrim(preg_replace('/search\=[^\&].*?(\&|$)/is','',$srchurl),'&'); $srchurl = rtrim(preg_replace('/submit\=[^\&].*?(\&|$)/is','',$srchurl),'&'); @@ -241,7 +240,10 @@ function widget_savedsearch($arr) { $hasq = ((strpos($srchurl,'?') !== false) ? true : false); + $hasamp = ((strpos($srchurl,'&') !== false) ? true : false); + if(($hasamp) && (! $hasq)) + $srchurl = substr($srchurl,0,strpos($srchurl,'&')) . '?f=&' . substr($srchurl,strpos($srchurl,'&')+1); $o = ''; @@ -257,8 +259,8 @@ function widget_savedsearch($arr) { $saved[] = array( 'id' => $rr['tid'], 'term' => $rr['term'], - 'dellink' => z_root() . '/' . $srchurl . (($hasq) ? '' : '?f=') . '&searchremove=1&search=' . urlencode($rr['term']), - 'srchlink' => z_root() . '/' . $srchurl . (($hasq) ? '' : '?f=') . '&search=' . urlencode($rr['term']), + 'dellink' => z_root() . '/' . $srchurl . (($hasq || $hasamp) ? '' : '?f=') . '&searchremove=1&search=' . urlencode($rr['term']), + 'srchlink' => z_root() . '/' . $srchurl . (($hasq || $hasamp) ? '' : '?f=') . '&search=' . urlencode($rr['term']), 'displayterm' => htmlspecialchars($rr['term'], ENT_COMPAT,'UTF-8'), 'encodedterm' => urlencode($rr['term']), 'delete' => t('Remove term'), diff --git a/mod/network.php b/mod/network.php index 944c3c1d1..161b06804 100644 --- a/mod/network.php +++ b/mod/network.php @@ -13,6 +13,12 @@ function network_init(&$a) { return; } + if(count($_GET) < 2) { + $network_options = get_pconfig(local_channel(),'system','network_page_default'); + if($network_options) + goaway('network' . '?f=&' . $network_options); + } + $channel = $a->get_channel(); $a->profile_uid = local_channel(); head_set_icon($channel['xchan_photo_s']); @@ -369,10 +375,13 @@ function network_content(&$a, $update = 0, $load = false) { // "New Item View" - show all items unthreaded in reverse created date order $items = q("SELECT item.*, item.id AS item_id, received FROM item + left join abook on item.author_xchan = abook.abook_xchan WHERE true $uids AND item_restrict = 0 + and ((abook.abook_flags & %d) = 0 or abook.abook_flags is null) $simple_update $sql_extra $sql_nets - ORDER BY item.received DESC $pager_sql " + ORDER BY item.received DESC $pager_sql ", + intval(ABOOK_FLAG_BLOCKED) ); require_once('include/items.php'); diff --git a/view/tpl/saved_searches.tpl b/view/tpl/saved_searches.tpl index 73987f192..1f7861078 100644 --- a/view/tpl/saved_searches.tpl +++ b/view/tpl/saved_searches.tpl @@ -5,7 +5,7 @@
        +
        + + + + + +
        {{if $visitor}}