summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2023-04-10a bit more diskcache tracingAndrew Dolgov
2023-04-10better static versionAndrew Dolgov
2023-04-10fix typoAndrew Dolgov
2023-04-10make jaeger service name configurableAndrew Dolgov
2023-04-09add tracing to UrlHelperAndrew Dolgov
2023-04-09a bit more tracingAndrew Dolgov
2023-04-09even more tracingAndrew Dolgov
2023-04-09more tracingAndrew Dolgov
2023-04-09Tracer: rework options to tagsAndrew Dolgov
2023-04-09add icatchallAndrew Dolgov
2023-04-09make phpstan happyAndrew Dolgov
2023-04-09some tracer class fixes / unhardcode jaeger IPAndrew Dolgov
2023-04-09exp: jaeger tracingAndrew Dolgov
2023-04-06Update config.php: $ttrss_version in private function _get_version() ↵Jan Pieter Kunst
replaced by $this->version
2023-04-06filters: allow matching on tags if there are no tagsAndrew Dolgov
2023-04-06make phpstan happyAndrew Dolgov
2023-04-06add simple autocompleter for tagsAndrew Dolgov
2023-03-31isLoggedIn adds a message to the system log when it returns false, fix for ↵Rodney Stromlund
php8+, removed empty test for bool conversion.
2023-03-29isLoggedIn adds a message to the system log when it returns false, fix for php8+Rodney Stromlund
2023-03-23 * auth_internal OTP form: fix double-urlencodeAndrew Dolgov
* post-login redirect: handle ?return in a less idiotic fashion
2023-03-07Merge pull request 'Replace special feed and category numbers with ↵fox
constants.' (#104) from wn/tt-rss:feature/special-feed-and-cat-consts into master Reviewed-on: https://dev.tt-rss.org/tt-rss/tt-rss/pulls/104
2023-03-07Change 'FEED_NOTHING' to 'FEED_DASHBOARD'.wn_
2023-03-05Replace special feed and category numbers with constants.wn_
2023-03-05Revert 7ed4fa4c1dbdd9df552cf6dd28907c6769911a0e and use @var instead.wn_
PHPStan had trouble recognizing that ['items'] might have elements added.
2023-03-05Remove unused 'Prefs::_delete()'.wn_
Related to dabb85c7dd82d2e97e400e0339d312030d4a1b4b.
2023-03-05Address PHPStan warning about unused private method 'Prefs::_delete()'.wn_
2023-03-05Tweak to appease PHPStan in 'Pref_Feeds::_makefeedtree()'.wn_
PHPStan flagged the 'count()' below this with: Comparison operation '>' between 0 and 0 is always false.
2023-03-05Address PHPStan 'right side always true' in 'PluginHost::lookup_command()'.wn_
Since 'PluginHost::add_command()' is currently the only way to add to this private array, and it always sets an array, this is reasonably safe.
2023-03-05Address PHPStan 'right side always true' in FeedItem_RSS.wn_
2023-03-05API:Andrew Dolgov
- sharedToPublished: add optional sanitize parameter (defaults to true) if disabled, allows inserting HTML into shared article content; - clean() already invokes strip_tags() so it's pointless to do both;
2023-02-25Merge branch 'master' of git.tt-rss.org:tt-rss/tt-rssAndrew Dolgov
2023-02-25require PHP to have support for flock()Andrew Dolgov
2023-02-24add override links to utility viewsVeit Lehmann
This enables `local-overrides.css` and `local-overrides.js` for all utility views, for example to add polyfills, enable responsive styling or to adjust styles globally.
2023-02-23API: add getFeedIcon endpoint, bump versionAndrew Dolgov
2023-02-17Handle fetch issues in 'RSSUtils::update_basic_info'.wn_
2023-02-03Minor tweak to favicon avg color debug log message.wn_
2023-02-03Don't set 'favicon_avg_color' on feed obj unless it's valid.wn_
2023-02-03Fix logging favicon-related bools in 'RSSUtils::update_rss_feed()'.wn_
2023-02-03Persist failure to detect favicon average color.wn_
Previously, an empty string returned by '\Colors\calculate_avg_color()' would be set as the 'favicon_avg_color' value, resulting in always reattempting average color calculation.
2023-02-03Ensure custom favicon color detection happens.wn_
2022-12-30deal with type errors in batch feed editor properly, un-deprecate PDO ↵Andrew Dolgov
wrapper functions and document them for posterity
2022-12-30batch feed editor: silence some more php8.1 undefined field warningsAndrew Dolgov
2022-12-30batch feed editor:Andrew Dolgov
- fix some field changes not applying because of DB type errors - rework to use bound vars instead of sql query concatenation deprecate: checkbox_to_sql_bool(), bool_to_sql_bool()
2022-12-30show full commit timestamp with version information in prefs footerAndrew Dolgov
2022-12-24Fix getting active feeds with errors.wn_
fb4bc2615e3910e8a7d15c6306e10247f7f80f4b incorrectly excluded feeds using the default update interval. This change ignores the unlikely scenario where someone has the default update interval set to 'disabled'.
2022-12-21Only count updating (i.e. enabled) feeds when determining active feeds with ↵wn_
errors. This excludes feeds that had errors and currently have updating disabled (e.g. disabled due to the site being down for a while, getting compromised, etc.). Disabled / non-updating feeds' error states are still visible when viewed in the feed tree.
2022-12-20Only touch on send for expirable cache files.wn_
With d373b7b452c6d64b47180940ed88c99c21bd9bc3 feed icon modification times get used for cache-busting, but 'Cache_Local' updates that value on each send. This change makes it so the modification time only gets updated on files in expirable caches, keeping the value consistent between sends for files in non-expiring caches. Also, marking 'Cache_Local::send_local_file()' private since it's unique to that adapter.
2022-12-19make phpstan happyAndrew Dolgov
2022-12-19 * bring back cache-busting for feed icons based on timestampAndrew Dolgov
* DiskCache: use singleton pattern to create less cache object instances * DiskCache: implement ETag
2022-12-02Merge branch 'master' of git.tt-rss.org:tt-rss/tt-rssAndrew Dolgov