aboutsummaryrefslogtreecommitdiffstats
path: root/mod
Commit message (Collapse)AuthorAgeFilesLines
* improve performance of the zotfeed queriesfriendica2015-03-231-2/+3
|
* Merge https://github.com/friendica/red into pending_mergefriendica2015-03-231-1/+21
|\
| * sql in -> INMario Vavti2015-03-231-1/+1
| |
| * indicate new or updated itemsMario Vavti2015-03-231-1/+21
| |
* | limit notification detail queries for items and eventsfriendica2015-03-231-3/+3
| |
* | operation snakebite, cont.friendica2015-03-221-7/+20
|/
* $simple_update isn't so simple any more. Make sure we don't re-itnroduce the ↵friendica2015-03-223-14/+12
| | | | bug that session['loadtime'] was created to fix. It's questionable whether we still need to even look for item_unseen but I won't make that call today. We can also eliminate the restriction on not doing live updates from the discover tab since we aren't relying completely on item_unseen (which can only be set by the owner and won't work on a page with virtual owners).
* allow complete undo of a vote, not just a change of votefriendica2015-03-221-1/+5
|
* Merge https://github.com/friendica/red into pending_mergefriendica2015-03-221-27/+3
|\
| * move the maintenance part to include/sharedwithme.phpMario Vavti2015-03-221-27/+3
| |
* | provide visual feedback when deleting a like by liking it again.friendica2015-03-224-7/+14
|/
* fix multiple vote issuesfriendica2015-03-211-2/+3
|
* Merge https://github.com/friendica/red into pending_mergefriendica2015-03-211-2/+15
|\
| * Merge branch 'master' of https://github.com/friendica/redMario Vavti2015-03-212-12/+5
| |\
| * | fix acl for if we have an cid in /network and make $bang better visibleMario Vavti2015-03-211-2/+15
| | |
* | | add loadtime search to channel and fix it for home. display and search need ↵friendica2015-03-215-7/+53
| |/ |/| | | | | further investigation
* | set to empty string so it doesn't get mis-handled as a nullfriendica2015-03-201-0/+2
| |
* | Merge https://github.com/friendica/red into pending_mergefriendica2015-03-202-13/+27
|\|
| * some tabs title statuseditor restructuringMario Vavti2015-03-211-10/+23
| |
| * need the cloudpath before creating the objectMario Vavti2015-03-201-4/+3
| |
| * possible improvement regarding deletionMario Vavti2015-03-201-2/+4
| |
* | config to hide version tag from siteinfo - on my site it's meaningless.friendica2015-03-202-12/+3
|/
* call parse_url from rpost and add the result to the content body if invoked ↵friendica2015-03-191-0/+5
| | | | with a url argument
* tweaks to directory registrations which don't seem to be happening, also ↵friendica2015-03-192-7/+2
| | | | downgrade any directory that claims to be a primary directory for RED_GLOBAL.
* make the channel item query match recent changes to network item query (and ↵friendica2015-03-181-3/+5
| | | | some slightly older changes in display item query), and allow '@' in linkified urls.
* ok it has to be owner.friendica2015-03-171-3/+3
|
* The random bad signatures are because something somewhere is trimming the ↵friendica2015-03-171-1/+1
| | | | body text. It could be any one of hundreds of functions that touch the message body. We really want to trim the body text, so I'm putting back all the trim statements - in mod/item and item_store and item_store_update. The last fix for random bad sigs noted that one of the trims wasn't there, so the others were removed. The correct fix is for all the trims to be there. We will probably have a few (quite a few) bad sigs during the transition back to trimmed text but this should nail it for anybody on recent code and with new content.
* display a map for photos if allowed. Note: there is a bug in that if the map ↵friendica2015-03-161-0/+8
| | | | div starts with display:none one needs to reload the frame or zoom in or they end up at minimum resolution. Still trying to sort this out.
* openid cleanupfriendica2015-03-162-98/+68
|
* make sure this sucker is quietfriendica2015-03-161-1/+1
|
* phase one of the great file storage unification - use one button for uploads ↵friendica2015-03-161-2/+29
| | | | of any type (image or attachment). We'll sort out which one it is and deal with it appropriately.
* mod_id: load profile so the sidebar profile will workfriendica2015-03-152-39/+20
|
* mysql schema typo, do the install check for store before chcking smarty, as ↵friendica2015-03-151-2/+2
| | | | that is where the dir is created, change install doc to point to install/schema_xxxxx.sql instead of database.sql
* revert the revert - that is working. My test was bad.friendica2015-03-141-3/+3
|
* revert and rethinkfriendica2015-03-141-3/+3
|
* create terms for Diaspora mention tags - which in Diaspora are handled ↵friendica2015-03-131-6/+6
| | | | differently than other tag links and have to be done separately; they aren't processed by linkify_tags which handles all of our other tag processing. Also move the abook_channel clause in mod_network to the join statement. This works fine in mysql and achievies the desired result. I hope postgres can handle an expression as a join clause.
* fix posts not showing up in network if author is not in connectionszottel2015-03-141-3/+3
|
* use local_channel() connnections to match the abook against when joining the ↵friendica2015-03-131-2/+2
| | | | abook on the discover tab.
* revert thatfriendica2015-03-121-4/+25
|
* try to allow translation of ax regsfriendica2015-03-121-29/+52
|
* support a fair number of the common AX regsfriendica2015-03-121-5/+68
|
* Add some AX vars to openid server.friendica2015-03-121-11/+28
|
* more JS=1 weirdnessfriendica2015-03-121-1/+1
|
* try and add some regsfriendica2015-03-121-0/+2
|
* add generic_addon_settings template and minor fixesMario Vavti2015-03-121-1/+1
|
* Merge branch 'master' of https://github.com/friendica/redMario Vavti2015-03-121-1/+1
|\
| * substr() is a mysql alias for substring(). substring() is in the SQL ↵Habeas Codice2015-03-121-1/+1
| | | | | | | | | | | | standard and is supported by both databases.
* | some work on feature/addon settingsMario Vavti2015-03-121-4/+2
|/
* openid stufffriendica2015-03-112-36/+50
|
* Merge branch 'master' into openidfriendica2015-03-115-8/+42
|\