Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Haakon Meland Eriksen 2015-11-06 15:58:56 +01:00
commit 5776af30e8
174 changed files with 741 additions and 11 deletions

4
app/firefoxshare.apd Normal file
View File

@ -0,0 +1,4 @@
url: $baseurl/ffsapi
requires: local_channel
name: Firefox Share
photo: $baseurl/app/firefoxshare.png

BIN
app/firefoxshare.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -9,6 +9,7 @@
[zrl=[baseurl]/help/Widgets]Widgets[/zrl]
[zrl=[baseurl]/help/plugins]Plugins[/zrl]
[zrl=[baseurl]/help/hooks]Hooks[/zrl]
[zrl=[baseurl]/help/hooklist]Hooks (detailed - under construction)[/zrl]
[zrl=[baseurl]/help/doco]Contributing Documentation[/zrl]
[zrl=[baseurl]/help/DerivedTheme1]Creating Derivative Themes[/zrl]
[zrl=[baseurl]/help/schema_development]Schemas[/zrl]

1
doc/hook/about_hook.bb Normal file
View File

@ -0,0 +1 @@
[h2]about_hook[/h2]

View File

@ -0,0 +1 @@
[h2]accept_follow[/h2]

View File

@ -0,0 +1 @@
[h2]account_downgrade[/h2]

View File

@ -0,0 +1 @@
[h2]account_settings[/h2]

View File

@ -0,0 +1 @@
[h2]account_settings_post[/h2]

View File

@ -0,0 +1 @@
[h2]activity_received[/h2]

View File

@ -0,0 +1 @@
[h2]affinity_labels[/h2]

View File

@ -0,0 +1 @@
[h2]api_perm_is_allowed[/h2]

1
doc/hook/app_menu.bb Normal file
View File

@ -0,0 +1 @@
[h2]app_menu[/h2]

1
doc/hook/atom_author.bb Normal file
View File

@ -0,0 +1 @@
[h2]atom_author[/h2]

1
doc/hook/atom_entry.bb Normal file
View File

@ -0,0 +1 @@
[h2]atom_entry[/h2]

1
doc/hook/atom_feed.bb Normal file
View File

@ -0,0 +1 @@
[h2]atom_feed[/h2]

View File

@ -0,0 +1 @@
[h2]atom_feed_end[/h2]

View File

@ -0,0 +1 @@
[h2]attach_upload_file[/h2]

29
doc/hook/authenticate.bb Normal file
View File

@ -0,0 +1,29 @@
[h2]authenticate[/h2]
Invoked when a POST request is made with non-null $_POST['auth-params'] such as from the login form.
If the hook handler does not set the 'authenticated' parameter of the passed array, normal login functions continue;
The 'user_record' is in fact an account DB record. To provide automatic provisioning of accounts from other authentication realms, this record should be generated and stored during the verification phase.
[code]
$addon_auth = array(
'username' => trim($_POST['username']),
'password' => trim($_POST['password']),
'authenticated' => 0,
'user_record' => null
);
/**
*
* 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.
*
*/
call_hooks('authenticate', $addon_auth);
[/code]
See include/auth.php

View File

@ -0,0 +1 @@
[h2]avatar_lookup[/h2]

1
doc/hook/bb2diaspora.bb Normal file
View File

@ -0,0 +1 @@
[h2]bb2diaspora[/h2]

1
doc/hook/bbcode.bb Normal file
View File

@ -0,0 +1 @@
[h2]bbcode[/h2]

View File

@ -0,0 +1 @@
[h2]channel_remove[/h2]

1
doc/hook/chat_message.bb Normal file
View File

@ -0,0 +1 @@
[h2]chat_message[/h2]

1
doc/hook/chat_post.bb Normal file
View File

@ -0,0 +1 @@
[h2]chat_post[/h2]

View File

@ -0,0 +1 @@
[h2]check_account_email[/h2]

View File

@ -0,0 +1 @@
[h2]check_account_invite[/h2]

