aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* correct the permissions on profile pagefriendica2014-07-171-1/+1
|
* ensure that we don't have permission settings issues due to version skew ↵friendica2014-07-171-1/+1
| | | | across sites.
* provide a specific permission for liking profiles (reuse the obsolete ↵friendica2014-07-171-1/+4
| | | | bookmark permission), also remove the unused 'unconnected contacts' view for now.
* collection sync issuefriendica2014-07-171-0/+25
|
* don't subdue archived connections in viewconnectionsfriendica2014-07-161-2/+3
|
* subdue archived connections in group editor and don't show at all in ↵friendica2014-07-161-2/+2
| | | | contact_block()
* collection syncfriendica2014-07-161-0/+114
|
* shield share meta info from markdown processing.friendica2014-07-161-0/+17
|
* allow a site to run cron daily at a chosen hourfriendica2014-07-161-3/+17
|
* provide os_mkdir to workaround permission issues with php mkdirfriendica2014-07-163-4/+8
|
* limit fields to what we requirefriendica2014-07-141-1/+1
|
* index collection sync info by hash rather than idfriendica2014-07-141-1/+1
|
* clean up more code duplicationfriendica2014-07-143-8/+22
|
* the sending side of clone syncing of collection/privacy_group information. ↵friendica2014-07-142-1/+26
| | | | The receiving side is not yet implemented.
* remove some code duplicationfriendica2014-07-145-58/+25
|
* rename friendica_smartyfriendica2014-07-133-2/+4
|
* Quotes on strings. Dunno why it worked without.Thomas Willingham2014-07-131-1/+1
|
* Provide profile tabs opt-out.Thomas Willingham2014-07-131-1/+4
|
* added A NAME/ID to whitelist in HTMLpurifier. That means we can now make ↵jeroenpraat2014-07-111-0/+1
| | | | vintage indexes in web pages.
* move smarty compiled files to store/[data]/smarty3 - which puts all ↵friendica2014-07-101-1/+1
| | | | writeable areas of the server except the config file and logs under the "store" directory. We'll do logs at a future time.
* docofriendica2014-07-101-1/+7
|
* finish implementing email verification. Currently it only applies if ↵friendica2014-07-092-2/+14
| | | | REGISTER_OPEN is in effect.
* numerous event fixes - mostly related to editing an eventfriendica2014-07-061-1/+1
|
* homepage revisionsfriendica2014-07-061-8/+9
|
* when deleting items, delete linked events and photos during stage1friendica2014-07-041-13/+13
|
* add 'block_public' checking to get_all_perms() and perm_is_allowed() so we ↵friendica2014-07-031-0/+12
| | | | have everything related to allowing or denying something in one place. Currently this check is done separately in a huge number of places. Now we can start to remove all the extra checks. A couple of them are still necessary, but most are now redundant.
* some initial work towards email address verificationfriendica2014-07-031-0/+84
|
* visage tracking opt-in/opt-outfriendica2014-07-032-0/+21
|
* move code out of templates - not sure how this even worked.friendica2014-07-031-1/+9
|
* turn that into a featurefriendica2014-07-021-0/+1
|
* minor adjustmentsfriendica2014-07-011-1/+3
|
* minor optimisationfriendica2014-07-011-8/+4
|
* optionally allow zrl usage from specific markdown sourcesfriendica2014-07-012-11/+18
|
* easter eggfriendica2014-07-011-3/+1
|
* for non-post items (e.g. photos, events, whatever) add mention tags ↵friendica2014-06-301-0/+25
| | | | explicitly to the output rendering since they may not be present in the post body.
* much better fix to problem yesterday of updates with the wrong ud_addr ↵friendica2014-06-302-24/+17
| | | | | | getting updated. Now we'll pass in the update table row to import_xchan so we know exactly which ud_addr applies. We still need ud_flags passed in separately.
* Documented include/plugin.php a bit and removed an annoying defaultKlaus Weidenbach2014-07-011-107/+114
| | | | logging. Changed it to LOGGER_DEBUG.
* Make [observer.baseurl] more reliable using connurl which will changeThomas Willingham2014-06-301-2/+2
| | | | | less often than xchan_url, which can break the regex and might not even contain the baseurl at all, plus a bit of doco clean up.
* control chars crept in.friendica2014-06-301-1/+1
|
* ensure we have a unique guid for each address if one is generated.friendica2014-06-301-1/+1
|
* update the update records for all addresses attached to this channel, not ↵friendica2014-06-301-7/+19
| | | | just the primary.
* minor changesfriendica2014-06-291-0/+6
|
* log the offending dir serverfriendica2014-06-291-0/+2
|
* limit updates from new dir servers to avoid exhausting memory.friendica2014-06-291-1/+6
|
* Add rename support for DAV directories.Klaus Weidenbach2014-06-302-15/+63
| | | | This works only over DAV right now, no GUI yet.
* Return a correct timestamp when a folder is empty.Klaus Weidenbach2014-06-291-9/+23
| | | | | If a folder was empty a zero timestamp was returned. Now it will return the timestamp of the folder itself.
* Fixed some more timestamp bugs in RedDAV.Klaus Weidenbach2014-06-292-18/+37
| | | | Fixed an SQL-query in RedFile::put(), where parameters where in wrong order.
* Fixed a wrong timestamp update when adding a file.Klaus Weidenbach2014-06-292-7/+13
| | | | | | | When a file was uploaded the timestamp of the containing folder should get updated, but the timestamp of the first file in the folder was mistakenly updated. There are some more wrong timestamps, but still looking for the bug.
* Merge pull request #513 from dawnbreak/masterRedMatrix2014-06-291-433/+586
|\ | | | | Some documentation for include/reddav.php and a new tpl-file.
| * Some documentation for include/reddav.php and a new tpl-file.Klaus Weidenbach2014-06-291-433/+586
| | | | | | | | | | | | | | | | | | | | | | Documented include/reddav.php a bit more to understand what it is about to try to clean up some parts. Still a lot to be done here. I put serveral @todo markers that need to be checked. Moved some more HTML to template file. Changed getETag() return format according to documentation. (ETag MUST be surrounded by double-quotes)