diff --git a/README.md b/README.md index 7bc8ace56..3fbfedae7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ The Red Matrix -============== +============== -Got Zot? +***"Connected Websites"*** The modern web is "missing" a few important pieces which would make it much more useful. Many corporations have stepped in with products to supply these missing pieces, but with a loss of freedom and privacy and increased **centralisation**. @@ -19,15 +19,15 @@ These missing pieces are (in no particular order): -The Red Matrix (sometimes referred to as just "Red") is a collection of web servers and services which provides these missing pieces, but within a decentralised identity and messaging framework (known as "Zot"). Red operates as an independent network within the larger internet where all the nodes or servers (we call them "hubs") are able to fully interact with each other in ways that are simply not possible using other services. Additionally the owners of each network hub have the ability to set their own rules with regard to communications and privacy and data ownership, because each operates with complete independence. These hubs require only slightly more resources than a blog or content management system, and the software is being designed with the ability to natively incorporate both kinds of functionality, as well as cloud storage. +The Red Matrix (sometimes referred to as just "Red") is a collection of web servers and services which provides these missing pieces, but within a decentralised identity and messaging framework (known as "Zot"). Red operates as an independent network within the larger internet where all the nodes or servers (we call them "hubs") are able to fully interact with each other in ways that are simply not possible using other services. Additionally the owners of each network hub have the ability to set their own rules with regard to communications privacy and data ownership, because each operates with complete independence. These hubs require only slightly more resources than a blog or content management system, and the software is being designed with the ability to natively incorporate both kinds of functionality, as well as cloud storage. ![The Red Matrix model](images/red_antiprism.png) -A weakness of existing decentralised network models is the binding of network identity with the physical server where it resides; for example if you are "eric@example.website", your identity is often tied permanently to "example.website". We see this as a problem. Many hubs on the Indie Web are run by enthusiasts with varying skill levels and financial resources - and the technology is changing quite rapidly. Often the cost or workload involved in maintaining these services becomes a burden (or hardware fails) and people or entire social communities are left stranded when their server goes offline. They may have to "start over" building their social circle from scratch when this happens. In some cases communities are unable to recover from this kind of disruption and the entire community dissolves. +Whilst other decentralised communications networks exist, an additional weakness we've found in the implementation of these systems is the binding of network identity with the physical server where it resides; for example if you are "eric@example.website", your identity is often tied permanently to "example.website". We see this as a problem. Many hubs on the Indie Web are run by enthusiasts with varying skill levels and financial resources - and the technology is changing quite rapidly. Often the cost or workload involved in maintaining these services becomes a burden (or hardware fails) and people or entire social communities are left stranded when their server goes offline. Their identity no longer exists. They may have to "start over" building their social circle from scratch when this happens. In some cases communities are unable to recover from this kind of disruption and the entire community dissolves. We've been working on decentralisation for several years and have seen this happen time and time again. -Within the Red Matrix, identity is nomadic. You can take your identity, and all your friends and associates with you - to any other hub in the network, at any time. If your hub goes offline for any reason, you have the ability to relocate to any other hub and carry on as if nothing happened. You still have all your friends and associations. +Within the Red Matrix, identity is nomadic. It defines you and it belongs to you - and is not locked to a particular network address. You can take your identity, and all your friends and associates with you - to any other hub in the network, at any time. If your hub goes offline for any reason, you have the ability to relocate to any other hub and carry on as if nothing happened. You still have all your friends and associations. The Red Matrix is free and open source distributed under the MIT license. diff --git a/boot.php b/boot.php index ba62bffa6..c3a10f300 100755 --- a/boot.php +++ b/boot.php @@ -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', 1078 ); +define ( 'DB_UPDATE_VERSION', 1081 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -90,6 +90,21 @@ define ( 'LANGUAGE_DETECT_MIN_LENGTH', 128 ); define ( 'LANGUAGE_DETECT_MIN_CONFIDENCE', 0.01 ); +/** + * Default permissions for file-based storage (webDAV, etc.) + * These files will be owned by the webserver who will need write + * access to the "storage" folder. + * Ideally you should make this 700, however some hosted platforms + * may not let you change ownership of this directory so we're + * defaulting to both owner-write and group-write privilege. + * This should work for most cases without modification. + * Over-ride this in your .htconfig.php if you need something + * either more or less restrictive. + */ + +define ( 'STORAGE_DEFAULT_PERMISSIONS', 0770 ); + + /** * * An alternate way of limiting picture upload sizes. Specify the maximum pixel @@ -975,7 +990,8 @@ class App { '$icon' => head_get_icon(), '$head_css' => head_get_css(), '$head_js' => head_get_js(), - '$js_strings' => js_strings() + '$js_strings' => js_strings(), + '$zid' => get_my_address(), )) . $this->page['htmlhead']; } @@ -1174,7 +1190,7 @@ function is_ajax() { function check_config(&$a) { $build = get_config('system','db_version'); - if(! x($build)) + if(! intval($build)) $build = set_config('system','db_version',DB_UPDATE_VERSION); $saved = get_config('system','urlverify'); @@ -1207,6 +1223,10 @@ function check_config(&$a) { if($build != DB_UPDATE_VERSION) { $stored = intval($build); + if(! $stored) { + logger('Critical: check_config unable to determine database schema version'); + return; + } $current = intval(DB_UPDATE_VERSION); if(($stored < $current) && file_exists('install/update.php')) { @@ -1242,10 +1262,13 @@ function check_config(&$a) { // Prevent sending hundreds of thousands of emails by creating // a lockfile. view/tpl/smarty3 is the only place we can // guarantee the server can write to. - if (file_exists('view/tpl/smarty3/mailsent')) + $lockfile = 'view/tpl/smarty3/mailsent'; + + if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 86400))) return; + @unlink($lockfile); //send the administrator an e-mail - file_put_contents('view/tpl/smarty3/mailsent', $x); + file_put_contents($lockfile, $x); $email_tpl = get_intltext_template("update_fail_eml.tpl"); $email_msg = replace_macros($email_tpl, array( @@ -1410,14 +1433,12 @@ function login($register = false, $form_id = 'main-login', $hiddens=false) { $reglink = get_config('system','register_link'); if(! strlen($reglink)) $reglink = 'register'; - - if ($register) { - $reg = array( - 'title' => t('Create a New Account'), - 'desc' => t('Register'), - 'link' => $reglink - ); - } + + $reg = array( + 'title' => t('Create an account to access services and applications within the Red Matrix'), + 'desc' => t('Register'), + 'link' => (($register) ? $reglink : 'pubsites') + ); $dest_url = $a->get_baseurl(true) . '/' . $a->query_string; @@ -1510,8 +1531,14 @@ function remote_user() { function notice($s) { $a = get_app(); if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array(); - if($a->interactive) + if($a->interactive) { + // shameless plug, permission is denied and they have no identity. + // There's a fairly good chance that they've not got zot. + if((stristr($s,t('permission denied'))) && (! get_observer_hash())) { + $s .= '
' . t('Got Zot?') . ''; + } $_SESSION['sysmsg'][] = $s; + } } diff --git a/doc/Comanche.md b/doc/Comanche.md new file mode 100644 index 000000000..8874e839a --- /dev/null +++ b/doc/Comanche.md @@ -0,0 +1,143 @@ +Comanche Page Description Language +================================== + + +Comanche is a markup language similar to bbcode with which to create elaborate and complex web pages by assembling them from a series of components - some of which are pre-built and others which can be defined on the fly. Comanche uses a Page Decription Language to create these pages. + +Comanche primarily chooses what content will appear in various regions of the page. The various regions have names and these names can change depending on what layout template you choose. + +Currently there are two layout templates, unless your site provides additional layouts (TODO list all templates) + + default + + The default template defines a "nav" region across the top, "aside" as a fixed width sidebar, + "content" for the main content region, and "footer" for a page footer. + + + full + + The full template defines the same as the default template with the exception that there is no "aside" region. + + +To choose a layout template, use the 'layout' tag. + + [layout]full[/layout] + + +The default template will be used if no other template is specified. The template can use any names it desires for content regions. You will be using 'region' tags to decide what content to place in the respective regions. + + +Two "macros" have been defined for your use. + + $nav - replaced with the site navigation bar content. + $content - replaced with the main page content. + + +By default, $nav is placed in the "nav" page region and $content is placed in the "content" region. You only need to use these macros if you wish to re-arrange where these items appear, either to change the order or to move them to other regions. + + +To select a theme for your page, use the 'theme' tag. + + [theme]apw[/theme] + +This will select the theme named "apw". By default your channel's preferred theme will be used. + + +**Regions** + +Each region has a name, as noted above. You will specify the region of interest using a 'region' tag, which includes the name. Any content you wish placed in this region should be placed between the opening region tag and the closing tag. + + [region=aside]....content goes here....[/region] + [region=nav]....content goes here....[/region] + + + +**Menus and Blocks** + +Your webpage creation tools allow you to create menus and blocks, in addition to page content. These provide a chunk of existing content to be placed in whatever regions and whatever order you specify. Each of these has a name which you define when the menu or block is created. + + [menu]mymenu[/menu] + +This places the menu called "mymenu" at this location on the page, which must be inside a region. + + [block]contributors[/block] + +This places a block named "contributors" in this region. + + +**Widgets** + +Widgets are executable apps provided by the system which you can place on your page. Some widgets take arguments which allows you to tailor the widget to your purpose. (TODO: list available widgets and arguments). The base system provides + + profile - widget which duplicates the profile sidebar of your channel page. This widget takes no arguments + tagcloud - provides a tag cloud of categories + count - maximum number of category tags to list + + + +Widgets and arguments are specified with the 'widget' and 'arg' tags. + + [widget=recent_visitors][arg=count]24[/arg][/widget] + +This loads the "recent_visitors" widget and supplies it with the argument "count" set to "24". + + +**Comments** + +The 'comment' tag is used to delimit comments. These comments will not appear on the rendered page. + + [comment]This is a comment[/comment] + + + +**Complex Example** + + [comment]use an existing page template which provides a banner region plus 3 columns beneath it[/comment] + + [layout]3-column-with-header[/layout] + + [comment]Use the "darknight" theme[/comment] + + [theme]darkknight[/theme] + + [comment]Use the existing site navigation menu[/comment] + + [region=nav]$nav[/region] + + [region=side] + + [comment]Use my chosen menu and a couple of widgets[/comment] + + [menu]myfavouritemenu[/menu] + + [widget=recent_visitors] + [arg=count]24[/arg] + [arg=names_only]1[/arg] + [/widget] + + [widget=tagcloud][/widget] + [block]donate[/block] + + [/region] + + + + [region=middle] + + [comment]Show the normal page content[/comment] + + $content + + [/region] + + + + [region=right] + + [comment]Show my condensed channel "wall" feed and allow interaction if the observer is allowed to interact[/comment] + + [widget]channel[/widget] + + [/region] + + diff --git a/doc/Home.md b/doc/Home.md index f0e731057..5f922c09d 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -16,6 +16,7 @@ Red Matrix Documentation and Resources **Technical Documentation** * [Install](help/Install) +* [Comanche Page Descriptions](help/Comanche) * [Plugins](help/Plugins) * [Developers](help/Developers) * [Code](doc/html) diff --git a/doc/Webpages.md b/doc/Webpages.md index ddde2a401..e9943fda8 100644 --- a/doc/Webpages.md +++ b/doc/Webpages.md @@ -11,4 +11,4 @@ The "page link title" box allows a user to specify the "pagelinktitle" of this U Beneath the page creation box, a list of existing pages will appear with an "edit" link. Clicking this will take you to an editor, similar to that of the post editor, where you can make changes to your webpages. -If you are the admin of a site, you can speficy a channel whose webpages we will use at key points around the site. Presently, the only place this is implemented is the home page. If you specify the channel "admin" and then the channel called "admin" creates a webpage called "home", we will display it's content on your websites home page. We expect this functionality to be extended to other areas in future. \ No newline at end of file +If you are the admin of a site, you can specify a channel whose webpages we will use at key points around the site. Presently, the only place this is implemented is the home page. If you specify the channel "admin" and then the channel called "admin" creates a webpage called "home", we will display it's content on your websites home page. We expect this functionality to be extended to other areas in future. \ No newline at end of file diff --git a/doc/html/acl__selectors_8php.html b/doc/html/acl__selectors_8php.html index 470be4754..ae1c249d9 100644 --- a/doc/html/acl__selectors_8php.html +++ b/doc/html/acl__selectors_8php.html @@ -270,7 +270,7 @@ Functions
-

Referenced by channel_content(), events_content(), lastpost_content(), network_content(), and photos_content().

+

Referenced by channel_content(), display_content(), events_content(), lastpost_content(), network_content(), photos_content(), and rpost_content().

diff --git a/doc/html/annotated.html b/doc/html/annotated.html index a1b4d0318..1d15b5588 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -134,8 +134,12 @@ $(document).ready(function(){initNavTree('annotated.html','');}); oCphoto_gd oCphoto_imagick oCProtoDriver -oCTemplate -\CZotDriver +oCRedBasicAuth +oCRedDirectory +oCRedFile +oCRedInode +oCTemplate +\CZotDriver diff --git a/doc/html/annotated.js b/doc/html/annotated.js index 243dc679f..c1197fb1e 100644 --- a/doc/html/annotated.js +++ b/doc/html/annotated.js @@ -23,6 +23,10 @@ var annotated = [ "photo_gd", "classphoto__gd.html", "classphoto__gd" ], [ "photo_imagick", "classphoto__imagick.html", "classphoto__imagick" ], [ "ProtoDriver", "classProtoDriver.html", "classProtoDriver" ], + [ "RedBasicAuth", "classRedBasicAuth.html", "classRedBasicAuth" ], + [ "RedDirectory", "classRedDirectory.html", "classRedDirectory" ], + [ "RedFile", "classRedFile.html", "classRedFile" ], + [ "RedInode", "classRedInode.html", "classRedInode" ], [ "Template", "classTemplate.html", "classTemplate" ], [ "ZotDriver", "classZotDriver.html", "classZotDriver" ] ]; \ No newline at end of file diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index d8cc0449c..4d05fd68d 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -128,7 +128,7 @@ Variables
-

Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), follow_widget(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), and zot_feed().

+

Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), follow_widget(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), widget_tagcloud(), and zot_feed().

diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html index 220d244b3..725b1156d 100644 --- a/doc/html/auth_8php.html +++ b/doc/html/auth_8php.html @@ -152,7 +152,7 @@ Variables

Returns account record on success, null on failure

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

-

Referenced by api_login().

+

Referenced by api_login(), and RedBasicAuth\validateUserPass().

diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html index 90c60b862..daff36f2e 100644 --- a/doc/html/bbcode_8php.html +++ b/doc/html/bbcode_8php.html @@ -118,21 +118,41 @@ Functions    bb_unspacefy_and_trim ($st)   -if(!function_exists('bb_extract_images'))
-if(!function_exists('bb_replace_images')) bb_ShareAttributes ($match) -  +if(!function_exists('bb_extract_images'))
+if(!function_exists('bb_replace_images')) bb_parse_crypt ($match) +  + bb_ShareAttributes ($match) +   bb_ShareAttributesSimple ($match)   + rpost_callback ($match) +   bbcode ($Text, $preserve_nl=false, $tryoembed=true)  

Function Documentation

- +
- + + + + + + +
if (!function_exists('bb_extract_images')) if (!function_exists('bb_replace_images')) bb_ShareAttributes if (!function_exists('bb_extract_images')) if (!function_exists('bb_replace_images')) bb_parse_crypt ( $match)
+
+ +
+
+ +
+
+ + + @@ -223,6 +243,22 @@ Functions

Referenced by bb2diaspora(), construct_activity_object(), construct_activity_target(), events_content(), format_event_html(), format_notification(), get_events(), message_content(), notification(), notifications_content(), notify_content(), ping_init(), and tagrm_content().

+ + + +
+
+
bb_ShareAttributes (   $match)
+ + + + + + + +
rpost_callback ( $match)
+
+
diff --git a/doc/html/bbcode_8php.js b/doc/html/bbcode_8php.js index 9cd2e8919..a2d64b997 100644 --- a/doc/html/bbcode_8php.js +++ b/doc/html/bbcode_8php.js @@ -1,9 +1,11 @@ var bbcode_8php = [ - [ "bb_ShareAttributes", "bbcode_8php.html#a52c45273fbb7ce5ec27094f7936856e1", null ], + [ "bb_parse_crypt", "bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f", null ], + [ "bb_ShareAttributes", "bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a", null ], [ "bb_ShareAttributesSimple", "bbcode_8php.html#a2be26414a367118143cc89e2d58e7377", null ], [ "bb_spacefy", "bbcode_8php.html#a8911e027907820df3db03b4f76724b50", null ], [ "bb_unspacefy_and_trim", "bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d", null ], [ "bbcode", "bbcode_8php.html#a009f61aaf78771737ed0765c8463911b", null ], + [ "rpost_callback", "bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7", null ], [ "tryoembed", "bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7", null ] ]; \ No newline at end of file diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index f53d465b6..f76154384 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -224,7 +224,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1078 +const DB_UPDATE_VERSION 1081   const EOL '<br />' . "\r\n"   @@ -250,6 +250,8 @@ Variables   const LANGUAGE_DETECT_MIN_CONFIDENCE 0.01   +const STORAGE_DEFAULT_PERMISSIONS 0770 +  const MAX_IMAGE_LENGTH -1   const DEFAULT_DB_ENGINE 'MyISAM' @@ -720,7 +722,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), blocks_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), lastpost_init(), layouts_content(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), blocks_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), lastpost_init(), layouts_content(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), rpost_content(), settings_aside(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

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

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), blocks_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), lastpost_init(), layouts_content(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_aside(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), blocks_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), lastpost_init(), layouts_content(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_aside(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), rpost_content(), settings_aside(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

@@ -862,7 +864,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), apw_form(), construct_page(), current_theme_url(), and theme_include().

+

Referenced by FriendicaSmarty\__construct(), construct_page(), current_theme_url(), and theme_include().

@@ -898,7 +900,7 @@ Variables
-

Referenced by conversation(), Item\get_template_data(), items_fetch(), network_content(), ping_init(), and Template\replace_macros().

+

Referenced by conversation(), Item\get_template_data(), items_fetch(), network_content(), ping_init(), and Template\replace_macros().

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

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_block(), comanche_menu(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connections_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dfrn_deliver(), drop_item(), event_store(), fetch_url(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), follow_widget(), format_event_diaspora(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), login(), FKOAuth1\loginUser(), lrdd(), manage_content(), map_scope(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), post_url(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), saved_searches(), scale_external_images(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), widget_profile(), z_fetch_url(), and zot_finger().

+

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_block(), comanche_menu(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connections_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dfrn_deliver(), drop_item(), event_store(), fetch_url(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), follow_widget(), format_event_diaspora(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), login(), FKOAuth1\loginUser(), lrdd(), manage_content(), map_scope(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), post_url(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), rpost_callback(), saved_searches(), scale_external_images(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), syncdirs(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), widget_profile(), widget_tagcloud(), z_fetch_url(), and zot_finger().

@@ -1086,7 +1088,7 @@ Variables
-

Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_store(), comanche_menu(), common_content(), common_friends_visitor_widget(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), get_public_feed(), item_permissions_sql(), mitem_content(), new_contact(), permissions_sql(), photo_init(), photos_post(), prepare_body(), profile_sidebar(), search_content(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), and z_readdir().

+

Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), comanche_menu(), common_content(), common_friends_visitor_widget(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), get_public_feed(), item_permissions_sql(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_post(), prepare_body(), profile_sidebar(), search_content(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), and z_readdir().

@@ -1119,7 +1121,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_hubloc(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_content(), channel_remove(), chanview_content(), check_form_security_token_redirectOnErr(), connect_post(), connections_content(), connections_post(), delegate_content(), directory_content(), drop_item(), events_post(), filerm_content(), follow_init(), group_content(), group_post(), import_post(), intro_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), settings_post(), sources_content(), sources_post(), tagrm_content(), tagrm_post(), toggle_mobile_init(), and zid_init().

+

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

@@ -1152,7 +1154,7 @@ Variables
-

Referenced by connections_init(), message_content(), network_init(), page_init(), and profile_sidebar().

+

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

@@ -1221,7 +1223,7 @@ Variables
-

Referenced by FriendicaSmartyEngine\__construct(), acl_init(), admin_content(), api_content(), api_ff_ids(), api_friendica_version(), api_oauth_access_token(), api_oauth_request_token(), api_statusnet_version(), attach_init(), check_form_security_token_ForbiddenOnErr(), contactgroup_content(), events_content(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), goaway(), http_status_exit(), item_post(), json_return_and_die(), like_content(), lockview_content(), msearch_post(), network_content(), oembed_init(), oexchange_init(), opensearch_init(), parse_url_content(), photo_init(), photos_post(), php_init(), ping_init(), poco_init(), poller_run(), post_init(), pretheme_init(), qsearch_init(), App\register_template_engine(), regmod_content(), search_ac_init(), setup_init(), setup_post(), share_init(), siteinfo_init(), sitelist_init(), starred_init(), subthread_content(), system_unavailable(), tagger_content(), App\template_engine(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

+

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

@@ -1239,7 +1241,7 @@ Variables
-

Referenced by api_call(), conversation(), and item_photo_menu().

+

Referenced by api_call(), conversation(), and item_photo_menu().

@@ -1256,7 +1258,7 @@ Variables
-

Referenced by acl_init(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), apw_form(), best_link_url(), blocks_content(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), lastpost_init(), layouts_content(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_profile(), z_input_filter(), zid_init(), and zping_content().

+

Referenced by acl_init(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), apw_form(), best_link_url(), blocks_content(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connect_content(), connect_post(), connections_aside(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), lastpost_init(), layouts_content(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_aside(), message_content(), message_post(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_profile(), z_input_filter(), zid_init(), and zping_content().

@@ -1290,7 +1292,7 @@ Variables
-

Referenced by admin_content(), api_content(), channel_content(), follow_content(), lastpost_content(), login_content(), network_content(), notify_content(), oexchange_content(), profile_content(), and regmod_content().

+

Referenced by admin_content(), api_content(), channel_content(), connections_content(), follow_content(), lastpost_content(), login_content(), message_content(), network_content(), notify_content(), oexchange_content(), profile_content(), regmod_content(), and rpost_content().

@@ -1308,7 +1310,7 @@ Variables
-

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

+

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

@@ -1330,7 +1332,7 @@ Variables

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

$cmd and string args are surrounded with ""

-

Referenced by build_sync_packet(), channel_remove(), connect_post(), connections_content(), connections_post(), create_identity(), directory_run(), drop_item(), drop_items(), events_post(), fix_system_urls(), fsuggest_post(), import_post(), item_expire(), item_post(), like_content(), message_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), send_message(), settings_post(), tag_deliver(), tagger_content(), thing_init(), zid_init(), and zot_refresh().

+

Referenced by build_sync_packet(), channel_remove(), connect_post(), connections_content(), connections_post(), create_identity(), directory_run(), drop_item(), drop_items(), events_post(), fix_system_urls(), fsuggest_post(), import_post(), item_expire(), item_post(), like_content(), message_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), send_message(), settings_post(), tag_deliver(), tagger_content(), thing_init(), zid_init(), and zot_refresh().

@@ -1435,7 +1437,7 @@ Variables

: array $profile

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

-

Referenced by profile_create_sidebar(), and widget_profile().

+

Referenced by profile_create_sidebar(), and widget_profile().

@@ -1486,7 +1488,7 @@ Variables
-

Referenced by channel_content(), community_content(), directory_content(), display_content(), drop_items(), hcard_init(), item_content(), item_permissions_sql(), item_post(), lastpost_content(), nav(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco_init(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), redir_init(), search_content(), subthread_content(), tagger_content(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), widget_profile(), zid_init(), and zotfeed_init().

+

Referenced by channel_content(), community_content(), directory_content(), display_content(), drop_items(), hcard_init(), item_content(), item_permissions_sql(), item_post(), lastpost_content(), nav(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco_init(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), redir_init(), rpost_content(), search_content(), share_init(), subthread_content(), tagger_content(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), widget_profile(), zid_init(), and zotfeed_init().

@@ -1547,7 +1549,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

+

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

@@ -1615,7 +1617,7 @@ Variables
-

Referenced by allowed_public_recips(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), chanview_content(), check_config(), connect_post(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), filestorage_content(), follow_init(), format_categories(), format_css_if_exists(), format_filer(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

+

Referenced by allowed_public_recips(), bb_parse_crypt(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chanview_content(), check_config(), connect_post(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), filestorage_content(), follow_init(), format_categories(), format_css_if_exists(), format_filer(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

@@ -1653,7 +1655,7 @@ Variables
Returns
string

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

-

Referenced by bb_ShareAttributes(), conversation(), get_plink(), intro_content(), like_puller(), localize_item(), match_content(), menu_render(), new_contact(), notifications_content(), and viewconnections_content().

+

Referenced by bb_ShareAttributes(), conversation(), get_plink(), intro_content(), like_puller(), localize_item(), match_content(), menu_render(), new_contact(), notifications_content(), and viewconnections_content().

@@ -1856,7 +1858,7 @@ Variables

Account Flags

-

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

+

Referenced by account_verify_password(), create_account(), onepoll_run(), poller_run(), and RedBasicAuth\validateUserPass().

@@ -1925,7 +1927,7 @@ Variables
-

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

+

Referenced by account_verify_password(), onepoll_run(), poller_run(), register_post(), and RedBasicAuth\validateUserPass().

@@ -1939,7 +1941,7 @@ Variables
-

Referenced by Item\add_child(), Conversation\add_thread(), consume_feed(), conversation(), like_content(), like_puller(), localize_item(), notifications_content(), and visible_activity().

+

Referenced by Item\add_child(), Conversation\add_thread(), consume_feed(), conversation(), like_content(), like_puller(), localize_item(), notifications_content(), and visible_activity().

@@ -2006,7 +2008,7 @@ Variables

activity stream defines

-

Referenced by Item\add_child(), Conversation\add_thread(), consume_feed(), conversation(), like_content(), like_puller(), localize_item(), notifications_content(), and visible_activity().

+

Referenced by Item\add_child(), Conversation\add_thread(), consume_feed(), conversation(), like_content(), like_puller(), localize_item(), notifications_content(), and visible_activity().

@@ -2304,7 +2306,7 @@ Variables
-

Referenced by z_readdir().

+

Referenced by attach_mkdir(), RedInode\delete(), and z_readdir().

@@ -2318,7 +2320,7 @@ Variables
-

Referenced by attach_init().

+

Referenced by attach_init(), and RedInode\delete().

@@ -2410,7 +2412,7 @@ Variables
- +
const DB_UPDATE_VERSION 1078const DB_UPDATE_VERSION 1081
@@ -2456,7 +2458,7 @@ Variables
-

Referenced by directory_run(), dirsearch_content(), import_site(), import_xchan(), sync_directories(), update_suggestions(), and zfinger_init().

+

Referenced by directory_run(), dirsearch_content(), import_site(), import_xchan(), sync_directories(), update_modtime(), update_suggestions(), and zfinger_init().

@@ -2524,7 +2526,7 @@ Variables
-

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

+

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

@@ -2721,7 +2723,7 @@ Variables
-

Referenced by consume_feed(), delete_item_lowlevel(), encode_item(), expire_run(), get_item_elements(), item_expire(), item_store(), like_content(), notifier_run(), photos_post(), and process_delivery().

+

Referenced by consume_feed(), delete_item_lowlevel(), encode_item(), expire_run(), get_item_elements(), item_expire(), item_store(), like_content(), notifier_run(), photos_post(), poller_run(), and process_delivery().

@@ -2819,7 +2821,7 @@ Variables
-

Referenced by editpost_content(), encode_item(), get_item_elements(), item_post(), item_store(), item_store_update(), and unobscure().

+

Referenced by editpost_content(), encode_item(), get_item_elements(), item_post(), item_store(), item_store_update(), tag_deliver(), and unobscure().

@@ -2926,7 +2928,7 @@ Variables
-

Referenced by api_statuses_home_timeline(), channel_content(), display_content(), format_notification(), item_post(), item_store(), items_fetch(), lastpost_content(), mood_init(), network_content(), and ping_init().

+

Referenced by api_statuses_home_timeline(), channel_content(), display_content(), format_notification(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), mood_init(), network_content(), and ping_init().

@@ -2966,7 +2968,7 @@ Variables
-

Referenced by conversation(), get_item_elements(), Item\get_template_data(), item_post(), item_store(), and item_store_update().

+

Referenced by conversation(), get_item_elements(), Item\get_template_data(), item_post(), item_store(), and item_store_update().

@@ -3009,7 +3011,7 @@ Variables
-

Referenced by item_check_service_class(), item_expire(), item_post(), items_fetch(), notifier_run(), page_content(), and webpages_content().

+

Referenced by display_content(), item_check_service_class(), item_expire(), item_post(), items_fetch(), notifier_run(), page_content(), webpages_content(), and widget_tagcloud().

@@ -3081,7 +3083,7 @@ Variables
-

Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_content(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), webfinger_dfrn(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

+

Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), webfinger_dfrn(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

@@ -3095,7 +3097,7 @@ Variables
-

Referenced by Item\add_child(), Conversation\add_thread(), admin_page_logs(), api_login(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), consume_feed(), conversation(), delete_imported_item(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), expire_run(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), FKOAuth1\loginUser(), lrdd(), magic_init(), mail_store(), mood_init(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), redir_init(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), syncdirs(), unload_plugin(), zot_finger(), zot_gethub(), and zot_register_hub().

+

Referenced by Item\add_child(), Conversation\add_thread(), admin_page_logs(), api_login(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), consume_feed(), conversation(), delete_imported_item(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), expire_run(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), FKOAuth1\loginUser(), lrdd(), magic_init(), mail_store(), mood_init(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), redir_init(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), syncdirs(), unload_plugin(), zot_finger(), zot_gethub(), and zot_register_hub().

@@ -3164,7 +3166,7 @@ Variables
-

Referenced by encode_mail(), get_mail_elements(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), and send_message().

+

Referenced by encode_mail(), get_mail_elements(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), and send_message().

@@ -4451,6 +4453,21 @@ Variables

Referenced by fix_contact_ssl_policy().

+ + + +
+
+ + + + +
const STORAGE_DEFAULT_PERMISSIONS 0770
+
+

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

+ +

Referenced by attach_mkdir().

+
@@ -4463,7 +4480,7 @@ Variables
-

Referenced by categories_widget(), channel_content(), decode_tags(), editpost_content(), encode_item_terms(), file_tag_file_query(), filerm_content(), format_categories(), and item_post().

+

Referenced by categories_widget(), channel_content(), decode_tags(), editpost_content(), encode_item_terms(), file_tag_file_query(), filerm_content(), format_categories(), item_post(), and widget_tagcloud().

@@ -4491,7 +4508,7 @@ Variables
-

Referenced by check_item_source(), conversation(), decode_tags(), encode_item_terms(), format_term_for_display(), get_atom_elements(), handle_tag(), item_getfeedtags(), items_fetch(), network_content(), remove_community_tag(), search_ac_init(), search_content(), tag_deliver(), and tagger_content().

+

Referenced by check_item_source(), conversation(), decode_tags(), encode_item_terms(), format_term_for_display(), get_atom_elements(), handle_tag(), item_getfeedtags(), items_fetch(), network_content(), remove_community_tag(), search_ac_init(), search_content(), tag_deliver(), and tagger_content().

@@ -4505,7 +4522,7 @@ Variables
-

Referenced by conversation(), decode_tags(), encode_item_terms(), fetch_post_tags(), format_term_for_display(), get_atom_elements(), get_mentions(), handle_tag(), item_getfeedtags(), tag_deliver(), and tgroup_check().

+

Referenced by conversation(), decode_tags(), encode_item_terms(), fetch_post_tags(), format_term_for_display(), get_atom_elements(), get_mentions(), handle_tag(), item_getfeedtags(), tag_deliver(), and tgroup_check().

@@ -4555,7 +4572,7 @@ Variables
-

Referenced by delete_item_lowlevel(), fetch_post_tags(), filer_content(), get_atom_elements(), item_post(), item_store(), item_store_update(), remove_community_tag(), search_content(), tag_deliver(), tagadelic(), and tagger_content().

+

Referenced by delete_item_lowlevel(), fetch_post_tags(), filer_content(), get_atom_elements(), item_post(), item_store(), item_store_update(), remove_community_tag(), search_content(), tag_deliver(), tagadelic(), and tagger_content().

@@ -4638,7 +4655,7 @@ Variables

Tag/term types

-

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

+

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

@@ -4723,6 +4740,8 @@ Variables
+

Referenced by channel_remove().

+
diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 45d529df7..bbb5596e5 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -251,6 +251,7 @@ var boot_8php = [ "SSL_POLICY_FULL", "boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc", null ], [ "SSL_POLICY_NONE", "boot_8php.html#af86c651547aa8f9e549ee40a09455549", null ], [ "SSL_POLICY_SELFSIGN", "boot_8php.html#adca48aee78465ae3064ca4432c0d87b5", null ], + [ "STORAGE_DEFAULT_PERMISSIONS", "boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6", null ], [ "TERM_CATEGORY", "boot_8php.html#af33d1b2e98a1e21af672005525d46dfe", null ], [ "TERM_FILE", "boot_8php.html#afb97615e985a013799839b68b99018d7", null ], [ "TERM_HASHTAG", "boot_8php.html#a2750985ec445617d7e82ae3098c91e3f", null ], diff --git a/doc/html/classConversation-members.html b/doc/html/classConversation-members.html index e93c324c5..a07c2b422 100644 --- a/doc/html/classConversation-members.html +++ b/doc/html/classConversation-members.html @@ -115,24 +115,25 @@ $(document).ready(function(){initNavTree('classConversation.html','');}); $commentableConversationprivate $modeConversationprivate $observerConversationprivate - $previewConversationprivate - $profile_ownerConversationprivate - $threadsConversationprivate - $writableConversationprivate - __construct($mode, $preview)Conversation - add_thread($item)Conversation - get_app()BaseObject - get_mode()Conversation - get_observer()Conversation - get_profile_owner()Conversation - get_template_data($alike, $dlike)Conversation - get_thread($id)Conversationprivate - is_commentable()Conversation - is_preview()Conversation - is_writable()Conversation - set_app($app)BaseObjectstatic - set_mode($mode)Conversationprivate - set_profile_owner($uid)Conversation + $prepared_itemConversationprivate + $previewConversationprivate + $profile_ownerConversationprivate + $threadsConversationprivate + $writableConversationprivate + __construct($mode, $preview, $prepared_item= '')Conversation + add_thread($item)Conversation + get_app()BaseObject + get_mode()Conversation + get_observer()Conversation + get_profile_owner()Conversation + get_template_data($alike, $dlike)Conversation + get_thread($id)Conversationprivate + is_commentable()Conversation + is_preview()Conversation + is_writable()Conversation + set_app($app)BaseObjectstatic + set_mode($mode)Conversationprivate + set_profile_owner($uid)Conversation diff --git a/doc/html/classConversation.html b/doc/html/classConversation.html index 913f04052..a71ebd774 100644 --- a/doc/html/classConversation.html +++ b/doc/html/classConversation.html @@ -126,8 +126,8 @@ Inheritance diagram for Conversation: - - + + @@ -173,6 +173,8 @@ Private Attributes + +

Public Member Functions

 __construct ($mode, $preview)
 
 __construct ($mode, $preview, $prepared_item= '')
 
 get_mode ()
 
 is_writable ()
 
 $preview = false
 
 $prepared_item = ''
 
@@ -183,7 +185,7 @@ Additional Inherited Members

Detailed Description

A list of threads

Constructor & Destructor Documentation

- +

Additional Inherited Members

@@ -197,7 +199,13 @@ Additional Inherited Members - + + + + + + + @@ -404,7 +412,7 @@ Additional Inherited Members

Set the mode we'll be displayed on

-

Referenced by __construct(), and set_profile_owner().

+

Referenced by __construct(), and set_profile_owner().

@@ -465,7 +473,7 @@ Additional Inherited Members
 $preview $preview,
 $prepared_item = '' 
-

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

+

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

@@ -489,6 +497,28 @@ Additional Inherited Members

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

+ + + +
+
+ + + + + +
+ + + + +
Conversation::$prepared_item = ''
+
+private
+
+ +

Referenced by __construct(), and get_template_data().

+
@@ -509,7 +539,7 @@ Additional Inherited Members
-

Referenced by __construct(), and is_preview().

+

Referenced by __construct(), and is_preview().

diff --git a/doc/html/classConversation.js b/doc/html/classConversation.js index 57f735fb5..28a45e7f1 100644 --- a/doc/html/classConversation.js +++ b/doc/html/classConversation.js @@ -1,6 +1,6 @@ var classConversation = [ - [ "__construct", "classConversation.html#a6b064d00c56a6b7dec359d4348711c84", null ], + [ "__construct", "classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09", null ], [ "add_thread", "classConversation.html#a8335cdd43f1836e3c255638e61a09e16", null ], [ "get_mode", "classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd", null ], [ "get_observer", "classConversation.html#ae3d4190142e12b57051f11f2911f77a0", null ], @@ -15,6 +15,7 @@ var classConversation = [ "$commentable", "classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6", null ], [ "$mode", "classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a", null ], [ "$observer", "classConversation.html#a8748445aa26047ebed5141f3c3cbc244", null ], + [ "$prepared_item", "classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2", null ], [ "$preview", "classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae", null ], [ "$profile_owner", "classConversation.html#a2f12724ef0244e9049fe1bb9641b516d", null ], [ "$threads", "classConversation.html#a41f4a549e6a99f98935c4742addd22c8", null ], diff --git a/doc/html/classRedBasicAuth-members.html b/doc/html/classRedBasicAuth-members.html new file mode 100644 index 000000000..d12aa9a5e --- /dev/null +++ b/doc/html/classRedBasicAuth-members.html @@ -0,0 +1,118 @@ + + + + + + +The Red Matrix: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+
+
RedBasicAuth Member List
+
+
+ +

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

+ + +
validateUserPass($username, $password)RedBasicAuthprotected
+
+ diff --git a/doc/html/classRedBasicAuth.html b/doc/html/classRedBasicAuth.html new file mode 100644 index 000000000..0269822c9 --- /dev/null +++ b/doc/html/classRedBasicAuth.html @@ -0,0 +1,169 @@ + + + + + + +The Red Matrix: RedBasicAuth Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+ +
+
RedBasicAuth Class Reference
+
+
+
+Inheritance diagram for RedBasicAuth:
+
+
+ + + +
+ + + + +

+Protected Member Functions

 validateUserPass ($username, $password)
 
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
RedBasicAuth::validateUserPass ( $username,
 $password 
)
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ diff --git a/doc/html/classRedBasicAuth.js b/doc/html/classRedBasicAuth.js new file mode 100644 index 000000000..5c1d058d4 --- /dev/null +++ b/doc/html/classRedBasicAuth.js @@ -0,0 +1,4 @@ +var classRedBasicAuth = +[ + [ "validateUserPass", "classRedBasicAuth.html#a8dfd9a0953f8884723b421b7c1acf79b", null ] +]; \ No newline at end of file diff --git a/doc/html/classRedBasicAuth.png b/doc/html/classRedBasicAuth.png new file mode 100644 index 000000000..01abbef69 Binary files /dev/null and b/doc/html/classRedBasicAuth.png differ diff --git a/doc/html/classRedDirectory-members.html b/doc/html/classRedDirectory-members.html new file mode 100644 index 000000000..0fe498712 --- /dev/null +++ b/doc/html/classRedDirectory-members.html @@ -0,0 +1,127 @@ + + + + + + +The Red Matrix: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+
+
RedDirectory Member List
+
+
+ +

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

+ + + + + + + + + + + +
$authRedDirectoryprivate
$channel_idRedDirectoryprivate
$dir_keyRedDirectoryprivate
$red_pathRedDirectoryprivate
__construct($red_path, $auth_plugin)RedDirectory
childExists($name)RedDirectory
createDirectory($name)RedDirectory
createFile($name, $data=null)RedDirectory
getChild($name)RedDirectory
getChildren()RedDirectory
+
+ diff --git a/doc/html/classRedDirectory.html b/doc/html/classRedDirectory.html new file mode 100644 index 000000000..118699a0e --- /dev/null +++ b/doc/html/classRedDirectory.html @@ -0,0 +1,356 @@ + + + + + + +The Red Matrix: RedDirectory Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+ +
+
RedDirectory Class Reference
+
+
+
+Inheritance diagram for RedDirectory:
+
+
+ + + +
+ + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($red_path, $auth_plugin)
 
 getChildren ()
 
 getChild ($name)
 
 createFile ($name, $data=null)
 
 createDirectory ($name)
 
 childExists ($name)
 
+ + + + + + + + + +

+Private Attributes

 $red_path
 
 $dir_key
 
 $auth
 
 $channel_id
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
RedDirectory::__construct ( $red_path,
 $auth_plugin 
)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
RedDirectory::childExists ( $name)
+
+ +
+
+ +
+
+ + + + + + + + +
RedDirectory::createDirectory ( $name)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
RedDirectory::createFile ( $name,
 $data = null 
)
+
+ +
+
+ +
+
+ + + + + + + + +
RedDirectory::getChild ( $name)
+
+ +
+
+ +
+
+ + + + + + + +
RedDirectory::getChildren ()
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
RedDirectory::$auth
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
RedDirectory::$channel_id
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
RedDirectory::$dir_key
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
RedDirectory::$red_path
+
+private
+
+ +

Referenced by __construct().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ diff --git a/doc/html/classRedDirectory.js b/doc/html/classRedDirectory.js new file mode 100644 index 000000000..c03c41503 --- /dev/null +++ b/doc/html/classRedDirectory.js @@ -0,0 +1,13 @@ +var classRedDirectory = +[ + [ "__construct", "classRedDirectory.html#add0bf2c049230fec4913e769d126e6e6", null ], + [ "childExists", "classRedDirectory.html#a5e3fc08b2bf9f61cea4d2ccae0495bec", null ], + [ "createDirectory", "classRedDirectory.html#a986936910f0216887a25e28916c166c7", null ], + [ "createFile", "classRedDirectory.html#a2d12d99d38a6a75fc9a830b2f7fc0bf0", null ], + [ "getChild", "classRedDirectory.html#aaa20f0f44da23781917af8170c0a2569", null ], + [ "getChildren", "classRedDirectory.html#aa42d3065f6f065b17db87146a7cb031a", null ], + [ "$auth", "classRedDirectory.html#a9616af16cd19a18a6afebebcc2881c44", null ], + [ "$channel_id", "classRedDirectory.html#ae624dcaa4d73a517f4b1616d33df690d", null ], + [ "$dir_key", "classRedDirectory.html#a8d5df814b2f825dd14c628a51b5829b5", null ], + [ "$red_path", "classRedDirectory.html#acb32b8df27538c57772824a745e751d7", null ] +]; \ No newline at end of file diff --git a/doc/html/classRedDirectory.png b/doc/html/classRedDirectory.png new file mode 100644 index 000000000..192133f6a Binary files /dev/null and b/doc/html/classRedDirectory.png differ diff --git a/doc/html/classRedFile-members.html b/doc/html/classRedFile-members.html new file mode 100644 index 000000000..3f24d0365 --- /dev/null +++ b/doc/html/classRedFile-members.html @@ -0,0 +1,124 @@ + + + + + + +The Red Matrix: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+
+
RedFile Member List
+
+
+ +

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

+ + + + + + + + +
$dataRedFileprivate
__construct($data)RedFile
get()RedFile
getContentType()RedFile
getETag()RedFile
getSize()RedFile
put($data)RedFile
+
+ diff --git a/doc/html/classRedFile.html b/doc/html/classRedFile.html new file mode 100644 index 000000000..68d4fc413 --- /dev/null +++ b/doc/html/classRedFile.html @@ -0,0 +1,267 @@ + + + + + + +The Red Matrix: RedFile Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+ +
+
RedFile Class Reference
+
+
+
+Inheritance diagram for RedFile:
+
+
+ + + +
+ + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($data)
 
 put ($data)
 
 get ()
 
 getETag ()
 
 getContentType ()
 
 getSize ()
 
+ + + +

+Private Attributes

 $data
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
RedFile::__construct ( $data)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + +
RedFile::get ()
+
+ +
+
+ +
+
+ + + + + + + +
RedFile::getContentType ()
+
+ +
+
+ +
+
+ + + + + + + +
RedFile::getETag ()
+
+ +
+
+ +
+
+ + + + + + + +
RedFile::getSize ()
+
+ +
+
+ +
+
+ + + + + + + + +
RedFile::put ( $data)
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
RedFile::$data
+
+private
+
+ +

Referenced by __construct().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ diff --git a/doc/html/classRedFile.js b/doc/html/classRedFile.js new file mode 100644 index 000000000..526eb7ae7 --- /dev/null +++ b/doc/html/classRedFile.js @@ -0,0 +1,10 @@ +var classRedFile = +[ + [ "__construct", "classRedFile.html#ad4588b90004a2741b1a4ced10355904c", null ], + [ "get", "classRedFile.html#a7c868dfcef6c70cd0e24cf3caa2c3535", null ], + [ "getContentType", "classRedFile.html#a26416827eb68554d033d1e2e5cc6dd3b", null ], + [ "getETag", "classRedFile.html#ae96d5caa2db7a461c57b24380fa87e28", null ], + [ "getSize", "classRedFile.html#acb1edbe1848fab05347746fa1ea09d8f", null ], + [ "put", "classRedFile.html#a41a49a583eb276b75626fcf97f4a699c", null ], + [ "$data", "classRedFile.html#a2ff12032b45538353eded9809d3b7550", null ] +]; \ No newline at end of file diff --git a/doc/html/classRedFile.png b/doc/html/classRedFile.png new file mode 100644 index 000000000..81ce66310 Binary files /dev/null and b/doc/html/classRedFile.png differ diff --git a/doc/html/classRedInode-members.html b/doc/html/classRedInode-members.html new file mode 100644 index 000000000..475100a71 --- /dev/null +++ b/doc/html/classRedInode-members.html @@ -0,0 +1,123 @@ + + + + + + +The Red Matrix: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+
+
RedInode Member List
+
+
+ +

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

+ + + + + + + +
$attachRedInodeprivate
__construct($attach)RedInode
delete()RedInode
getLastModified()RedInode
getName()RedInode
setName($newName)RedInode
+
+ diff --git a/doc/html/classRedInode.html b/doc/html/classRedInode.html new file mode 100644 index 000000000..0f5267ba4 --- /dev/null +++ b/doc/html/classRedInode.html @@ -0,0 +1,251 @@ + + + + + + +The Red Matrix: RedInode Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+ +
+
RedInode Class Reference
+
+
+
+Inheritance diagram for RedInode:
+
+
+ + + +
+ + + + + + + + + + + + +

+Public Member Functions

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

+Private Attributes

 $attach
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
RedInode::__construct ( $attach)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + +
RedInode::delete ()
+
+

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

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

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
RedInode::$attach
+
+private
+
+ +

Referenced by __construct().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ diff --git a/doc/html/classRedInode.js b/doc/html/classRedInode.js new file mode 100644 index 000000000..6bf4d5840 --- /dev/null +++ b/doc/html/classRedInode.js @@ -0,0 +1,9 @@ +var classRedInode = +[ + [ "__construct", "classRedInode.html#a21a6f92921c037c868e6fae30c7c51bb", null ], + [ "delete", "classRedInode.html#a5e8f09bc887725c3c448f8d72fe3edfc", null ], + [ "getLastModified", "classRedInode.html#a8503d4f247186e9e55bc42b37e067fb6", null ], + [ "getName", "classRedInode.html#aec5706105400764124db39d4bc68d458", null ], + [ "setName", "classRedInode.html#a3d76322f25d847b123b3df37a26dd04e", null ], + [ "$attach", "classRedInode.html#a7b317eb1230930154107ed51e54193f5", null ] +]; \ No newline at end of file diff --git a/doc/html/classRedInode.png b/doc/html/classRedInode.png new file mode 100644 index 000000000..77027544c Binary files /dev/null and b/doc/html/classRedInode.png differ diff --git a/doc/html/classes.html b/doc/html/classes.html index 3fbe05e31..a6f23706c 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -109,31 +109,34 @@ $(document).ready(function(){initNavTree('classes.html','');});
Class Index
-
A | B | C | D | E | F | I | P | T | Z
+
A | B | C | D | E | F | I | P | R | T | Z
- - + + - - - - - + + + + + + +
  A  
-
Conversation   
  F  
-
ITemplateEngine   
  Z  
+
  D  
+
FKOAuthDataStore   photo_gd   
  Z  
  D  
-
  P  
-
App   FKOAuth1   ZotDriver   
FriendicaSmarty   photo_imagick   
App   dba_driver   FriendicaSmartyEngine   ProtoDriver   ZotDriver   
  B  
-
dba_driver   FKOAuthDataStore   photo_driver   
dba_mysql   FriendicaSmarty   photo_gd   
BaseObject   dba_mysqli   FriendicaSmartyEngine   photo_imagick   
  C  
-
  E  
-
  I  
-
ProtoDriver   
  T  
+
dba_mysql   
  I  
+
  R  
Cache   enotify   Item   
dba_mysqli   
BaseObject   
  E  
+
Item   RedBasicAuth   
  C  
+
ITemplateEngine   RedDirectory   
enotify   
  P  
+
RedFile   
Cache   
  F  
+
RedInode   
Conversation   photo_driver   
  T  
+
FKOAuth1   
Template   
-
A | B | C | D | E | F | I | P | T | Z
+
A | B | C | D | E | F | I | P | R | T | Z
diff --git a/doc/html/cloud_8php.html b/doc/html/cloud_8php.html new file mode 100644 index 000000000..05196301b --- /dev/null +++ b/doc/html/cloud_8php.html @@ -0,0 +1,142 @@ + + + + + + +The Red Matrix: mod/cloud.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Pages
+ + +
+ +
+ +
+ +
+
cloud.php File Reference
+
+
+ + + + +

+Classes

class  RedBasicAuth
 
+ + + +

+Functions

 cloud_init ()
 
+

Function Documentation

+ +
+
+ + + + + + + +
cloud_init ()
+
+ +
+
+
+
+ diff --git a/doc/html/cloud_8php.js b/doc/html/cloud_8php.js new file mode 100644 index 000000000..9463067b2 --- /dev/null +++ b/doc/html/cloud_8php.js @@ -0,0 +1,5 @@ +var cloud_8php = +[ + [ "RedBasicAuth", "classRedBasicAuth.html", "classRedBasicAuth" ], + [ "cloud_init", "cloud_8php.html#a080071b784fe01d04ed6c09d9f2785b8", null ] +]; \ No newline at end of file diff --git a/doc/html/comanche_8php.html b/doc/html/comanche_8php.html index 71084b7ba..965723a75 100644 --- a/doc/html/comanche_8php.html +++ b/doc/html/comanche_8php.html @@ -124,12 +124,10 @@ Functions    comanche_webpage (&$a, $s)   - comanche_widget ($name, $args=null) -  + comanche_widget ($name, $text) +   comanche_region (&$a, $s)   - widget_profile ($args) - 

Function Documentation

@@ -268,7 +266,7 @@ Functions - +
@@ -282,7 +280,7 @@ Functions - + @@ -320,22 +318,6 @@ Functions
 $args = null $text 
-
-
- -
-
- - - - - - - - -
widget_profile ( $args)
-
-
diff --git a/doc/html/comanche_8php.js b/doc/html/comanche_8php.js index d4273e596..f3c4d5ff3 100644 --- a/doc/html/comanche_8php.js +++ b/doc/html/comanche_8php.js @@ -6,7 +6,6 @@ var comanche_8php = [ "comanche_region", "comanche_8php.html#a5718daeda40bf835345fe061e8808cdf", null ], [ "comanche_replace_region", "comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe", null ], [ "comanche_webpage", "comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a", null ], - [ "comanche_widget", "comanche_8php.html#a45900dd1d6101b53e3d063db40eafa5e", null ], - [ "pdl_selector", "comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e", null ], - [ "widget_profile", "comanche_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ] + [ "comanche_widget", "comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f", null ], + [ "pdl_selector", "comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e", null ] ]; \ No newline at end of file diff --git a/doc/html/conversation_8php.html b/doc/html/conversation_8php.html index 6ce2ab111..2f91c0913 100644 --- a/doc/html/conversation_8php.html +++ b/doc/html/conversation_8php.html @@ -122,8 +122,8 @@ Functions    visible_activity ($item)   - conversation (&$a, $items, $mode, $update, $page_mode= 'traditional') -  + conversation (&$a, $items, $mode, $update, $page_mode= 'traditional', $prepared_item= '') +   best_link_url ($item)    item_photo_menu ($item) @@ -198,7 +198,7 @@ Functions
-

Referenced by conversation().

+

Referenced by conversation().

@@ -230,7 +230,7 @@ Functions - +
@@ -262,7 +262,13 @@ Functions - + + + + + + + @@ -378,7 +384,7 @@ Functions
 $page_mode = 'traditional' $page_mode = 'traditional',
 $prepared_item = '' 
-

Referenced by conversation(), and Item\get_template_data().

+

Referenced by conversation(), and Item\get_template_data().

@@ -438,7 +444,7 @@ Functions
-

Referenced by conversation(), and Item\get_template_data().

+

Referenced by conversation(), and Item\get_template_data().

@@ -510,7 +516,7 @@ Functions
-

Referenced by conversation().

+

Referenced by conversation().

@@ -529,7 +535,7 @@ Functions

Render actions localized

-

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

+

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

@@ -691,7 +697,7 @@ Functions
-

Referenced by blocks_content(), channel_content(), lastpost_content(), layouts_content(), network_content(), and webpages_content().

+

Referenced by blocks_content(), channel_content(), display_content(), lastpost_content(), layouts_content(), network_content(), rpost_content(), and webpages_content().

@@ -709,7 +715,7 @@ Functions
-

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

+

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

diff --git a/doc/html/conversation_8php.js b/doc/html/conversation_8php.js index 4417191d0..4dd039449 100644 --- a/doc/html/conversation_8php.js +++ b/doc/html/conversation_8php.js @@ -3,7 +3,7 @@ var conversation_8php = [ "add_children_to_list", "conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b", null ], [ "best_link_url", "conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7", null ], [ "conv_sort", "conversation_8php.html#abed85a41f1160598de880b84021c9cf7", null ], - [ "conversation", "conversation_8php.html#a1e97305a441dc143edbe09e17d1ceda1", null ], + [ "conversation", "conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81", null ], [ "count_descendants", "conversation_8php.html#ab2383dff4f823e580399ff469d90ab19", null ], [ "find_thread_parent_index", "conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6", null ], [ "format_like", "conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3", null ], diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html index bd01438b6..450cd42bd 100644 --- a/doc/html/crypto_8php.html +++ b/doc/html/crypto_8php.html @@ -224,7 +224,7 @@ Functions
-

Referenced by get_item_elements(), get_mail_elements(), item_post(), item_store(), item_store_update(), post_post(), send_message(), zfinger_init(), zot_build_packet(), and zot_fetch().

+

Referenced by get_item_elements(), get_mail_elements(), item_post(), item_store(), item_store_update(), post_post(), send_message(), zfinger_init(), zot_build_packet(), and zot_fetch().

@@ -252,7 +252,7 @@ Functions
-

Referenced by editpost_content(), encode_item(), encode_mail(), message_post(), new_contact(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), probe_content(), unobscure(), zot_import(), and zot_refresh().

+

Referenced by editpost_content(), encode_item(), encode_mail(), message_post(), new_contact(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), probe_content(), tag_deliver(), unobscure(), zot_import(), and zot_refresh().

diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index 2e6f5f32e..214433337 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -332,7 +332,7 @@ Functions
-

Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), magic_init(), mail_store(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), update_directory_entry(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), directory_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), magic_init(), mail_store(), message_content(), message_post(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), update_directory_entry(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -474,7 +474,7 @@ Functions
-

Referenced by admin_page_users(), advanced_profile(), bb_ShareAttributes(), conversation(), format_notification(), Item\get_template_data(), notifications_content(), notify_content(), and ping_init().

+

Referenced by admin_page_users(), advanced_profile(), bb_ShareAttributes(), conversation(), format_notification(), Item\get_template_data(), notifications_content(), notify_content(), and ping_init().

diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 169568bbe..3b1a23cf2 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -202,7 +202,7 @@ Functions
-

Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), blocks_content(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), get_item_elements(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), settings_post(), siteinfo_init(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), vote_post(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), RedDirectory\childExists(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), directory_run(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), get_item_elements(), RedDirectory\getChild(), RedDirectory\getChildren(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedInode\setName(), settings_post(), siteinfo_init(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -320,7 +320,7 @@ Functions

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

-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), blocks_content(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), dir_tagadelic(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), follow_widget(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), get_item_elements(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_check_service_class(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), page_content(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), RedDirectory\childExists(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), RedInode\delete(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), dir_tagadelic(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), follow_widget(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), get_item_elements(), RedDirectory\getChild(), RedDirectory\getChildren(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_check_service_class(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), page_content(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedInode\setName(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/default_8php.html b/doc/html/default_8php.html index a8abec733..dbec1176a 100644 --- a/doc/html/default_8php.html +++ b/doc/html/default_8php.html @@ -4,7 +4,7 @@ -The Red Project: view/php/default.php File Reference +The Red Matrix: view/php/default.php File Reference @@ -28,9 +28,9 @@ - + diff --git a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html index ba350f1a7..0a33e4c45 100644 --- a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html +++ b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.html @@ -110,14 +110,16 @@ Files - - + + + + diff --git a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js index 7733db5fb..c0f751065 100644 --- a/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js +++ b/doc/html/dir_05f4fba29266e8fd7869afcd6cefb5cb.js @@ -3,10 +3,11 @@ var dir_05f4fba29266e8fd7869afcd6cefb5cb = [ "darkness.php", "darkness_8php.html", null ], [ "darknessleftaside.php", "darknessleftaside_8php.html", null ], [ "darknessrightaside.php", "darknessrightaside_8php.html", null ], - [ "default.php", "theme_2apw_2schema_2default_8php.html", null ], [ "greenthumbnails.php", "greenthumbnails_8php.html", null ], [ "minimalisticdarkness.php", "minimalisticdarkness_8php.html", "minimalisticdarkness_8php" ], [ "olddefault.php", "olddefault_8php.html", null ], + [ "passion.php", "passion_8php.html", null ], + [ "passionwide.php", "passionwide_8php.html", null ], [ "pine.php", "pine_8php.html", null ], [ "redbasic.php", "redbasic_8php.html", null ], [ "widedarkness.php", "widedarkness_8php.html", null ] diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.html b/doc/html/dir_817f6d302394b98e59575acdb59998bc.html index 05cf3e5c7..5c55343df 100644 --- a/doc/html/dir_817f6d302394b98e59575acdb59998bc.html +++ b/doc/html/dir_817f6d302394b98e59575acdb59998bc.html @@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('dir_817f6d302394b98e59575acdb59998bc.h
-
The Red Project +
The Red Matrix
 
file  darknessrightaside.php
 
file  default.php
 
file  greenthumbnails.php
 
file  minimalisticdarkness.php
 
file  olddefault.php
 
file  passion.php
 
file  passionwide.php
 
file  pine.php
 
file  redbasic.php
- + diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.js b/doc/html/dir_817f6d302394b98e59575acdb59998bc.js index a98d00c4e..f42b8d444 100644 --- a/doc/html/dir_817f6d302394b98e59575acdb59998bc.js +++ b/doc/html/dir_817f6d302394b98e59575acdb59998bc.js @@ -1,6 +1,6 @@ var dir_817f6d302394b98e59575acdb59998bc = [ - [ "default.php", "php_2default_8php.html", "php_2default_8php" ], + [ "default.php", "default_8php.html", "default_8php" ], [ "full.php", "full_8php.html", "full_8php" ], [ "minimal.php", "minimal_8php.html", null ], [ "mod_import.php", "mod__import_8php.html", "mod__import_8php" ], diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index 0157db288..b21576413 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -126,6 +126,8 @@ Files + + @@ -278,6 +280,8 @@ Files + + diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index f4737d08a..461e37da7 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -11,6 +11,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "chanman.php", "mod_2chanman_8php.html", null ], [ "channel.php", "channel_8php.html", "channel_8php" ], [ "chanview.php", "chanview_8php.html", "chanview_8php" ], + [ "cloud.php", "cloud_8php.html", "cloud_8php" ], [ "common.php", "common_8php.html", "common_8php" ], [ "community.php", "community_8php.html", "community_8php" ], [ "connect.php", "connect_8php.html", "connect_8php" ], @@ -87,6 +88,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "regmod.php", "regmod_8php.html", "regmod_8php" ], [ "removeme.php", "removeme_8php.html", "removeme_8php" ], [ "rmagic.php", "rmagic_8php.html", "rmagic_8php" ], + [ "rpost.php", "rpost_8php.html", "rpost_8php" ], [ "rsd_xml.php", "rsd__xml_8php.html", "rsd__xml_8php" ], [ "search.php", "search_8php.html", "search_8php" ], [ "search_ac.php", "search__ac_8php.html", "search__ac_8php" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index 2e059cebf..c5588a75e 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -233,6 +233,8 @@ Files + + @@ -247,6 +249,8 @@ Files + +

Files

file  default.php
file  default.php
 
file  full.php
 
 
file  chanview.php
 
file  cloud.php
 
file  common.php
 
file  community.php
 
file  rmagic.php
 
file  rpost.php
 
file  rsd_xml.php
 
file  search.php
 
file  queue_fn.php
 
file  reddav.php
 
file  security.php
 
file  session.php
 
file  text.php
 
file  widgets.php
 
file  zot.php
 
diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index 80528ff54..bf6e62274 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -79,6 +79,11 @@ var dir_d44c64559bbebec7f509842c48db8b23 = ] ], [ "queue.php", "queue_8php.html", "queue_8php" ], [ "queue_fn.php", "queue__fn_8php.html", "queue__fn_8php" ], + [ "reddav.php", "reddav_8php.html", [ + [ "RedInode", "classRedInode.html", "classRedInode" ], + [ "RedDirectory", "classRedDirectory.html", "classRedDirectory" ], + [ "RedFile", "classRedFile.html", "classRedFile" ] + ] ], [ "security.php", "security_8php.html", "security_8php" ], [ "session.php", "session_8php.html", "session_8php" ], [ "socgraph.php", "socgraph_8php.html", "socgraph_8php" ], @@ -86,5 +91,6 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "taxonomy.php", "taxonomy_8php.html", "taxonomy_8php" ], [ "template_processor.php", "template__processor_8php.html", "template__processor_8php" ], [ "text.php", "text_8php.html", "text_8php" ], + [ "widgets.php", "widgets_8php.html", "widgets_8php" ], [ "zot.php", "zot_8php.html", "zot_8php" ] ]; \ No newline at end of file diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index aafba0347..20e95c86d 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
-

Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_content(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), lrdd(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), message_content(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), remove_community_tag(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_init(), validate_channelname(), wfinger_init(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

+

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

@@ -146,7 +146,7 @@ Variables
-

Referenced by admin_page_plugins(), admin_page_site(), admin_page_themes(), apw_form(), fbrowser_content(), filestorage_content(), and redbasic_form().

+

Referenced by admin_page_plugins(), admin_page_site(), admin_page_themes(), apw_form(), fbrowser_content(), filestorage_content(), and redbasic_form().

diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html index 00def6ba4..47d0a971d 100644 --- a/doc/html/features_8php.html +++ b/doc/html/features_8php.html @@ -142,7 +142,7 @@ Functions
-

Referenced by apw_form(), categories_widget(), channel_aside(), connections_content(), conversation(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), Item\get_comment_box(), Item\get_template_data(), item_post(), lastpost_aside(), message_content(), message_post(), nav(), network_content(), photos_content(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), saved_searches(), search_saved_searches(), settings_aside(), sources_content(), sources_post(), and thing_content().

+

Referenced by apw_form(), categories_widget(), channel_aside(), connections_content(), conversation(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), Item\get_comment_box(), Item\get_template_data(), item_post(), lastpost_aside(), message_content(), message_post(), nav(), network_content(), photos_content(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), rpost_content(), saved_searches(), search_saved_searches(), settings_aside(), sources_content(), sources_post(), and thing_content().

diff --git a/doc/html/files.html b/doc/html/files.html index c0c22cda7..7517a691b 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -179,14 +179,16 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*ProtoDriver.php |o*queue.php |o*queue_fn.php -|o*security.php -|o*session.php -|o*socgraph.php -|o*system_unavailable.php -|o*taxonomy.php -|o*template_processor.php -|o*text.php -|\*zot.php +|o*reddav.php +|o*security.php +|o*session.php +|o*socgraph.php +|o*system_unavailable.php +|o*taxonomy.php +|o*template_processor.php +|o*text.php +|o*widgets.php +|\*zot.php o+mod |o*_well_known.php |o*acl.php @@ -199,119 +201,121 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*chanman.php |o*channel.php |o*chanview.php -|o*common.php -|o*community.php -|o*connect.php -|o*connections.php -|o*contactgroup.php -|o*crepair.php -|o*delegate.php -|o*directory.php -|o*dirsearch.php -|o*display.php -|o*editblock.php -|o*editlayout.php -|o*editpost.php -|o*editwebpage.php -|o*events.php -|o*fbrowser.php -|o*feed.php -|o*filer.php -|o*filerm.php -|o*filestorage.php -|o*follow.php -|o*fsuggest.php -|o*group.php -|o*hcard.php -|o*help.php -|o*home.php -|o*hostxrd.php -|o*import.php -|o*intro.php -|o*invite.php -|o*item.php -|o*lastpost.php -|o*layouts.php -|o*like.php -|o*lockview.php -|o*login.php -|o*lostpass.php -|o*magic.php -|o*manage.php -|o*match.php -|o*menu.php -|o*message.php -|o*mitem.php -|o*mood.php -|o*msearch.php -|o*network.php -|o*new_channel.php -|o*nogroup.php -|o*notifications.php -|o*notify.php -|o*oembed.php -|o*oexchange.php -|o*opensearch.php -|o*page.php -|o*parse_url.php -|o*photo.php -|o*photos.php -|o*php.php -|o*ping.php -|o*poco.php -|o*poke.php -|o*post.php -|o*pretheme.php -|o*probe.php -|o*profile.php -|o*profile_photo.php -|o*profiles.php -|o*profperm.php -|o*pubsites.php -|o*qsearch.php -|o*randprof.php -|o*redir.php -|o*register.php -|o*regmod.php -|o*removeme.php -|o*rmagic.php -|o*rsd_xml.php -|o*search.php -|o*search_ac.php -|o*settings.php -|o*setup.php -|o*share.php -|o*siteinfo.php -|o*sitelist.php -|o*smilies.php -|o*sources.php -|o*starred.php -|o*subthread.php -|o*suggest.php -|o*tagger.php -|o*tagrm.php -|o*thing.php -|o*toggle_mobile.php -|o*uexport.php -|o*update_channel.php -|o*update_community.php -|o*update_display.php -|o*update_network.php -|o*update_search.php -|o*view.php -|o*viewconnections.php -|o*viewsrc.php -|o*vote.php -|o*wall_attach.php -|o*wall_upload.php -|o*webfinger.php -|o*webpages.php -|o*wfinger.php -|o*xchan.php -|o*xrd.php -|o*zfinger.php -|o*zotfeed.php -|\*zping.php +|o*cloud.php +|o*common.php +|o*community.php +|o*connect.php +|o*connections.php +|o*contactgroup.php +|o*crepair.php +|o*delegate.php +|o*directory.php +|o*dirsearch.php +|o*display.php +|o*editblock.php +|o*editlayout.php +|o*editpost.php +|o*editwebpage.php +|o*events.php +|o*fbrowser.php +|o*feed.php +|o*filer.php +|o*filerm.php +|o*filestorage.php +|o*follow.php +|o*fsuggest.php +|o*group.php +|o*hcard.php +|o*help.php +|o*home.php +|o*hostxrd.php +|o*import.php +|o*intro.php +|o*invite.php +|o*item.php +|o*lastpost.php +|o*layouts.php +|o*like.php +|o*lockview.php +|o*login.php +|o*lostpass.php +|o*magic.php +|o*manage.php +|o*match.php +|o*menu.php +|o*message.php +|o*mitem.php +|o*mood.php +|o*msearch.php +|o*network.php +|o*new_channel.php +|o*nogroup.php +|o*notifications.php +|o*notify.php +|o*oembed.php +|o*oexchange.php +|o*opensearch.php +|o*page.php +|o*parse_url.php +|o*photo.php +|o*photos.php +|o*php.php +|o*ping.php +|o*poco.php +|o*poke.php +|o*post.php +|o*pretheme.php +|o*probe.php +|o*profile.php +|o*profile_photo.php +|o*profiles.php +|o*profperm.php +|o*pubsites.php +|o*qsearch.php +|o*randprof.php +|o*redir.php +|o*register.php +|o*regmod.php +|o*removeme.php +|o*rmagic.php +|o*rpost.php +|o*rsd_xml.php +|o*search.php +|o*search_ac.php +|o*settings.php +|o*setup.php +|o*share.php +|o*siteinfo.php +|o*sitelist.php +|o*smilies.php +|o*sources.php +|o*starred.php +|o*subthread.php +|o*suggest.php +|o*tagger.php +|o*tagrm.php +|o*thing.php +|o*toggle_mobile.php +|o*uexport.php +|o*update_channel.php +|o*update_community.php +|o*update_display.php +|o*update_network.php +|o*update_search.php +|o*view.php +|o*viewconnections.php +|o*viewsrc.php +|o*vote.php +|o*wall_attach.php +|o*wall_upload.php +|o*webfinger.php +|o*webpages.php +|o*wfinger.php +|o*xchan.php +|o*xrd.php +|o*zfinger.php +|o*zotfeed.php +|\*zping.php o+util |o+fpostit ||\*fpostit.php @@ -327,7 +331,7 @@ $(document).ready(function(){initNavTree('files.html','');}); |\*updatetpl.py o+view |o+php -||o*default.php +||o*default.php ||o*full.php ||o*minimal.php ||o*mod_import.php @@ -344,13 +348,14 @@ $(document).ready(function(){initNavTree('files.html','');}); | | o*darkness.php | | o*darknessleftaside.php | | o*darknessrightaside.php -| | o*default.php -| | o*greenthumbnails.php -| | o*minimalisticdarkness.php -| | o*olddefault.php -| | o*pine.php -| | o*redbasic.php -| | \*widedarkness.php +| | o*greenthumbnails.php +| | o*minimalisticdarkness.php +| | o*olddefault.php +| | o*passion.php +| | o*passionwide.php +| | o*pine.php +| | o*redbasic.php +| | \*widedarkness.php | \+redbasic |  o+php |  |o*config.php diff --git a/doc/html/functions.html b/doc/html/functions.html index 209d03587..4923b0088 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -154,6 +154,12 @@ $(document).ready(function(){initNavTree('functions.html','');});
  • $argv : App
  • +
  • $attach +: RedInode +
  • +
  • $auth +: RedDirectory +
  • $baseurl : App
  • @@ -170,6 +176,9 @@ $(document).ready(function(){initNavTree('functions.html','');}); : App , Item +
  • $channel_id +: RedDirectory +
  • $children : Item
  • @@ -217,8 +226,9 @@ $(document).ready(function(){initNavTree('functions.html','');}); : Template
  • $data -: App -, Item +: Item +, RedFile +, App
  • $db : App @@ -228,6 +238,9 @@ $(document).ready(function(){initNavTree('functions.html','');}); : dba_driver , Template
  • +
  • $dir_key +: RedDirectory +
  • $done : Template
  • @@ -287,8 +300,8 @@ $(document).ready(function(){initNavTree('functions.html','');}); : App
  • $name -: Template -, FriendicaSmartyEngine +: FriendicaSmartyEngine +, Template
  • $nav_sel : App @@ -327,6 +340,9 @@ $(document).ready(function(){initNavTree('functions.html','');});
  • $plugins : App
  • +
  • $prepared_item +: Conversation +
  • $preview : Conversation
  • @@ -348,6 +364,9 @@ $(document).ready(function(){initNavTree('functions.html','');});
  • $rdelim : App
  • +
  • $red_path +: RedDirectory +
  • $redirect_url : Item
  • diff --git a/doc/html/functions_0x5f.html b/doc/html/functions_0x5f.html index f6b498986..aaa4e3619 100644 --- a/doc/html/functions_0x5f.html +++ b/doc/html/functions_0x5f.html @@ -141,10 +141,13 @@ $(document).ready(function(){initNavTree('functions_0x5f.html','');});

    - _ -

    diff --git a/doc/html/functions_0x64.html b/doc/html/functions_0x64.html index 1c6308182..50612a4cf 100644 --- a/doc/html/functions_0x64.html +++ b/doc/html/functions_0x64.html @@ -142,27 +142,30 @@ $(document).ready(function(){initNavTree('functions_0x64.html','');});
  • dbg() : dba_driver
  • +
  • delete() +: RedInode +
  • deliver() -: ProtoDriver -, ZotDriver +: ZotDriver +, ProtoDriver
  • deliver_private() : ProtoDriver , ZotDriver
  • destroy() -: photo_imagick +: photo_gd +, photo_imagick , photo_driver -, photo_gd
  • discover() -: ProtoDriver -, ZotDriver +: ZotDriver +, ProtoDriver
  • doScaleImage() -: photo_driver -, photo_imagick +: photo_imagick , photo_gd +, photo_driver
  • diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html index 3d4de9504..4397dcebf 100644 --- a/doc/html/functions_0x67.html +++ b/doc/html/functions_0x67.html @@ -144,6 +144,7 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get() : Cache +, RedFile
  • get_account() : App @@ -242,8 +243,8 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : Item
  • get_template_data() -: Item -, Conversation +: Conversation +, Item
  • get_template_engine() : App @@ -260,6 +261,18 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_widgets() : App
  • +
  • getChild() +: RedDirectory +
  • +
  • getChildren() +: RedDirectory +
  • +
  • getContentType() +: RedFile +
  • +
  • getETag() +: RedFile +
  • getExt() : photo_driver
  • @@ -267,9 +280,18 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : photo_driver
  • getImage() -: photo_gd +: photo_imagick , photo_driver -, photo_imagick +, photo_gd +
  • +
  • getLastModified() +: RedInode +
  • +
  • getName() +: RedInode +
  • +
  • getSize() +: RedFile
  • getType() : photo_driver diff --git a/doc/html/functions_0x70.html b/doc/html/functions_0x70.html index bb37ba1c0..81d3b41ed 100644 --- a/doc/html/functions_0x70.html +++ b/doc/html/functions_0x70.html @@ -142,6 +142,9 @@ $(document).ready(function(){initNavTree('functions_0x70.html','');});
  • parsed() : FriendicaSmarty
  • +
  • put() +: RedFile +
  • diff --git a/doc/html/functions_0x73.html b/doc/html/functions_0x73.html index ab734fe0a..1664702a7 100644 --- a/doc/html/functions_0x73.html +++ b/doc/html/functions_0x73.html @@ -228,13 +228,16 @@ $(document).ready(function(){initNavTree('functions_0x73.html','');}); , photo_driver , photo_imagick +
  • setName() +: RedInode +
  • store() : photo_driver
  • supportedTypes() -: photo_imagick -, photo_driver +: photo_driver , photo_gd +, photo_imagick
  • diff --git a/doc/html/functions_0x76.html b/doc/html/functions_0x76.html index 26c145fba..d17bd2049 100644 --- a/doc/html/functions_0x76.html +++ b/doc/html/functions_0x76.html @@ -139,6 +139,9 @@ $(document).ready(function(){initNavTree('functions_0x76.html','');});
    Here is a list of all class members with links to the classes they belong to:

    - v -