View File

@ -0,0 +1 @@
[h2]check_account_password[/h2]

View File

@ -0,0 +1 @@
[h2]connect_premium[/h2]

View File

@ -0,0 +1 @@
[h2]connector_settings[/h2]

View File

@ -0,0 +1 @@
[h2]construct_page[/h2]

View File

@ -0,0 +1 @@
[h2]contact_block_end[/h2]

1
doc/hook/contact_edit.bb Normal file
View File

@ -0,0 +1 @@
[h2]contact_edit[/h2]

View File

@ -0,0 +1 @@
[h2]contact_edit_post[/h2]

View File

@ -0,0 +1 @@
[h2]contact_select_options[/h2]

View File

@ -0,0 +1 @@
[h2]conversation_start[/h2]

View File

@ -0,0 +1 @@
[h2]create_identity[/h2]

1
doc/hook/cron.bb Normal file
View File

@ -0,0 +1 @@
[h2]cron[/h2]

1
doc/hook/cron_daily.bb Normal file
View File

@ -0,0 +1 @@
[h2]cron_daily[/h2]

1
doc/hook/cron_weekly.bb Normal file
View File

@ -0,0 +1 @@
[h2]cron_weekly[/h2]

View File

@ -0,0 +1 @@
[h2]directory_item[/h2]

View File

@ -0,0 +1 @@
[h2]discover_by_webbie[/h2]

1
doc/hook/display_item.bb Normal file
View File

@ -0,0 +1 @@
[h2]display_item[/h2]

View File

@ -0,0 +1 @@
[h2]display_settings[/h2]

View File

@ -0,0 +1 @@
[h2]display_settings_post[/h2]

View File

@ -0,0 +1 @@
[h2]donate_contributors[/h2]

View File

@ -0,0 +1 @@
[h2]donate_plugin[/h2]

View File

@ -0,0 +1 @@
[h2]donate_sponsors[/h2]

View File

@ -0,0 +1 @@
[h2]dreport_is_storable[/h2]

1
doc/hook/drop_item.bb Normal file
View File

@ -0,0 +1 @@
[h2]drop_item[/h2]

1
doc/hook/enotify.bb Normal file
View File

@ -0,0 +1 @@
[h2]enotify[/h2]

1
doc/hook/enotify_mail.bb Normal file
View File

@ -0,0 +1 @@
[h2]enotify_mail[/h2]

View File

@ -0,0 +1 @@
[h2]enotify_store[/h2]

View File

@ -0,0 +1 @@
[h2]event_created[/h2]

View File

@ -0,0 +1 @@
[h2]event_updated[/h2]

View File

@ -0,0 +1 @@
[h2]externals_url_select[/h2]

View File

@ -0,0 +1 @@
[h2]feature_enabled[/h2]

View File

@ -0,0 +1 @@
[h2]feature_settings[/h2]

View File

@ -0,0 +1 @@
[h2]feature_settings_post[/h2]

1
doc/hook/follow.bb Normal file
View File

@ -0,0 +1 @@
[h2]follow[/h2]

1
doc/hook/follow_allow.bb Normal file
View File

@ -0,0 +1 @@
[h2]follow_allow[/h2]

View File

@ -0,0 +1 @@
[h2]gender_selector[/h2]

View File

@ -0,0 +1 @@
[h2]gender_selector_min[/h2]

1
doc/hook/generate_map.bb Normal file
View File

@ -0,0 +1 @@
[h2]generate_map[/h2]

View File

@ -0,0 +1 @@
[h2]generate_named_map[/h2]

View File

@ -0,0 +1 @@
[h2]get_all_api_perms[/h2]

View File

@ -0,0 +1 @@
[h2]get_all_perms[/h2]

1
doc/hook/get_features.bb Normal file
View File

@ -0,0 +1 @@
[h2]get_features[/h2]

View File

@ -0,0 +1 @@
[h2]get_role_perms[/h2]

