aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix Pocket generateUrl parametersJeremy Benoist2016-01-151-2/+2
|
* Fix recent updateJeremy Benoist2016-01-158-19/+31
| | | | | | - some missing url parameters from WallabagRestController & EntryController - use a service for `EntryFilterType` to use fully qualified name instead (so changing class signature) - update ImportBundle (url & form)
* Update bundle & stock fileJeremy Benoist2016-01-1515-43/+40
| | | | | | - update stock file (AppKernel, app.php, etc ..) from SymfonyStandard edition) - update bundle to latest release - remove security on profiler
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-1541-112/+136
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Merge pull request #1563 from wallabag/v2-fix-1394Jeremy Benoist2016-01-102-2/+2
|\ | | | | #1394 Fixed 'mark as read' and 'mark as unread' links
| * Fixed 'mark as read' and 'mark as unread' linksNicolas Lœuillet2016-01-092-2/+2
| |
* | add import link on baggy themeNicolas Lœuillet2016-01-091-0/+1
|/
* Merge pull request #1493 from wallabag/v2-pocket-import2.0.0-alpha.1Jeremy Benoist2016-01-0737-15/+1687
|\ | | | | v2 – 1st draft for Pocket import via API & Wallabag v1 import
| * updated testsNicolas Lœuillet2016-01-079-17/+10
| |
| * Added french translationsNicolas Lœuillet2016-01-057-8/+28
| |
| * Few phpDoc fixJeremy Benoist2016-01-036-16/+27
| | | | | | | | And some little mistakes
| * Fix tag related test for PocketJeremy Benoist2016-01-032-3/+6
| |
| * Add tagged services for importJeremy Benoist2016-01-0224-42/+393
| | | | | | | | | | | | | | | | | | - list services in /import - add url to import service - ImportBundle routing are now prefixed by /import - optimize flush in each import (flushing each 20 contents) - improve design of each import - add more tests
| * Rewrote Wallabag v1 importJeremy Benoist2016-01-0212-94/+404
| |
| * Rewrote Pocket ImportJeremy Benoist2016-01-029-210/+357
| | | | | | | | | | | | | | For the moment, we won't do a queue system, just a plain synchronous import. We also use ContentProxy to grab content for each article from Pocket. Error from Pocket are now logged using the logger. The ImportInterface need to be simple and not related to oAuth (not all import will use that method).
| * Fix the way to check for an existing entryJeremy Benoist2016-01-021-2/+2
| | | | | | | | Instead of requiring more than 1 entry (> 1) we have to check for at least one entry (> 0)
| * Update after previous mergeJeremy Benoist2016-01-0210-112/+83
| | | | | | | | PR #1443 was merged into this branch to handle all import type in the same place.
| * First test on PocketImportJeremy Benoist2016-01-023-77/+202
| | | | | | | | Giving ability to define the Client add abitliy to easliy test the import.
| * Update url & service nameJeremy Benoist2016-01-026-13/+56
| | | | | | | | | | Prefix ur with service namel: [service]_[route name] Add comment in Interface
| * Change the way to check for an existing entryJeremy Benoist2016-01-024-12/+20
| | | | | | | | The repository method return the entry found or false if nothing exists.
| * - remove importers configurationNicolas Lœuillet2016-01-026-37/+31
| | | | | | | | - add check on userId for findOneByURL for entries
| * fix #1502 avoid duplicate entry and store pocket url in configNicolas Lœuillet2016-01-026-36/+79
| |
| * assign tags to entries and add lastPocketImport attribute to userNicolas Lœuillet2016-01-023-12/+89
| |
| * create ImportController to list importersNicolas Lœuillet2016-01-025-5/+49
| |
| * service callNicolas Lœuillet2016-01-021-2/+2
| |
| * refactor pocket importNicolas Lœuillet2016-01-027-105/+202
| |
| * 1st draft for Pocket import via APINicolas Lœuillet2016-01-024-1/+174
| |
| * add docs for Import featureNicolas Lœuillet2016-01-021-13/+20
| |
| * form to upload fileNicolas Lœuillet2016-01-026-17/+108
| |
| * create controller to launch import commandNicolas Lœuillet2016-01-023-8/+52
| |
| * userId is now set in parametersNicolas Lœuillet2016-01-021-2/+10
| |
| * first draft for json import, needed for wallabag v1 migrationNicolas Lœuillet2016-01-021-0/+112
| |
* | Hide export button if we are not on entries listNicolas Lœuillet2016-01-061-0/+3
|/
* Merge pull request #1545 from wallabag/v2-user-tagNicolas Lœuillet2016-01-0213-103/+159
|\ | | | | v2 – Remove user reference in tag
| * Removed commentJeremy Benoist2015-12-291-9/+3
| | | | | | | | And move the SQL query inside the php doc
| * Fix the way to remove a tag from all user entriesJeremy Benoist2015-12-293-10/+53
| |
| * Cleanup testsJeremy Benoist2015-12-292-6/+1
| | | | | | | | | | - WallabagRestController: remove the tag deletion from the API since we can't remove a tag now, we only remove reference to entries - RuleBasedTaggerTest: remove workaround for asserting tag are equal since problem was related to mock expects (_call instead of findOneByLabel which was removed from the tag repository)
| * Fix parameters regarding documentationJeremy Benoist2015-12-291-2/+2
| | | | | | | | Parameters are `star` & `archived`, not `is_starred` & `is_archived`
| * Remove user reference in tagJeremy Benoist2015-12-2913-99/+123
| | | | | | | | Fix #1543
* | Merge pull request #1546 from wallabag/v2-reload-contentNicolas Lœuillet2016-01-029-36/+109
|\ \ | | | | | | v2 – Ability to reload an entry
| * | Backport all icomoon from v1Jeremy Benoist2015-12-306-37/+42
| | | | | | | | | | | | And add a reload icon
| * | Ability to reload an entryJeremy Benoist2015-12-304-0/+68
| | | | | | | | | | | | | | | | | | Could be useful when we want to update the content or when the content failed to be fetched. Fix #1503
* | | Fix wrong if when deleting an entryJeremy Benoist2015-12-301-1/+1
|/ / | | | | | | Bad condition when deleting an entry returned `true` instead of the referer url
* / Add custom email for 2FAJeremy Benoist2015-12-2911-4/+260
|/ | | | Related #1490
* Don't redirect to the content page after deletionJeremy Benoist2015-12-282-2/+58
| | | | | | Fix #1512 We generate the url of the removed content and compare it to the referer url. If they matche, we redirect user to the homepage otherwise to the referer url.
* Entry data should have unique urlJeremy Benoist2015-12-281-6/+6
|
* Add test on tagAllForUserJeremy Benoist2015-12-282-1/+26
| | | | And fix multiplication of entries returned by `tagAllForUser`.
* Avoid multiple tag creationJeremy Benoist2015-12-283-0/+69
| | | | | | | When a new tag is created but not yet persisted, it can be duplicated. It could happen when multiple rules match the content and at least 2 of them should attach same new tag. Fix #1528
* add slug for tagsNicolas Lœuillet2015-12-281-0/+12
|
* php csNicolas Lœuillet2015-12-088-37/+31
|