aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper
Commit message (Collapse)AuthorAgeFilesLines
* Define storeArticleHeaders false by defaultJeremy Benoist2017-11-211-1/+1
| | | | | Fix tests which must use `$storeArticleHeaders`. Fix CS
* Added internal setting to enable/disable headers storageNicolas Lœuillet2017-11-201-2/+4
|
* Properly run php-cs-fixerJeremy Benoist2017-10-281-23/+23
|
* php-cs-fixerMartin Trigaux2017-10-281-24/+24
| | | | php bin/php-cs-fixer fix src/Wallabag/CoreBundle/Helper/EntriesExport.php
* Set the title in a separated chapterMartin Trigaux2017-10-281-5/+4
| | | | | Set the export option on the same page, same as done in producePdf Move the ToC at the end of the book so the title page is the first one
* add a title pageMartin Trigaux2017-10-281-1/+2
| | | | The first page of the book is the title
* CSJeremy Benoist2017-10-111-3/+3
|
* Fixed @j0k3r's reviewNicolas Lœuillet2017-10-111-0/+1
|
* Fixed @tcitworld's reviewNicolas Lœuillet2017-10-111-6/+2
|
* Translated first page of exported articleNicolas Lœuillet2017-10-111-2/+7
|
* CSJeremy Benoist2017-10-091-1/+1
|
* Merge pull request #3332 from nclsHart/better-txt-exportNicolas Lœuillet2017-09-061-1/+3
|\ | | | | Better entry txt export using html2text
| * better entry txt export using html2textNicolas Hart2017-08-271-1/+3
| |
* | Tag: render tags case-insensitive by storing them in lowercaseKevin Decherf2017-08-271-1/+1
|/ | | | | | Fixes #2502 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix some namespaces and phpdocNicolas Hart2017-07-291-2/+2
|
* Add a test for updatePublishedAtJeremy Benoist2017-07-241-3/+9
| | | | | | | To avoid error when a content is re-submitted and it previously add a published date. Also, fix the `testPostSameEntry`
* Fix updatePublishedAt on already parsed article's dateSimounet2017-07-241-1/+1
|
* Merge pull request #3266 from egilli/export-domain-as-authorJérémy Benoist2017-07-111-6/+31
|\ | | | | Use the article publisher as author for exported files
| * Make updateAuthor code simpler to readÉtienne Gilli2017-07-101-8/+10
| |
| * Use the article publisher as author for exportÉtienne Gilli2017-07-091-2/+9
| | | | | | | | | | When exporting an entry, use the publishedBy field as author name for epub, mobi and pdf formats. Fallback to domain name if empty.
| * Use the article domain as author for export filesÉtienne Gilli2017-07-081-6/+22
| | | | | | | | | | | | | | When exporting an entry, use the domain name as author name for epub, mobi and pdf formats, instead of 'wallabag'. Change the author from array to string, because for now, there is always only one author.
* | Add EntityTimestampsTrait to handle datesJeremy Benoist2017-07-061-0/+24
|/ | | | Refactorize timestamps() method to avoid re-writing it on each entity
* CSJeremy Benoist2017-07-031-70/+70
|
* Fix validateAndSetPreviewPictureJeremy Benoist2017-07-031-4/+1
| | | | Which wasn't covered by a test!
* Fix PATCH methodJeremy Benoist2017-07-031-37/+52
| | | | | The PATCH method for the entry should only update what user sent to us and not the whole entry as it was before. Also, sending tags when patching an entry will now remove all current tags & assocatied new ones.
* Add a real configuration for CS-FixerJeremy Benoist2017-07-018-60/+60
|
* Add RSS tags feedsJeremy Benoist2017-06-211-2/+6
|
* Merge pull request #2683 from wallabag/credentials-in-dbJérémy Benoist2017-06-201-0/+86
|\ | | | | Store credentials in DB
| * Fix reviewsThomas Citharel2017-06-201-2/+2
| | | | | | | | | | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * Crypt site credential passwordJeremy Benoist2017-06-201-0/+86
| |
* | Fix empty language and preview picsThomas Citharel2017-06-121-2/+2
|/
* Convert - to _ in languageJeremy Benoist2017-06-091-0/+4
| | | | Mostly to increase language supports
* Use Locale instead of LanguageJeremy Benoist2017-06-091-2/+2
|
* CSJeremy Benoist2017-06-081-1/+2
|
* Validate language & preview picture fieldsJeremy Benoist2017-06-081-11/+67
| | | | | 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.
* Merge pull request #3181 from wallabag/api-content-patchJérémy Benoist2017-06-071-1/+1
|\ | | | | Add ability to patch an entry with more fields
| * Add ability to patch an entry with more fieldsJeremy Benoist2017-06-021-1/+1
| | | | | | | | | | | | | | | | | | Like when we create an entry, we can now patch an entry with new fields: - content - language - preview_picture - published_at - authors
* | 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 #2708 from jcharaoui/import-disablecontentupdateJérémy Benoist2017-06-021-21/+27
|\ | | | | Import disableContentUpdate
| * No need to catch that ExceptionJeremy Benoist2017-06-011-9/+2
| |
| * Rewrote code & fix testsJeremy Benoist2017-06-011-46/+20
| |
| * CSJeremy Benoist2017-06-011-3/+3
| |
| * Fix testsJeremy Benoist2017-06-011-8/+19
| |
| * Add disableContentUpdate import optionJerome Charaoui2017-06-011-22/+54
| | | | | | | | | | | | 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.
| * Avoid returning objects passed by reference.Jerome Charaoui2017-06-011-4/+0
| | | | | | | | | | | | 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.
* | Page parameter was never used in the functionJeremy Benoist2017-06-011-3/+2
|/ | | | | 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
* Forced date can now be a timestamp tooJeremy Benoist2017-05-311-1/+8
| | | | Add adding more tests for forced content
* Improve docsJeremy Benoist2017-05-311-3/+3
|