aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* some minor cleanup on plinks for some very subtle permissions issuesfriendica2014-01-094-8/+19
|
* process str_replace before urlencodingfriendica2014-01-091-1/+1
|
* Merge https://github.com/friendica/red into zpullfriendica2014-01-093-5/+11
|\
| * use display/ plinks for commentszottel2014-01-091-3/+2
| |
| * use plinks instead of llinks on network/ and channel/ pages, though not inzottel2014-01-091-1/+1
| | | | | | | | mode network-new (network/new and network/search)
| * save channel/<channel>/?mid=... plinks with the itemszottel2014-01-091-2/+9
| |
| * urlencode query_string for magic auth to make sure GET params make it backzottel2014-01-091-2/+2
| | | | | | | | to the originating server
* | remove a lot of extraneous debugging now that most of this stuff basically worksfriendica2014-01-091-63/+28
|/
* fix table bbcodefriendica2014-01-091-1/+1
|
* This should be approaching completion for file OS storage. May be a few ↵friendica2014-01-082-47/+62
| | | | minor bugs remaining due to some late-breaking fixes but I've been testing it as I go.
* preparatory work for supporting a "list view" mode for conversations. This ↵friendica2014-01-082-0/+9
| | | | would be useful for forum-like channels and/or block-oriented themes.
* qr enhancementsfriendica2014-01-081-1/+1
|
* qr code supportfriendica2014-01-071-0/+10
|
* more work on dav - deletion and a bit more progress on OS storagefriendica2014-01-073-15/+62
|
* make storage limit service classes apply to accounts, not channels. Also ↵friendica2014-01-073-10/+8
| | | | include a css file that was missing from work yesterday.
* bbcode convenience variables for producing documentation.friendica2014-01-061-0/+2
|
* prepare for OS file storage, and add bbcode attachment link to ↵friendica2014-01-062-4/+15
| | | | mod/filestorage. This isn't beautiful, but it's a start.
* add potentially recursive set permissions function for file storagefriendica2014-01-061-1/+41
|
* reddav: improve and cleanup permission checksfriendica2014-01-061-76/+62
|
* Merge branch 'master' into movejsfriendica2014-01-064-35/+340
|\ | | | | | | | | Conflicts: version.inc
| * whitespacefriendica2014-01-061-6/+0
| |
| * implement storage size limitsfriendica2014-01-051-8/+59
| |
| * disable web browser post inputs if no storage write permissionfriendica2014-01-051-0/+89
| |
| * make directory hierarchy workfriendica2014-01-051-4/+11
| |
| * more syntaxfriendica2014-01-051-1/+1
| |
| * typosfriendica2014-01-051-4/+4
| |
| * set channel default permissions on file creationfriendica2014-01-051-3/+9
| |
| * reddav: bring permissions up to date with recent code changesfriendica2014-01-051-3/+9
| |
| * dav uploading actually works - there's just an issue with the AnyClient ↵friendica2014-01-051-2/+2
| | | | | | | | running through a proxy. There are probably still some issues with tree structure, but you should be able to use your personal cloud in your top level storage directory now.
| * some dav cleanupfriendica2014-01-051-6/+7
| |
| * reddav - basic mkdir support - needs more work to be robustfriendica2014-01-052-11/+113
| |
| * typo in import_directory_profilefriendica2014-01-051-1/+1
| |
| * a few fixes to webpage editingfriendica2014-01-041-0/+49
| |
* | move js files from corefriendica2014-01-041-2/+3
|/
* fix mimetype detection fallbackfriendica2014-01-031-10/+5
|
* more dav workfriendica2014-01-031-8/+71
|
* basic browsing and file retrieval for webdav working - uploads not yet. A ↵friendica2014-01-021-59/+126
| | | | lot of permissions stuff is in place so it's marginally (but probably not completely) permission controlled
* some DAV tweaks before the next round of heavy liftingfriendica2014-01-021-67/+193
|
* return to working on red-dav; This is a bit of a slog at the moment and the ↵friendica2014-01-011-14/+102
| | | | basic framework isn't even close to working. This does break the working test we did have (which was never connected to the Red backend). Now we're starting to connect Red and DAV together intimately. There will probably be some twists and turns along the way as we get the information we need into all the class objects that need them. But the important part is that the RedDirectory and RedFile classes are loading without throwing white screens and from here we can use logging to figure out what the DAV front end is trying to do and what it is passing to the backend and hopefully figure out what it expects to do with the results. Unless you're a competent developer with a strong background in OOP and are helping develop this code, you should keep it an arm's length away from any production site and don't even think of enabling it. By default it is turned off.
* auto-crop imported photos for things and xchans. This results in undistorted ↵friendica2013-12-301-1/+21
| | | | images but may result in cropping important parts of the picture. Still this will work well for 95 out of 100 cases. If the width exceeds the height by greater than 1.2 we will remove an equal margin from either side of the photo leaving the center intact. If the height exceeds the width we will chop off the bottom to make it square. This is good for most single person photographs, unless the object of interest is off-center horizontally in a wide photo - or one is trying to emphasize aspects of human anatomy which may be at the bottom of a tall photo.
* basic edit and delete for thingsfriendica2013-12-301-2/+3
|
* modify tag_deliver and tgroup_check to handle exclusion tagsfriendica2013-12-291-2/+2
|
* display_thing: it ain't much, but it's implemented.friendica2013-12-291-1/+0
|
* a bit more backend work on thingsfriendica2013-12-282-32/+71
|
* things can now have (consistent sized) photos - plus I found a couple of ↵friendica2013-12-281-9/+17
| | | | issues with duplicate notifications and contact photos not getting an album name (it was crossed with filename). The last one doesn't matter as neither is used, but it was wrong so it has been corrected. Oh and thing photos weren't working at all because the form element name was different than what the module was looking for. But that had never been tested as I was waiting to get the import/resize finished. Next up for that module is display and deletion of things; but the priority is pretty low.
* sslify - remove the redirect fallback - as it gets called occasionally and ↵friendica2013-12-271-2/+2
| | | | creates mixed content exceptions. Let's see how we go without it. Also a doc update.
* remove prettyphoto from core - this will affect the enhanced photo albums ↵friendica2013-12-261-1/+3
| | | | feature on the short term which has been disabled until we figure out how to make the setting per-theme instead of a core option. The library is still available in core (library/prettyphoto) currently but needs to be moved to theme js and loaded/accessed from there [for themes which use it]. Then the library will be removed. It appears that other lightboxes commonly use rel= to group photo albums. So we may provide a generic rel= tag in photo album templates so that the choice of lightbox or album viewer is not only a theme option but could also be accomplished with plugins.
* issue #230 - deletion failure in multiple delivery chainsfriendica2013-12-261-1/+4
|
* try againfriendica2013-12-251-1/+1
|
* didn't workfriendica2013-12-251-1/+1
|