summaryrefslogtreecommitdiff
path: root/app/views
AgeCommit message (Collapse)Author
2014-08-23Change empty value in drop-downGravatar Alexis Degrugillier
2014-08-23Add category reading optionGravatar Alexis Degrugillier
Before, when a category was selected, it was expanded to show the feeds in that category. Now, there is a parameter that allows the user to choose either if he wants the old behaviour or if he wants to expand only when needed (when selecting a feed or when clicking the appropriate button)
2014-08-19Syntax 581Gravatar Alexandre Alapetite
#581
2014-08-19Merge pull request #581 from aledeg/more-statsGravatar Alexandre Alapetite
Add a feed selector in repartition statistics.
2014-08-19Error when feed does not existGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/579
2014-08-19Add a feed selector in repartition statistics.Gravatar Alexis Degrugillier
Before we could choose the feed in the statistics only from the feed options in the main view. Now with the new drop-down list, it is possible to choose it from the statistics page. The rendering needs to be polished to be nicer.
2014-08-11Improve system import/exportGravatar Marien Fressinaud
Miss checking presence of zip extension during import See https://github.com/marienfressinaud/FreshRSS/issues/494
2014-08-10Forget to change the i18n stringGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/465
2014-08-10Add possibility to keep logged in with formGravatar Marien Fressinaud
Add an option to keep logged in. Change lifetime of session cookie to 1 year. See https://github.com/marienfressinaud/FreshRSS/issues/465
2014-08-10Improve design of actualize notificationGravatar Marien Fressinaud
- Remove progress bar - Show title of updated feed
2014-08-09Reading config: change order of settingsGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/430
2014-08-09Option to hide (or not) feeds/categories with no unread articleGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/430 https://github.com/marienfressinaud/FreshRSS/issues/575
2014-08-09Fix import/export viewGravatar Marien Fressinaud
Some bugs introduce because I was tired surely ;)
2014-08-09Fix typoGravatar Marien Fressinaud
Oops? :)
2014-08-09Change view import/export if no zip extensionGravatar Marien Fressinaud
Show a select with only one choice is there is no zip extension on the server. Fix typo. See https://github.com/marienfressinaud/FreshRSS/issues/494
2014-08-08Improve export functionGravatar Marien Fressinaud
If there is only one file to export, we don't need of a .zip archive. So it is exported as a simple file (.json or .opml) See https://github.com/marienfressinaud/FreshRSS/issues/494
2014-08-08Add support of HTML5 notificationsGravatar Marien Fressinaud
Show a notification if there are at least 1 new article to read. Support only window.Notification API. See https://github.com/marienfressinaud/FreshRSS/issues/399
2014-08-02Unicode tick without colourGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/560 The former was green in Firefox 32 beta
2014-08-02Experimental: Removed lazyload.js and use postpone attribute insteadGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/316 The performance of lazyload.js was not good enough, and not really needed anyway. This change mostly affects mainly situations when the content of articles is shown by default, not so much when they are collapsed Using HTML5 lazyload and postpone attributes by default on all img, audio, iframe, video. http://www.w3.org/TR/resource-priorities/#attr-postpone Postpone attribute is removed by JavaScript if the user does not want the lazyload behaviour. In the case when users do want the lazyload behaviour, in normal view with articles hidden, we furthermore use the data-original approach to be sure to support current browsers. +Corrected some bugs with enclosures, and some images not appearing before the first scroll. +Now faster regex processing img and iframe at once (was not practical with lazyload.js)
2014-08-01Basic protection against XSRF using RefererGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/554 Also edited the error controler to use the log message passed in Minz_Error::error().
2014-07-29Merge pull request #548 from aledeg/more-statsGravatar Marien Fressinaud
Add article repartition in stats
2014-07-28Remove unnecessary title propertyGravatar Alexis Degrugillier
2014-07-28Small fixes to follow @marienfressinaud recommandations (take 2)Gravatar Alexis Degrugillier
2014-07-25Small fixes to follow @marienfressinaud recommandationsGravatar Alexis Degrugillier
2014-07-25Stats idle: hide empty periodsGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/commit/e507256d0bdebd02cf1fcd6fe1477cbac0b6934e#commitcomment-7119169
2014-07-24Add article repartition in statsGravatar Alexis Degrugillier
Add article repartition per hour, per day of week, per month for all feeds but also for individual feeds.
2014-07-23Fix bugs in import/exportGravatar Marien Fressinaud
- EntryDAO.php: add a missing "FreshRSS_EntryDAO::" - Fix htmlspecialchars in opml export
2014-07-22Idle feeds: show tooltip with last update dateGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/544
2014-07-22Idle feeds: link to configuration pageGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/544
2014-07-09Block user to click many times on the refresh buttonGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/513
2014-07-07Add a configuration parameterGravatar Alexis Degrugillier
Add a parameter to choose wether or not the user want to display a confirmation dialog when clicking on "mark all as read" actions.
2014-07-07Add a confirmation dialog when clicking on the big tickGravatar Alexis Degrugillier
See #519 Before, when clicking on the big tick to mark all articles as read, it triggers directly the action. Now, it asks for a confirmation to block unwanted user clicks.
2014-07-06Minor #524Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/524
2014-07-06Merge pull request #525 from aledeg/issue524Gravatar Alexandre Alapetite
Change behavior when selecting an article
2014-07-06Bug global TTLGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/250
2014-07-06Add TTL to control feed freshnessGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/250
2014-07-05Change behavior when selecting an articleGravatar Alexis Degrugillier
See #524 Before, when the configuration was set so the article is marked as read when selected, if you mark it as unread while it is open and then close it, it is marked again as read. This behavior was not straightforward. Now, the article is not marked again as read.
2014-06-15Merge branch 'stats' of https://github.com/aledeg/FreshRSS into statsGravatar Alexis Degrugillier
Conflicts: app/Controllers/statsController.php app/Models/StatsDAO.php app/i18n/en.php app/i18n/fr.php app/layout/aside_stats.phtml app/layout/header.phtml app/views/index/stats.phtml app/views/stats/idle.phtml app/views/stats/index.phtml app/views/stats/main.phtml
2014-06-15Refactor and formattingGravatar Alexis Degrugillier
2014-06-15Fix syntaxGravatar Alexis Degrugillier
2014-06-15Refactor idle feed statsGravatar Alexis Degrugillier
2014-06-15Refactor statisticsGravatar Alexis Degrugillier
I made a new controller to handle statistics. The old statistics have been moved in that controller and a new action has been added to display idle feeds. I also added a menu in the left panel to navigate between the statistics pages. See #90
2014-06-15Add two wrappers (_t() and _i())Gravatar Marien Fressinaud
- _t() is a wrapper for Minz_Translate::t() - Improve coding style of Translate.php - _i() is a wrapper for FreshRSS::icon() - queries.phtml shows how they work - It is a lot easier to read files with these functions :)
2014-06-15Fix syntaxGravatar Alexis Degrugillier
2014-06-14Improve system of queriesGravatar Marien Fressinaud
- Coding style - More checks server side - Default query name is "Query n°X" - List of queries is moved into nav_menu, in a dropdown - Better system to remove fields in JS (to a.remove elements, give an attibute data-remove="id_to_remove") - Fix a bug in lib/Mine/Request.php (htmlspecialchars_utf8 can be applied on arrays now) - Few theme improvements - Add an element .no-mobile to apply to elements which should not appear on mobiles See https://github.com/marienfressinaud/FreshRSS/pull/498
2014-06-13Refactor idle feed statsGravatar Alexis Degrugillier
2014-06-13Merge branch 'user-queries' of https://github.com/aledeg/FreshRSS into ↵Gravatar Marien Fressinaud
aledeg-user-queries Conflicts: app/layout/nav_menu.phtml
2014-06-13Fix theme paths for install.phpGravatar Marien Fressinaud
2014-06-13Refactor statisticsGravatar Alexis Degrugillier
I made a new controller to handle statistics. The old statistics have been moved in that controller and a new action has been added to display idle feeds. I also added a menu in the left panel to navigate between the statistics pages. See #90
2014-06-12Fix some theme and UI problemsGravatar Marien Fressinaud
- More stick buttons! - Fix line-height of titles + fix load more on mobile (Origine) - Fix content width and filter buttons (Dark and Flat)