Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Thomas Willingham 2013-10-01 22:58:44 +01:00
commit 70fd797994
156 changed files with 4060 additions and 1502 deletions

5
.gitignore vendored
View File

@ -32,4 +32,7 @@ report/
.DS_Store
#netbeans project folder
nbproject
nbproject
#Kdevelop project files
*.kdev4

View File

@ -45,7 +45,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
define ( 'DB_UPDATE_VERSION', 1073 );
define ( 'DB_UPDATE_VERSION', 1076 );
define ( 'EOL', '<br />' . "\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@ -177,13 +177,7 @@ define ( 'CLIENT_MODE_UPDATE', 0x0002);
/**
*
* page/profile types
*
* PAGE_NORMAL is a typical personal profile account
* PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
* PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
* write access to wall and comments (no email and not included in page owner's ACL lists)
* PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
* Channel pageflags
*
*/
@ -193,6 +187,7 @@ define ( 'PAGE_AUTOCONNECT', 0x0002 );
define ( 'PAGE_APPLICATION', 0x0004 );
define ( 'PAGE_DIRECTORY_CHANNEL', 0x0008 ); // system channel used for directory synchronisation
define ( 'PAGE_PREMIUM', 0x0010 );
define ( 'PAGE_ADULT', 0x0020 );
define ( 'PAGE_REMOVED', 0x8000 );
@ -233,26 +228,26 @@ define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder
*/
define ( 'PERMS_R_STREAM', 0x0001);
define ( 'PERMS_R_PROFILE', 0x0002);
define ( 'PERMS_R_PHOTOS', 0x0004);
define ( 'PERMS_R_ABOOK', 0x0008);
define ( 'PERMS_R_STREAM', 0x00001);
define ( 'PERMS_R_PROFILE', 0x00002);
define ( 'PERMS_R_PHOTOS', 0x00004);
define ( 'PERMS_R_ABOOK', 0x00008);
define ( 'PERMS_W_STREAM', 0x0010);
define ( 'PERMS_W_WALL', 0x0020);
define ( 'PERMS_W_TAGWALL', 0x0040);
define ( 'PERMS_W_COMMENT', 0x0080);
define ( 'PERMS_W_MAIL', 0x0100);
define ( 'PERMS_W_PHOTOS', 0x0200);
define ( 'PERMS_W_CHAT', 0x0400);
define ( 'PERMS_A_DELEGATE', 0x0800);
define ( 'PERMS_R_STORAGE', 0x1000);
define ( 'PERMS_W_STORAGE', 0x2000);
define ( 'PERMS_R_PAGES', 0x4000);
define ( 'PERMS_W_PAGES', 0x8000);
define ( 'PERMS_W_STREAM', 0x00010);
define ( 'PERMS_W_WALL', 0x00020);
define ( 'PERMS_W_TAGWALL', 0x00040);
define ( 'PERMS_W_COMMENT', 0x00080);
define ( 'PERMS_W_MAIL', 0x00100);
define ( 'PERMS_W_PHOTOS', 0x00200);
define ( 'PERMS_W_CHAT', 0x00400);
define ( 'PERMS_A_DELEGATE', 0x00800);
define ( 'PERMS_R_STORAGE', 0x01000);
define ( 'PERMS_W_STORAGE', 0x02000);
define ( 'PERMS_R_PAGES', 0x04000);
define ( 'PERMS_W_PAGES', 0x08000);
define ( 'PERMS_A_REPUBLISH', 0x10000);
// General channel permissions
@ -301,6 +296,13 @@ define ( 'POLL_MULTIPLE_CHOICE', 0x0004);
define ( 'POLL_OVERWRITE', 0x8000); // If you vote twice remove the prior entry
define ( 'UPDATE_FLAGS_UPDATED', 0x0001);
define ( 'UPDATE_FLAGS_DELETED', 0x1000);
/**
* Maximum number of "people who like (or don't like) this" that we will list by name
*/
@ -348,7 +350,8 @@ define ( 'HUBLOC_FLAGS_DELETED', 0x1000);
define ( 'XCHAN_FLAGS_HIDDEN', 0x0001);
define ( 'XCHAN_FLAGS_ORPHAN', 0x0002);
define ( 'XCHAN_FLAGS_CENSORED', 0x0004);
define ( 'XCHAN_FLAGS_SELFCENSORED', 0x0008);
define ( 'XCHAN_FLAGS_DELETED', 0x1000);
/*
* Traficlights for Administration of HubLoc
* to detect problems in inter server communication
@ -1124,7 +1127,7 @@ function x($s,$k = NULL) {
function system_unavailable() {
include('system_unavailable.php');
include('include/system_unavailable.php');
system_down();
killme();
}
@ -1180,6 +1183,7 @@ function check_config(&$a) {
// our URL changed. Do something.
$oldurl = hex2bin($saved);
logger('Baseurl changed!');
$oldhost = substr($oldurl,strpos($oldurl,'//')+2);
$host = substr(z_root(),strpos(z_root(),'//')+2);
@ -1779,6 +1783,11 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) {
if($m)
$channel_menu = menu_render($m);
}
$menublock = get_pconfig($profile['uid'],'system','channel_menublock');
if ($menublock) {
require_once('include/comanche.php');
$channel_menu .= comanche_block($menublock);
}
$tpl = get_markup_template('profile_vcard.tpl');

View File

@ -237,7 +237,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="identity_8php.html#abf6a9c6ed92d594f1d4513c4e22a7abd">create_dir_account()</a>, and <a class="el" href="register_8php.html#a51731dcc1917c58a790eb1c0f6132271">register_post()</a>.</p>
<p>Referenced by <a class="el" href="register_8php.html#a51731dcc1917c58a790eb1c0f6132271">register_post()</a>.</p>
</div>
</div>

File diff suppressed because one or more lines are too long

View File

@ -203,6 +203,7 @@ var boot_8php =
[ "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_APPLICATION", "boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed", null ],
[ "PAGE_AUTOCONNECT", "boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9", null ],
[ "PAGE_DIRECTORY_CHANNEL", "boot_8php.html#a5b8484922918946d041e5e0515dbe718", null ],
@ -267,6 +268,7 @@ var boot_8php =
[ "XCHAN_FLAGS_CENSORED", "boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e", null ],
[ "XCHAN_FLAGS_HIDDEN", "boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2", null ],
[ "XCHAN_FLAGS_ORPHAN", "boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f", null ],
[ "XCHAN_FLAGS_SELFCENSORED", "boot_8php.html#a5a681a672e007cdc22b43345d71f07c6", null ],
[ "ZCURL_TIMEOUT", "boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af", null ],
[ "ZOT_REVISION", "boot_8php.html#a36b31575f992a10b5927b76efba9362e", null ]
];

View File

@ -487,7 +487,7 @@ Additional Inherited Members</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classConversation.html#ae3d4190142e12b57051f11f2911f77a0">get_observer()</a>, and <a class="el" href="classConversation.html#a66f121ca4026246f86a732e5faa0682c">set_mode()</a>.</p>
<p>Referenced by <a class="el" href="classConversation.html#a8335cdd43f1836e3c255638e61a09e16">add_thread()</a>, <a class="el" href="classConversation.html#ae3d4190142e12b57051f11f2911f77a0">get_observer()</a>, and <a class="el" href="classConversation.html#a66f121ca4026246f86a732e5faa0682c">set_mode()</a>.</p>
</div>
</div>

View File

@ -115,38 +115,40 @@ $(document).ready(function(){initNavTree('classItem.html','');});
<tr class="even"><td class="entry"><a class="el" href="classItem.html#acc32426c0f465391be8a99ad810c7b8e">$channel</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a80dcd0fb7673776c0967839d429c2a0f">$children</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a90743c8348b13213275c223bb9333aa0">$comment_box_template</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a007424e3e3171dcfb4312a02161da6cd">$conversation</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aec24e233f9098f902b1e57e60dcb2019">$data</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a9594df6014b0b6f45364ea7a34510130">$owner_name</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a078f95b4134ce3a1df344cf8d386f986">$owner_photo</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#afa54851df82962c7c42dea3cc9f5c92c">$owner_url</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a1a1e42877e6ac7af50286142ceb483d2">$parent</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a5b561415861f5b89b0733aacfe0428d1">$redirect_url</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a7f7bc059de377319282cb4ef4a828480">$template</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2">$threaded</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a5cfa6cf964f433a917a81cab079ff9d8">$toplevel</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8">$visiting</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189">$wall_to_wall</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2">__construct</a>($data)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51">add_child</a>($item)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8">check_wall_to_wall</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aca1e66988ed00cd627b2a359b72cd0ae">count_descendants</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2">get_app</a>()</td><td class="entry"><a class="el" href="classBaseObject.html">BaseObject</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a632185dd25c5caf277067c76230a4320">get_child</a>($id)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aa0ee775ec94abccec6c798428835d001">get_children</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf">get_comment_box</a>($indent)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a904421c7a427411bb2ab473bca872f63">get_comment_box_template</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a0c301aaed2b7d682728d18db3a22afa3">get_conversation</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#ad3638f93065693c1f69eb349feb1b7aa">get_data</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c">get_data_value</a>($name)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#ac0f27e58532612f6e7a54c8a621b9b92">get_id</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a67892aa23d19f4431bb2e5f43c74000e">get_owner_name</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aa541bc4290e51bfd688d6921bebabc73">get_owner_photo</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a9f2d219da712390f59012fc32a342074">get_owner_url</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a4b92e3a9d6212c553aa2661489bd95d8">get_parent</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a428f448f89a8629055ea3294eb942aea">get_redirect_url</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aba23a0a9d89e316d2b343cc46d695d91">get_template</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8">get_template_data</a>($alike, $dlike, $thread_level=1)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304">$commentable</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a007424e3e3171dcfb4312a02161da6cd">$conversation</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aec24e233f9098f902b1e57e60dcb2019">$data</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a9594df6014b0b6f45364ea7a34510130">$owner_name</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a078f95b4134ce3a1df344cf8d386f986">$owner_photo</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#afa54851df82962c7c42dea3cc9f5c92c">$owner_url</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a1a1e42877e6ac7af50286142ceb483d2">$parent</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a5b561415861f5b89b0733aacfe0428d1">$redirect_url</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a7f7bc059de377319282cb4ef4a828480">$template</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2">$threaded</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a5cfa6cf964f433a917a81cab079ff9d8">$toplevel</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8">$visiting</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189">$wall_to_wall</a></td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2">__construct</a>($data)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51">add_child</a>($item)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8">check_wall_to_wall</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aca1e66988ed00cd627b2a359b72cd0ae">count_descendants</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2">get_app</a>()</td><td class="entry"><a class="el" href="classBaseObject.html">BaseObject</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a632185dd25c5caf277067c76230a4320">get_child</a>($id)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa0ee775ec94abccec6c798428835d001">get_children</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf">get_comment_box</a>($indent)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a904421c7a427411bb2ab473bca872f63">get_comment_box_template</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a0c301aaed2b7d682728d18db3a22afa3">get_conversation</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#ad3638f93065693c1f69eb349feb1b7aa">get_data</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c">get_data_value</a>($name)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#ac0f27e58532612f6e7a54c8a621b9b92">get_id</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a67892aa23d19f4431bb2e5f43c74000e">get_owner_name</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa541bc4290e51bfd688d6921bebabc73">get_owner_photo</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a9f2d219da712390f59012fc32a342074">get_owner_url</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a4b92e3a9d6212c553aa2661489bd95d8">get_parent</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a428f448f89a8629055ea3294eb942aea">get_redirect_url</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aba23a0a9d89e316d2b343cc46d695d91">get_template</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8">get_template_data</a>($alike, $dlike, $thread_level=1)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967">is_commentable</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a5b2fafdca55aefeaa08993a5a60529f0">is_threaded</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa49e40f961dff66da32c5ae110e32993">is_toplevel</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a97c7feeea7f26a73176cb19faa455e12">is_visiting</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
@ -154,8 +156,9 @@ $(document).ready(function(){initNavTree('classItem.html','');});
<tr><td class="entry"><a class="el" href="classItem.html#a2ce70ef63f9f4d86a09c351678806925">remove_child</a>($item)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa452b5bcd8dea12119b09212c615cb41">remove_parent</a>()</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classBaseObject.html#a0a9acda12d751692834cf6999f889223">set_app</a>($app)</td><td class="entry"><a class="el" href="classBaseObject.html">BaseObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">set_conversation</a>($conv)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7">set_parent</a>($item)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#aa1bd19fc8b5577078530265a7bf64123">set_commentable</a>($val)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">set_conversation</a>($conv)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7">set_parent</a>($item)</td><td class="entry"><a class="el" href="classItem.html">Item</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->

View File

@ -136,6 +136,10 @@ Public Member Functions</h2></td></tr>
<tr class="separator:ac0f27e58532612f6e7a54c8a621b9b92"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b2fafdca55aefeaa08993a5a60529f0"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a5b2fafdca55aefeaa08993a5a60529f0">is_threaded</a> ()</td></tr>
<tr class="separator:a5b2fafdca55aefeaa08993a5a60529f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa1bd19fc8b5577078530265a7bf64123"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#aa1bd19fc8b5577078530265a7bf64123">set_commentable</a> ($val)</td></tr>
<tr class="separator:aa1bd19fc8b5577078530265a7bf64123"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac04525a8be24c12b0a2ae4ca1ba4b967"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967">is_commentable</a> ()</td></tr>
<tr class="separator:ac04525a8be24c12b0a2ae4ca1ba4b967"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80dcd9d0f548c3ad550abe7e6981fb51"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51">add_child</a> ($item)</td></tr>
<tr class="separator:a80dcd9d0f548c3ad550abe7e6981fb51"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a632185dd25c5caf277067c76230a4320"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a632185dd25c5caf277067c76230a4320">get_child</a> ($id)</td></tr>
@ -203,6 +207,8 @@ Private Attributes</h2></td></tr>
<tr class="separator:a7f7bc059de377319282cb4ef4a828480"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a90743c8348b13213275c223bb9333aa0"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a90743c8348b13213275c223bb9333aa0">$comment_box_template</a> = 'comment_item.tpl'</td></tr>
<tr class="separator:a90743c8348b13213275c223bb9333aa0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2c221231ad0fc3720ccc1f00f0c6304"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304">$commentable</a> = false</td></tr>
<tr class="separator:aa2c221231ad0fc3720ccc1f00f0c6304"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cfa6cf964f433a917a81cab079ff9d8"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a5cfa6cf964f433a917a81cab079ff9d8">$toplevel</a> = false</td></tr>
<tr class="separator:a5cfa6cf964f433a917a81cab079ff9d8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80dcd0fb7673776c0967839d429c2a0f"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classItem.html#a80dcd0fb7673776c0967839d429c2a0f">$children</a> = array()</td></tr>
@ -358,7 +364,7 @@ Additional Inherited Members</h2></td></tr>
</div><div class="memdoc">
<p>Get all our children </p>
<p>Referenced by <a class="el" href="classItem.html#aca1e66988ed00cd627b2a359b72cd0ae">count_descendants()</a>, <a class="el" href="classItem.html#a632185dd25c5caf277067c76230a4320">get_child()</a>, <a class="el" href="classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8">get_template_data()</a>, <a class="el" href="classItem.html#a2ce70ef63f9f4d86a09c351678806925">remove_child()</a>, and <a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">set_conversation()</a>.</p>
<p>Referenced by <a class="el" href="classItem.html#aca1e66988ed00cd627b2a359b72cd0ae">count_descendants()</a>, <a class="el" href="classItem.html#a632185dd25c5caf277067c76230a4320">get_child()</a>, <a class="el" href="classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8">get_template_data()</a>, <a class="el" href="classItem.html#a2ce70ef63f9f4d86a09c351678806925">remove_child()</a>, <a class="el" href="classItem.html#aa1bd19fc8b5577078530265a7bf64123">set_commentable()</a>, and <a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">set_conversation()</a>.</p>
</div>
</div>
@ -672,6 +678,23 @@ Additional Inherited Members</h2></td></tr>
<p>Get data in a form usable by a conversation template</p>
<p>Returns: _ The data requested on success _ false on failure </p>
</div>
</div>
<a class="anchor" id="ac04525a8be24c12b0a2ae4ca1ba4b967"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Item::is_commentable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf">get_comment_box()</a>, and <a class="el" href="classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8">get_template_data()</a>.</p>
</div>
</div>
<a class="anchor" id="a5b2fafdca55aefeaa08993a5a60529f0"></a>
@ -802,6 +825,22 @@ Additional Inherited Members</h2></td></tr>
</div><div class="memdoc">
<p>Remove our parent </p>
</div>
</div>
<a class="anchor" id="aa1bd19fc8b5577078530265a7bf64123"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Item::set_commentable </td>
<td>(</td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$val</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa8b1bbc4236890694635295e46d7fd72"></a>
@ -911,6 +950,28 @@ Additional Inherited Members</h2></td></tr>
<p>Referenced by <a class="el" href="classItem.html#a904421c7a427411bb2ab473bca872f63">get_comment_box_template()</a>.</p>
</div>
</div>
<a class="anchor" id="aa2c221231ad0fc3720ccc1f00f0c6304"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Item::$commentable = false</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967">is_commentable()</a>.</p>
</div>
</div>
<a class="anchor" id="a007424e3e3171dcfb4312a02161da6cd"></a>

View File

@ -19,17 +19,20 @@ var classItem =
[ "get_redirect_url", "classItem.html#a428f448f89a8629055ea3294eb942aea", null ],
[ "get_template", "classItem.html#aba23a0a9d89e316d2b343cc46d695d91", null ],
[ "get_template_data", "classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8", null ],
[ "is_commentable", "classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967", null ],
[ "is_threaded", "classItem.html#a5b2fafdca55aefeaa08993a5a60529f0", null ],
[ "is_toplevel", "classItem.html#aa49e40f961dff66da32c5ae110e32993", null ],
[ "is_visiting", "classItem.html#a97c7feeea7f26a73176cb19faa455e12", null ],
[ "is_wall_to_wall", "classItem.html#aabf87ded59c25b5fe2b2296678e70509", null ],
[ "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_parent", "classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7", null ],
[ "$channel", "classItem.html#acc32426c0f465391be8a99ad810c7b8e", null ],
[ "$children", "classItem.html#a80dcd0fb7673776c0967839d429c2a0f", null ],
[ "$comment_box_template", "classItem.html#a90743c8348b13213275c223bb9333aa0", null ],
[ "$commentable", "classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304", null ],
[ "$conversation", "classItem.html#a007424e3e3171dcfb4312a02161da6cd", null ],
[ "$data", "classItem.html#aec24e233f9098f902b1e57e60dcb2019", null ],
[ "$owner_name", "classItem.html#a9594df6014b0b6f45364ea7a34510130", null ],

View File

@ -226,7 +226,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, <a class="el" href="items_8php.html#a756738301f2ed96be50232500677d58a">items_fetch()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4">network_content()</a>, <a class="el" href="search_8php.html#ab2568591359edde5b483a6cd9a24b2cc">search_content()</a>, and <a class="el" href="items_8php.html#a004e89d86b0f29b2c4da20108ecc4091">zot_feed()</a>.</p>
<p>Referenced by <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, <a class="el" href="items_8php.html#a756738301f2ed96be50232500677d58a">items_fetch()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4">network_content()</a>, and <a class="el" href="items_8php.html#a004e89d86b0f29b2c4da20108ecc4091">zot_feed()</a>.</p>
</div>
</div>
@ -709,7 +709,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2">Item\__construct()</a>, <a class="el" href="conversation_8php.html#a1e97305a441dc143edbe09e17d1ceda1">conversation()</a>, and <a class="el" href="conversation_8php.html#ab2383dff4f823e580399ff469d90ab19">count_descendants()</a>.</p>
<p>Referenced by <a class="el" href="classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2">Item\__construct()</a>, <a class="el" href="conversation_8php.html#a1e97305a441dc143edbe09e17d1ceda1">conversation()</a>, <a class="el" href="conversation_8php.html#ab2383dff4f823e580399ff469d90ab19">count_descendants()</a>, and <a class="el" href="enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc">notification()</a>.</p>
</div>
</div>

View File

@ -390,7 +390,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="zot_8php.html#a2657e141d62d5f67ad3c87651b585299">import_site()</a>, <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan()</a>, <a class="el" href="post_8php.html#af4b48181ce773ef0cdfc972441445c34">post_init()</a>, <a class="el" href="post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75">post_post()</a>, and <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>.</p>
<p>Referenced by <a class="el" href="zot_8php.html#a2657e141d62d5f67ad3c87651b585299">import_site()</a>, <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan()</a>, <a class="el" href="post_8php.html#af4b48181ce773ef0cdfc972441445c34">post_init()</a>, <a class="el" href="post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75">post_post()</a>, and <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>.</p>
</div>
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -184,6 +184,7 @@ $(document).ready(function(){initNavTree('functions.html','');});
</li>
<li>$commentable
: <a class="el" href="classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6">Conversation</a>
, <a class="el" href="classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304">Item</a>
</li>
<li>$config
: <a class="el" href="classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88">App</a>
@ -224,8 +225,8 @@ $(document).ready(function(){initNavTree('functions.html','');});
, <a class="el" href="classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6">dba_driver</a>
</li>
<li>$debug
: <a class="el" href="classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a">Template</a>
, <a class="el" href="classdba__driver.html#af48e2afeded5285766bf92e22123ed03">dba_driver</a>
: <a class="el" href="classdba__driver.html#af48e2afeded5285766bf92e22123ed03">dba_driver</a>
, <a class="el" href="classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a">Template</a>
</li>
<li>$done
: <a class="el" href="classTemplate.html#abda4c8d049f70553338eae7c905e9d5c">Template</a>
@ -286,8 +287,8 @@ $(document).ready(function(){initNavTree('functions.html','');});
: <a class="el" href="classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165">App</a>
</li>
<li>$name
: <a class="el" href="classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02">FriendicaSmartyEngine</a>
, <a class="el" href="classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae">Template</a>
: <a class="el" href="classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae">Template</a>
, <a class="el" href="classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02">FriendicaSmartyEngine</a>
</li>
<li>$nav_sel
: <a class="el" href="classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c">App</a>
@ -296,8 +297,8 @@ $(document).ready(function(){initNavTree('functions.html','');});
: <a class="el" href="classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1">Template</a>
</li>
<li>$observer
: <a class="el" href="classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f">App</a>
, <a class="el" href="classConversation.html#a8748445aa26047ebed5141f3c3cbc244">Conversation</a>
: <a class="el" href="classConversation.html#a8748445aa26047ebed5141f3c3cbc244">Conversation</a>
, <a class="el" href="classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f">App</a>
</li>
<li>$owner_name
: <a class="el" href="classItem.html#a9594df6014b0b6f45364ea7a34510130">Item</a>

View File

@ -149,6 +149,7 @@ $(document).ready(function(){initNavTree('functions_0x69.html','');});
</li>
<li>is_commentable()
: <a class="el" href="classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3">Conversation</a>
, <a class="el" href="classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967">Item</a>
</li>
<li>is_preview()
: <a class="el" href="classConversation.html#adf25ce023b69a166c63c6e84e02c136a">Conversation</a>

View File

@ -175,6 +175,9 @@ $(document).ready(function(){initNavTree('functions_0x73.html','');});
<li>set_channel()
: <a class="el" href="classApp.html#a89e9feb2bfb5253883a9720beaffe876">App</a>
</li>
<li>set_commentable()
: <a class="el" href="classItem.html#aa1bd19fc8b5577078530265a7bf64123">Item</a>
</li>
<li>set_conversation()
: <a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">Item</a>
</li>
@ -221,9 +224,9 @@ $(document).ready(function(){initNavTree('functions_0x73.html','');});
: <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App</a>
</li>
<li>setDimensions()
: <a class="el" href="classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb">photo_imagick</a>
: <a class="el" href="classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e">photo_gd</a>
, <a class="el" href="classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143">photo_driver</a>
, <a class="el" href="classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e">photo_gd</a>
, <a class="el" href="classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb">photo_imagick</a>
</li>
<li>store()
: <a class="el" href="classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b">photo_driver</a>

View File

@ -459,6 +459,7 @@ $(document).ready(function(){initNavTree('functions_func.html','');});
</li>
<li>is_commentable()
: <a class="el" href="classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3">Conversation</a>
, <a class="el" href="classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967">Item</a>
</li>
<li>is_preview()
: <a class="el" href="classConversation.html#adf25ce023b69a166c63c6e84e02c136a">Conversation</a>
@ -601,6 +602,9 @@ $(document).ready(function(){initNavTree('functions_func.html','');});
<li>set_channel()
: <a class="el" href="classApp.html#a89e9feb2bfb5253883a9720beaffe876">App</a>
</li>
<li>set_commentable()
: <a class="el" href="classItem.html#aa1bd19fc8b5577078530265a7bf64123">Item</a>
</li>
<li>set_conversation()
: <a class="el" href="classItem.html#aa8b1bbc4236890694635295e46d7fd72">Item</a>
</li>
@ -647,9 +651,9 @@ $(document).ready(function(){initNavTree('functions_func.html','');});
: <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App</a>
</li>
<li>setDimensions()
: <a class="el" href="classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb">photo_imagick</a>
: <a class="el" href="classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e">photo_gd</a>
, <a class="el" href="classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143">photo_driver</a>
, <a class="el" href="classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e">photo_gd</a>
, <a class="el" href="classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb">photo_imagick</a>
</li>
<li>store()
: <a class="el" href="classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b">photo_driver</a>

View File

@ -165,6 +165,7 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
</li>
<li>$commentable
: <a class="el" href="classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6">Conversation</a>
, <a class="el" href="classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304">Item</a>
</li>
<li>$config
: <a class="el" href="classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88">App</a>
@ -205,8 +206,8 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
, <a class="el" href="classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6">dba_driver</a>
</li>
<li>$debug
: <a class="el" href="classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a">Template</a>
, <a class="el" href="classdba__driver.html#af48e2afeded5285766bf92e22123ed03">dba_driver</a>
: <a class="el" href="classdba__driver.html#af48e2afeded5285766bf92e22123ed03">dba_driver</a>
, <a class="el" href="classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a">Template</a>
</li>
<li>$done
: <a class="el" href="classTemplate.html#abda4c8d049f70553338eae7c905e9d5c">Template</a>
@ -267,8 +268,8 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
: <a class="el" href="classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165">App</a>
</li>
<li>$name
: <a class="el" href="classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02">FriendicaSmartyEngine</a>
, <a class="el" href="classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae">Template</a>
: <a class="el" href="classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae">Template</a>
, <a class="el" href="classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02">FriendicaSmartyEngine</a>
</li>
<li>$nav_sel
: <a class="el" href="classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c">App</a>
@ -277,8 +278,8 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
: <a class="el" href="classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1">Template</a>
</li>
<li>$observer
: <a class="el" href="classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f">App</a>
, <a class="el" href="classConversation.html#a8748445aa26047ebed5141f3c3cbc244">Conversation</a>
: <a class="el" href="classConversation.html#a8748445aa26047ebed5141f3c3cbc244">Conversation</a>
, <a class="el" href="classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f">App</a>
</li>
<li>$owner_name
: <a class="el" href="classItem.html#a9594df6014b0b6f45364ea7a34510130">Item</a>

View File

@ -237,6 +237,9 @@ $(document).ready(function(){initNavTree('globals_0x63.html','');});
<li>check_htconfig()
: <a class="el" href="setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f">setup.php</a>
</li>
<li>check_item_source()
: <a class="el" href="items_8php.html#a87ac9e359591721a824ecd23bbb56296">items.php</a>
</li>
<li>check_keys()
: <a class="el" href="setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76">setup.php</a>
</li>

View File

@ -177,7 +177,7 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
: <a class="el" href="zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a">zot.php</a>
</li>
<li>import_directory_profile()
: <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">zot.php</a>
: <a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">zot.php</a>
</li>
<li>import_post()
: <a class="el" href="import_8php.html#af17fef0410518f7eac205d0ea416eaa2">import.php</a>
@ -189,7 +189,7 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
: <a class="el" href="zot_8php.html#a2657e141d62d5f67ad3c87651b585299">zot.php</a>
</li>
<li>import_xchan()
: <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">zot.php</a>
: <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">zot.php</a>
</li>
<li>in_arrayi()
: <a class="el" href="text_8php.html#a75c326298519ed14ebe762194c8a3f2a">text.php</a>

View File

@ -149,6 +149,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
, <a class="el" href="mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb">mod_new_channel.php</a>
, <a class="el" href="mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb">mod_register.php</a>
</li>
<li>PAGE_ADULT
: <a class="el" href="boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32">boot.php</a>
</li>
<li>PAGE_APPLICATION
: <a class="el" href="boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed">boot.php</a>
</li>

View File

@ -294,6 +294,9 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');});
<li>stream_perms_api_uids()
: <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">security.php</a>
</li>
<li>stream_perms_xchans()
: <a class="el" href="security_8php.html#a15e0f8f511cc06192db63387f97238b3">security.php</a>
</li>
<li>string_plural_select_default()
: <a class="el" href="language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0">language.php</a>
</li>

View File

@ -187,7 +187,7 @@ $(document).ready(function(){initNavTree('globals_0x75.html','');});
: <a class="el" href="zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df">zot.php</a>
</li>
<li>update_modtime()
: <a class="el" href="zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63">zot.php</a>
: <a class="el" href="zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd">zot.php</a>
</li>
<li>update_network_content()
: <a class="el" href="update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41">update_network.php</a>

View File

@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});
<li>XCHAN_FLAGS_ORPHAN
: <a class="el" href="boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f">boot.php</a>
</li>
<li>XCHAN_FLAGS_SELFCENSORED
: <a class="el" href="boot_8php.html#a5a681a672e007cdc22b43345d71f07c6">boot.php</a>
</li>
<li>xchan_mail_query()
: <a class="el" href="text_8php.html#a543447c5ed766535221e2d9636b379ee">text.php</a>
</li>

View File

@ -236,6 +236,9 @@ $(document).ready(function(){initNavTree('globals_func_0x63.html','');});
<li>check_htconfig()
: <a class="el" href="setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f">setup.php</a>
</li>
<li>check_item_source()
: <a class="el" href="items_8php.html#a87ac9e359591721a824ecd23bbb56296">items.php</a>
</li>
<li>check_keys()
: <a class="el" href="setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76">setup.php</a>
</li>

View File

@ -168,7 +168,7 @@ $(document).ready(function(){initNavTree('globals_func_0x69.html','');});
: <a class="el" href="zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a">zot.php</a>
</li>
<li>import_directory_profile()
: <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">zot.php</a>
: <a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">zot.php</a>
</li>
<li>import_post()
: <a class="el" href="import_8php.html#af17fef0410518f7eac205d0ea416eaa2">import.php</a>
@ -180,7 +180,7 @@ $(document).ready(function(){initNavTree('globals_func_0x69.html','');});
: <a class="el" href="zot_8php.html#a2657e141d62d5f67ad3c87651b585299">zot.php</a>
</li>
<li>import_xchan()
: <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">zot.php</a>
: <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">zot.php</a>
</li>
<li>in_arrayi()
: <a class="el" href="text_8php.html#a75c326298519ed14ebe762194c8a3f2a">text.php</a>

View File

@ -284,6 +284,9 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');});
<li>stream_perms_api_uids()
: <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">security.php</a>
</li>
<li>stream_perms_xchans()
: <a class="el" href="security_8php.html#a15e0f8f511cc06192db63387f97238b3">security.php</a>
</li>
<li>string_plural_select_default()
: <a class="el" href="language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0">language.php</a>
</li>

View File

@ -183,7 +183,7 @@ $(document).ready(function(){initNavTree('globals_func_0x75.html','');});
: <a class="el" href="zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df">zot.php</a>
</li>
<li>update_modtime()
: <a class="el" href="zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63">zot.php</a>
: <a class="el" href="zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd">zot.php</a>
</li>
<li>update_network_content()
: <a class="el" href="update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41">update_network.php</a>

View File

@ -144,6 +144,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x70.html','');});
, <a class="el" href="mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb">mod_new_channel.php</a>
, <a class="el" href="mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb">mod_register.php</a>
</li>
<li>PAGE_ADULT
: <a class="el" href="boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32">boot.php</a>
</li>
<li>PAGE_APPLICATION
: <a class="el" href="boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed">boot.php</a>
</li>

View File

@ -148,6 +148,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x78.html','');});
<li>XCHAN_FLAGS_ORPHAN
: <a class="el" href="boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f">boot.php</a>
</li>
<li>XCHAN_FLAGS_SELFCENSORED
: <a class="el" href="boot_8php.html#a5a681a672e007cdc22b43345d71f07c6">boot.php</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->

View File

@ -204,7 +204,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea">api_format_items()</a>, <a class="el" href="include_2api_8php.html#ae82608c317421f27446465aa6724733d">api_format_messages()</a>, <a class="el" href="include_2api_8php.html#a645397787618b5c548a31e8686e8cca4">api_status_show()</a>, <a class="el" href="include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76">api_users_show()</a>, and <a class="el" href="include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0">email_send()</a>.</p>
<p>Referenced by <a class="el" href="include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea">api_format_items()</a>, <a class="el" href="include_2api_8php.html#ae82608c317421f27446465aa6724733d">api_format_messages()</a>, <a class="el" href="include_2api_8php.html#a645397787618b5c548a31e8686e8cca4">api_status_show()</a>, <a class="el" href="include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76">api_users_show()</a>, <a class="el" href="items_8php.html#a87ac9e359591721a824ecd23bbb56296">check_item_source()</a>, and <a class="el" href="include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0">email_send()</a>.</p>
</div>
</div>

View File

@ -176,7 +176,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="new__channel_8php.html#a180b0646957db8290482f02454ad7f23">new_channel_post()</a>.</p>
<p>Referenced by <a class="el" href="identity_8php.html#abf6a9c6ed92d594f1d4513c4e22a7abd">create_dir_account()</a>, and <a class="el" href="new__channel_8php.html#a180b0646957db8290482f02454ad7f23">new_channel_post()</a>.</p>
</div>
</div>

File diff suppressed because one or more lines are too long

View File

@ -178,6 +178,8 @@ Functions</h2></td></tr>
<tr class="separator:ab1bce4261bcf75ad62753b498a144d17"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a88c6cf7649ac836fbbed82a7a0315110"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a88c6cf7649ac836fbbed82a7a0315110">tgroup_check</a> ($uid, $item)</td></tr>
<tr class="separator:a88c6cf7649ac836fbbed82a7a0315110"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87ac9e359591721a824ecd23bbb56296"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a87ac9e359591721a824ecd23bbb56296">check_item_source</a> ($uid, $item)</td></tr>
<tr class="separator:a87ac9e359591721a824ecd23bbb56296"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77da7ce9a117601d49ac4a67c71b514f"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a77da7ce9a117601d49ac4a67c71b514f">mail_store</a> ($arr)</td></tr>
<tr class="separator:a77da7ce9a117601d49ac4a67c71b514f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8395d189a36abfa0dfff81a2b0e70669"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a8395d189a36abfa0dfff81a2b0e70669">dfrn_deliver</a> ($owner, $contact, $atom, $dissolve=false)</td></tr>
@ -392,7 +394,43 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classConversation.html#a8335cdd43f1836e3c255638e61a09e16">Conversation\add_thread()</a>.</p>
<p>Referenced by <a class="el" href="classConversation.html#a8335cdd43f1836e3c255638e61a09e16">Conversation\add_thread()</a>, and <a class="el" href="item_8php.html#a693cd09805755ab85bbb5ecae69a48c3">item_post()</a>.</p>
</div>
</div>
<a class="anchor" id="a87ac9e359591721a824ecd23bbb56296"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">check_item_source </td>
<td>(</td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$uid</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$item</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>check_item_source($uid,$item) </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">$uid</td><td></td></tr>
<tr><td class="paramname">$item</td><td>Checks 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. </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="items_8php.html#ab1bce4261bcf75ad62753b498a144d17">tag_deliver()</a>.</p>
</div>
</div>

View File

@ -5,6 +5,7 @@ var items_8php =
[ "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#a01e3cf44e082fa9bd06dcde5bf713d70", null ],
[ "compare_permissions", "items_8php.html#a0790a4550b829e85504af548623002ca", null ],
[ "construct_activity_object", "items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee", null ],

File diff suppressed because one or more lines are too long

View File

@ -36,13 +36,13 @@ var NAVTREE =
var NAVTREEINDEX =
[
"BaseObject_8php.html",
"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b",
"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118",
"datetime_8php.html",
"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740",
"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b",
"redbasic_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a",
"thing_8php.html"
"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90",
"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6",
"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96",
"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7",
"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5",
"randprof_8php.html",
"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28"
];
var SYNCONMSG = 'click to disable panel synchronisation';

View File

@ -95,18 +95,18 @@ var NAVTREEINDEX0 =
"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,140],
"boot_8php.html#a01353c9abebc3544ea080ac161729632":[5,0,4,43],
"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,153],
"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,245],
"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,246],
"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[5,0,4,62],
"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,169],
"boot_8php.html#a0450389f24c632906fbc24347700a543":[5,0,4,54],
"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,110],
"boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[5,0,4,1],
"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,207],
"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,208],
"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,75],
"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,173],
"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,261],
"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,257],
"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,260],
"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,262],
"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,258],
"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,261],
"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,26],
"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,67],
"boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15],
@ -118,107 +118,108 @@ var NAVTREEINDEX0 =
"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,152],
"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,148],
"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,172],
"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,265],
"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[5,0,4,239],
"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,266],
"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,266],
"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[5,0,4,240],
"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,267],
"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,176],
"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,84],
"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,218],
"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,219],
"boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,4,39],
"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,112],
"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,159],
"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,192],
"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,241],
"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,242],
"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[5,0,4,49],
"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[5,0,4,25],
"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,108],
"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,100],
"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,250],
"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,251],
"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,195],
"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,91],
"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,135],
"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,216],
"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,217],
"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,113],
"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[5,0,4,237],
"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[5,0,4,238],
"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,191],
"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,132],
"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,76],
"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,81],
"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,223],
"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,224],
"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,146],
"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[5,0,4,51],
"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,125],
"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,161],
"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,268],
"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,270],
"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,180],
"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,115],
"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[5,0,4,120],
"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,267],
"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,214],
"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,269],
"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,215],
"boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12],
"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,68],
"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,98],
"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[5,0,4,60],
"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,136],
"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,210],
"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,211],
"boot_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[5,0,4,38],
"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,190],
"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,97],
"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,166],
"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,156],
"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,79],
"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,258],
"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,259],
"boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,4,37],
"boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,4,20],
"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,178],
"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,111],
"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,231],
"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,232],
"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,177],
"boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[5,0,4,6],
"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,209],
"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,227],
"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,210],
"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,228],
"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,202],
"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,160],
"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[5,0,4,50],
"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,90],
"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,40],
"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,194],
"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,226],
"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,227],
"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[5,0,4,268],
"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,24],
"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,69],
"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,184],
"boot_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,4,47],
"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,205],
"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,206],
"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,87],
"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,164],
"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,206],
"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,207],
"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[5,0,4,22],
"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,83],
"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,254],
"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,255],
"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,170],
"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,144],
"boot_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,4,48],
"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,147],
"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[5,0,4,53],
"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,150],
"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,243],
"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,230],
"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,224],
"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,244],
"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,231],
"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,225],
"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,109],
"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,101],
"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,212],
"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,213],
"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,134],
"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,242],
"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,243],
"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,31],
"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,185],
"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,138],
"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,80],
"boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2],
"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,262],
"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,263],
"boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4],
"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,82],
"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,95],
"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,233],
"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,234],
"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[5,0,4,121],
"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,73],
"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,137],
@ -229,25 +230,24 @@ var NAVTREEINDEX0 =
"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[5,0,4,57],
"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,92],
"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[5,0,4,123],
"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,203],
"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,204],
"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[5,0,4,61],
"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[5,0,4,118],
"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[5,0,4,65],
"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,130],
"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,253],
"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,252],
"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,254],
"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,253],
"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,183],
"boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[5,0,4,17],
"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,106],
"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,228],
"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,229],
"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,133],
"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,127],
"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,235],
"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,236],
"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,34],
"boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11],
"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,151],
"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,131],
"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,129],
"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,240],
"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,19]
"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,241]
};

View File

@ -1,16 +1,17 @@
var NAVTREEINDEX1 =
{
"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,19],
"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,197],
"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,229],
"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,230],
"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[5,0,4,56],
"boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5],
"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,221],
"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,222],
"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,198],
"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,255],
"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,220],
"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,256],
"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,221],
"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,186],
"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,29],
"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,204],
"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,205],
"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,52],
"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,158],
"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9],
@ -19,18 +20,18 @@ var NAVTREEINDEX1 =
"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[5,0,4,117],
"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,94],
"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,103],
"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,225],
"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,226],
"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,142],
"boot_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,4,23],
"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,74],
"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,189],
"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,122],
"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,211],
"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,212],
"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[5,0,4,35],
"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[5,0,4,208],
"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,232],
"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[5,0,4,209],
"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,233],
"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,182],
"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,215],
"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,216],
"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,116],
"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,143],
"boot_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,4,44],
@ -39,20 +40,20 @@ var NAVTREEINDEX1 =
"boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[5,0,4,7],
"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,105],
"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,45],
"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[5,0,4,236],
"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[5,0,4,237],
"boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3],
"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,259],
"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,260],
"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,72],
"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[5,0,4,119],
"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,104],
"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,128],
"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[5,0,4,28],
"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,168],
"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,234],
"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,235],
"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,102],
"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,42],
"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,64],
"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,263],
"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,264],
"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,124],
"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,126],
"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,196],
@ -60,8 +61,9 @@ var NAVTREEINDEX1 =
"boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13],
"boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8],
"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,171],
"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,264],
"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,222],
"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,265],
"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,223],
"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[5,0,4,203],
"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,71],
"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,154],
"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,162],
@ -71,45 +73,45 @@ var NAVTREEINDEX1 =
"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,93],
"boot_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[5,0,4,36],
"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[5,0,4,32],
"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,217],
"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,244],
"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[5,0,4,238],
"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,218],
"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,245],
"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[5,0,4,239],
"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,99],
"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,139],
"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,247],
"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,248],
"boot_8php.html#add517a0958ac684792c62142a3877f81":[5,0,4,46],
"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[5,0,4,27],
"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,251],
"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,252],
"boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,4,18],
"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,179],
"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,157],
"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,187],
"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,30],
"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,256],
"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,257],
"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[5,0,4,58],
"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,219],
"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,220],
"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,163],
"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,107],
"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,174],
"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,188],
"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,141],
"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[5,0,4,33],
"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,248],
"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,249],
"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,181],
"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,66],
"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[5,0,4,59],
"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,145],
"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,201],
"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,96],
"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,246],
"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,247],
"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,193],
"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,175],
"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,249],
"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,250],
"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[5,0,4,55],
"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,88],
"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,149],
"boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14],
"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,213],
"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,214],
"cache_8php.html":[5,0,0,11],
"channel_8php.html":[5,0,1,9],
"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,9,1],
@ -247,7 +249,5 @@ var NAVTREEINDEX1 =
"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[4,0,14,0],
"classFriendicaSmarty.html":[4,0,15],
"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[4,0,15,2],
"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[4,0,15,1],
"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[4,0,15,0],
"classFriendicaSmartyEngine.html":[4,0,16]
"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[4,0,15,1]
};

View File

@ -1,52 +1,57 @@
var NAVTREEINDEX2 =
{
"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[4,0,15,0],
"classFriendicaSmartyEngine.html":[4,0,16],
"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[4,0,16,1],
"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[4,0,16,2],
"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[4,0,16,0],
"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[4,0,16,3],
"classItem.html":[4,0,17],
"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[4,0,17,30],
"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[4,0,17,33],
"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[4,0,17,33],
"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[4,0,17,36],
"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[4,0,17,8],
"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[4,0,17,35],
"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[4,0,17,38],
"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[4,0,17,38],
"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[4,0,17,41],
"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[4,0,17,0],
"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[4,0,17,23],
"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[4,0,17,24],
"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[4,0,17,6],
"classItem.html#a428f448f89a8629055ea3294eb942aea":[4,0,17,16],
"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[4,0,17,40],
"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[4,0,17,43],
"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[4,0,17,15],
"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[4,0,17,19],
"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[4,0,17,36],
"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,39],
"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41],
"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[4,0,17,20],
"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[4,0,17,39],
"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,42],
"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,44],
"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4],
"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12],
"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37],
"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,28],
"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,40],
"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,30],
"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[4,0,17,1],
"classItem.html#a904421c7a427411bb2ab473bca872f63":[4,0,17,7],
"classItem.html#a90743c8348b13213275c223bb9333aa0":[4,0,17,29],
"classItem.html#a9594df6014b0b6f45364ea7a34510130":[4,0,17,32],
"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[4,0,17,21],
"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[4,0,17,26],
"classItem.html#a90743c8348b13213275c223bb9333aa0":[4,0,17,31],
"classItem.html#a9594df6014b0b6f45364ea7a34510130":[4,0,17,35],
"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[4,0,17,22],
"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[4,0,17,28],
"classItem.html#a9f2d219da712390f59012fc32a342074":[4,0,17,14],
"classItem.html#aa0ee775ec94abccec6c798428835d001":[4,0,17,5],
"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[4,0,17,24],
"classItem.html#aa49e40f961dff66da32c5ae110e32993":[4,0,17,20],
"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[4,0,17,26],
"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[4,0,17,32],
"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[4,0,17,25],
"classItem.html#aa49e40f961dff66da32c5ae110e32993":[4,0,17,21],
"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[4,0,17,13],
"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[4,0,17,25],
"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[4,0,17,22],
"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[4,0,17,27],
"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[4,0,17,23],
"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[4,0,17,17],
"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[4,0,17,2],
"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[4,0,17,19],
"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[4,0,17,11],
"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[4,0,17,10],
"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[4,0,17,3],
"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[4,0,17,27],
"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[4,0,17,29],
"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[4,0,17,9],
"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[4,0,17,18],
"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[4,0,17,31],
"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[4,0,17,34],
"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[4,0,17,34],
"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[4,0,17,37],
"classProtoDriver.html":[4,0,22],
"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[4,0,22,0],
"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[4,0,22,2],
@ -244,10 +249,5 @@ var NAVTREEINDEX2 =
"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[5,0,0,23,2],
"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[5,0,0,23,1],
"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[5,0,0,23,7],
"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[5,0,0,23,4],
"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[5,0,0,23,8],
"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[5,0,0,23,0],
"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[5,0,0,23,6],
"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[5,0,0,23,3],
"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[5,0,0,23,5]
"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[5,0,0,23,4]
};

View File

@ -1,5 +1,10 @@
var NAVTREEINDEX3 =
{
"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[5,0,0,23,8],
"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[5,0,0,23,0],
"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[5,0,0,23,6],
"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[5,0,0,23,3],
"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[5,0,0,23,5],
"datetime_8php.html":[5,0,0,24],
"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[5,0,0,24,6],
"datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[5,0,0,24,11],
@ -183,8 +188,8 @@ var NAVTREEINDEX3 =
"globals_0x77.html":[5,1,0,24],
"globals_0x78.html":[5,1,0,25],
"globals_0x7a.html":[5,1,0,26],
"globals_func.html":[5,1,1,0],
"globals_func.html":[5,1,1],
"globals_func.html":[5,1,1,0],
"globals_func_0x61.html":[5,1,1,1],
"globals_func_0x62.html":[5,1,1,2],
"globals_func_0x63.html":[5,1,1,3],
@ -210,8 +215,8 @@ var NAVTREEINDEX3 =
"globals_func_0x77.html":[5,1,1,23],
"globals_func_0x78.html":[5,1,1,24],
"globals_func_0x7a.html":[5,1,1,25],
"globals_vars.html":[5,1,2],
"globals_vars.html":[5,1,2,0],
"globals_vars.html":[5,1,2],
"globals_vars_0x61.html":[5,1,2,1],
"globals_vars_0x63.html":[5,1,2,2],
"globals_vars_0x64.html":[5,1,2,3],
@ -244,10 +249,5 @@ var NAVTREEINDEX3 =
"home_8php.html":[5,0,1,36],
"hostxrd_8php.html":[5,0,1,37],
"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,37,0],
"html2bbcode_8php.html":[5,0,0,36],
"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,36,3],
"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,36,1],
"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[5,0,0,36,0],
"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[5,0,0,36,2],
"html2plain_8php.html":[5,0,0,37]
"html2bbcode_8php.html":[5,0,0,36]
};

View File

@ -1,5 +1,10 @@
var NAVTREEINDEX4 =
{
"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,36,3],
"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,36,1],
"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[5,0,0,36,0],
"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[5,0,0,36,2],
"html2plain_8php.html":[5,0,0,37],
"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[5,0,0,37,0],
"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[5,0,0,37,3],
"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[5,0,0,37,2],
@ -194,60 +199,55 @@ var NAVTREEINDEX4 =
"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,41,1],
"item_8php.html#abd0e603a6696051af16476eb968d52e7":[5,0,1,41,2],
"items_8php.html":[5,0,0,41],
"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,41,53],
"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,41,54],
"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[5,0,0,41,2],
"items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70":[5,0,0,41,5],
"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[5,0,0,41,27],
"items_8php.html#a0790a4550b829e85504af548623002ca":[5,0,0,41,6],
"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[5,0,0,41,32],
"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[5,0,0,41,36],
"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,41,24],
"items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70":[5,0,0,41,6],
"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[5,0,0,41,28],
"items_8php.html#a0790a4550b829e85504af548623002ca":[5,0,0,41,7],
"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[5,0,0,41,33],
"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[5,0,0,41,37],
"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,41,25],
"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[5,0,0,41,4],
"items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,41,31],
"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,41,38],
"items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,41,32],
"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,41,39],
"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[5,0,0,41,3],
"items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259":[5,0,0,41,12],
"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,41,20],
"items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259":[5,0,0,41,13],
"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,41,21],
"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[5,0,0,41,0],
"items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,41,44],
"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,41,47],
"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[5,0,0,41,29],
"items_8php.html#a566c601726697e044e75284af7fb6f17":[5,0,0,41,19],
"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[5,0,0,41,11],
"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[5,0,0,41,17],
"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[5,0,0,41,37],
"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[5,0,0,41,15],
"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[5,0,0,41,35],
"items_8php.html#a756738301f2ed96be50232500677d58a":[5,0,0,41,40],
"items_8php.html#a77051724d1784074ff187e73a4db93fe":[5,0,0,41,33],
"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[5,0,0,41,42],
"items_8php.html#a82955cc578f0fa600acec84475026194":[5,0,0,41,16],
"items_8php.html#a8395d189a36abfa0dfff81a2b0e70669":[5,0,0,41,13],
"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,41,10],
"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,41,51],
"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,41,26],
"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,41,9],
"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,41,30],
"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,41,52],
"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[5,0,0,41,8],
"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[5,0,0,41,21],
"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[5,0,0,41,7],
"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[5,0,0,41,28],
"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[5,0,0,41,48],
"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[5,0,0,41,49],
"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[5,0,0,41,25],
"items_8php.html#abe695dd89e1e10ed042c26b80114f0ed":[5,0,0,41,45],
"items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,41,45],
"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,41,48],
"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[5,0,0,41,30],
"items_8php.html#a566c601726697e044e75284af7fb6f17":[5,0,0,41,20],
"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[5,0,0,41,12],
"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[5,0,0,41,18],
"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[5,0,0,41,38],
"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[5,0,0,41,16],
"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[5,0,0,41,36],
"items_8php.html#a756738301f2ed96be50232500677d58a":[5,0,0,41,41],
"items_8php.html#a77051724d1784074ff187e73a4db93fe":[5,0,0,41,34],
"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[5,0,0,41,43],
"items_8php.html#a82955cc578f0fa600acec84475026194":[5,0,0,41,17],
"items_8php.html#a8395d189a36abfa0dfff81a2b0e70669":[5,0,0,41,14],
"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,41,11],
"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[5,0,0,41,5],
"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,41,52],
"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,41,27],
"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,41,10],
"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,41,31],
"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,41,53],
"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[5,0,0,41,9],
"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[5,0,0,41,22],
"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[5,0,0,41,8],
"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[5,0,0,41,29],
"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[5,0,0,41,49],
"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[5,0,0,41,50],
"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[5,0,0,41,26],
"items_8php.html#abe695dd89e1e10ed042c26b80114f0ed":[5,0,0,41,46],
"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[5,0,0,41,1],
"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,41,43],
"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,41,18],
"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,41,39],
"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,41,46],
"items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,41,50],
"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,41,23],
"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[5,0,0,41,34],
"items_8php.html#af94c281016c6c912d06e064113336c5c":[5,0,0,41,41],
"items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1":[5,0,0,41,14],
"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[5,0,0,41,22],
"language_8php.html":[5,0,0,42],
"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[5,0,0,42,6]
"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,41,44],
"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,41,19],
"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,41,40],
"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,41,47],
"items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,41,51],
"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,41,24]
};

View File

@ -1,5 +1,11 @@
var NAVTREEINDEX5 =
{
"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[5,0,0,41,35],
"items_8php.html#af94c281016c6c912d06e064113336c5c":[5,0,0,41,42],
"items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1":[5,0,0,41,15],
"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[5,0,0,41,23],
"language_8php.html":[5,0,0,42],
"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[5,0,0,42,6],
"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[5,0,0,42,0],
"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[5,0,0,42,4],
"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[5,0,0,42,3],
@ -87,20 +93,20 @@ var NAVTREEINDEX5 =
"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,54,1],
"msearch_8php.html":[5,0,1,55],
"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,55,0],
"namespaceFriendica.html":[3,0,1],
"namespaceFriendica.html":[4,0,1],
"namespaceFriendica.html":[3,0,1],
"namespaceacl__selectors.html":[4,0,0],
"namespaceacl__selectors.html":[3,0,0],
"namespacefriendica-to-smarty-tpl.html":[4,0,2],
"namespacefriendica-to-smarty-tpl.html":[3,0,2],
"namespacefriendica-to-smarty-tpl.html":[4,0,2],
"namespacemembers.html":[3,1,0],
"namespacemembers_func.html":[3,1,1],
"namespacemembers_vars.html":[3,1,2],
"namespaces.html":[3,0],
"namespaceupdatetpl.html":[3,0,3],
"namespaceupdatetpl.html":[4,0,3],
"namespaceutil.html":[4,0,4],
"namespaceutil.html":[3,0,4],
"namespaceutil.html":[4,0,4],
"nav_8php.html":[5,0,0,45],
"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,45,0],
"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,45,1],
@ -243,11 +249,5 @@ var NAVTREEINDEX5 =
"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,60,0],
"queue__fn_8php.html":[5,0,0,61],
"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,61,1],
"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,61,0],
"randprof_8php.html":[5,0,1,81],
"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,81,0],
"redbasic_2php_2style_8php.html":[5,0,3,1,0,0,1],
"redbasic_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,0,0,1,14],
"redbasic_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,0,0,1,5],
"redbasic_2php_2style_8php.html#a0b942d36d8862908864e2ffa4521be70":[5,0,3,1,0,0,1,13]
"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,61,0]
};

View File

@ -1,5 +1,11 @@
var NAVTREEINDEX6 =
{
"randprof_8php.html":[5,0,1,81],
"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,81,0],
"redbasic_2php_2style_8php.html":[5,0,3,1,0,0,1],
"redbasic_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,0,0,1,14],
"redbasic_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,0,0,1,5],
"redbasic_2php_2style_8php.html#a0b942d36d8862908864e2ffa4521be70":[5,0,3,1,0,0,1,13],
"redbasic_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[5,0,3,1,0,0,1,17],
"redbasic_2php_2style_8php.html#a232513bf4339fe34908c4c63cb93168b":[5,0,3,1,0,0,1,4],
"redbasic_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab":[5,0,3,1,0,0,1,0],
@ -64,6 +70,7 @@ var NAVTREEINDEX6 =
"search__ac_8php.html":[5,0,1,89],
"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,89,0],
"security_8php.html":[5,0,0,62],
"security_8php.html#a15e0f8f511cc06192db63387f97238b3":[5,0,0,62,11],
"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,62,2],
"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,62,4],
"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,62,5],
@ -242,12 +249,5 @@ var NAVTREEINDEX6 =
"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,68,55],
"text_8php.html#ae4f6881d7e13623f8eded6277595112a":[5,0,0,68,23],
"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,68,0],
"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,68,60],
"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,68,22],
"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,68,12],
"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,68,56],
"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,68,51],
"theme_2redstrap_2php_2default_8php.html":[5,0,3,1,1,0,1],
"theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,1,1,0,1,0],
"theme_2redstrap_2php_2theme__init_8php.html":[5,0,3,1,1,0,4]
"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,68,60]
};

View File

@ -1,5 +1,12 @@
var NAVTREEINDEX7 =
{
"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,68,22],
"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,68,12],
"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,68,56],
"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,68,51],
"theme_2redstrap_2php_2default_8php.html":[5,0,3,1,1,0,1],
"theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,1,1,0,1,0],
"theme_2redstrap_2php_2theme__init_8php.html":[5,0,3,1,1,0,4],
"thing_8php.html":[5,0,1,101],
"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,101,0],
"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,101,1],
@ -81,8 +88,8 @@ var NAVTREEINDEX7 =
"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[5,0,0,69,8],
"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,69,15],
"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,69,3],
"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[5,0,0,69,4],
"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,69,19],
"zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1":[5,0,0,69,6],
"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,69,24],
"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,69,16],
"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,69,0],
@ -92,14 +99,14 @@ var NAVTREEINDEX7 =
"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,69,10],
"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,69,9],
"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,69,12],
"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[5,0,0,69,6],
"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,69,21],
"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[5,0,0,69,14],
"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,69,25],
"zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63":[5,0,0,69,14],
"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,69,7],
"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,69,1],
"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,69,18],
"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,69,2],
"zot_8php.html#aeec89da5b6ff090c63a79de4de884a35":[5,0,0,69,4],
"zotfeed_8php.html":[5,0,1,121],
"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,121,0],
"zping_8php.html":[5,0,1,122],

View File

@ -226,7 +226,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="crepair_8php.html#acc4493e1ffd1462a605dd9b870034513">crepair_post()</a>, <a class="el" href="import_8php.html#af17fef0410518f7eac205d0ea416eaa2">import_post()</a>, <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan()</a>, and <a class="el" href="poller_8php.html#a5f12df3a4738124b6c039971e87e76da">poller_run()</a>.</p>
<p>Referenced by <a class="el" href="crepair_8php.html#acc4493e1ffd1462a605dd9b870034513">crepair_post()</a>, <a class="el" href="import_8php.html#af17fef0410518f7eac205d0ea416eaa2">import_post()</a>, <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan()</a>, and <a class="el" href="poller_8php.html#a5f12df3a4738124b6c039971e87e76da">poller_run()</a>.</p>
</div>
</div>

View File

@ -168,7 +168,7 @@ Variables</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classApp.html#af6d39f63fb7116bbeb04e51696f99474">App\__construct()</a>, <a class="el" href="classTemplate.html#aae9c4d761ea1298e745e8052d7910194">Template\_get_var()</a>, <a class="el" href="classTemplate.html#abf71098c80fd1f218a59452b3408309e">Template\_replcb_for()</a>, <a class="el" href="items_8php.html#a36e656667193c83aa2cc03a024fc131b">activity_sanitise()</a>, <a class="el" href="profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4">advanced_profile()</a>, <a class="el" href="crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286">aes_encapsulate()</a>, <a class="el" href="crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914">aes_unencapsulate()</a>, <a class="el" href="zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7">build_sync_packet()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="connections_8php.html#a1224058db8e3fb56463eb312f98e561d">connections_post()</a>, <a class="el" href="boot_8php.html#acc4e0c910af066148b810e5fde55fff1">construct_page()</a>, <a class="el" href="contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f">contact_poll_interval()</a>, <a class="el" href="contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53">contact_reputation()</a>, <a class="el" href="dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c">dirsearch_content()</a>, <a class="el" href="plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35">get_plugin_info()</a>, <a class="el" href="plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405">get_theme_info()</a>, <a class="el" href="photo__driver_8php.html#a7273b82b017fd96d29b2c57bab03aea6">guess_image_type()</a>, <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile()</a>, <a class="el" href="conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3">item_photo_menu()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1">load_config()</a>, <a class="el" href="include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6">load_pconfig()</a>, <a class="el" href="include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33">load_xconfig()</a>, <a class="el" href="mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718">message_post()</a>, <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood_content()</a>, <a class="el" href="mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec">network_init()</a>, <a class="el" href="include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7">new_contact()</a>, <a class="el" href="classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050">FKOAuthDataStore\new_request_token()</a>, <a class="el" href="taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2">obj_verb_selector()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="po2php_8php.html#a3b75e36f913198299e99559b175cd8b4">po2php_run()</a>, <a class="el" href="poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498">poco_init()</a>, <a class="el" href="poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993">poke_content()</a>, <a class="el" href="include_2message_8php.html#a5f8de9847e203329e317ac38dc646898">private_messages_fetch_conversation()</a>, <a class="el" href="include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091">private_messages_fetch_message()</a>, <a class="el" href="include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e">private_messages_list()</a>, <a class="el" href="zot_8php.html#ac301c67864917c35922257950ae0f95c">process_channel_sync_delivery()</a>, <a class="el" href="include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e">requestdata()</a>, <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App\set_widget()</a>, <a class="el" href="settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586">settings_post()</a>, <a class="el" href="boot_8php.html#aca47505b8732177f52bb2d647eb2741c">startup()</a>, <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>, <a class="el" href="language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d">tt()</a>, <a class="el" href="vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2">vote_post()</a>, <a class="el" href="boot_8php.html#a01353c9abebc3544ea080ac161729632">x()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, and <a class="el" href="zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d">zot_refresh()</a>.</p>
<p>Referenced by <a class="el" href="classApp.html#af6d39f63fb7116bbeb04e51696f99474">App\__construct()</a>, <a class="el" href="classTemplate.html#aae9c4d761ea1298e745e8052d7910194">Template\_get_var()</a>, <a class="el" href="classTemplate.html#abf71098c80fd1f218a59452b3408309e">Template\_replcb_for()</a>, <a class="el" href="items_8php.html#a36e656667193c83aa2cc03a024fc131b">activity_sanitise()</a>, <a class="el" href="profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4">advanced_profile()</a>, <a class="el" href="crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286">aes_encapsulate()</a>, <a class="el" href="crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914">aes_unencapsulate()</a>, <a class="el" href="zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7">build_sync_packet()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="connections_8php.html#a1224058db8e3fb56463eb312f98e561d">connections_post()</a>, <a class="el" href="boot_8php.html#acc4e0c910af066148b810e5fde55fff1">construct_page()</a>, <a class="el" href="contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f">contact_poll_interval()</a>, <a class="el" href="contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53">contact_reputation()</a>, <a class="el" href="dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c">dirsearch_content()</a>, <a class="el" href="plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35">get_plugin_info()</a>, <a class="el" href="plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405">get_theme_info()</a>, <a class="el" href="photo__driver_8php.html#a7273b82b017fd96d29b2c57bab03aea6">guess_image_type()</a>, <a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">import_directory_profile()</a>, <a class="el" href="conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3">item_photo_menu()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1">load_config()</a>, <a class="el" href="include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6">load_pconfig()</a>, <a class="el" href="include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33">load_xconfig()</a>, <a class="el" href="mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718">message_post()</a>, <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood_content()</a>, <a class="el" href="mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec">network_init()</a>, <a class="el" href="include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7">new_contact()</a>, <a class="el" href="classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050">FKOAuthDataStore\new_request_token()</a>, <a class="el" href="taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2">obj_verb_selector()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="po2php_8php.html#a3b75e36f913198299e99559b175cd8b4">po2php_run()</a>, <a class="el" href="poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498">poco_init()</a>, <a class="el" href="poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993">poke_content()</a>, <a class="el" href="include_2message_8php.html#a5f8de9847e203329e317ac38dc646898">private_messages_fetch_conversation()</a>, <a class="el" href="include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091">private_messages_fetch_message()</a>, <a class="el" href="include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e">private_messages_list()</a>, <a class="el" href="zot_8php.html#ac301c67864917c35922257950ae0f95c">process_channel_sync_delivery()</a>, <a class="el" href="include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e">requestdata()</a>, <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App\set_widget()</a>, <a class="el" href="settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586">settings_post()</a>, <a class="el" href="boot_8php.html#aca47505b8732177f52bb2d647eb2741c">startup()</a>, <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>, <a class="el" href="language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d">tt()</a>, <a class="el" href="vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2">vote_post()</a>, <a class="el" href="boot_8php.html#a01353c9abebc3544ea080ac161729632">x()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, and <a class="el" href="zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d">zot_refresh()</a>.</p>
</div>
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@ var searchData=
['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]],
['_24colour',['$colour',['../redbasic_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'$colour():&#160;style.php'],['../redstrap_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'$colour():&#160;style.php']]],
['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]],
['_24commentable',['$commentable',['../classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6',1,'Conversation']]],
['_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']]],

View File

@ -38,6 +38,7 @@ var searchData=
['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']]],

View File

@ -12,11 +12,11 @@ var searchData=
['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#a3c9e0b243ba29a7b0c050bd0b86eee32',1,'zot.php']]],
['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#aeec89da5b6ff090c63a79de4de884a35',1,'zot.php']]],
['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]],
['import_5fprofile_5fphoto',['import_profile_photo',['../photo__driver_8php.html#a102f3f26f67e0e38f4322a771951c1ca',1,'photo_driver.php']]],
['import_5fsite',['import_site',['../zot_8php.html#a2657e141d62d5f67ad3c87651b585299',1,'zot.php']]],
['import_5fxchan',['import_xchan',['../zot_8php.html#ab0227978011d8601494a7651fa26acf0',1,'zot.php']]],
['import_5fxchan',['import_xchan',['../zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1',1,'zot.php']]],
['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]],
['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]],
['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]],
@ -30,7 +30,7 @@ var searchData=
['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_5fcommentable',['is_commentable',['../classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3',1,'Conversation\is_commentable()'],['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item\is_commentable()']]],
['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]],
['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]],
['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]],

View File

@ -2,6 +2,7 @@ var searchData=
[
['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_import.php'],['../mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_new_channel.php'],['../mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_register.php']]],
['page_2ephp',['page.php',['../page_8php.html',1,'']]],
['page_5fadult',['PAGE_ADULT',['../boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32',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_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]],

View File

@ -32,6 +32,7 @@ var searchData=
['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_5fcurl_5fcode',['set_curl_code',['../classApp.html#a5e6a6bd641e4d9909df56f0283c03821',1,'App']]],
@ -91,11 +92,12 @@ var searchData=
['store',['store',['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver']]],
['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]],
['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809',1,'security.php']]],
['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a15e0f8f511cc06192db63387f97238b3',1,'security.php']]],
['string_5fplural_5fselect_5fdefault',['string_plural_select_default',['../language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0',1,'language.php']]],
['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]],
['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]],
['style_2ephp',['style.php',['../redstrap_2php_2style_8php.html',1,'']]],
['style_2ephp',['style.php',['../redbasic_2php_2style_8php.html',1,'']]],
['style_2ephp',['style.php',['../redstrap_2php_2style_8php.html',1,'']]],
['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]],
['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]],
['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]],

View File

@ -18,7 +18,7 @@ var searchData=
['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]],
['update_5ffailed',['UPDATE_FAILED',['../boot_8php.html#a75fc600186b13c3b25e661afefb5eac8',1,'boot.php']]],
['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]],
['update_5fmodtime',['update_modtime',['../zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63',1,'zot.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']]],

View File

@ -6,6 +6,7 @@ var searchData=
['xchan_5fflags_5fcensored',['XCHAN_FLAGS_CENSORED',['../boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e',1,'boot.php']]],
['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]],
['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]],
['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]],
['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]],
['xchan_5fquery',['xchan_query',['../text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f',1,'text.php']]],
['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]],

View File

@ -32,6 +32,7 @@ var searchData=
['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']]],

View File

@ -9,11 +9,11 @@ var searchData=
['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#a3c9e0b243ba29a7b0c050bd0b86eee32',1,'zot.php']]],
['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#aeec89da5b6ff090c63a79de4de884a35',1,'zot.php']]],
['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]],
['import_5fprofile_5fphoto',['import_profile_photo',['../photo__driver_8php.html#a102f3f26f67e0e38f4322a771951c1ca',1,'photo_driver.php']]],
['import_5fsite',['import_site',['../zot_8php.html#a2657e141d62d5f67ad3c87651b585299',1,'zot.php']]],
['import_5fxchan',['import_xchan',['../zot_8php.html#ab0227978011d8601494a7651fa26acf0',1,'zot.php']]],
['import_5fxchan',['import_xchan',['../zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1',1,'zot.php']]],
['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]],
['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]],
['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]],
@ -25,7 +25,7 @@ var searchData=
['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_5fcommentable',['is_commentable',['../classConversation.html#a8b47c92b69459d461ea3cc9aae9597a3',1,'Conversation\is_commentable()'],['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item\is_commentable()']]],
['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]],
['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]],
['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]],

View File

@ -28,6 +28,7 @@ var searchData=
['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_5fcurl_5fcode',['set_curl_code',['../classApp.html#a5e6a6bd641e4d9909df56f0283c03821',1,'App']]],
@ -76,6 +77,7 @@ var searchData=
['store',['store',['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver']]],
['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]],
['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809',1,'security.php']]],
['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a15e0f8f511cc06192db63387f97238b3',1,'security.php']]],
['string_5fplural_5fselect_5fdefault',['string_plural_select_default',['../language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0',1,'language.php']]],
['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]],
['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]],

View File

@ -13,7 +13,7 @@ var searchData=
['update_5fcommunity_5fcontent',['update_community_content',['../update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1',1,'update_community.php']]],
['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]],
['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]],
['update_5fmodtime',['update_modtime',['../zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63',1,'zot.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_5fsearch_5fcontent',['update_search_content',['../update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52',1,'update_search.php']]],

View File

@ -19,7 +19,7 @@ var searchData=
['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]],
['_24colour',['$colour',['../redbasic_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'$colour():&#160;style.php'],['../redstrap_2php_2style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'$colour():&#160;style.php']]],
['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]],
['_24commentable',['$commentable',['../classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6',1,'Conversation']]],
['_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']]],

View File

@ -1,6 +1,7 @@
var searchData=
[
['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_import.php'],['../mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_new_channel.php'],['../mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page():&#160;mod_register.php']]],
['page_5fadult',['PAGE_ADULT',['../boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32',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_5fdirectory_5fchannel',['PAGE_DIRECTORY_CHANNEL',['../boot_8php.html#a5b8484922918946d041e5e0515dbe718',1,'boot.php']]],

View File

@ -2,5 +2,6 @@ var searchData=
[
['xchan_5fflags_5fcensored',['XCHAN_FLAGS_CENSORED',['../boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e',1,'boot.php']]],
['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]],
['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]]
['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]],
['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]]
];

View File

@ -134,6 +134,8 @@ Functions</h2></td></tr>
<tr class="separator:a444ac867dfa8c37cf0a7a226412bee28"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae92c5c1a1cbbc49ddbb8b3265d2db809"><td class="memItemLeft" align="right" valign="top"><a class="el" href="redstrap_2php_2style_8php.html#a0c4684da834439885ae2285649d1aaea">if</a>(!function_exists('init_groups_visitor'))&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">stream_perms_api_uids</a> ($perms_min=<a class="el" href="boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f">PERMS_SITE</a>)</td></tr>
<tr class="separator:ae92c5c1a1cbbc49ddbb8b3265d2db809"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15e0f8f511cc06192db63387f97238b3"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="security_8php.html#a15e0f8f511cc06192db63387f97238b3">stream_perms_xchans</a> ($perms_min=<a class="el" href="boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f">PERMS_SITE</a>)</td></tr>
<tr class="separator:a15e0f8f511cc06192db63387f97238b3"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Function Documentation</h2>
<a class="anchor" id="adc7bf51e3b8d67bd80e9348f9ab03733"></a>
@ -415,7 +417,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>.</p>
<p>Referenced by <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, and <a class="el" href="search_8php.html#ab2568591359edde5b483a6cd9a24b2cc">search_content()</a>.</p>
</div>
</div>
@ -433,7 +435,25 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="include_2api_8php.html#a645397787618b5c548a31e8686e8cca4">api_status_show()</a>, <a class="el" href="include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22">api_statuses_public_timeline()</a>, <a class="el" href="include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76">api_users_show()</a>, and <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>.</p>
<p>Referenced by <a class="el" href="include_2api_8php.html#a645397787618b5c548a31e8686e8cca4">api_status_show()</a>, <a class="el" href="include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22">api_statuses_public_timeline()</a>, and <a class="el" href="include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76">api_users_show()</a>.</p>
</div>
</div>
<a class="anchor" id="a15e0f8f511cc06192db63387f97238b3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">stream_perms_xchans </td>
<td>(</td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$perms_min</em> = <code><a class="el" href="boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f">PERMS_SITE</a></code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, and <a class="el" href="search_8php.html#ab2568591359edde5b483a6cd9a24b2cc">search_content()</a>.</p>
</div>
</div>

View File

@ -10,5 +10,6 @@ var security_8php =
[ "item_permissions_sql", "security_8php.html#a9355488460ab11d6058656ff919e5cf9", null ],
[ "permissions_sql", "security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f", null ],
[ "public_permissions_sql", "security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01", null ],
[ "stream_perms_api_uids", "security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809", null ]
[ "stream_perms_api_uids", "security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809", null ],
[ "stream_perms_xchans", "security_8php.html#a15e0f8f511cc06192db63387f97238b3", null ]
];

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -130,7 +130,7 @@ Variables</h2></td></tr>
<b>Initial value:</b><div class="fragment"><div class="line">= &lt;&lt;&lt; <a class="code" href="typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805">EOT</a></div>
<div class="line"> error_reporting(E_ERROR | E_WARNING | E_PARSE )</div>
</div><!-- fragment -->
<p>Referenced by <a class="el" href="include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25">api_date()</a>, <a class="el" href="setup_8php.html#a14d208682a88632290c895d20da6e7d6">check_php()</a>, <a class="el" href="text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3">check_webbie()</a>, <a class="el" href="dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e">dbesc()</a>, <a class="el" href="classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e">dba_mysql\escape()</a>, <a class="el" href="classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64">dba_mysqli\escape()</a>, <a class="el" href="plugin_8php.html#af92789f559b89a380e49d303218aeeca">head_get_css()</a>, <a class="el" href="plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1">head_get_js()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a">load_database()</a>, <a class="el" href="include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe">photos_album_get_db_idstr()</a>, <a class="el" href="mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080">photos_post()</a>, <a class="el" href="items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0">posted_dates()</a>, <a class="el" href="datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82">relative_date()</a>, <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">stream_perms_api_uids()</a>, <a class="el" href="thing_8php.html#a8be23b1d475ec3d9291999221c674c80">thing_init()</a>, and <a class="el" href="text_8php.html#aaed4413ed8918838b517e3b2fafaea0d">xmlify()</a>.</p>
<p>Referenced by <a class="el" href="include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25">api_date()</a>, <a class="el" href="setup_8php.html#a14d208682a88632290c895d20da6e7d6">check_php()</a>, <a class="el" href="text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3">check_webbie()</a>, <a class="el" href="dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e">dbesc()</a>, <a class="el" href="classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e">dba_mysql\escape()</a>, <a class="el" href="classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64">dba_mysqli\escape()</a>, <a class="el" href="plugin_8php.html#af92789f559b89a380e49d303218aeeca">head_get_css()</a>, <a class="el" href="plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1">head_get_js()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a">load_database()</a>, <a class="el" href="include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe">photos_album_get_db_idstr()</a>, <a class="el" href="mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080">photos_post()</a>, <a class="el" href="items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0">posted_dates()</a>, <a class="el" href="datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82">relative_date()</a>, <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">stream_perms_api_uids()</a>, <a class="el" href="security_8php.html#a15e0f8f511cc06192db63387f97238b3">stream_perms_xchans()</a>, <a class="el" href="thing_8php.html#a8be23b1d475ec3d9291999221c674c80">thing_init()</a>, and <a class="el" href="text_8php.html#aaed4413ed8918838b517e3b2fafaea0d">xmlify()</a>.</p>
</div>
</div>

View File

@ -128,8 +128,8 @@ Functions</h2></td></tr>
<tr class="separator:a55056e863a7860bc0cf922e78fcce073"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5bcdfef419b16075a0eca990956223dc"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a5bcdfef419b16075a0eca990956223dc">zot_register_hub</a> ($arr)</td></tr>
<tr class="separator:a5bcdfef419b16075a0eca990956223dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0227978011d8601494a7651fa26acf0"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan</a> ($arr)</td></tr>
<tr class="separator:ab0227978011d8601494a7651fa26acf0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a56f3f65514e4e7f0cd117d01735aebd1"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan</a> ($arr, $ud_flags=1)</td></tr>
<tr class="separator:a56f3f65514e4e7f0cd117d01735aebd1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a928f5643ca66ae9635d85aeb2be62e03"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03">zot_process_response</a> ($hub, $arr, $outq)</td></tr>
<tr class="separator:a928f5643ca66ae9635d85aeb2be62e03"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61cdc1ec843663c423ed2d8160ae5aea"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea">zot_fetch</a> ($arr)</td></tr>
@ -152,12 +152,12 @@ Functions</h2></td></tr>
<tr class="separator:aa6ae96db8cbbdbb10e6876d206bbf7cc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a57b40669351c9791126b925cb7ef3b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a9a57b40669351c9791126b925cb7ef3b">process_profile_delivery</a> ($sender, $arr, $deliveries)</td></tr>
<tr class="separator:a9a57b40669351c9791126b925cb7ef3b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c9e0b243ba29a7b0c050bd0b86eee32"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile</a> ($hash, $profile)</td></tr>
<tr class="separator:a3c9e0b243ba29a7b0c050bd0b86eee32"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeec89da5b6ff090c63a79de4de884a35"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">import_directory_profile</a> ($hash, $profile, $addr, $ud_flags=1, $suppress_update=0)</td></tr>
<tr class="separator:aeec89da5b6ff090c63a79de4de884a35"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3bf11286c2619b4ca28e49d5b5ab374a"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a">import_directory_keywords</a> ($hash, $keywords)</td></tr>
<tr class="separator:a3bf11286c2619b4ca28e49d5b5ab374a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd83bc7e3db604bdca85c3a8c7e2bf63"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63">update_modtime</a> ($hash, $guid)</td></tr>
<tr class="separator:abd83bc7e3db604bdca85c3a8c7e2bf63"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab319d1d9fff9c7775d9daef42d1f33dd"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd">update_modtime</a> ($hash, $guid, $addr, $flags=0)</td></tr>
<tr class="separator:ab319d1d9fff9c7775d9daef42d1f33dd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2657e141d62d5f67ad3c87651b585299"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#a2657e141d62d5f67ad3c87651b585299">import_site</a> ($arr, $pubkey)</td></tr>
<tr class="separator:a2657e141d62d5f67ad3c87651b585299"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac34e479d27f32b82dd6b33542f81a6a7"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7">build_sync_packet</a> ($uid=0, $packet=null)</td></tr>
@ -271,11 +271,11 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile()</a>.</p>
<p>Referenced by <a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">import_directory_profile()</a>.</p>
</div>
</div>
<a class="anchor" id="a3c9e0b243ba29a7b0c050bd0b86eee32"></a>
<a class="anchor" id="aeec89da5b6ff090c63a79de4de884a35"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
@ -289,7 +289,25 @@ Functions</h2></td></tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$profile</em>&#160;</td>
<td class="paramname"><em>$profile</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$addr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$ud_flags</em> = <code>1</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$suppress_update</em> = <code>0</code>&#160;</td>
</tr>
<tr>
<td></td>
@ -299,7 +317,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan()</a>, <a class="el" href="zot_8php.html#a9a57b40669351c9791126b925cb7ef3b">process_profile_delivery()</a>, and <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>.</p>
<p>Referenced by <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan()</a>, <a class="el" href="zot_8php.html#a9a57b40669351c9791126b925cb7ef3b">process_profile_delivery()</a>, and <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>.</p>
</div>
</div>
@ -327,11 +345,11 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan()</a>.</p>
<p>Referenced by <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan()</a>.</p>
</div>
</div>
<a class="anchor" id="ab0227978011d8601494a7651fa26acf0"></a>
<a class="anchor" id="a56f3f65514e4e7f0cd117d01735aebd1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
@ -339,8 +357,18 @@ Functions</h2></td></tr>
<td class="memname">import_xchan </td>
<td>(</td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$arr</em></td><td>)</td>
<td class="paramname"><em>$arr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$ud_flags</em> = <code>1</code>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
@ -577,7 +605,7 @@ Functions</h2></td></tr>
</div>
</div>
<a class="anchor" id="abd83bc7e3db604bdca85c3a8c7e2bf63"></a>
<a class="anchor" id="ab319d1d9fff9c7775d9daef42d1f33dd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
@ -591,7 +619,19 @@ Functions</h2></td></tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$guid</em>&#160;</td>
<td class="paramname"><em>$guid</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$addr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">&#160;</td>
<td class="paramname"><em>$flags</em> = <code>0</code>&#160;</td>
</tr>
<tr>
<td></td>
@ -601,7 +641,7 @@ Functions</h2></td></tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile()</a>, and <a class="el" href="zot_8php.html#ab0227978011d8601494a7651fa26acf0">import_xchan()</a>.</p>
<p>Referenced by <a class="el" href="zot_8php.html#aeec89da5b6ff090c63a79de4de884a35">import_directory_profile()</a>, and <a class="el" href="zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1">import_xchan()</a>.</p>
</div>
</div>

View File

@ -4,9 +4,9 @@ var zot_8php =
[ "build_sync_packet", "zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7", null ],
[ "delete_imported_item", "zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72", null ],
[ "import_directory_keywords", "zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a", null ],
[ "import_directory_profile", "zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32", null ],
[ "import_directory_profile", "zot_8php.html#aeec89da5b6ff090c63a79de4de884a35", null ],
[ "import_site", "zot_8php.html#a2657e141d62d5f67ad3c87651b585299", null ],
[ "import_xchan", "zot_8php.html#ab0227978011d8601494a7651fa26acf0", null ],
[ "import_xchan", "zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1", null ],
[ "process_channel_sync_delivery", "zot_8php.html#ac301c67864917c35922257950ae0f95c", null ],
[ "process_delivery", "zot_8php.html#a37ec13b18057634eadb071f05297f5e1", null ],
[ "process_mail_delivery", "zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc", null ],
@ -14,7 +14,7 @@ var zot_8php =
[ "public_recips", "zot_8php.html#a083aec6c900d244e1bfc1406f9461465", null ],
[ "remove_community_tag", "zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10", null ],
[ "update_imported_item", "zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df", null ],
[ "update_modtime", "zot_8php.html#abd83bc7e3db604bdca85c3a8c7e2bf63", null ],
[ "update_modtime", "zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd", null ],
[ "zot_build_packet", "zot_8php.html#a3862b3161b2c8557dc1a95020179bd81", null ],
[ "zot_fetch", "zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea", null ],
[ "zot_finger", "zot_8php.html#a77720d6b59894e9b609af89c310c8a4d", null ],

View File

@ -219,7 +219,8 @@ function channel_remove($channel_id, $local = true) {
$r = q("update channel set channel_pageflags = (channel_pageflags | %d), channel_r_stream = 0, channel_r_profile = 0,
channel_r_photos = 0, channel_r_abook = 0, channel_w_stream = 0, channel_w_wall = 0, channel_w_tagwall = 0,
channel_w_comment = 0, channel_w_mail = 0, channel_w_photos = 0, channel_w_chat = 0, channel_a_delegate = 0,
channel_r_storage = 0, channel_w_storage = 0, channel_r_pages = 0, channel_w_pages = 0 where channel_id = %d limit 1",
channel_r_storage = 0, channel_w_storage = 0, channel_r_pages = 0, channel_w_pages = 0, channel_a_republish = 0
where channel_id = %d limit 1",
intval(PAGE_REMOVED),
intval($channel_id)
);

View File

@ -7,6 +7,7 @@ require_once('boot.php');
require_once('include/BaseObject.php');
require_once('include/ItemObject.php');
require_once('include/text.php');
require_once('include/items.php');
/**
* A list of threads
@ -154,7 +155,10 @@ class Conversation extends BaseObject {
$item->set_commentable(false);
}
elseif(($this->observer) && (! $item->is_commentable())) {
$item->set_commentable(can_comment_on_post($this->observer['xchan_hash'],$item->data));
if((array_key_exists('owner',$item->data)) && ($item->data['owner']['abook_flags'] & ABOOK_FLAG_SELF))
$item->set_commentable(perm_is_allowed($this->profile_owner,$this->observer['xchan_hash'],'post_comments'));
else
$item->set_commentable(can_comment_on_post($this->observer['xchan_hash'],$item->data));
}
$item->set_conversation($this);

View File

@ -217,6 +217,18 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$ev = bbtoevent($Text);
// process [observer] tags before we do anything else because we might
// be stripping away stuff that then doesn't need to be worked on anymore
$observer = $a->get_observer();
if (strpos($Text,'[/observer]') !== false) {
if ($observer) {
$Text = preg_replace("/\[observer\=1\](.*?)\[\/observer\]/ism", '$1', $Text);
$Text = preg_replace("/\[observer\=0\].*?\[\/observer\]/ism", '', $Text);
} else {
$Text = preg_replace("/\[observer\=1\].*?\[\/observer\]/ism", '', $Text);
$Text = preg_replace("/\[observer\=0\](.*?)\[\/observer\]/ism", '$1', $Text);
}
}
// Replace any html brackets with HTML Entities to prevent executing HTML or script
// Don't use strip_tags here because it breaks [url] search by replacing & with amp
@ -246,6 +258,22 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
// Set up the parameters for a MAIL search string
$MAILSearchString = $URLSearchString;
// replace [observer.baseurl]
if ($observer) {
$obsBaseURL = $observer['xchan_url'];
$obsBaseURL = preg_replace("/\/channel\/.*$/", '', $obsBaseURL);
$Text = str_replace('[observer.baseurl]', $obsBaseURL, $Text);
$Text = str_replace('[observer.url]',$observer['xchan_url'], $Text);
$Text = str_replace('[observer.name]',$observer['xchan_name'], $Text);
$Text = str_replace('[observer.address]',$observer['xchan_addr'], $Text);
$Text = str_replace('[observer.photo]','[zmg]'.$observer['xchan_photo_l'].'[/zmg]', $Text);
} else {
$Text = str_replace('[observer.baseurl]', '', $Text);
$Text = str_replace('[observer.url]','', $Text);
$Text = str_replace('[observer.name]','', $Text);
$Text = str_replace('[observer.address]','', $Text);
$Text = str_replace('[observer.photo]','', $Text);
}
// Perform URL Search

View File

@ -1,7 +1,7 @@
<?php /** @file */
require_once('include/security.php');
require_once('include/menu.php');
// When editing a webpage - a dropdown is needed to select a page layout
// On submit, the pdl_select value (which is the mid of an item with item_restrict = ITEM_PDL) is stored in
// the webpage's resource_id, with resource_type 'pdl'.
@ -74,7 +74,7 @@ function comanche_parser(&$a,$s) {
function comanche_menu($name) {
$a = get_app();
$m = menu_fetch($name,$a->profile['profile_uid'],get_observer_hash());
return render_menu($m);
return menu_render($m);
}
function comanche_replace_region($match) {
@ -85,9 +85,10 @@ function comanche_replace_region($match) {
}
function comanche_block($name) {
$o = '';
$r = q("select * from item left 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($a->profile['profile_uid']),
$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(get_app()->profile['profile_uid']),
dbesc($name)
);
if($r) {

View File

@ -24,6 +24,15 @@ function load_config($family) {
if(! array_key_exists('config_loaded',$a->config[$family])) {
$r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family));
// This is often one of the earliest database calls in the life of the page.
// If the DB was successfully opened, but we can't read from it,
// we must assume catastrophic failure of the DB. Report the system down.
if($r === false) {
system_unavailable();
}
if($r !== false) {
if($r) {
foreach($r as $rr) {

View File

@ -47,7 +47,7 @@ function findpeople_widget() {
'$hint' => t('Examples: Robert Morgenstein, Fishing'),
'$findthem' => t('Find'),
'$suggest' => t('Channel Suggestions'),
'$similar' => t('Similar Interests'),
'$similar' => '', // FIXME and uncomment when mod/match working // t('Similar Interests'),
'$random' => t('Random Profile'),
'$inv' => t('Invite Friends')
));

View File

@ -13,7 +13,7 @@ function sync_directories($dirmode) {
return;
$r = q("select * from site where (site_flags & %d) and site_url != '%s'",
intval(DIRECTORY_MODE_PRIMARY),
intval(DIRECTORY_MODE_PRIMARY|DIRECTORY_MODE_SECONDARY),
dbesc(z_root())
);
@ -34,16 +34,74 @@ function sync_directories($dirmode) {
dbesc($r[0]['site_directory'])
);
$r = q("select * from site where (site_flags & %d) and site_url != '%s'",
intval(DIRECTORY_MODE_PRIMARY|DIRECTORY_MODE_SECONDARY),
dbesc(z_root())
);
}
if(! $r)
return;
foreach($r as $rr) {
if(! $rr['site_directory'])
continue;
$x = z_fetch_url($rr['site_directory'] . '?f=&sync=' . urlencode($rr['site_sync']));
if(! $x['success'])
continue;
$j = json_decode($x['body'],true);
if((! $j['transactions']) || (! is_array($j['transactions'])))
continue;
q("update site set site_sync = '%s' where site_url = '%s' limit 1",
dbesc(datetime_convert()),
dbesc($rr['site_url'])
);
logger('sync_directories: ' . $rr['site_url'] . ': ' . print_r($j,true), LOGGER_DATA);
if(count($j['transactions'])) {
foreach($j['transactions'] as $t) {
$r = q("select * from updates where ud_guid = '%s' limit 1",
dbesc($t['transaction_id'])
);
if($r)
continue;
$ud_flags = 0;
if(is_array($t['flags']) && in_array('deleted',$t['flags']))
$ud_flags |= UPDATE_FLAGS_DELETED;
$z = q("insert into updates ( ud_hash, ud_guid, ud_date, ud_flags, ud_addr )
values ( '%s', '%s', '%s', '%d, '%s' ) ",
dbesc($t['hash']),
dbesc($t['transaction_id']),
dbesc($t['timestamp']),
intval($ud_flags),
dbesc($t['address'])
);
}
}
}
}
function update_directory_entry($ud) {
logger('update_directory_entry: ' . print_r($ud,true), LOGGER_DATA);
if($ud['ud_addr'] && (! ($ud['ud_flags'] & UPDATE_FLAGS_DELETED))) {
$x = zot_finger($ud['ud_addr'],'');
if($x['success']) {
$j = json_decode($x['body'],true);
$y = import_xchan($j,0);
}
else {
$r = q("update updates set ud_last = '%s' where ud_addr = '%s'",
dbesc(datetime_convert()),
dbesc($ud['ud_addr'])
);
}
}
}

View File

@ -51,9 +51,9 @@ function notification($params) {
$additional_mail_header = "";
if(array_key_exists('item',$params)) {
require_once('include/conversation.php');
// if it's a normal item...
if(array_key_exists('verb',$params['item'])) {
require_once('include/conversation.php');
// localize_item() alters the original item so make a copy first
$i = $params['item'];
logger('calling localize');
@ -89,6 +89,11 @@ function notification($params) {
if($params['type'] == NOTIFY_COMMENT) {
// logger("notification: params = " . print_r($params, true), LOGGER_DEBUG);
// ignore like/unlike activity on posts - they probably require a sepearate notification preference
if(array_key_exists('item',$params) && (! visible_activity($params['item'])))
return;
$parent_id = $params['parent'];
// Check to see if there was already a notify for this post.

View File

@ -35,6 +35,7 @@ function get_features() {
t('Post Composition Features'),
array('richtext', t('Richtext Editor'), t('Enable richtext editor')),
array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them')),
array('channel_sources', t('Channel Sources'), t('Automatically import channel content from other channels or feeds')),
),
// Network Tools

View File

@ -48,7 +48,7 @@ function validate_channelname($name) {
function create_dir_account() {
create_account(array(
create_identity(array(
'account_id' => 'xxx', // This will create an identity with an (integer) account_id of 0, but account_id is required
'nickname' => 'dir',
'name' => 'Directory',

View File

@ -24,10 +24,31 @@ function collect_recipients($item,&$private) {
if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid']) {
$allow_people = expand_acl($item['allow_cid']);
$allow_groups = expand_groups(expand_acl($item['allow_gid']));
$recipients = array_unique(array_merge($allow_people,$allow_groups));
// if you specifically deny somebody but haven't allowed anybody, we'll allow everybody in your
// address book minus the denied connections. The post is still private and can't be seen publicly
// as that would allow the denied person to see the post by logging out.
if((! $item['allow_cid']) && (! $item['allow_gid'])) {
$r = q("select * from abook where abook_channel = %d and not (abook_flags & %d) and not (abook_flags & %d) and not (abook_flags & %d)",
intval($item['uid']),
intval(ABOOK_FLAG_SELF),
intval(ABOOK_FLAG_PENDING),
intval(ABOOK_FLAG_ARCHIVED)
);
if($r) {
foreach($r as $rr) {
$recipients[] = $rr['abook_xchan'];
}
}
}
$deny_people = expand_acl($item['deny_cid']);
$deny_groups = expand_groups(expand_acl($item['deny_gid']));
$recipients = array_unique(array_merge($allow_people,$allow_groups));
$deny = array_unique(array_merge($deny_people,$deny_groups));
$recipients = array_diff($recipients,$deny);
$private = true;
@ -62,9 +83,20 @@ function collect_recipients($item,&$private) {
}
/**
* @function 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()
*/
function can_comment_on_post($observer_xchan,$item) {
// logger('can_comment_on_post: comment_policy: ' . $item['comment_policy'], LOGGER_DEBUG);
if(! $observer_xchan)
return false;
if($item['comment_policy'] === 'none')
@ -77,6 +109,10 @@ function can_comment_on_post($observer_xchan,$item) {
return true;
break;
case 'public':
// We don't allow public comments yet, until a policy
// for dealing with anonymous comments is in place with
// a means to moderate comments. Until that time, return
// false.
return false;
break;
case 'contacts':
@ -1265,14 +1301,9 @@ function get_atom_elements($feed,$item) {
$res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
$body = html2bb_video($body);
$config = HTMLPurifier_Config::createDefault();
$config->set('Cache.DefinitionImpl', null);
$purifier = new HTMLPurifier($config);
$body = $purifier->purify($body);
$body = purify_html($body);
$body = html2bbcode($body);
}
$res['object'] .= '<content>' . $body . '</content>' . "\n";
@ -1303,13 +1334,7 @@ function get_atom_elements($feed,$item) {
$res['target'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
$body = html2bb_video($body);
$config = HTMLPurifier_Config::createDefault();
$config->set('Cache.DefinitionImpl', null);
$purifier = new HTMLPurifier($config);
$body = $purifier->purify($body);
$body = purify_html($body);
$body = html2bbcode($body);
}
@ -1348,6 +1373,7 @@ function get_atom_elements($feed,$item) {
$arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
call_hooks('parse_atom', $arr);
logger('get_atom_elements: ' . print_r($res,true));
return $res;
}
@ -2038,6 +2064,12 @@ function tag_deliver($uid,$item_id) {
logger('tag_deliver: tag permission denied for ' . $u[0]['channel_address']);
}
$union = check_item_source($uid,$item);
if($union)
logger('check_item_source returns true');
// This might be a followup by the original post author to a tagged forum
// If so setup a second delivery chain
@ -2104,43 +2136,45 @@ function tag_deliver($uid,$item_id) {
intval(ITEM_MENTIONSME),
intval($item_id)
);
}
else
return;
// At this point we've determined that the person receiving this post was mentioned in it.
// Now let's check if this mention was inside a reshare so we don't spam a forum
// At this point we've determined that the person receiving this post was mentioned in it or it is a union.
// Now let's check if this mention was inside a reshare so we don't spam a forum
$body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']);
$body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']);
$pattern = '/@\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'],'/') . '\[\/zrl\]/';
$pattern = '/@\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'],'/') . '\[\/zrl\]/';
if(! preg_match($pattern,$body,$matches)) {
logger('tag_deliver: mention was in a reshare - ignoring');
return;
}
if(! preg_match($pattern,$body,$matches)) {
logger('tag_deliver: mention was in a reshare - ignoring');
return;
}
// All good.
// Send a notification
// All good.
// Send a notification
require_once('include/enotify.php');
notification(array(
'to_xchan' => $u[0]['channel_hash'],
'from_xchan' => $item['author_xchan'],
'type' => NOTIFY_TAGSELF,
'item' => $item,
'link' => $i[0]['llink'],
'verb' => ACTIVITY_TAG,
'otype' => 'item'
));
require_once('include/enotify.php');
notification(array(
'to_xchan' => $u[0]['channel_hash'],
'from_xchan' => $item['author_xchan'],
'type' => NOTIFY_TAGSELF,
'item' => $item,
'link' => $i[0]['llink'],
'verb' => ACTIVITY_TAG,
'otype' => 'item'
));
if(! perm_is_allowed($uid,$item['author_xchan'],'tag_deliver')) {
logger('tag_delivery denied for uid ' . $uid . ' and xchan ' . $item['author_xchan']);
return;
if(! perm_is_allowed($uid,$item['author_xchan'],'tag_deliver')) {
logger('tag_delivery denied for uid ' . $uid . ' and xchan ' . $item['author_xchan']);
return;
}
}
if((! $mention) && (! $union))
return;
// tgroup delivery - setup a second delivery chain
// prevent delivery looping - only proceed
@ -2248,6 +2282,73 @@ function tgroup_check($uid,$item) {
}
/**
* @function check_item_source($uid,$item)
* @param $uid
* @param $item
*
* @description
* Checks 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.
*/
function check_item_source($uid,$item) {
if($item['item_private'])
return false;
$r = q("select * from source where src_channel_id = %d and src_xchan = '%s' limit 1",
intval($uid),
dbesc($item['owner_xchan'])
);
if(! $r)
return false;
$x = q("select abook_their_perms from abook where abook_channel = %d and abook_xchan = '%s' limit 1",
intval($uid),
dbesc($item['owner_xchan'])
);
if(! $x)
return false;
if(! ($x[0]['abook_their_perms'] & PERMS_A_REPUBLISH))
return false;
if($r[0]['src_channel_xchan'] === $item['owner_xchan'])
return false;
if(! $r[0]['src_patt'])
return true;
require_once('include/html2plain.php');
$text = prepare_text($item['body'],$item['mimetype']);
$text = html2plain($text);
$tags = ((count($items['term'])) ? $items['term'] : false);
$words = explode("\n",$r[0]['src_patt']);
if($words) {
foreach($words as $word) {
if(substr($word,0,1) === '#' && $tags) {
foreach($tags as $t)
if($t['type'] == TERM_HASHTAG && substr($t,1) === $word)
return true;
}
if(stristr($text,$word) !== false)
return true;
}
}
return false;
}
function mail_store($arr) {
if(! $arr['channel_id']) {
@ -2576,6 +2677,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
logger('consume_feed: empty input');
return;
}
// Want to see this work as a content source for the matrix?
// Read this: https://github.com/friendica/red/wiki/Service_Federation
$feed = new SimplePie();
$feed->set_raw_data($xml);
@ -2592,12 +2696,6 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
// Check at the feed level for updated contact name and/or photo
$name_updated = '';
$new_name = '';
$photo_timestamp = '';
$photo_url = '';
$birthday = '';
// process any deleted entries
@ -2619,7 +2717,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
/* $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.`id`
WHERE `mid` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
dbesc($mid),
intval($importer['uid']),
intval($importer['channel_id']),
intval($contact['id'])
);
*/
@ -2637,7 +2735,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
dbesc($when),
dbesc(datetime_convert()),
dbesc($item['mid']),
intval($importer['uid'])
intval($importer['channel_id'])
);
}
else {
@ -2648,7 +2746,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
dbesc($when),
dbesc(datetime_convert()),
dbesc($mid),
intval($importer['uid'])
intval($importer['channel_id'])
);
}
}
@ -2673,6 +2771,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$is_reply = false;
$item_id = $item->get_id();
logger('consume_feed: processing ' . $item_id);
$rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
if(isset($rawthread[0]['attribs']['']['ref'])) {
$is_reply = true;
@ -2684,11 +2785,6 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
if($pass == 1)
continue;
// not allowed to post
// FIXME - check permissions
// if($contact['rel'] == CONTACT_IS_FOLLOWER)
// continue;
// Have we seen it? If not, import it.
@ -2710,12 +2806,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$r = q("SELECT `uid`, `edited`, `body` FROM `item` WHERE `mid` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['uid'])
intval($importer['channel_id'])
);
// Update content if 'updated' changes
if(count($r)) {
if($r) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
// do not accept (ignore) an earlier edit than one we currently have.
@ -2727,7 +2823,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
dbesc($datarray['body']),
dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
dbesc($item_id),
intval($importer['uid'])
intval($importer['channel_id'])
);
}
@ -2736,7 +2832,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$datarray['parent_mid'] = $parent_mid;
$datarray['uid'] = $importer['uid'];
$datarray['uid'] = $importer['channel_id'];
$datarray['contact-id'] = $contact['id'];
if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
$datarray['type'] = 'activity';
@ -2760,7 +2856,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
if($xt->type == ACTIVITY_OBJ_NOTE) {
$r = q("select * from item where `mid` = '%s' AND `uid` = %d limit 1",
dbesc($xt->id),
intval($importer['importer_uid'])
intval($importer['channel_id'])
);
if(! count($r))
continue;
@ -2778,7 +2874,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
}
}
$xx = item_store($datarray);
logger('consume_feed: ' . print_r($datarray,true));
// $xx = item_store($datarray);
$r = $xx['item_id'];
continue;
}
@ -2810,7 +2908,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
if((x($datarray,'obj_type')) && ($datarray['obj_type'] === ACTIVITY_OBJ_EVENT)) {
$ev = bbtoevent($datarray['body']);
if(x($ev,'desc') && x($ev,'start')) {
$ev['uid'] = $importer['uid'];
$ev['uid'] = $importer['channel_id'];
$ev['mid'] = $item_id;
$ev['edited'] = $datarray['edited'];
$ev['private'] = $datarray['private'];
@ -2819,23 +2917,23 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$ev['cid'] = $contact['id'];
$r = q("SELECT * FROM `event` WHERE `mid` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['uid'])
intval($importer['channel_id'])
);
if(count($r))
$ev['id'] = $r[0]['id'];
$xyz = event_store($ev);
// $xyz = event_store($ev);
continue;
}
}
$r = q("SELECT `uid`, `edited`, `body` FROM `item` WHERE `mid` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['uid'])
intval($importer['channel_id'])
);
// Update content if 'updated' changes
if(count($r)) {
if($r) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
// do not accept (ignore) an earlier edit than one we currently have.
@ -2847,7 +2945,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
dbesc($datarray['body']),
dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
dbesc($item_id),
intval($importer['uid'])
intval($importer['channel_id'])
);
}
@ -2875,8 +2973,8 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
}
if(! is_array($contact))
return;
// if(! is_array($contact))
// return;
// This is my contact on another system, but it's really me.
@ -2887,7 +2985,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
}
$datarray['parent_mid'] = $item_id;
$datarray['uid'] = $importer['uid'];
$datarray['uid'] = $importer['channel_id'];
$datarray['contact-id'] = $contact['id'];
if(! link_compare($datarray['owner-link'],$contact['url'])) {
@ -2905,17 +3003,20 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
// posting an @-tag delivery, which followers are allowed to do for certain
// page types. Now that we've parsed the post, let's check if it is legit. Otherwise ignore it.
if(($contact['rel'] == CONTACT_IS_FOLLOWER) && (! tgroup_check($importer['uid'],$datarray)))
if(($contact['rel'] == CONTACT_IS_FOLLOWER) && (! tgroup_check($importer['channel_id'],$datarray)))
continue;
logger('consume_feed: ' . print_r($datarray,true));
$xx = item_store($datarray);
// $xx = item_store($datarray);
$r = $xx['item_id'];
continue;
}
}
}
}
@ -3670,9 +3771,9 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C
}
elseif($arr['cid'] && $uid) {
$r = q("SELECT * from abook where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ") limit 1",
$r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ") limit 1",
intval($arr['cid']),
intval($uid)
intval(local_user())
);
if($r) {
$sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND uid = " . intval($arr['uid']) . " AND ( author_xchan = '" . dbesc($r[0]['abook_xchan']) . "' or owner_xchan = '" . dbesc($r[0]['abook_xchan']) . "' ) and item_restrict = 0 ) ";
@ -3853,4 +3954,4 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C
}
return $items;
}
}

42
include/onedirsync.php Normal file
View File

@ -0,0 +1,42 @@
<?php /** @file */
require_once('boot.php');
require_once('include/cli_startup.php');
require_once('include/zot.php');
require_once('include/dir_fns.php');
function onedirsync_run($argv, $argc){
cli_startup();
$a = get_app();
logger('onedirsync: start');
if(($argc > 1) && (intval($argv[1])))
$update_id = intval($argv[1]);
if(! $update_id) {
logger('onedirsync: no update');
return;
}
$r = q("select * from updates where ud_id = %d limit 1",
intval($update_id)
);
if(! $r)
return;
if($r['ud_flags'] & UPDATE_FLAGS_UPDATED)
return;
update_directory_entry($r[0]);
return;
}
if (array_search(__file__,get_included_files())===0){
onedirsync_run($argv,$argc);
killme();
}

View File

@ -5,7 +5,7 @@ function writepages_widget ($who,$which){
return replace_macros(get_markup_template('write_pages.tpl'), array(
'$new' => t('New Page'),
'$newurl' => "webpages/$who",
'$edit' => t('edit'),
'$edit' => t('Edit'),
'$editurl' => "editwebpage/$who/$which"
));
}

View File

@ -28,6 +28,7 @@ function get_perms() {
'write_storage' => array('channel_w_storage', intval(PERMS_W_STORAGE), false, t('Can write to my "public" file storage'), ''),
'write_pages' => array('channel_w_pages', intval(PERMS_W_PAGES), false, t('Can edit my "public" pages'), ''),
'republish' => array('channel_a_republish', intval(PERMS_A_REPUBLISH), false, t('Can source my "public" posts in derived channels'), t('Somewhat advanced - very useful in open communities')),
'delegate' => array('channel_a_delegate', intval(PERMS_A_DELEGATE), false, t('Can administer my channel resources'), t('Extremely advanced. Leave this alone unless you know what you are doing')),
);
$ret = array('global_permissions' => $global_perms);

View File

@ -69,6 +69,8 @@ function poller_run($argv, $argc){
$d1 = get_config('system','last_expire_day');
$d2 = intval(datetime_convert('UTC','UTC','now','d'));
$dirmode = get_config('system','directory_mode');
if($d2 != intval($d1)) {
// If this is a directory server, request a sync with an upstream
@ -76,7 +78,6 @@ function poller_run($argv, $argc){
// Pull remote changes and push local changes.
// potential issue: how do we keep from creating an endless update loop?
$dirmode = get_config('system','directory_mode');
if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) {
require_once('include/dir_fns.php');
sync_directories($dirmode);
@ -171,76 +172,95 @@ function poller_run($argv, $argc){
);
if(! $contacts) {
return;
}
if($contacts) {
foreach($contacts as $contact) {
foreach($contacts as $contact) {
$update = false;
$update = false;
$t = $contact['abook_updated'];
$c = $contact['abook_connected'];
$t = $contact['abook_updated'];
$c = $contact['abook_connected'];
if($c == $t) {
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
$update = true;
}
else {
// if we've never connected with them, start the mark for death countdown from now
if($c == '0000-00-00 00:00:00') {
$r = q("update abook set abook_connected = '%s' where abook_id = %d limit 1",
dbesc(datetime_convert()),
intval($contact['abook_id'])
);
$c = datetime_convert();
$update = true;
if($c == $t) {
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
$update = true;
}
else {
// if we've never connected with them, start the mark for death countdown from now
// He's dead, Jim
if($c == '0000-00-00 00:00:00') {
$r = q("update abook set abook_connected = '%s' where abook_id = %d limit 1",
dbesc(datetime_convert()),
intval($contact['abook_id'])
);
$c = datetime_convert();
$update = true;
}
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) {
$r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1",
intval(ABOOK_FLAG_ARCHIVED),
intval($contact['abook_id'])
);
$update = false;
continue;
}
// He's dead, Jim
if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) {
$update = false;
continue;
}
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) {
$r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1",
intval(ABOOK_FLAG_ARCHIVED),
intval($contact['abook_id'])
);
$update = false;
continue;
}
// might be dead, so maybe don't poll quite so often
if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) {
$update = false;
continue;
}
// recently deceased, so keep up the regular schedule for 3 days
// might be dead, so maybe don't poll quite so often
// recently deceased, so keep up the regular schedule for 3 days
if((strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 3 day")) > 0)
&& (strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 1 day")) > 0))
$update = true;
if((strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 3 day")) > 0)
&& (strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 1 day")) > 0))
$update = true;
// After that back off and put them on a morphine drip
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 2 day")) > 0) {
$update = true;
}
// After that back off and put them on a morphine drip
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 2 day")) > 0) {
$update = true;
}
if((! $update) && (! $force))
continue;
proc_run('php','include/onepoll.php',$contact['abook_id']);
if($interval)
@time_sleep_until(microtime(true) + (float) $interval);
}
if((! $update) && (! $force))
continue;
proc_run('php','include/onepoll.php',$contact['abook_id']);
if($interval)
@time_sleep_until(microtime(true) + (float) $interval);
}
if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) {
$r = q("select ud_id from updates where not ( ud_flags & %d ) and ( ud_last = '0000-00-00 00:00:00' OR ud_last > UTC_TIMESTAMP() - INTERVAL 7 DAYS) ",
intval(UPDATE_FLAGS_UPDATED)
);
if($r) {
foreach($r as $rr) {
// If they didn't respond when we attempted before, back off to once a day
// After 7 days we won't bother anymore
if($rr['ud_last'] != '0000-00-00 00:00:00')
if($rr['ud_last'] > datetime_convert('UTC','UTC', 'now - 1 day'))
continue;
proc_run('php','include/onedirsync.php',$rr['ud_id']);
if($interval)
@time_sleep_until(microtime(true) + (float) $interval);
}
}
}
return;
}

View File

@ -302,16 +302,19 @@ function public_permissions_sql($observer_hash) {
foreach($groups as $g)
$gs .= '|<' . $g . '>';
}
$sql = sprintf(
" OR (( NOT (deny_cid like '%s' OR deny_gid REGEXP '%s')
AND ( allow_cid like '%s' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
))
",
dbesc(protect_sprintf( '%<' . $observer_hash . '>%')),
dbesc($gs),
dbesc(protect_sprintf( '%<' . $observer_hash . '>%')),
dbesc($gs)
);
$sql = '';
if($observer_hash) {
$sql = sprintf(
" OR (( NOT (deny_cid like '%s' OR deny_gid REGEXP '%s')
AND ( allow_cid like '%s' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
))
",
dbesc(protect_sprintf( '%<' . $observer_hash . '>%')),
dbesc($gs),
dbesc(protect_sprintf( '%<' . $observer_hash . '>%')),
dbesc($gs)
);
}
return $sql;
}
@ -409,7 +412,7 @@ function stream_perms_api_uids($perms_min = PERMS_SITE) {
$ret = array();
if(local_user())
$ret[] = local_user();
$r = q("select channel_id from channel where channel_r_stream <= %d",
$r = q("select channel_id from channel where channel_r_stream > 0 and channel_r_stream <= %d",
intval($perms_min)
);
if($r)
@ -424,6 +427,30 @@ function stream_perms_api_uids($perms_min = PERMS_SITE) {
$str .= ',';
$str .= intval($rr);
}
logger('stream_perms_api_uids: ' . $str);
return $str;
}
function stream_perms_xchans($perms_min = PERMS_SITE) {
$ret = array();
if(local_user())
$ret[] = get_observer_hash();
$r = q("select channel_hash from channel where channel_r_stream > 0 and channel_r_stream <= %d",
intval($perms_min)
);
if($r)
foreach($r as $rr)
if(! in_array($rr['channel_hash'],$ret))
$ret[] = $rr['channel_hash'];
$str = '';
if($ret)
foreach($ret as $rr) {
if($str)
$str .= ',';
$str .= "'" . dbesc($rr) . "'";
}
logger('stream_perms_xchans: ' . $str);
return $str;
}

View File

@ -1312,7 +1312,7 @@ function get_plink($item) {
$a = get_app();
if (x($item,'plink') && ($item['item_private'] != 1)) {
return array(
'href' => $item['plink'],
'href' => zid($item['plink']),
'title' => t('link to source'),
);
}
@ -1835,16 +1835,17 @@ function json_decode_plus($s) {
function design_tools() {
// FIXME - this should be a template
$channel = get_app()->get_channel();
$who = $channel['channel_address'];
$o = '<div class="widget design-tools">';
$o .= '<h3>' . t('Design') . '</h3>';
$o .= '<a href="blocks">' . t('Blocks') . '</a>' . EOL;
$o .= '<a href="menu">' . t('Menus') . '</a>' . EOL;
$o .= '<a href="layout">' . t('Layouts') . '</a>' . EOL;
$o .= '<a href="webpages">' . t('Pages') . '</a>' . EOL;
$o .= '</div>';
return $o;
return replace_macros(get_markup_template('design_tools.tpl'), array(
'$title' => t('Design'),
'$who' => $who,
'$blocks' => t('Blocks'),
'$menus' => t('Menus'),
'$layout' => t('Layouts'),
'$pages' => t('Pages')
));
}

View File

@ -411,7 +411,7 @@ function zot_register_hub($arr) {
// If the xchan already exists, update the name and photo if these have changed.
//
function import_xchan($arr) {
function import_xchan($arr,$ud_flags = 1) {
$ret = array('success' => false);
$dirmode = intval(get_config('system','directory_mode'));
@ -469,6 +469,11 @@ function import_xchan($arr) {
else
$new_flags = $r[0]['xchan_flags'];
$adult = (($r[0]['xchan_flags'] & XCHAN_FLAGS_SELFCENSORED) ? true : false);
$adult_changed = ((intval($adult) != intval($arr['adult_content'])) ? true : false);
if($adult_changed)
$new_flags = $new_flags ^ XCHAN_FLAGS_SELFCENSORED;
if(($r[0]['xchan_name_date'] != $arr['name_updated'])
|| ($r[0]['xchan_connurl'] != $arr['connections_url'])
@ -511,6 +516,8 @@ function import_xchan($arr) {
$new_flags = XCHAN_FLAGS_HIDDEN;
else
$new_flags = 0;
if($arr['adult_content'])
$new_flags |= XCHAN_FLAGS_SELFCENSORED;
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date, xchan_name_date, xchan_flags)
@ -681,7 +688,7 @@ function import_xchan($arr) {
if($dirmode != DIRECTORY_MODE_NORMAL) {
if(array_key_exists('profile',$arr) && is_array($arr['profile'])) {
$profile_changed = import_directory_profile($xchan_hash,$arr['profile']);
$profile_changed = import_directory_profile($xchan_hash,$arr['profile'],$arr['address'],$ud_flags, 1);
if($profile_changed) {
$what .= 'profile ';
$changed = true;
@ -711,7 +718,7 @@ function import_xchan($arr) {
if($changed) {
$guid = random_string() . '@' . get_app()->get_hostname();
update_modtime($xchan_hash,$guid);
update_modtime($xchan_hash,$guid,$arr['address'],$ud_flags);
logger('import_xchan: changed: ' . $what,LOGGER_DEBUG);
}
@ -781,10 +788,6 @@ function zot_fetch($arr) {
logger('zot_fetch: no hub: ' . print_r($arr['sender'],true));
return;
}
$ret_secret = json_encode(array($arr['secret'],'secret_sig' => base64url_encode(rsa_sign($arr['secret'],get_config('system','prvkey')))));
$data = array(
'type' => 'pickup',
@ -795,7 +798,6 @@ function zot_fetch($arr) {
'secret_sig' => base64url_encode(rsa_sign($arr['secret'],get_config('system','prvkey')))
);
$datatosend = json_encode(aes_encapsulate(json_encode($data),$ret_hub['hubloc_sitekey']));
$fetch = zot_zot($url,$datatosend);
@ -1364,7 +1366,12 @@ function process_profile_delivery($sender,$arr,$deliveries) {
// deliveries is irrelevant, what to do about birthday notification....?
logger('process_profile_delivery', LOGGER_DEBUG);
import_directory_profile($sender['hash'],$arr);
$r = q("select xchan_addr from xchan where xchan_hash = '%s' limit 1",
dbesc($sender['hash'])
);
if($r)
import_directory_profile($sender['hash'],$arr,$r[0]['xchan_addr'], 1, 0);
}
@ -1375,7 +1382,7 @@ function process_profile_delivery($sender,$arr,$deliveries) {
*
*/
function import_directory_profile($hash,$profile) {
function import_directory_profile($hash,$profile,$addr,$ud_flags = 1, $suppress_update = 0) {
logger('import_directory_profile', LOGGER_DEBUG);
if(! $hash)
@ -1410,9 +1417,10 @@ function import_directory_profile($hash,$profile) {
// Self censored, make it so
// These are not translated, so the German "erwachsenen" keyword will not censor the directory profile. Only the English form - "adult".
if(in_arrayi('nsfw',$clean) || in_arrayi('adult',$clean)) {
q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s' limit 1",
intval(XCHAN_FLAGS_CENSORED),
intval(XCHAN_FLAGS_SELFCENSORED),
dbesc($hash)
);
}
@ -1481,8 +1489,8 @@ function import_directory_profile($hash,$profile) {
$d = array('xprof' => $arr, 'profile' => $profile, 'update' => $update);
call_hooks('import_directory_profile', $d);
if($d['update'])
update_modtime($arr['xprof_hash'],random_string() . '@' . get_app()->get_hostname());
if(($d['update']) && (! $suppress_update))
update_modtime($arr['xprof_hash'],random_string() . '@' . get_app()->get_hostname(), $addr, $ud_flags);
return $d['update'];
}
@ -1522,12 +1530,23 @@ function import_directory_keywords($hash,$keywords) {
}
function update_modtime($hash,$guid) {
q("insert into updates (ud_hash, ud_guid, ud_date) values ( '%s', '%s', '%s' )",
dbesc($hash),
dbesc($guid),
dbesc(datetime_convert())
);
function update_modtime($hash,$guid,$addr,$flags = 0) {
if($flags) {
q("insert into updates (ud_hash, ud_guid, ud_date, ud_flags, ud_addr ) values ( '%s', '%s', '%s', %d, '%s' )",
dbesc($hash),
dbesc($guid),
dbesc(datetime_convert()),
intval($flags),
dbesc($addr)
);
}
else {
q("update updates set ud_flags = ( ud_flags | %d ) where ud_addr = '%s' and not (ud_flags & %d) ",
intval(UPDATE_FLAGS_UPDATED),
intval(UPDATE_FLAGS_UPDATED)
);
}
}

View File

@ -80,6 +80,13 @@ directory/path component in the URL) is REQUIRED.
chmod 777 view/tpl/smarty3
[This permission (777) is very dangerous and if you have sufficient
privilege and knowledge you should make this directory writeable only
by the webserver. In many shared hosting environments this may be
difficult without opening a trouble ticket with your provider. The
above permissions will allow the software to work, but are not
optimal.]
- For installing addons
- First you should be **on** your website folder

View File

@ -181,6 +181,7 @@ CREATE TABLE IF NOT EXISTS `channel` (
`channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128',
`channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_pages` int(10) unsigned NOT NULL DEFAULT '128',
`channel_a_republish` int(1) unsigned NOT NULL DEFAULT '128',
PRIMARY KEY (`channel_id`),
UNIQUE KEY `channel_address_unique` (`channel_address`),
KEY `channel_account_id` (`channel_account_id`),
@ -213,6 +214,7 @@ CREATE TABLE IF NOT EXISTS `channel` (
KEY `channel_w_storage` (`channel_w_storage`),
KEY `channel_r_pages` (`channel_r_pages`),
KEY `channel_w_pages` (`channel_w_pages`),
KEY `channel_a_republish` (`channel_a_republish`),
KEY `channel_deleted` (`channel_deleted`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@ -823,6 +825,7 @@ CREATE TABLE IF NOT EXISTS `site` (
`site_access` int(11) NOT NULL DEFAULT '0',
`site_flags` int(11) NOT NULL DEFAULT '0',
`site_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`site_sync` datetime NOT NULL,
`site_directory` char(255) NOT NULL DEFAULT '',
`site_register` int(11) NOT NULL DEFAULT '0',
`site_sellpage` char(255) NOT NULL DEFAULT '',
@ -835,6 +838,18 @@ CREATE TABLE IF NOT EXISTS `site` (
KEY `site_sellpage` (`site_sellpage`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `source` (
`src_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`src_channel_id` int(10) unsigned NOT NULL DEFAULT '0',
`src_channel_xchan` char(255) NOT NULL DEFAULT '',
`src_xchan` char(255) NOT NULL DEFAULT '',
`src_patt` mediumtext NOT NULL,
PRIMARY KEY (`src_id`),
KEY `src_channel_id` (`src_channel_id`),
KEY `src_channel_xchan` (`src_channel_xchan`),
KEY `src_xchan` (`src_xchan`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `spam` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL,
@ -891,6 +906,7 @@ CREATE TABLE IF NOT EXISTS `updates` (
`ud_hash` char(128) NOT NULL,
`ud_guid` char(255) NOT NULL DEFAULT '',
`ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ud_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ud_flags` int(11) NOT NULL DEFAULT '0',
`ud_addr` char(255) NOT NULL DEFAULT '',
PRIMARY KEY (`ud_id`),
@ -898,7 +914,8 @@ CREATE TABLE IF NOT EXISTS `updates` (
KEY `ud_guid` (`ud_guid`),
KEY `ud_date` (`ud_date`),
KEY `ud_flags` (`ud_flags`),
KEY `ud_addr` (`ud_addr`)
KEY `ud_addr` (`ud_addr`),
KEY `ud_last` (`ud_last`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `verify` (

View File

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1073 );
define( 'UPDATE_VERSION' , 1076 );
/**
*
@ -816,6 +816,45 @@ ADD INDEX ( `ud_addr` ) ");
function update_r1072() {
$r = q("ALTER TABLE `xtag` ADD `xtag_flags` INT NOT NULL DEFAULT '0',
ADD INDEX ( `xtag_flags` ) ");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1073() {
$r1 = q("CREATE TABLE IF NOT EXISTS `source` (
`src_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`src_channel_id` INT UNSIGNED NOT NULL DEFAULT '0',
`src_channel_xchan` CHAR( 255 ) NOT NULL DEFAULT '',
`src_xchan` CHAR( 255 ) NOT NULL DEFAULT '',
`src_patt` MEDIUMTEXT NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
$r2 = q("ALTER TABLE `source` ADD INDEX ( `src_channel_id` ), ADD INDEX ( `src_channel_xchan` ), ADD INDEX ( `src_xchan` ) ");
if($r1 && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1074() {
$r1 = q("ALTER TABLE `site` ADD `site_sync` DATETIME NOT NULL AFTER `site_update` ");
$r2 = q("ALTER TABLE `updates` ADD `ud_last` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `ud_date` ,
ADD INDEX ( `ud_last` ) ");
if($r1 && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1075() {
$r = q("ALTER TABLE `channel` ADD `channel_a_republish` INT UNSIGNED NOT NULL DEFAULT '128',
ADD INDEX ( `channel_a_republish` )");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;

View File

@ -119,6 +119,7 @@
var next_page = 1;
var page_load = true;
var loadingPage = false;
var pageHasMoreContent = true;
$(function() {
$.ajaxSetup({cache: false});
@ -984,7 +985,7 @@ $(window).scroll(function () {
}
if($(window).scrollTop() + $(window).height() == $(document).height()) {
if(! loadingPage) {
if((pageHasMoreContent) && (! loadingPage)) {
$('#more').hide();
$('#no-more').hide();
// alert('scroll');

View File

@ -0,0 +1,161 @@
.colorpicker {
width: 356px;
height: 176px;
overflow: hidden;
position: absolute;
background: url(../images/colorpicker_background.png);
font-family: Arial, Helvetica, sans-serif;
display: none;
}
.colorpicker_color {
width: 150px;
height: 150px;
left: 14px;
top: 13px;
position: absolute;
background: #f00;
overflow: hidden;
cursor: crosshair;
}
.colorpicker_color div {
position: absolute;
top: 0;
left: 0;
width: 150px;
height: 150px;
background: url(../images/colorpicker_overlay.png);
}
.colorpicker_color div div {
position: absolute;
top: 0;
left: 0;
width: 11px;
height: 11px;
overflow: hidden;
background: url(../images/colorpicker_select.gif);
margin: -5px 0 0 -5px;
}
.colorpicker_hue {
position: absolute;
top: 13px;
left: 171px;
width: 35px;
height: 150px;
cursor: n-resize;
}
.colorpicker_hue div {
position: absolute;
width: 35px;
height: 9px;
overflow: hidden;
background: url(../images/colorpicker_indic.gif) left top;
margin: -4px 0 0 0;
left: 0px;
}
.colorpicker_new_color {
position: absolute;
width: 60px;
height: 30px;
left: 213px;
top: 13px;
background: #f00;
}
.colorpicker_current_color {
position: absolute;
width: 60px;
height: 30px;
left: 283px;
top: 13px;
background: #f00;
}
.colorpicker input {
background-color: transparent;
border: 1px solid transparent;
position: absolute;
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #898989;
top: 4px;
right: 11px;
text-align: right;
margin: 0;
padding: 0;
height: 11px;
}
.colorpicker_hex {
position: absolute;
width: 72px;
height: 22px;
background: url(../images/colorpicker_hex.png) top;
left: 212px;
top: 142px;
}
.colorpicker_hex input {
right: 6px;
}
.colorpicker_field {
height: 22px;
width: 62px;
background-position: top;
position: absolute;
}
.colorpicker_field span {
position: absolute;
width: 12px;
height: 22px;
overflow: hidden;
top: 0;
right: 0;
cursor: n-resize;
}
.colorpicker_rgb_r {
background-image: url(../images/colorpicker_rgb_r.png);
top: 52px;
left: 212px;
}
.colorpicker_rgb_g {
background-image: url(../images/colorpicker_rgb_g.png);
top: 82px;
left: 212px;
}
.colorpicker_rgb_b {
background-image: url(../images/colorpicker_rgb_b.png);
top: 112px;
left: 212px;
}
.colorpicker_hsb_h {
background-image: url(../images/colorpicker_hsb_h.png);
top: 52px;
left: 282px;
}
.colorpicker_hsb_s {
background-image: url(../images/colorpicker_hsb_s.png);
top: 82px;
left: 282px;
}
.colorpicker_hsb_b {
background-image: url(../images/colorpicker_hsb_b.png);
top: 112px;
left: 282px;
}
.colorpicker_submit {
position: absolute;
width: 22px;
height: 22px;
background: url(../images/colorpicker_submit.png) top;
left: 322px;
top: 142px;
overflow: hidden;
}
.colorpicker_focus {
background-position: center;
}
.colorpicker_hex.colorpicker_focus {
background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
background-position: bottom;
}
.colorpicker_slider {
background-position: bottom;
}

View File

@ -0,0 +1,218 @@
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
margin:0;
padding:0;
}
table {
border-collapse:collapse;
border-spacing:0;
}
fieldset,img {
border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-style:normal;
font-weight:normal;
}
ol,ul {
list-style:none;
}
caption,th {
text-align:left;
}
h1,h2,h3,h4,h5,h6 {
font-size:100%;
font-weight:normal;
}
q:before,q:after {
content:'';
}
abbr,acronym { border:0;
}
html, body {
background-color: #fff;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 18px;
color: #52697E;
}
body {
text-align: center;
overflow: auto;
}
.wrapper {
width: 700px;
margin: 0 auto;
text-align: left;
}
h1 {
font-size: 21px;
height: 47px;
line-height: 47px;
text-transform: uppercase;
}
.navigationTabs {
height: 23px;
line-height: 23px;
border-bottom: 1px solid #ccc;
}
.navigationTabs li {
float: left;
height: 23px;
line-height: 23px;
padding-right: 3px;
}
.navigationTabs li a{
float: left;
dispaly: block;
height: 23px;
line-height: 23px;
padding: 0 10px;
overflow: hidden;
color: #52697E;
background-color: #eee;
position: relative;
text-decoration: none;
}
.navigationTabs li a:hover {
background-color: #f0f0f0;
}
.navigationTabs li a.active {
background-color: #fff;
border: 1px solid #ccc;
border-bottom: 0px solid;
}
.tabsContent {
border: 1px solid #ccc;
border-top: 0px solid;
width: 698px;
overflow: hidden;
}
.tab {
padding: 16px;
display: none;
}
.tab h2 {
font-weight: bold;
font-size: 16px;
}
.tab h3 {
font-weight: bold;
font-size: 14px;
margin-top: 20px;
}
.tab p {
margin-top: 16px;
clear: both;
}
.tab ul {
margin-top: 16px;
list-style: disc;
}
.tab li {
margin: 10px 0 0 35px;
}
.tab a {
color: #8FB0CF;
}
.tab strong {
font-weight: bold;
}
.tab pre {
font-size: 11px;
margin-top: 20px;
width: 668px;
overflow: auto;
clear: both;
}
.tab table {
width: 100%;
}
.tab table td {
padding: 6px 10px 6px 0;
vertical-align: top;
}
.tab dt {
margin-top: 16px;
}
#colorSelector {
position: relative;
width: 36px;
height: 36px;
background: url(../images/select.png);
}
#colorSelector div {
position: absolute;
top: 3px;
left: 3px;
width: 30px;
height: 30px;
background: url(../images/select.png) center;
}
#colorSelector2 {
position: absolute;
top: 0;
left: 0;
width: 36px;
height: 36px;
background: url(../images/select2.png);
}
#colorSelector2 div {
position: absolute;
top: 4px;
left: 4px;
width: 28px;
height: 28px;
background: url(../images/select2.png) center;
}
#colorpickerHolder2 {
top: 32px;
left: 0;
width: 356px;
height: 0;
overflow: hidden;
position: absolute;
}
#colorpickerHolder2 .colorpicker {
background-image: url(../images/custom_background.png);
position: absolute;
bottom: 0;
left: 0;
}
#colorpickerHolder2 .colorpicker_hue div {
background-image: url(../images/custom_indic.gif);
}
#colorpickerHolder2 .colorpicker_hex {
background-image: url(../images/custom_hex.png);
}
#colorpickerHolder2 .colorpicker_rgb_r {
background-image: url(../images/custom_rgb_r.png);
}
#colorpickerHolder2 .colorpicker_rgb_g {
background-image: url(../images/custom_rgb_g.png);
}
#colorpickerHolder2 .colorpicker_rgb_b {
background-image: url(../images/custom_rgb_b.png);
}
#colorpickerHolder2 .colorpicker_hsb_s {
background-image: url(../images/custom_hsb_s.png);
display: none;
}
#colorpickerHolder2 .colorpicker_hsb_h {
background-image: url(../images/custom_hsb_h.png);
display: none;
}
#colorpickerHolder2 .colorpicker_hsb_b {
background-image: url(../images/custom_hsb_b.png);
display: none;
}
#colorpickerHolder2 .colorpicker_submit {
background-image: url(../images/custom_submit.png);
}
#colorpickerHolder2 .colorpicker input {
color: #778398;
}
#customWidget {
position: relative;
height: 36px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1012 B

Some files were not shown because too many files have changed in this diff Show More