aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
Commit message (Collapse)AuthorAgeFilesLines
...
* vcard spec changesredmatrix2016-06-211-0/+1
|
* 1. provide automatic relocation of important links in items that are ↵redmatrix2016-06-211-1/+7
| | | | | | | imported or synced to clones 2. provide framework for custom curl request bodies using custom/non-standard request methods. This was a real nightmare because curl doesn't actually let you specify a string to send as the request body (except when doing POST). You have to treat it as a file upload using a custom file handler function which provides the actual content in chunks as if it were buffered I/O. 3. item_store and item_store_update now return the item that was stored
* the text link to a thing will take you to the local thing page, both as a ↵redmatrix2016-06-171-0/+1
| | | | link for editing and as a destination in case there is no thing photo. If there's a photo, the photo link will take you to the thing URL.
* deprecate the item_id table - replace with iconfig. A possibly useful ↵redmatrix2016-06-131-20/+1
| | | | function in the iconfig class would be a search which takes a service id and type and uid, matches against an item and returns the iid. That could save a bit of code duplication.
* the rest of the schema updates - WARNING: some third party plugins may fail; ↵redmatrix2016-06-011-159/+15
| | | | e.g. embedphotos and chess. $item['object'] is now $item['obj'] and $photo['type'] is $photo['mimetype'], $photo['scale'] is $photo['imgscale'] and $photo['data'] is now $photo['content']. There are a number of other changes, but these are the ones noted to cause issues with third-party plugins. The project plugins have been updated. Please note any new issues as this effort touched a lot of code in a lot of files.
* more db column renamesredmatrix2016-05-311-10/+10
|
* require token signatures in zot_refresh, also move channel specific stuff ↵redmatrix2016-05-241-0/+23
| | | | into include/channel.php from include/connections.php
* turn the oft-repeated block_public ... check into a function ↵redmatrix2016-05-221-1/+1
| | | | observer_prohibited()
* renamed include files identity.php (channel.php) and Contact.php ↵redmatrix2016-05-221-0/+1947
(connections.php)