Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | code_allowed is a real mess. Start the cleanup by remving the account level ↵ | zotlabs | 2017-03-29 | 1 | -31/+3 |
| | | | | code allow and limiting to specific channels only. This reduces the possibility of cross channel security issues coming into play. Then provide a single function for checking the code permission. This is only partially done as we often need to check against the observer or logged in channel as well as the resource owner to ensure that this only returns true for local channels which also own the requested resource. | ||||
* | remove redundant and non-functional/broken check for successfully cloned ↵ | zotlabs | 2017-03-20 | 1 | -6/+0 |
| | | | | channel record which was left over from an earlier method of creating the table; which was deprecated a few months back. | ||||
* | remove logger lines | Andrew Manning | 2017-02-11 | 1 | -1/+0 |
| | |||||
* | Webpage import tool works again after setting iconfig properly and following ↵ | Andrew Manning | 2017-02-11 | 1 | -14/+19 |
| | | | | the Impel class function example. More testing is needed. | ||||
* | superfluous whitespace cleanup | zotlabs | 2017-01-31 | 1 | -350/+357 |
| | |||||
* | channel move stuff (disabled currently because not yet complete) | zotlabs | 2017-01-09 | 1 | -3/+16 |
| | |||||
* | logger typos | zotlabs | 2016-12-30 | 1 | -2/+2 |
| | |||||
* | sql: limit 1 for UPDATE and DELETE is not supported by the SQL standard and ↵ | Florian Steinel | 2016-10-27 | 1 | -7/+7 |
| | | | | | | postgresql (see: https://www.postgresql.org/message-id/flat/1291109101.26137.35.camel%40pcd12478 ) | ||||
* | issue #564 | zotlabs | 2016-10-21 | 1 | -1/+1 |
| | |||||
* | additional array checking | zotlabs | 2016-10-13 | 1 | -2/+4 |
| | |||||
* | consolidate duplicated code for creating table entries from an array | zotlabs | 2016-10-12 | 1 | -119/+24 |
| | |||||
* | caught one typo from the last checkin | zotlabs | 2016-10-12 | 1 | -1/+1 |
| | |||||
* | remove the rest of the backticks from sql queries; replace with TQUOT const ↵ | zotlabs | 2016-10-12 | 1 | -56/+56 |
| | | | | which is driver dependent | ||||
* | issue #538 continued | redmatrix | 2016-09-29 | 1 | -1/+1 |
| | |||||
* | issue #519 continued | redmatrix | 2016-09-28 | 1 | -1/+4 |
| | |||||
* | Merge branch 'nulldate' into dev | redmatrix | 2016-09-26 | 1 | -4/+4 |
|\ | |||||
| * | null_date conversion; phase 1 | redmatrix | 2016-09-25 | 1 | -4/+4 |
| | | |||||
* | | issue #526 | redmatrix | 2016-09-22 | 1 | -0/+3 |
|/ | |||||
* | Imported webpage elements update existing elements properly. AllowCode ↵ | Andrew Manning | 2016-08-30 | 1 | -12/+11 |
| | | | | permission is checked correctly and issues error on import if denied. | ||||
* | Block export and re-import works. Fixed bug where layout content was not ↵ | Andrew Manning | 2016-08-20 | 1 | -2/+53 |
| | | | | being imported properly. | ||||
* | Layouts list and are selectable for export to the zip file | Andrew Manning | 2016-08-20 | 1 | -2/+46 |
| | |||||
* | Export of pages and their layouts to a zip file works. Bug on importing the ↵ | Andrew Manning | 2016-08-20 | 1 | -1/+44 |
| | | | | exported zip file for pages. | ||||
* | Pages populate the available-to-export list. New checkbox class for smaller ↵ | Andrew Manning | 2016-08-19 | 1 | -0/+62 |
| | | | | boxes. | ||||
* | fix attached photo/file permissions on clones | redmatrix | 2016-08-15 | 1 | -0/+4 |
| | |||||
* | /storeurl/cloudurl/ | redmatrix | 2016-08-01 | 1 | -2/+2 |
| | |||||
* | add a few more path macros to portable menu elements (channelurl, pageurl, ↵ | redmatrix | 2016-07-31 | 1 | -0/+9 |
| | | | | storeurl and baseurl) | ||||
* | Improved UI. Removed logger statements. | Andrew Manning | 2016-07-31 | 1 | -3/+3 |
| | |||||
* | Merge remote-tracking branch 'upstream/dev' into website-import | Andrew Manning | 2016-07-21 | 1 | -9/+38 |
|\ | |||||
| * | issue #453 and a bug noted from the logfiles related to the schema change ↵ | redmatrix | 2016-07-20 | 1 | -1/+1 |
| | | | | | | | | last month | ||||
| * | more perms work | redmatrix | 2016-07-18 | 1 | -0/+1 |
| | | |||||
| * | export/import channel permissions | redmatrix | 2016-07-17 | 1 | -8/+36 |
| | | |||||
* | | Importing webpage elements from manually entered cloud file path work. All ↵ | Andrew Manning | 2016-07-17 | 1 | -4/+4 |
| | | | | | | | | detected elements are automatically imported. | ||||
* | | Added functions to check cloud files path and return path with hashed names | Andrew Manning | 2016-07-17 | 1 | -5/+18 |
| | | |||||
* | | Refactored the scan and import functions to reduce redundant code and ↵ | Andrew Manning | 2016-07-14 | 1 | -0/+200 |
|/ | | | | simplify logic. Import of pages, layouts, and blocks works. | ||||
* | sync flags even if post has not been edited | redmatrix | 2016-06-30 | 1 | -19/+10 |
| | |||||
* | 1. provide automatic relocation of important links in items that are ↵ | redmatrix | 2016-06-21 | 1 | -35/+24 |
| | | | | | | | 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 | ||||
* | deprecate the item_id table - replace with iconfig. A possibly useful ↵ | redmatrix | 2016-06-13 | 1 | -9/+4 |
| | | | | 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. | ||||
* | DB schema issue with import | redmatrix | 2016-06-12 | 1 | -12/+26 |
| | |||||
* | the rest of the schema updates - WARNING: some third party plugins may fail; ↵ | redmatrix | 2016-06-01 | 1 | -6/+20 |
| | | | | 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 renames | redmatrix | 2016-05-31 | 1 | -3/+9 |
| | |||||
* | fix remote_channel(), update php minversion requirement | redmatrix | 2016-05-29 | 1 | -0/+2 |
| | |||||
* | daemon conversion continued... | redmatrix | 2016-05-19 | 1 | -3/+3 |
| | |||||
* | Synchronization: Directory creation on sync import corrected. | sasiflo | 2016-05-17 | 1 | -8/+14 |
| | |||||
* | an issue related to #386 | redmatrix | 2016-05-16 | 1 | -1/+1 |
| | |||||
* | issue #383 | redmatrix | 2016-05-14 | 1 | -1/+0 |
| | |||||
* | Ensure that channels can't be created with DAV reserved paths as a redress. ↵ | redmatrix | 2016-05-11 | 1 | -3/+7 |
| | | | | Sabre mentions in several places that trying to change these paths to other strings; while possible - is unsupported and likely to cause problems. So for now, we're stuck with 'principals', 'addressbooks', and 'calendars'. If you already have these redresses on your site, you're basically buggered. | ||||
* | add categories to apps (wip) | redmatrix | 2016-05-04 | 1 | -9/+64 |
| | |||||
* | implement the singleton delivery stuff | redmatrix | 2016-04-26 | 1 | -5/+20 |
| | |||||
* | move iconfig functions to include/config.php with all the rest of the ↵ | redmatrix | 2016-04-26 | 1 | -2/+5 |
| | | | | configs, fix an issue with singleton discovery and start work on singleton delivery | ||||
* | a few issues: block public not blocking mod_cal, typo in sql for one clone ↵ | redmatrix | 2016-04-10 | 1 | -1/+1 |
| | | | | file sync operation, fix_system_urls not catching cached contact photos, extend sessionhandler expiration when remember_me is enabled as the stored session is expiring long before the browser session. |