summaryrefslogtreecommitdiffstats
path: root/db/itemmapper.php
AgeCommit message (Collapse)Author
2014-09-13autopagingBernhard Posselt
2014-09-13fix starred count for deleted folders, reload path when deletingBernhard Posselt
2014-09-05fix backend sortingBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-05-29order by pubdateBernhard Posselt
2014-05-14fix operator for pagingBernhard Posselt
2014-05-14add serverside possibility to order by oldest firstBernhard Posselt
2014-05-14convert array() to []Bernhard Posselt
2014-05-13break all the things!Bernhard Posselt
2014-05-12replace fetchRow with fetch to honour pdostatementBernhard Posselt
2014-05-12remove dead codeBernhard Posselt
2014-04-19update headers to be compatible with phpdoc, slim down license text to make ↵Bernhard Posselt
code more visible
2014-04-19split up api class for easier testing and clearer codeBernhard Posselt
2014-04-09ported to owncloud internal appframework classes, confused with how to start ↵Bernhard Posselt
the app and define deps
2014-04-08migrated database, utility, bootstrap from appframeworkBernhard Posselt
2014-04-08set item as default for item mapper classes to prevent bugs when inheriting ↵Bernhard Posselt
from other classes, fix #506
2014-04-06fix deletion of items from users on sqliteBernhard Posselt
2014-04-06remove old fromrow method from itembusinesslayer to prevent failing when ↵Bernhard Posselt
starring
2014-04-05use findEntity and findEntities from the mapper class to get rid of code ↵Bernhard Posselt
duplication
2014-04-04register hooks for deleting feeds, folders and items if a user is deleted, ↵Bernhard Posselt
fix #468
2013-09-13fix sqlBernhard Posselt
2013-09-13respect articles per update count in item cleanupBernhard Posselt
2013-09-12#342 implement exportBernhard Posselt
2013-09-07extra work for postgres, fix #338Bernhard Posselt
2013-09-07quickfix releaseBernhard Posselt
2013-09-05trying to fix delete older than threshold queryBernhard Posselt
2013-09-04fix limit calculation for deleteReadOlderThanThresholdbastei
2013-08-26change email adress in copyright headersBernhard Posselt
2013-07-01Modified readAll, readFolder and readFeed SQL queriesbluehaze
2013-06-22also set last modified when marking feeds, folders, or all read, fix #256Bernhard Posselt
2013-05-24fix a bug that would not display items of feeds without foldersBernhard Posselt
2013-05-24Fix bug that would still show items after its feed or folder has been marked ↵Bernhard Posselt
as deleted, fix #196
2013-05-24dont use table in subselect of mark read query to not fail on mysql, fixes #173Bernhard Posselt
2013-05-09only make one request for mark all read and mark folder read, fix #171, fix ↵Bernhard Posselt
a bug that prevented readding of feeds when its folder was deleted, fix a bug that would not allow mark read for feeds when the app was started for the first time
2013-04-29go back to order by id, fix #138, use a newest item id to prevent marking ↵Bernhard Posselt
items as read that the user didnt see yet fix #141, also update the starred count periodically
2013-04-26order by pubdate on the client side fix #115Bernhard Posselt
2013-04-26use last_modified column for finding new items (so we also see if they were ↵Bernhard Posselt
updated or starred), use offset to paginate rather than item id
2013-04-25fix broken sql statement fix #122Bernhard Posselt
2013-04-20set autopurge limit to 200 and purge per feed rather than per user or per ↵Bernhard Posselt
all items, fix #98
2013-04-16fix bug that prevented marking read if the highestitemid was 0Bernhard Posselt
2013-04-16dont show unread count when it is 0, dont bold read feeds, implemented ↵Bernhard Posselt
autopaging
2013-04-12implement mark as read for feeds and folders, fix #29Bernhard Posselt
2013-04-06typo fixBernhard Posselt
2013-04-06added warnings for future devs to not run into sql injection mistakesBernhard Posselt
2013-04-05fix statusflag db query bugs and unittestsBernhard Posselt
2013-04-05making shit work since 1988Bernhard Posselt
2013-04-05fix #37 by fixing multiple, hard to track down typosBernhard Posselt
2013-04-04fixes mappers by using the correct status conditionBernhard Posselt
2013-04-04move autopurge to itemblBernhard Posselt
2013-03-27fixed mark all unread serverside (was missing highestitemid, dont use ↵Bernhard Posselt
lastmodified to compare for new versions but use the highest item id. if items are updated and the guidHash and feedId are the same then it will be deleted and newly inserted to make the lastmodified feasable