summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-13Revert deletion of the favorite actionsGravatar Alexis Degrugillier
2014-04-13Add a new status for 'ALL'Gravatar Alexis Degrugillier
I made the conversion in every file I can think of. It should not have any reference to the string 'all' for the state context
2014-04-12Extract RSS feed from menuGravatar Alexis Degrugillier
The RSS action has now its own button. I also reorganized the button display order to be more natural. I did not find an appropriate Unicode replacement for the Rss icon.
2014-04-12Fix DOM idsGravatar Alexis Degrugillier
2014-04-12Change activate button layoutGravatar Alexis Degrugillier
2014-04-12Delete favorite buttonGravatar Alexis Degrugillier
I extract drop-down menu actions to make them as button action in the page header. I removed the favorite button on the category list because it is a duplicate from the button action. Now button action act as filters and you can combine them. It is a test to see if we can keep it like that. There is still work to do to extract other actions from the drop-down list. I did not want to change everything if we don't keep it. See #376 and #277
2014-04-11Revert "Revert "Fix click action on article""Gravatar Alexandre Alapetite
This reverts commit c94e893dbb7f5e4fcc58311c563f1b33f3681823.
2014-04-11Revert "Fix click action on article"Gravatar Alexandre Alapetite
This reverts commit 7e0566b0a183208e020ff31d5c92ef794de19a1e.
2014-04-11Merge pull request #482 from aledeg/click-articleGravatar Alexandre Alapetite
Fix click action on article
2014-04-11Merge pull request #481 from aledeg/theme-darkGravatar Alexandre Alapetite
Fix small color bug
2014-04-10Fix click action on articleGravatar Alexis Degrugillier
Before, when the user clicks on an article header one, it expands. When it clicks a second time, it collapses. When it clicks a third time it stays collapsed instead of expand. Now it toggles the article between expanded and collapsed state.
2014-04-10Fix small color bugGravatar Alexis Degrugillier
There was a small bug color in Dark theme.
2014-04-10Merge pull request #479 from aledeg/click-articleGravatar Alexandre Alapetite
Fix unexpected behavior during navigation
2014-04-09Fix unexpected behavior during navigationGravatar Alexis Degrugillier
When the navigation is done with the mouse and shortcuts, the focus on the current article is lost when the article is collapsed with the mouse. So when navigating with the shortcut does not open the intended article. See #473 and #478
2014-04-09Merge pull request #475 from aledeg/new-configGravatar Alexandre Alapetite
Split reading configuration page
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-04-08Change click behaviour on articles #3Gravatar Alexandre Alapetite
Code simplification https://github.com/marienfressinaud/FreshRSS/issues/473 https://github.com/marienfressinaud/FreshRSS/commit/60f73f53c4da215a6a60d21e809960c9cf6078fe
2014-04-08Change click behaviour on articles #2Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/473 https://github.com/marienfressinaud/FreshRSS/pull/474/files
2014-04-08Merge pull request #474 from aledeg/close-actionGravatar Alexandre Alapetite
Change click behavior on articles
2014-04-07Change click behavior on articlesGravatar Alexis Degrugillier
Before, when the user click on an article it closes even if he want to select text. This behavior was not acceptable, so I changed it to close the article when cliking on the article footer or in the article margins. See #473
2014-04-06UI: Align article one entry lowerGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/470
2014-04-06Add link to article titleGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/469
2014-03-30Improve compatibility PHP 5.3Gravatar Marien Fressinaud
2014-03-30Prevent click on bookmarkletGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/464
2014-03-30Fix list of valid files (import label)Gravatar Marien Fressinaud
2014-03-30Merge branch 'dev' of github.com:marienfressinaud/FreshRSS into devGravatar Marien Fressinaud
2014-03-30Merge branch '163-export' into devGravatar Marien Fressinaud
Conflicts: app/layout/aside_feed.phtml
2014-03-30Spelling mistakeGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/commit/19517baf13dba7ebd7d41dbbacceaea3ed75af8e
2014-03-30Add a bookmark to easily subscribe to websitesGravatar Marien Fressinaud
- FeedController->addAction (GET) shows a confirmation page - If already subscribe, redirect to Configure->feedAction - Add a bookmark in aside_feed See #425 #426 and #464
2014-03-30Minz_Url separator is "?" instead of "/?"Gravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/pull/426
2014-03-30Fix coding styleGravatar Marien Fressinaud
2014-03-30Improve OPML renderingGravatar Marien Fressinaud
- Fix html entities rendering
2014-03-30Import of articles is implemented!Gravatar Marien Fressinaud
- Remove massiveImportAction and addCategories from FeedController - Fix typo for some methods (camelCase) - addCategoryObject and addFeedObject return id if corresponding object already exists in DB - introduce addEntryObject. Return -1 if Entry already exist (in order to keep quite good performances) - Complete importArticles method Need some more tests + better performance
2014-03-29Better OPML import / exportGravatar Marien Fressinaud
- use a new OPML library (https://github.com/marienfressinaud/lib_opml) - import has been completely rewritten (far better!) - introduce addFeedObject and addCategoryObject (in DAO for the moment). Permit to add easily feeds and categories (check if they already exist in DB) - introduce html_chars_utf8 (wrap htmlspecialchars for UTF-8)
2014-03-29Fix typo + improve detection OPML fileGravatar Marien Fressinaud
2014-03-28Improve import / export functionnalityGravatar Marien Fressinaud
It is not finished yet and does not even work at all!! - ZIP archive can be uploaded - Entries are imported from starred.json and feed*.json but not added in DB for the moment. - Fix export (add author, id -> guid, content -> content.content and add alternate) See https://github.com/marienfressinaud/FreshRSS/issues/163
2014-03-28Export form is not displayed if there is nothing to exportGravatar Marien Fressinaud
2014-03-27Export is fully implementedGravatar Marien Fressinaud
- Export list of feeds (OPML) - Export list of favourites (JSON) - Export list of articles per feed (JSON)
2014-03-27Merge branch '163-export' into devGravatar Marien Fressinaud
2014-03-24Minz: remove url_rewritingGravatar Alexandre Alapetite
As suggested https://github.com/marienfressinaud/FreshRSS/issues/163#issuecomment-38478669 At the same time, removes a bunch of (almost) dead code such as Minz_Router (the few remaining lines being moved to Minz_FrontController to avoid a class) Contributes to https://github.com/marienfressinaud/FreshRSS/issues/303
2014-03-24Constant to enable PHP compressionGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/303#issuecomment-38477994
2014-03-22Minz: remove one layer of ob_ (experimental)Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/303#issuecomment-38351311 https://github.com/marienfressinaud/FreshRSS/issues/163 * Remove Minz_Response (not needed anymore) * Move Minz_Request::reseted to Minz_Dispatcher::reset()
2014-03-22Merge remote-tracking branch 'origin/dev' into 163-exportGravatar Alexandre Alapetite
2014-03-22Minz: remove Minz_CacheGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/163#issuecomment-37990319 https://github.com/marienfressinaud/FreshRSS/issues/303
2014-03-18New version to export articles + opmlGravatar Marien Fressinaud
It does not work yet! A lot of work has still to be done. Next versions should fix TODOs - OPML export works fine but can be improved - a framework has been created for articles export
2014-03-16Bug feed name with special charsGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/462
2014-03-16Fix bug when emptying a categoryGravatar Marien Fressinaud
- Controller expected a POST action but we were using a link (so a GET action) - Links to empty a category is now a button whit a formaction - Improve comparaison id with id of the default category
2014-03-16Merge branch 'dev' into 163-exportGravatar Marien Fressinaud
2014-03-16Add some helpers to Minz_Log classGravatar Marien Fressinaud
Add following methods: - Minz_Log::debug($msg) - Minz_Log::notice($msg) - Minz_Log::warning($msg) - Minz_Log::error($msg)
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