aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #1523 from wallabag/tcitworld-patch-1Jeremy Benoist2015-12-041-1/+1
|\ \ | | | | | | Typo
| * | TypoThomas Citharel2015-12-041-1/+1
|/ /
* | Merge pull request #1518 from mathbruyen/smtp-from-envJeremy Benoist2015-12-031-1/+10
|\ \ | |/ |/| Set SMTP from environment variables
| * SMTP configuration through environmentMathieu Bruyen2015-11-261-1/+10
|/ | | | | | | | | | Configuring SMTP parameters required to be written in files which is not convenient when using docker containers as the credentials need to be in the filesystem. Created environment parameters override for those parameters. A new build script created in order to generate those parameters right before launching the application.
* Merge pull request #1422 from wallabag/v2-ebookNicolas Lœuillet2015-11-0916-8/+1138
|\ | | | | V2 – Export entries
| * Update depsJeremy Benoist2015-11-091-15/+15
| |
| * Fix testsJeremy Benoist2015-11-092-1/+6
| |
| * Fix route parametersJeremy Benoist2015-11-093-8/+108
| | | | | | | | | | Improve export tests Improve CSV export
| * use JMS SerializerThomas Citharel2015-11-092-13/+6
| |
| * use the groups annotation instead of setIgnoredAttributesThomas Citharel2015-11-092-4/+42
| |
| * improved functionThomas Citharel2015-11-091-10/+6
| |
| * add json & xmlThomas Citharel2015-11-094-11/+102
| |
| * Fix tests on pgsqlJeremy Benoist2015-11-091-1/+1
| |
| * Rework on exportJeremy Benoist2015-11-0910-142/+348
| | | | | | | | | | | | - all export now return a `HttpFoundation\Response` - return a 404 on unsupported format - add tests
| * Start work on exportThomas Citharel2015-11-098-14/+715
|/ | | | | | | | For now: - ebook - mobi - pdf - csv
* Merge pull request #1500 from wallabag/v2-quote-pgsqlNicolas Lœuillet2015-11-0923-150/+252
|\ | | | | Fix quote strategy for reserved keyword in Postgres
| * Lock DoctrineBundle to 1.5.2Jeremy Benoist2015-11-082-14/+14
| | | | | | | | | | | | Because of a bad change, SQLite database cannot be created anymore. :arrow_right: https://github.com/doctrine/DoctrineBundle/pull/434
| * Remove duplicate commentsJeremy Benoist2015-11-071-7/+1
| |
| * CSJeremy Benoist2015-11-072-5/+5
| |
| * Skipping PostgreSQL test that drop databaseJeremy Benoist2015-11-073-30/+48
| | | | | | | | | | | | For a not-clear reason, I can't properly drop the current database. Even if Doctrine made a special case for that (https://github.com/doctrine/dbal/pull/849). So instead of trying crazy things to achieve the test, better way is to skip test (too much wasted days ..)
| * Re-enable test on doctrine commandJeremy Benoist2015-11-0711-18/+18
| | | | | | | | | | | | It will slow down the whole test suite (because it'll use doctrine command). Remove unecessary `KernelTestCase`. Also rename `AbstractControllerTest` to `WallabagApiTestCase` for consistency.
| * Add tests on TablePrefixSubscriberJeremy Benoist2015-11-072-2/+121
| |
| * Quoted entity to avoid reserved keywordJeremy Benoist2015-11-078-90/+55
| | | | | | | | Should fix #1498
| * Fix database already exist detectionJeremy Benoist2015-11-071-0/+6
|/ | | | This is not the same message exception from MySQL & SQLite with Postgres.
* Merge pull request #1510 from wallabag/v2-sf3Nicolas Lœuillet2015-11-0714-148/+199
|\ | | | | v2 – Fix some deprecated for Symfony3
| * CSJeremy Benoist2015-11-072-3/+3
| | | | | | | | Also force SYMFONY_DEPRECATIONS_HELPER for travis
| * Avoid other bundle deprecation to cancel the buildJeremy Benoist2015-11-071-0/+5
| |
| * Fix form_enctype deprecationJeremy Benoist2015-11-073-19/+21
| | | | | | | | Use form_start instead
| * Fix security.context deprecationJeremy Benoist2015-11-074-12/+12
| |
| * Fix pattern deprecationJeremy Benoist2015-11-071-5/+5
| | | | | | | | Replaced by path
| * Fix deprecated helper in commandJeremy Benoist2015-11-062-63/+54
| |
| * Update deps & add PHPUnit BridgeJeremy Benoist2015-11-062-47/+100
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelogs summary: - symfony/phpunit-bridge installed in version v2.7.6 Release notes: https://github.com/symfony/phpunit-bridge/releases/tag/v2.7.6 - twig/twig updated from v1.23.0 to v1.23.1 See changes: https://github.com/twigphp/Twig/compare/v1.23.0...v1.23.1 Release notes: https://github.com/twigphp/Twig/releases/tag/v1.23.1 - doctrine/inflector updated from v1.0.1 to v1.1.0 See changes: https://github.com/doctrine/inflector/compare/v1.0.1...v1.1.0 Release notes: https://github.com/doctrine/inflector/releases/tag/v1.1.0 - doctrine/cache updated from v1.5.0 to v1.5.1 See changes: https://github.com/doctrine/cache/compare/v1.5.0...v1.5.1 Release notes: https://github.com/doctrine/cache/releases/tag/v1.5.1 - doctrine/doctrine-cache-bundle updated from v1.0.1 to 1.2.1 See changes: https://github.com/doctrine/DoctrineCacheBundle/compare/v1.0.1...1.2.1 Release notes: https://github.com/doctrine/DoctrineCacheBundle/releases/tag/1.2.1 - doctrine/doctrine-bundle updated from v1.5.2 to 1.6.0 See changes: https://github.com/doctrine/DoctrineBundle/compare/v1.5.2...1.6.0 Release notes: https://github.com/doctrine/DoctrineBundle/releases/tag/1.6.0 - friendsofsymfony/user-bundle updated from dev-master to dev-master See changes: https://github.com/FriendsOfSymfony/FOSUserBundle/compare/d5b28c3...45d6f40
* Merge pull request #1505 from wallabag/v2-graby-logJeremy Benoist2015-11-023-85/+101
|\ | | | | Add graby log
| * Update depsJeremy Benoist2015-10-302-85/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelogs summary: - twig/twig updated from v1.22.3 to v1.23.0 See changes: https://github.com/twigphp/Twig/compare/v1.22.3...v1.23.0 Release notes: https://github.com/twigphp/Twig/releases/tag/v1.23.0 - doctrine/cache updated from v1.4.2 to v1.5.0 See changes: https://github.com/doctrine/cache/compare/v1.4.2...v1.5.0 Release notes: https://github.com/doctrine/cache/releases/tag/v1.5.0 - symfony/symfony updated from v2.7.5 to v2.7.6 See changes: https://github.com/symfony/symfony/compare/v2.7.5...v2.7.6 Release notes: https://github.com/symfony/symfony/releases/tag/v2.7.6 - sensio/distribution-bundle updated from v3.0.31 to v3.0.33 See changes: https://github.com/sensiolabs/SensioDistributionBundle/compare/v3.0.31...v3.0.33 Release notes: https://github.com/sensiolabs/SensioDistributionBundle/releases/tag/v3.0.33 - nelmio/api-doc-bundle updated from 2.9.0 to 2.10.3 See changes: https://github.com/nelmio/NelmioApiDocBundle/compare/2.9.0...2.10.3 Release notes: https://github.com/nelmio/NelmioApiDocBundle/releases/tag/2.10.3 - lexik/form-filter-bundle updated from v4.0.1 to v4.0.2 See changes: https://github.com/lexik/LexikFormFilterBundle/compare/v4.0.1...v4.0.2 Release notes: https://github.com/lexik/LexikFormFilterBundle/releases/tag/v4.0.2 - j0k3r/graby-site-config updated from 1.0.5 to 1.0.6 See changes: https://github.com/j0k3r/graby-site-config/compare/1.0.5...1.0.6 Release notes: https://github.com/j0k3r/graby-site-config/releases/tag/1.0.6 - j0k3r/graby updated from 1.0.2 to 1.0.4 See changes: https://github.com/j0k3r/graby/compare/1.0.2...1.0.4 Release notes: https://github.com/j0k3r/graby/releases/tag/1.0.4 - phpunit/phpunit updated from 4.8.13 to 4.8.16 See changes: https://github.com/sebastianbergmann/phpunit/compare/4.8.13...4.8.16 Release notes: https://github.com/sebastianbergmann/phpunit/releases/tag/4.8.16
| * Enable graby logJeremy Benoist2015-10-241-0/+4
|/
* Merge pull request #1495 from wallabag/v2-docsNicolas Lœuillet2015-10-2258-0/+2643
|\ | | | | add docs
| * add docsNicolas Lœuillet2015-10-2158-0/+2643
| |
* | Merge pull request #1496 from wallabag/v2-redirect-after-deletionJeremy Benoist2015-10-221-2/+2
|\ \ | |/ |/| fix #1005 V2 redirect after deletion
| * redirect on last page after deletionNicolas Lœuillet2015-10-211-2/+2
|/
* Merge pull request #1491 from jlnostr/v2-german-translationNicolas Lœuillet2015-10-192-0/+131
|\ | | | | Add german translation.
| * Add language to config.ymlJulian Oster2015-10-181-0/+1
| |
| * Add german translation.Julian Oster2015-10-181-0/+130
|/
* Merge pull request #1446 from wallabag/v2-language-configNicolas Lœuillet2015-10-1813-12/+283
|\ | | | | [WIP] language selection on config screen
| * Add tests on listenersJeremy Benoist2015-10-164-0/+147
| |
| * Language selection on config screenNicolas Lœuillet2015-10-1511-12/+136
|/
* Merge pull request #1484 from wallabag/v2-2factor-authJeremy Benoist2015-10-1515-111/+451
|\ | | | | 2factor authentication via email
| * forgot parameters for travisNicolas Lœuillet2015-10-153-0/+6
| |
| * move 2factor activation in parametersNicolas Lœuillet2015-10-155-30/+43
| |
| * add tests for 2factor authenticationNicolas Lœuillet2015-10-143-21/+59
| |
| * 2factor authentication via emailNicolas Lœuillet2015-10-1311-111/+394
| |