aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
AgeCommit message (Collapse)Author
2014-10-20Use FreshRSS_Context::$conf onlyGravatar Marien Fressinaud
- Replace $this->view->conf in controllers - Replace $this->conf in views
2014-10-07Introduce FreshRSS_Auth::hasAccess('admin')Gravatar Marien Fressinaud
Replace Minz_Configuration::isAdmin($user). FreshRSS_Auth::hasAccess() could be extended to others scopes later. See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-10-06Refactor authentication system.Gravatar Marien Fressinaud
Big work, not finished. A lot of features have been removed. See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-10-05Move usersAction into usersControllerGravatar Marien Fressinaud
2014-10-01Reorganize subscription management codeGravatar Marien Fressinaud
There is still a lot of work to do. Some links are broken. See https://github.com/marienfressinaud/FreshRSS/issues/646
2014-10-01Simplify configureControllerGravatar Marien Fressinaud
Remove useless code for category configuration. See https://github.com/marienfressinaud/FreshRSS/issues/646
2014-10-01Load feed configuration on the same pageGravatar Marien Fressinaud
Need improvements See https://github.com/marienfressinaud/FreshRSS/issues/646
2014-09-30Move deletion of categories into new ControllerGravatar Marien Fressinaud
Fix i18n (occured -> occurred) See https://github.com/marienfressinaud/FreshRSS/issues/646
2014-09-30Move creation of categories in a new ControllerGravatar Marien Fressinaud
Category names are 255 chars max
2014-09-24Refactor removing query by get paramGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/625
2014-09-24Fix a bug when $query['state'] doesn't existGravatar Marien Fressinaud
Add a test in addQueryAction().
2014-09-24Remove queries at the same time as categoriesGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/625
2014-09-24Coding style configureController.phpGravatar Marien Fressinaud
2014-09-21Fix user queriesGravatar Alexis Degrugillier
Before, when adding a user query where the state contains the strict filter, the label applied to the query was wrong. Now, the strict filter is always removed so the label applied is correct.
2014-09-21Change param filter for user queriesGravatar Alexis Degrugillier
Before, the filter was based on a blacklist so the user could add something and have unwanted behavior. Now, the filter is based on a whilelist so the user can use only predetermined parameters.
2014-09-21Remove number values for shortcuts as they are used in the default configurationGravatar Alexis Degrugillier
2014-09-21Change parameter settings to be consistent through out the fileGravatar Alexis Degrugillier
2014-09-21Change notification codeGravatar Alexis Degrugillier
Before, it was using the old way to display notifications to the user. Now, it uses the encapsulated method to do that.
2014-09-21Change todo alignGravatar Alexis Degrugillier
2014-09-21Add a todoGravatar Alexis Degrugillier
2014-09-21Fix typoGravatar Alexis Degrugillier
2014-09-21Add some commentsGravatar Alexis Degrugillier
It is a work in progress. I only did that for a single class so you can tell me if this is a good idea, if the content is missing something. Any comments are welcome.
2014-09-19Coding style (user queries)Gravatar Marien Fressinaud
2014-09-19Fix blank page for invalid user queriesGravatar Marien Fressinaud
Add a "deprecated" information See https://github.com/marienfressinaud/FreshRSS/issues/625
2014-09-18Add timeout option for HTML5 notificationGravatar plopoyop
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-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-07-10Fix bug changement default viewGravatar Marien Fressinaud
- It was impossible to set default view to "Show all articles" - "0" was compared to 0 ("O" === 0 => false) - cast value from Minz_Request into integer
2014-07-08SQL: removed superfluous transactions to avoid some dead locksGravatar Alexandre Alapetite
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-06Minor white space parenthesesGravatar Alexandre Alapetite
2014-07-06Add TTL to control feed freshnessGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/250
2014-07-03Preparation #3 for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100
2014-07-03Preparation for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100
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-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-05Add an option to choose content widthGravatar Marien Fressinaud
- 4 options: thin, medium, large and no limit - Thin is by default
2014-05-18Fix array valuesGravatar Alexis Degrugillier
2014-05-04Add user queriesGravatar Alexis Degrugillier
It's an intermediary step to remove the favorite button. I add a button to store the current query as a favorite query. It redirects automatically to the configuration page where it is possible to name and remove user queries. To make the queries more straigtforward, I removed the default behavior when searching for a string. This way, when we search for a string, the filter is not defaulted to all articles.
2014-04-08Split reading configuration pageGravatar Alexis Degrugillier
I splitted the reading configuration page in 2 pages. The display configuration page to prepare for #265 and the reading configuration page. It is just a test, feel free to discard that. I also change some wording to be consistent through out the application.
2014-03-30Merge branch '163-export' into devGravatar Marien Fressinaud
Conflicts: app/layout/aside_feed.phtml
2014-03-16Move import/export operations into an independant classGravatar Marien Fressinaud
- import and export are now two methods of importExportController - "opml" has been removed from the title
2014-02-28API streamContents for categories and feedsGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/13
2014-02-24Add a configuration option to get sticky articlesGravatar Alexis Degrugillier
Now the user can choose if an opened article will be repositioned to the top or not See #338
2014-02-22Improve sharingGravatar Alexis Degrugillier
Previously, the share page can handle only a limited number of shares and only one of each type. Now the configuration has been change to be more flexible and allows an unlimited number of shares. The share description is located in an array and the share configuration is stored along with the user configuration. Note: I tried to include the specific javascript code in a separate file but I did not succeded to import it.
2014-02-11Bug mise à jour favicons dans le cas de flux invalidesGravatar Alexandre Alapetite
2014-02-11un ->color oubliéGravatar Alexandre Alapetite
Fichier oublié dans le patch précédent https://github.com/marienfressinaud/FreshRSS/issues/295
2014-02-02Modification des raccourcis de navigationGravatar Alexis Degrugillier
Modification du raccourci pour naviguer au premier article (Home au lieu de Shift+j) Modification du raccourci pour naviguer au dernier article (End au lieu de Shift+k) Ajout de modificateurs pour utiliser les touches de navigation dans d'autres contextes (Shift pour les flux, Ctrl pour les catégories) Voir issue#256
2014-01-27Changement du nom poche en wallabagGravatar Marien Fressinaud
Le nom de poche a été changé en wallabag suite à "l'affaire Pocket". Le changement a été impacté partout même au niveau du fichier de conf. À priori ce n'est pas très impactant puisque poche n'est introduit que dans cette version et qu'il ne devrait pas y avoir "trop" de testeurs. Au pire si l'adresse poche/wallabag disparaît lors d'une migration, il suffit de la ressaisir, ce n'est pas critique :) Voir #397
2014-01-13Mise à jour nom thèmes + chargement robuste des thèmesGravatar Alexandre Alapetite
Renomme : default -> Origine En cas de thème introuvable, charge le thème par défaut, sinon le premier disponible. https://github.com/marienfressinaud/FreshRSS/issues/120