Update info comments in all plugins

This commit is contained in:
Fabio Comuni 2011-06-14 15:08:03 +02:00
parent 00e142e4f7
commit b7dc9f8867
19 changed files with 151 additions and 30 deletions

View File

@ -1,4 +1,11 @@
<?php <?php
/**
* Name: Calculator App
* Description: Simple Calculator Application
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
function calc_install() { function calc_install() {
register_hook('app_menu', 'addon/calc/calc.php', 'calc_app_menu'); register_hook('app_menu', 'addon/calc/calc.php', 'calc_app_menu');

View File

@ -1,5 +1,10 @@
<?php <?php
/**
* Name: Converter App
* Description: Unit converter application
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
function convert_install() { function convert_install() {
register_hook('app_menu', 'addon/convert/convert.php', 'convert_app_menu'); register_hook('app_menu', 'addon/convert/convert.php', 'convert_app_menu');

33
addon/facebook/README Normal file
View File

@ -0,0 +1,33 @@
Installing the Friendika/Facebook connector
1. register an API key for your site from developer.facebook.com
a. We'd be very happy if you include "Friendika" in the application name
to increase name recognition. The Friendika icons are also present
in the images directory and may be uploaded as a Facebook app icon.
Use images/friendika-16.jpg for the Icon and images/friendika-128.jpg for the Logo.
b. The url should be your site URL with a trailing slash.
You may use http://portal.friendika.com/privacy as the privacy policy
URL unless your site has different requirements, and
http://portal.friendika.com as the Terms of Service URL unless
you have different requirements. (Friendika is a software application
and does not require Terms of Service, though your installation of it might).
c. Set the following values in your .htconfig.php file
$a->config['facebook']['appid'] = 'xxxxxxxxxxx';
$a->config['facebook']['appsecret'] = 'xxxxxxxxxxxxxxx';
Replace with the settings Facebook gives you.
2. Enable the facebook plugin by including it in .htconfig.php - e.g.
$a->config['system']['addon'] = 'plugin1,plugin2,facebook';
3. Visit the Facebook Settings section of the "Settings->Plugin Settings" page.
and click 'Install Facebook Connector'.
4. This will ask you to login to Facebook and grant permission to the
plugin to do its stuff. Allow it to do so.
5. You're done. To turn it off visit the Plugin Settings page again and
'Remove Facebook posting'.
Vidoes and embeds will not be posted if there is no other content. Links
and images will be converted to a format suitable for the Facebook API and
long posts truncated - with a link to view the full post.
Facebook contacts will not be able to view private photos, as they are not able to
authenticate to your site to establish identity. We will address this
in a future release.

View File

@ -1,4 +1,9 @@
<?php <?php
/**
* Name: Facebook Connector
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
/** /**
* Installing the Friendika/Facebook connector * Installing the Friendika/Facebook connector

View File

@ -1,7 +1,10 @@
<?php <?php
/**
* Name: Fortunate
* Description: Add a random fortune cookie at the bottom of every pages.
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
function fortunate_install() { function fortunate_install() {

View File

@ -1,5 +1,12 @@
<?php <?php
/**
* Name: Java photo uploader
* Description: WARNING: This module currently has privacy issues. The java package does not pass the permissions array intact and could lead to photos being seen by people that were excluded from seeing them.
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
/** /**
* *
* Java photo uploader, uses Jumploader * Java photo uploader, uses Jumploader
@ -93,4 +100,4 @@ function java_upload_photo_post_end(&$a,&$b) {
if(x($a->data,'java_upload') && $a->data['java_upload']) if(x($a->data,'java_upload') && $a->data['java_upload'])
killme(); killme();
} }

View File

@ -1,5 +1,12 @@
<?php <?php
/**
* Name: JS Uploader
* Description: JavaScript photo/image uploader. Uses Valum 'qq' Uploader.
* Version: 1.0
* Author: Chris Case <http://friendika.openmindspace.org/profile/chris_case>
*/
/** /**
* *
* JavaScript Photo/Image Uploader * JavaScript Photo/Image Uploader

17
addon/ldapauth/README Normal file
View File

@ -0,0 +1,17 @@
Authenticate a user against an LDAP directory
Useful for Windows Active Directory and other LDAP-based organisations
to maintain a single password across the organisation.
Optionally authenticates only if a member of a given group in the directory.
The person must have registered with Friendika using the normal registration
procedures in order to have a Friendika user record, contact, and profile.
Note when using with Windows Active Directory: you may need to set TLS_CACERT in your site
ldap.conf file to the signing cert for your LDAP server.
The required configuration options for this module may be set in the .htconfig.php file
e.g.:
$a->config['ldapauth']['ldap_server'] = 'host.example.com';
...etc.

View File

@ -1,5 +1,11 @@
<?php <?php
/**
* Name: LDAP Authenticate
* Description: Authenticate a user against an LDAP directory
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
/** /**
* Friendika addon * Friendika addon
* *

View File

@ -1,4 +1,11 @@
<?php <?php
/**
* Name: Piwik Analytics
* Description: Piwik Analytics Plugin for Friendika
* Version: 1.0
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
*/
/* Piwik Analytics Plugin for Friendika /* Piwik Analytics Plugin for Friendika
* *

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* Poor Man Cron. Execute updates on pageviews * Name: Poor Man Cron
* * Description: Execute updates on pageviews, without the need of commandline php
* Addon Name: poormancron * Version: 1.2
* * Author: Fabio Comuni <http://kirgroup.com/profile/fabrix>
*/ */
function poormancron_install() { function poormancron_install() {

View File

@ -1,13 +1,12 @@
<?php <?php
/**
* Sample Friendika plugin/addon
*
* Addon Name: randplace
*
*/
/** /**
* Name: Random place
* Description: Sample Friendika plugin/addon. Set a random place when posting.
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*
*
*
* *
* Addons are registered with the system in the * Addons are registered with the system in the
* .htconfig.php file. * .htconfig.php file.
@ -178,4 +177,4 @@ function randplace_settings(&$a,&$s) {
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>'; $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
} }

View File

@ -1,4 +1,10 @@
<?php <?php
/**
* Name: Sniper App
* Description: Example of flash game application
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
function sniper_install() { function sniper_install() {
register_hook('app_menu', 'addon/sniper/sniper.php', 'sniper_app_menu'); register_hook('app_menu', 'addon/sniper/sniper.php', 'sniper_app_menu');
@ -28,4 +34,4 @@ $o .= <<< EOT
EOT; EOT;
return $o; return $o;
} }

View File

@ -1,5 +1,10 @@
<?php <?php
/**
* Name: StatusNet Connector
* Version: 1.0
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
*/
/* StatusNet Plugin for Friendika /* StatusNet Plugin for Friendika
* *
* Author: Tobias Diekershoff * Author: Tobias Diekershoff

View File

@ -1,4 +1,10 @@
<?php <?php
/**
* Name: TicTac App
* Description: The TicTacToe game application
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
function tictac_install() { function tictac_install() {

View File

@ -1,4 +1,10 @@
<?php <?php
/**
* Name: Twitter Connector
* Version: 1.0
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
*/
/* Twitter Plugin for Friendika /* Twitter Plugin for Friendika
* *

View File

@ -1,10 +1,11 @@
<?php <?php
/** /**
* widgets from friendika * Name: Widgets
* * Description: Allow to embed info from friendika into another site
* allow to embed info from friendika into another site * Version: 1.0
*/ * Author: Fabio Comuni <http://kirgroup.com/profile/fabrix/>
*/
function widgets_install() { function widgets_install() {
register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings');

View File

@ -3,11 +3,11 @@
<p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/plugins/$plugin/?a=t">$action</a></p> <p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/plugins/$plugin/?a=t">$action</a></p>
<p>$info.description</p> <p>$info.description</p>
<p>
{{ for $info.author as $a }} {{ for $info.author as $a }}
<a href="$a.link">$a.name</a> <p class="author">{{ if $a.link }}<a href="$a.link"><span class='icon remote-link'></span></a>{{ endif }}$a.name</p>
{{ endfor }} {{ endfor }}
</p>
{{ if $readme }} {{ if $readme }}

View File

@ -2550,6 +2550,7 @@ a.mail-list-link {
float:left; float:left;
margin-right: 1em; margin-right: 1em;
} }
#adminpage .author .icon { float: left;}
/** /**
* ICONS * ICONS