aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle
Commit message (Collapse)AuthorAgeFilesLines
* Refacto wallabag importJeremy Benoist2016-03-286-308/+353
| | | | | Use an abstract class to store all common action from wallabag vX import. Move specificity in v1 & v2 import.
* Tags were not imported in wallabag v2 importJeremy Benoist2016-03-275-28/+50
| | | | Also, simplify exportAs matching format
* Fix some Scrutinizer issuesJeremy Benoist2016-03-275-12/+55
|
* Add flashes messagesJeremy Benoist2016-03-206-14/+24
|
* Convert english translation fileJeremy Benoist2016-03-2014-49/+61
| | | | | | | - convert english translation to translate key - remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material) - fix tests about text in response (now checking translation key instead of translated text) - remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
* Improve testsJeremy Benoist2016-03-111-4/+0
| | | | | | - add more tests for coverage - add a test on annotation deletion - fix post annontation with ranges
* Added 'wallabag' in page titleNicolas Lœuillet2016-03-083-3/+3
|
* Adding testJeremy Benoist2016-03-0410-63/+219
| | | | Reformat json file (thanks pro.jsonlint.com)
* cs & tests for wllbg v1 importThomas Citharel2016-03-037-5/+122
|
* french translation & pocketThomas Citharel2016-03-034-3/+52
|
* Mark all imported articles as readThomas Citharel2016-03-036-2/+29
|
* Make English welcome message more naturalOlivier Mehani2016-02-251-1/+1
| | | | | | sed -i "s/Welcome on wallabag/Welcome to wallabag/" Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Move assignTagsToEntry in ContentProxy helperJeremy Benoist2016-02-193-59/+13
|
* import tags from v1 (#1657)Thomas Citharel2016-02-123-3/+44
|
* Merge pull request #1665 from wallabag/v2-translationsJeremy Benoist2016-02-112-2/+7
|\ | | | | lots of diverse translation stuff & some typos
| * lots of diverse translation stuff & some typosThomas Citharel2016-02-112-2/+7
| |
* | add testsThomas Citharel2016-02-115-12/+75
| |
* | CSThomas Citharel2016-02-113-7/+5
| |
* | reimport v1 entries if they were not fetchedThomas Citharel2016-02-114-7/+32
|/
* an other test for non empty fieldsNicolas Lœuillet2016-02-051-3/+15
|
* add test to check empty fieldsNicolas Lœuillet2016-02-051-0/+12
|
* updated fixturesNicolas Lœuillet2016-02-051-1/+1
|
* Test if some keys are missing in v2 importNicolas Lœuillet2016-02-051-3/+9
|
* Merge pull request #1612 from wallabag/v2-settings-pageNicolas Lœuillet2016-02-045-4/+21
|\ | | | | Settings page
| * Add warning message for PocketImportJeremy Benoist2016-01-312-0/+7
| | | | | | | | Warn user if pocket_consumer_key isn't defined
| * Add CraueConfig for internal settingsJeremy Benoist2016-01-313-4/+14
| |
* | Merge pull request #1601 from wallabag/v2-import-from-v2Jeremy Benoist2016-02-0110-16/+329
|\ \ | | | | | | [#1590] Add JSON import from wallabag v2
| * | [#1590] Add JSON import from wallabag v2Nicolas Lœuillet2016-01-2010-16/+329
| |/
* / [#1604] First draft to fix SensioLabsInsight reportNicolas Lœuillet2016-01-221-4/+0
|/
* Merge pull request #1583 from wallabag/v2-fix-deleteNicolas Lœuillet2016-01-154-4/+4
|\ | | | | Fix `findOneByUrl` side effect in tests
| * Fix `findOneByUrl` side effect in testsJeremy Benoist2016-01-154-4/+4
| | | | | | | | Fix #1566
* | Fix Pocket generateUrl parametersJeremy Benoist2016-01-151-2/+2
| |
* | Fix recent updateJeremy Benoist2016-01-153-6/+9
|/ | | | | | - 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)
* updated testsNicolas Lœuillet2016-01-078-16/+9
|
* Added french translationsNicolas Lœuillet2016-01-056-8/+16
|
* Few phpDoc fixJeremy Benoist2016-01-032-2/+3
| | | | And some little mistakes
* Fix tag related test for PocketJeremy Benoist2016-01-032-3/+6
|
* Add tagged services for importJeremy Benoist2016-01-0223-41/+388
| | | | | | | | | - 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-028-199/+356
| | | | | | | 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).
* Update after previous mergeJeremy Benoist2016-01-026-2/+234
| | | | 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-021-2/+2
| | | | The repository method return the entry found or false if nothing exists.
* - remove importers configurationNicolas Lœuillet2016-01-024-33/+10
| | | | - add check on userId for findOneByURL for entries
* fix #1502 avoid duplicate entry and store pocket url in configNicolas Lœuillet2016-01-024-13/+65
|
* assign tags to entries and add lastPocketImport attribute to userNicolas Lœuillet2016-01-022-12/+66
|
* 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-026-105/+201
|