summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-31use caching for unexpanded CDMAndrew Dolgov
2011-08-31zoomToArticle: fix for new cache systemAndrew Dolgov
2011-08-31implement random precaching of unread feeds on timerAndrew Dolgov
2011-08-31improve headline caching, update cache after toggleMark/togglePub()Andrew Dolgov
2011-08-31implement automatic precaching for next normal and unread feedsAndrew Dolgov
allow opening cached next_unread_feed on f-q if available tweak getRelativeArticles() to scan forward only reenable prefetch_old server requests
2011-08-31remove unused headlines-info.unreadAndrew Dolgov
2011-08-31rework caching, use html5 local storageAndrew Dolgov
allow caching of headlines code cleanup
2011-08-30viewfeed: do not return sync counters on subopAndrew Dolgov
2011-08-30css: remove Lucida GrandeAndrew Dolgov
2011-08-27update_rss_feed_real: allow overriding fetch urlAndrew Dolgov
2011-08-26bump prototype to 1.6.1 (refs #291)Andrew Dolgov
2011-08-23Extended Actions to include Select by tag (add local modifications, fixCraig Meyer
display for tags starting with a number)
2011-08-23ldap auth: support LDAP extra attributes (closes #363)Andrew Dolgov
2011-08-23fix SQL query variable being overridden when using AUTO_CREATE_USER (closes ↵Andrew Dolgov
#362)
2011-08-21ccache_cleanup: fix sql syntax for mysqlAndrew Dolgov
2011-08-21pubsub: cast feed_id as integerAndrew Dolgov
2011-08-16add sanity check for SELF_URL_PATH being kept at default value (refs #349)Andrew Dolgov
2011-08-10reinstate open_basedir sanity checkAndrew Dolgov
2011-08-08do not perform synchronous update on pubsub callAndrew Dolgov
2011-08-05add ccache_cleanup(), invoke on loginAndrew Dolgov
2011-08-05viewfeed: do not show notify progress when offset != 0Andrew Dolgov
2011-08-04remove sphinxapi.php.08_04_11_183927Andrew Dolgov
2011-08-04Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSSAndrew Dolgov
2011-08-04Merge pull request #11 from meyercr/masterAndrew Dolgov
Update to latest Sphinx API for PHP
2011-08-04Update lib/sphinxapi.php to V2.0.1Craig Meyer
2011-08-04Merge branch 'master', remote-tracking branch 'origin'Craig Meyer
2011-08-04misc headlines speedupAndrew Dolgov
2011-08-04fix wrong even/odd position in headlines bufferAndrew Dolgov
2011-08-04do not perform catchup batch request when infscroll request is in progressAndrew Dolgov
2011-08-04misc code cleanupAndrew Dolgov
2011-08-04do not schedule catchup batch request when infscroll request is in progressAndrew Dolgov
2011-08-04implement workaround for missing autoloaded headlines for adaptive & unread ↵Andrew Dolgov
modes; reduce js debugging (refs #280)
2011-08-04add experimental fade-in effect for autoloaded headlinesAndrew Dolgov
2011-08-04backend/pubsub: block immediately if PUBSUBHUBBUB_ENABLED is falseAndrew Dolgov
2011-08-04auto catchup: prevent request floodAndrew Dolgov
2011-08-03prototypize creation of headlines-spacerAndrew Dolgov
2011-08-03allow marking last headline as read automatically by scrolling below contentAndrew Dolgov
2011-08-03cdm auto catchup: mark posts when scrolled above half their heightAndrew Dolgov
2011-08-03view: fix article not being marked as read when not requested from client cacheAndrew Dolgov
2011-08-01properly handle relative link elements for feed and articles (closes #358)Andrew Dolgov
2011-08-01update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)Andrew Dolgov
2011-07-31tweak OPML panel UI a bitAndrew Dolgov
2011-07-30Merge pull request #10 from meyercr/masterAndrew Dolgov
Extend OPML preferences pane, to provide more control of Export OPML
2011-07-30Merge pull request #9 from meyercr/9949bd154e9d01b50132e387059ef987c6887c8bAndrew Dolgov
Here are my patches which fix 2 bugs, and remove some dead code, and deprecated usage.
2011-07-30Merge pull request #8 from chernesk/masterAndrew Dolgov
Added hotkey for sending article as an email
2011-07-30Extend OPML preferences pane, to provide more control of Export OPMLCraig Meyer
User is prompted for filename, and also whether to include settings. Default filename is: TinyTinyRSS.opml modules/pref-feeds.php Prompt for output OPML filename (Default: TinyTinyRSS.opml ) opml.php Modify to support passing in name=<filename>&settings=[0|1] functions.js Modify to support passing in name=<filename>&settings=[0|1]
2011-07-30functions.php: Fixed some mild errors.Craig Meyer
fetch_file_contents() using $updated when it was not defined - commented it out update_rss_feed_real() was also using $updated, undefined and had a inconsistent return, added return false; lookup_user_id($link, $user) was using $login for the SELECT not $user format_headline_subtoolbar() used $search_q before it was assigned to, re-ordered the code format_article() The 3rd arg "$feed_id" was never used in the function, it was set in the function Verified (and modified as needed) function calls in backend.php (5 Usages) and in modules/backend-rpc,php (1 usage) printTagCloud() Before ksort($tags) add a check for count($tags) == 0 return replace depreciated split() calls with explode() backend.php replace depreciated split() calls with explode() modules/backed-rpc.php replace depreciated split() calls with explode() in handle_rpc_request(), separate asort() from join(), asort() does not return an array. This fixes a problem where a new tag is added to an entry, but doesn't show up after clicking on save. User must do a screen refresh. A PHP error msg was being returned in the JSON response. .gitignore Make sure Mac OS X .DS_Store & PHPStorm project files (.idea/) are not included
2011-07-30fix 'view as rss' not working correctly for search resultsAndrew Dolgov
2011-07-30add undocumented constant _SHOW_FEED_TITLE_IN_VFEEDS which enables showing ↵Andrew Dolgov
full feed title in virtual feeds
2011-07-18adding an email article hotkey 'e'Chris Chernesky