diff options
author | Friendika <info@friendika.com> | 2011-09-01 18:02:08 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-01 18:02:08 -0700 |
commit | a33edb00424882258a90b138c634a466c92faf61 (patch) | |
tree | 6dc44fa99d818c5a7d5f641f53cd3393a2f61a2c | |
parent | ef1b99aa44031662187be878485be14edf35b42b (diff) | |
download | volse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.tar.gz volse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.tar.bz2 volse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.zip |
infrastructure for personalised @ tags (no UI/settings form yet), allow own comments through statusnet connector
-rw-r--r-- | addon/statusnet/statusnet.php | 5 | ||||
-rw-r--r-- | boot.php | 4 | ||||
-rw-r--r-- | database.sql | 1 | ||||
-rw-r--r-- | mod/item.php | 3 | ||||
-rw-r--r-- | mod/photos.php | 3 | ||||
-rw-r--r-- | update.php | 8 | ||||
-rw-r--r-- | zot.txt | 4 |
7 files changed, 19 insertions, 9 deletions
diff --git a/addon/statusnet/statusnet.php b/addon/statusnet/statusnet.php index 2f02ded54..f1b35d6c0 100644 --- a/addon/statusnet/statusnet.php +++ b/addon/statusnet/statusnet.php @@ -355,7 +355,10 @@ function statusnet_post_hook(&$a,&$b) { logger('StatusNet post invoked'); - if((local_user()) && (local_user() == $b['uid']) && (! $b['private']) && (!$b['parent']) ) { + if((local_user()) && (local_user() == $b['uid']) && (! $b['private'])) { + + // mike 2-9-11 there was a restriction to only allow this for top level posts + // now relaxed so should allow one's own comments to be forwarded through the connector as well. // Status.Net is not considered a private network if($b['prvnets']) @@ -7,9 +7,9 @@ require_once('include/text.php'); require_once("include/pgettext.php"); -define ( 'FRIENDIKA_VERSION', '2.2.1089' ); +define ( 'FRIENDIKA_VERSION', '2.2.1090' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); -define ( 'DB_UPDATE_VERSION', 1084 ); +define ( 'DB_UPDATE_VERSION', 1085 ); define ( 'EOL', "<br />\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/database.sql b/database.sql index 9819914f7..432ce7693 100644 --- a/database.sql +++ b/database.sql @@ -58,6 +58,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `network` char(255) NOT NULL, `name` char(255) NOT NULL, `nick` char(255) NOT NULL, + `attag` char(255) NOT NULL, `photo` text NOT NULL, `thumb` text NOT NULL, `micro` text NOT NULL, diff --git a/mod/item.php b/mod/item.php index b6ea8ff08..6ecca8f4a 100644 --- a/mod/item.php +++ b/mod/item.php @@ -404,7 +404,8 @@ function item_post(&$a) { ); } else { - $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1", + dbesc($name), dbesc($name), intval($profile_uid) ); diff --git a/mod/photos.php b/mod/photos.php index cb13b7603..b74ca85d7 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -414,7 +414,8 @@ function photos_post(&$a) { ); } else { - $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1", + dbesc($name), dbesc($name), intval($page_owner_uid) ); diff --git a/update.php b/update.php index 14bc48ab7..80761cce4 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1084 ); +define( 'UPDATE_VERSION' , 1085 ); /** * @@ -706,4 +706,8 @@ function update_1083() { `contact` INT NOT NULL ) ENGINE = MYISAM ;"); -}
\ No newline at end of file +} + +function update_1084() { + q("ALTER TABLE `contact` ADD `attag` CHAR( 255 ) NOT NULL AFTER `nick` "); +} @@ -114,7 +114,7 @@ listed in the To:, Cc:, or Bcc: addresses matches the webfinger address of the "owner" of the endpoint. 3. The current endpoint is a bulk delivery endpoint. The bulk delivery -ednpoint is defined elsewhere in this document. The bulk delivery agent +endpoint is defined elsewhere in this document. The bulk delivery agent will deliver to all local addresses found in the address lists. zot:sig @@ -243,7 +243,7 @@ and allow authenticated browsing to other resources on the website. Only authentication via OpenID is defined in this version of the specification. -This can be used to provide access control to any web resource to any +This can be used to provide access control of any web resource to any webfinger identity on the internet. ********* |