aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
* Ability to prefix tablesJeremy2015-04-019-8/+92
| | | | Will fix #799
* Merge pull request #1166 from wallabag/v2-rssNicolas Lœuillet2015-04-0127-88/+1074
|\ | | | | Add RSS feeds
| * Force raw on contentJeremy2015-04-011-3/+3
| | | | | | We don't want Symfony to escape html content
| * Avoid timeout on code coverage from ScrutinizerJeremy2015-03-311-1/+2
| |
| * Use lemonde instead of mailjetJeremy2015-03-312-3/+3
| | | | | | | | | | | | Mailjet seems to be laggy, hope that LeMonde will be more reliable in the future. @see https://travis-ci.org/wallabag/wallabag/jobs/56246231
| * Update InstallCommand testJeremy2015-03-313-6/+35
| | | | | | | | | | | | | | | | They are god damn too long to execute because it launch external command (mostly related to doctrine). So I've added a PHPUnit @group (`command-doctrine`) so that we can avoid launching them on a regular basis, like that: `phpunit --exclude-group command-doctrine`
| * Add testsJeremy2015-03-3113-26/+533
| | | | | | | | and fix few mistakes
| * Sort by id is fasterJeremy2015-03-311-4/+4
| | | | | | | | Since it's the primary key
| * Add rss for entriesJeremy2015-03-3113-61/+510
|/ | | | will fix #1000
* Merge pull request #1152 from wallabag/v2-forgot-passwordNicolas Lœuillet2015-03-3015-8/+526
|\ | | | | Handle forgot password
| * Add some testsJeremy2015-03-082-1/+46
| |
| * Handle forgot passwordJeremy2015-03-0815-8/+481
| |
* | Merge pull request #1163 from wallabag/v2-speed-up-testsNicolas Lœuillet2015-03-284-12/+70
|\ \ | |/ |/| Speed up tests
| * Rewrite travis & add scrutinizerJeremy2015-03-282-14/+54
| |
| * Enable hhvm & nightly for curiosityJeremy2015-03-271-0/+7
| |
| * Switch to Docker-based infrastructureJeremy2015-03-271-1/+3
| |
| * Use doctrine cache for testsJeremy2015-03-272-3/+12
|/
* Merge pull request #1110 from wallabag/v2-api-hypermediaNicolas Lœuillet2015-03-0614-218/+589
|\ | | | | [WIP] API : hypermedia & tags
| * Use pager in getEntries() and return Hateoas collectionWilliam Durand2015-03-061-5/+16
| |
| * Return pager into EntryRepository (for entries only)William Durand2015-03-061-3/+5
| |
| * Add PagerfantaWilliam Durand2015-03-062-2/+71
| |
| * add getUser on Tag entityNicolas Lœuillet2015-03-061-0/+8
| |
| * add more log on AccessDeniedExceptionNicolas Lœuillet2015-03-061-9/+13
| |
| * fix testsNicolas Lœuillet2015-03-061-3/+3
| |
| * remove JsonResponseNicolas Lœuillet2015-03-061-10/+9
| |
| * fix tests for GET /entries/tagsNicolas Lœuillet2015-03-063-4/+24
| |
| * remove useless codeNicolas Lœuillet2015-03-061-4/+0
| |
| * commit bug with getSaltNicolas Lœuillet2015-03-061-7/+3
| |
| * replace Response with JsonResponseNicolas Lœuillet2015-03-063-34/+32
| |
| * remove debug linesNicolas Lœuillet2015-03-063-8/+0
| |
| * add relation between user and tags, tests are brokenNicolas Lœuillet2015-03-067-31/+131
| |
| * POST entries/tags with testNicolas Lœuillet2015-03-063-1/+69
| |
| * relation between tags and entriesNicolas Lœuillet2015-03-067-148/+60
| |
| * fixtures for tagNicolas Lœuillet2015-03-062-0/+100
| |
| * fix GET /api/entries/{entry}/tagsNicolas Lœuillet2015-03-061-1/+1
| |
| * add relation between entry and tagNicolas Lœuillet2015-03-066-122/+53
| |
| * remove dumb codeNicolas Lœuillet2015-03-063-139/+6
| |
| * remove GET /tags/idNicolas Lœuillet2015-03-061-0/+121
| |
| * GET /api/tags/id_tag methodNicolas Lœuillet2015-03-064-4/+86
| |
| * remove isDeleted flagNicolas Lœuillet2015-03-066-62/+23
| |
| * improve hateoas implementationNicolas Lœuillet2015-03-061-6/+5
| |
| * returns serialzed object for GET /entriesNicolas Lœuillet2015-03-061-1/+1
| |
| * first draft of hypermedia implementationNicolas Lœuillet2015-03-067-30/+165
|/
* Merge pull request #1144 from wallabag/v2-buildNicolas Lœuillet2015-03-044-18/+21
|\ | | | | Simplify build system
| * Simplify build systemJeremy2015-03-034-18/+21
|/
* Merge pull request #1132 from wallabag/v2-themeNicolas Lœuillet2015-03-02473-11089/+370
|\ | | | | V2 theme
| * Only one pattern for LiipThemeJeremy2015-03-012-7/+6
| | | | | | | | Others patterns aren't required (but I think it's still important to have them around)
| * Cleanup & simplify themeJeremy2015-03-01252-8993/+158
| |
| * Remove old themesJeremy2015-03-01165-2678/+0
| |
| * Add LiipThemeBundleJeremy2015-03-01247-143/+938
|/ | | | | | | | Re-defined the config / user relation to be OneToOne bidirectionnal. ConfigType is now a service so I can inject the list of available themes that are also used by LiipThemeBundle Force sqlite for test In case of people use a different driver in parameter.yml (yes I do :))