1
doc/hook/get_widgets.bb Normal file
View File

@ -0,0 +1 @@
[h2]get_widgets[/h2]

View File

@ -0,0 +1 @@
[h2]global_permissions[/h2]

1
doc/hook/home_content.bb Normal file
View File

@ -0,0 +1 @@
[h2]home_content[/h2]

1
doc/hook/home_init.bb Normal file
View File

@ -0,0 +1 @@
[h2]home_init[/h2]

1
doc/hook/hostxrd.bb Normal file
View File

@ -0,0 +1 @@
[h2]hostxrd[/h2]

1
doc/hook/html2bbcode.bb Normal file
View File

@ -0,0 +1 @@
[h2]html2bbcode[/h2]

View File

@ -0,0 +1 @@
[h2]identity_basic_export[/h2]

View File

@ -0,0 +1 @@
[h2]import_author_xchan[/h2]

View File

@ -0,0 +1 @@
[h2]import_channel[/h2]

View File

@ -0,0 +1 @@
[h2]import_directory_profile[/h2]

1
doc/hook/import_xchan.bb Normal file
View File

@ -0,0 +1 @@
[h2]import_xchan[/h2]

View File

@ -0,0 +1 @@
[h2]item_photo_menu[/h2]

1
doc/hook/item_store.bb Normal file
View File

@ -0,0 +1 @@
[h2]item_store[/h2]

View File

@ -0,0 +1 @@
[h2]item_store_update[/h2]

View File

@ -0,0 +1 @@
[h2]item_translate[/h2]

1
doc/hook/jot_networks.bb Normal file
View File

@ -0,0 +1 @@
[h2]jot_networks[/h2]

1
doc/hook/jot_tool.bb Normal file
View File

@ -0,0 +1 @@
[h2]jot_tool[/h2]

1
doc/hook/load_pdl.bb Normal file
View File

@ -0,0 +1 @@
[h2]load_pdl[/h2]

View File

@ -0,0 +1 @@
[h2]local_dir_update[/h2]

1
doc/hook/logged_in.bb Normal file
View File

@ -0,0 +1 @@
[h2]logged_in[/h2]

1
doc/hook/logging_out.bb Normal file
View File

@ -0,0 +1 @@
[h2]logging_out[/h2]

1
doc/hook/login_hook.bb Normal file
View File

@ -0,0 +1 @@
[h2]login_hook[/h2]

1
doc/hook/magic_auth.bb Normal file
View File

@ -0,0 +1 @@
[h2]magic_auth[/h2]

View File

@ -0,0 +1 @@
[h2]magic_auth_openid_success[/h2]

View File

@ -0,0 +1 @@
[h2]magic_auth_success[/h2]

1
doc/hook/main_slider.bb Normal file
View File

@ -0,0 +1 @@
[h2]main_slider[/h2]

View File

@ -0,0 +1 @@
[h2]marital_selector[/h2]

View File

@ -0,0 +1 @@
[h2]marital_selector_min[/h2]

View File

@ -0,0 +1 @@
[h2]module_loaded[/h2]

View File

@ -0,0 +1,12 @@
[h2]module_mod_aftercontent[/h2]
The hook data for this call consists of an array
$arr['content']
This element contains the HTML content which was prepared for this page by calling the module_content() function. It is invoked after the content has been created. It does not contain the result of AJAX or asynchronous page load calls.
The current module may be determined by lookin at $a->module

View File

@ -0,0 +1,10 @@
[h2]module_mod_content[/h2]
The hook data for this call consists of an array
$arr['content']
This element contains the HTML content before calling the module_content() function. It is invoked before the content region has been populated. This may or may not be empty as there may be other processes or addons generating content prior to your hook handler is run. Be certain to preserve any current content. Typically anything you add here will be placed at the top of the content region of the page, but in any event prior to the main content region being generated.
The current module may be determined by lookin at $a->module

View File

@ -0,0 +1 @@
[h2]module_mod_init[/h2]

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