aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Validate language & preview picture fieldsJeremy Benoist2017-06-082-11/+68
| | | | | Instead of saving the value of each field right into the content without any validation, it seems better to validate them. This might sounds obvious now we say that.
* Add ability to name the clientJeremy Benoist2017-06-081-3/+4
|
* CSJeremy Benoist2017-06-071-4/+4
|
* Create a client when creating a user using the apiJeremy Benoist2017-06-074-13/+70
| | | | | | | | While creating a new user using the API, we also create a new client for the current user. So the app which just create the user can use its newly created client to configure the app. That new client is only return after creating the user. When calling the endpoint /api/user to get user information, the new client information won’t be return.
* Merge pull request #3093 from aaa2000/annotation-error-on-saveNicolas Lœuillet2017-06-0717-21/+119
|\ | | | | Displays an error with an annotation with a too long quote
| * Displays an error with an annotation with a too long quoteadev2017-06-0417-21/+119
| | | | | | | | Fix #2762
* | Merge pull request #3181 from wallabag/api-content-patchJérémy Benoist2017-06-072-76/+76
|\ \ | | | | | | Add ability to patch an entry with more fields
| * | Refactorize the way to save an Entry in the APIJeremy Benoist2017-06-071-102/+70
| | |
| * | Add ability to patch an entry with more fieldsJeremy Benoist2017-06-022-4/+36
| |/ | | | | | | | | | | | | | | | | Like when we create an entry, we can now patch an entry with new fields: - content - language - preview_picture - published_at - authors
* | Merge pull request #3184 from wallabag/better-way-image-extensionJérémy Benoist2017-06-071-5/+45
|\ \ | | | | | | Use an alternative way to detect images
| * | Use an alternative way to detect imageJeremy Benoist2017-06-051-5/+45
| |/ | | | | | | | | | | | | When parsing content to retrieve images to save locally, we only check for the content-type of the image response. In some case, that value is empty. Now we’re also checking for the first few bytes of the content as an alternative to detect if it’s an image wallabag can handle. We might get higher image supports using that alternative method.
* | Merge pull request #3179 from wallabag/show-user-commandJérémy Benoist2017-06-071-0/+77
|\ \ | | | | | | Show user command
| * | Fix reviewThomas Citharel2017-06-041-3/+3
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * | Add show user commandThomas Citharel2017-06-021-0/+77
| |/ | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | Merge pull request #3177 from wallabag/api-create-user-updateJérémy Benoist2017-06-065-327/+42
|\ \ | | | | | | API user creation behing a toggle
| * | Return 201 on user creationJeremy Benoist2017-06-021-5/+12
| | |
| * | Add translationJeremy Benoist2017-06-021-1/+1
| | |
| * | API user creation behing a toggleJeremy Benoist2017-06-025-322/+30
| |/ | | | | | | | | | | | | | | I've added a toggle feature (in internal settings) so that user api creation can be disabled while form registration still can be enabled. Also, the /api/user endpoint shouldn't require authentication. Even if we check the authentication when sending a GET request, to retrieve current user information. I've moved all the internal settings definition to config to avoid duplicated place to define them. I don't know why we didn't did that earlier.
* | Merge pull request #3165 from wallabag/it-translation-updateJérémy Benoist2017-06-061-38/+38
|\ \ | |/ |/| Update Italian translation
| * Update messages.it.ymlJérémy Benoist2017-06-021-23/+23
| |
| * Updated :it: translationsNicolas Lœuillet2017-05-311-13/+13
| | | | | | | | Thank you @matteocoder
| * Update :it: translationJérémy Benoist2017-05-301-2/+2
| |
* | Merge pull request #2708 from jcharaoui/import-disablecontentupdateJérémy Benoist2017-06-0216-70/+105
|\ \ | | | | | | Import disableContentUpdate
| * | Fix option attributesJeremy Benoist2017-06-011-3/+3
| | |
| * | We don't need that getterJeremy Benoist2017-06-011-8/+0
| | |
| * | No need to catch that ExceptionJeremy Benoist2017-06-011-9/+2
| | |
| * | Rewrote code & fix testsJeremy Benoist2017-06-012-51/+22
| | |
| * | CSJeremy Benoist2017-06-011-3/+3
| | |
| * | Fix testsJeremy Benoist2017-06-015-33/+49
| | |
| * | CSJeremy Benoist2017-06-011-2/+1
| | |
| * | Replace Wallabag v1 error strings with v2 stringsJerome Charaoui2017-06-012-3/+17
| | |
| * | Add disableContentUpdate import optionJerome Charaoui2017-06-013-25/+84
| | | | | | | | | | | | | | | | | | This commit also decouples the "import" and "update" functions inside ContentProxy. If a content array is available, it must be passed to the new importEntry method.
| * | Put default fetching error title in global configJerome Charaoui2017-06-014-3/+4
| | |
| * | Avoid returning objects passed by reference.Jerome Charaoui2017-06-0110-21/+11
| | | | | | | | | | | | | | | | | | Objects are always passed by reference, so it doesn't make sense to return an object which is passed by reference as it will always be the same object. This change makes the code a bit more readable.
* | | CSJeremy Benoist2017-06-011-3/+2
| | |
* | | Replace images with &Jeremy Benoist2017-06-011-1/+7
| | | | | | | | | | | | | | | | | | Images with `&` in the path weren’t well replaced because they might be with `&amp;` in the html instead. Replacing `&` with `&amp;` fix the problem.
* | | fixup! Set the right variable typeJeremy Benoist2017-06-011-2/+2
| | |
* | | Both parameter wasn't used in the function, removing themJeremy Benoist2017-06-011-2/+1
| | |
* | | Set the right variable typeJeremy Benoist2017-06-011-2/+2
| | |
* | | Page parameter was never used in the functionJeremy Benoist2017-06-013-7/+4
|/ / | | | | | | | | It could have been used if we set the current page inside PreparePagerForEntries. But we did that in each controller because we can have an OutOfRangeCurrentPageException
* | Merge pull request #3137 from aaa2000/isolated-testsJérémy Benoist2017-06-013-14/+11
|\ \ | | | | | | Isolated tests
| * | Isolated testsadev2017-05-313-14/+11
| | | | | | | | | | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* | | Merge pull request #3077 from wallabag/add-tags-list-viewNicolas Lœuillet2017-05-312-17/+27
|\ \ \ | | | | | | | | Added tags on list view
| * | | Add some flex magicThomas Citharel2017-05-311-18/+16
| | | | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * | | Fixed tags display on grid viewNicolas Lœuillet2017-05-312-23/+28
| | | |
| * | | Added tags on list viewNicolas Lœuillet2017-05-301-1/+8
| | |/ | |/|
* | | Forced date can now be a timestamp tooJeremy Benoist2017-05-312-2/+9
| | | | | | | | | | | | Add adding more tests for forced content
* | | Improve docsJeremy Benoist2017-05-312-3/+6
| | |
* | | Remove htmlawed and use graby insteadJeremy Benoist2017-05-311-18/+1
| | | | | | | | | | | | | | | Instead of using htmlawed (which is already used in graby) use graby directly (which require some refacto on graby side). Still needs some tests.
* | | Use graby ContentExtractor to clean htmlJeremy Benoist2017-05-312-1/+10
| | | | | | | | | | | | It might be better to re-use some graby functionalities to clean html instead of building a new system.