1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-04 13:10:49 +02:00
Commit Graph

940 Commits

Author SHA1 Message Date
Andrew Dolgov
2188495806 counters: fix feed.update attribute 2010-11-05 10:43:19 +03:00
Andrew Dolgov
6a7817c1ad handle counters using JSON instead of XML 2010-11-04 22:38:03 +03:00
Andrew Dolgov
9fdeb07e6c add one more tooltip to subtoolbar 2010-11-04 20:58:42 +03:00
Andrew Dolgov
5d128c9589 dashboard: show last feed update time 2010-11-04 20:49:49 +03:00
Andrew Dolgov
fe1087fbb7 implement a simple pseudo-dashboard feed; display feeds having update errors there instead of client-based 'no feed selected' whiteBox plug (closes #189) 2010-11-04 19:11:54 +03:00
Andrew Dolgov
85a922895f prefs: disable option ENABLE_FEED_ICONS 2010-11-04 18:11:15 +03:00
Andrew Dolgov
f0361de20b add subtoolbar dropdown action to view generated feed 2010-11-04 17:28:38 +03:00
Andrew Dolgov
c784546704 generated feeds: support enclosures 2010-11-04 14:40:55 +03:00
Andrew Dolgov
fb8d17f3fb api: getFeeds: fix cat_id handling, allow access to Uncategorized category, reserve -3 and -4 cat_ids for getting flat feed lists 2010-11-04 13:52:16 +03:00
Andrew Dolgov
9c5b98adaa update op=rss tooltip 2010-11-04 11:57:52 +03:00
Andrew Dolgov
23d72f3999 allow generated feeds to use view_mode 2010-11-04 00:24:18 +03:00
Andrew Dolgov
db2443846c fix the syndicated feeds being broken on postgresql 2010-11-03 23:50:45 +03:00
Andrew Dolgov
f9b2d27c70 default headline sort order by date_entered instead of updated 2010-10-27 12:10:14 +04:00
Andrew Dolgov
25ea280502 add ttrss_entries.date_updated; use date_updated instead of date_enered for expiry checking (bump schema) 2010-10-27 12:05:20 +04:00
Andrew Dolgov
6a69b6ad44 revert to sorting by updated instead of date_entering unless Date sorting is requested 2010-10-19 09:36:16 +04:00
Andrew Dolgov
8872d5f022 queryFeedHeadlines: fix select bug 2010-10-18 18:41:15 +04:00
Andrew Dolgov
9c57be20a2 Merge branch 'master' of madoka.volgo-balt.ru:public_html/testbox/tt-rss 2010-10-18 18:32:57 +04:00
Andrew Dolgov
7b20c97780 order feed output by date_entered instead of updated to properly keep new stuff topmost; support REVERSE_HEADLINES in more headline output modes 2010-10-18 18:32:26 +04:00
Andrew Dolgov
cd9c29de80 Merge branch 'digest-experimental' 2010-10-15 18:58:15 +04:00
Andrew Dolgov
a16a62c02d outputHeadlinesList: properly handle always_display_enclosures when feed_id is null 2010-10-11 11:24:29 +04:00
Andrew Dolgov
98d684f99b Merge branch 'master' of madoka.volgo-balt.ru:public_html/testbox/tt-rss 2010-10-03 12:21:46 +04:00
Andrew Dolgov
a2d799815a remove unnecessary mentions of global_purge_old_posts; add debugging to purge_orphans() 2010-10-03 12:19:09 +04:00
Andrew Dolgov
9a4dd417c4 Merge branch 'master' into digest-experimental 2010-09-13 18:23:37 +04:00
Andrew Dolgov
66438f2922 init params: add fresh article age 2010-09-13 18:23:24 +04:00
Andrew Dolgov
1284402268 Merge branch 'master' into digest-experimental 2010-09-13 16:08:47 +04:00
Andrew Dolgov
91c5f22946 skip new version checking right after login to speed up startup 2010-09-13 16:00:05 +04:00
Andrew Dolgov
63def06ca8 check_for_update: fix typo which caused incorrect output of print_runtime_error() which caused RPC errors when DEFAULT_UPDATE_METHOD was set to SimplePie 2010-09-13 15:54:24 +04:00
Andrew Dolgov
78ac6caf00 digest: support tags 2010-09-12 14:37:47 +04:00
Andrew Dolgov
9ed133e7a9 api: support published status in getHeadlines; digest: code cleanup 2010-09-12 13:38:57 +04:00
Andrew Dolgov
d5d5632952 code cleanup 2010-09-11 15:25:47 +04:00
Andrew Dolgov
432c64cace Merge branch 'master' into digest-experimental 2010-09-09 22:08:55 +04:00
Andrew Dolgov
bfe5ddfc82 queryFeedHeadlines: properly handle Uncategorized category 2010-09-09 22:08:17 +04:00
Andrew Dolgov
b41c254984 small digest page improvements 2010-09-09 19:02:12 +04:00
Andrew Dolgov
911d4c0836 add experimental digest thingie 2010-09-09 16:49:06 +04:00
Andrew Dolgov
c5701e70a4 getFeedArticles: properly escape tags 2010-08-31 11:30:28 +04:00
Andrew Dolgov
cce9822a53 daemon2: make sure daemon actually updates feeds, duh 2010-08-26 13:06:01 +04:00
Andrew Dolgov
c90a028cdc daemon2: properly abort stuck children 2010-08-25 18:16:07 +04:00
Andrew Dolgov
2f0903a625 add author info to generated feeds 2010-07-19 15:18:43 +04:00
Andrew Dolgov
78a5c296ae config: replace confusing option ENABLE_SIMPLEPIE with DEFAULT_UPDATE_METHOD; bump config version 2010-06-30 12:57:11 +04:00
Andrew Dolgov
e955834551 support import and export of tt-rss preferences in OPML with DOMDocument OPML path 2010-06-29 14:26:10 +04:00
Andrew Dolgov
a1af157410 Fix several problems with image download
Fix fetch_file_contents, so that it returns the contents even if the data isn't
an image. This is needed because the get_favicon_url function tries to download
the webpage using this function, to see if there is a favicon in the page.

The function now takes an optional $type parameter. This parameter control if
the calling function cares about the content-type, or if the function should
just return everything. If the $type parameter is set, the content-type should
contain the string contained in $type, otherwise the function returns false.

The second problem solved with this patch, is that the temporary file that
should contain the image was empty in some cases. I never found out why this
happended, but as curl_exec is capable of returning the fetched data, thus
eliminating the need for the temporary file all together, the function have
been changed to use this way of obtaining the data.

The last problem fixed by this patch is that curl will now follow redirects.

Author: Klaus S. Madsen <ksm@42.dk>
2010-04-22 10:10:49 +04:00
Matt Katz
e0dc56d466 added function for publish_opml 2010-04-09 19:48:31 -04:00
Andrew Dolgov
e656b9f7db update_rss_feed: properly handle enginge changes when using memcached 2010-03-29 11:26:39 +04:00
Andrew Dolgov
ed41f171cb catchupArticlesById: return when there are no ids to catchup 2010-03-24 13:28:20 +03:00
Andrew Dolgov
fa3317be48 allow filtering by article author (bump schema) 2010-03-23 14:38:58 +03:00
Andrew Dolgov
02b289d661 feedlist: replace a elements with spans 2010-02-15 14:18:31 +03:00
Andrew Dolgov
4c59adb1de make_lockfile: only call posix_getpid() if it actually exists (hello, win32) 2010-02-09 17:05:02 +03:00
Andrew Dolgov
82acc36dba make_lockfile: save current PID 2010-02-05 15:01:36 +03:00
Andrew Dolgov
44cfa02554 better image attachment detection for inlining 2010-02-05 13:13:51 +03:00
Andrew Dolgov
b92fbcd8a5 only check for themes when there is a logged-in user 2010-01-28 18:54:45 +03:00