aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper
Commit message (Collapse)AuthorAgeFilesLines
* Add export notice at the end of the epubMartin Trigaux2017-04-051-2/+2
| | | | | | | | | The text "Produced by wallabag with PHPePub" is the first page of any epub. On ebooks reader, it is common (e.g. kobo) to use the first page as the cover of unread books, which makes it more difficult to differentiate the books. Move the Notices chapter at the end of the book.
* Save alpha channel when downloading PNG imagesKevin Decherf2017-03-291-0/+2
| | | | | | Fixes #2805 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Log restricted access valueJeremy Benoist2017-02-131-2/+8
| | | | It might help to figure out if we have enabled it or not
* add cli exportThomas Citharel2017-01-221-0/+5
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Avoid false preview imageJeremy Benoist2017-01-101-1/+1
| | | | | If the website doesn't provide an og_image, the value will be false and so it'll be saved like that in the database. We prefer to leave it as null instead of false.
* Replaced chmod for download pictures featureNicolas Lœuillet2016-12-081-1/+1
|
* Add some commentsJeremy Benoist2016-12-041-0/+3
|
* Prevent undefined index when import fetching failsJerome Charaoui2016-12-021-3/+3
|
* Imported entries which fail to fetch get standard error bodyJerome Charaoui2016-12-021-1/+1
|
* Retain imported content if fetching fails, fixes #2658Jerome Charaoui2016-12-021-2/+7
|
* Added documentation and missing translationsNicolas Lœuillet2016-11-221-1/+1
|
* Added internal setting to enable/disable articles with paywallNicolas Lœuillet2016-11-221-2/+10
|
* Cleared CookieJar to avoid websites who use cookies for analyticsNicolas Lœuillet2016-11-221-0/+2
|
* Added authentication for restricted access articlesBertrand Dunogier2016-11-221-0/+44
| | | | Fix #438. Thank you so much @bdunogier
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-192-5/+19
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # .editorconfig # docs/de/index.rst # docs/de/user/import.rst # docs/en/index.rst # docs/en/user/configuration.rst # docs/en/user/import.rst # docs/fr/index.rst # docs/fr/user/import.rst # src/Wallabag/CoreBundle/Command/InstallCommand.php # src/Wallabag/CoreBundle/Resources/translations/messages.da.yml # src/Wallabag/CoreBundle/Resources/translations/messages.de.yml # src/Wallabag/CoreBundle/Resources/translations/messages.en.yml # src/Wallabag/CoreBundle/Resources/translations/messages.es.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml # src/Wallabag/CoreBundle/Resources/translations/messages.it.yml # src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml # src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml # src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml # src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig # web/bundles/wallabagcore/themes/baggy/css/style.min.css # web/bundles/wallabagcore/themes/baggy/js/baggy.min.js # web/bundles/wallabagcore/themes/material/css/style.min.css # web/bundles/wallabagcore/themes/material/js/material.min.js
| * Display a bigger image in case of image contentJeremy Benoist2016-11-081-0/+8
| | | | | | | | | | | | If the content is only an image, we can display a bigger preview image because we won’t have text to display. Also, split different card view to avoid too much complexity in the entries.html.twig
| * Replaced TokenStorage with TokenStorageInterfaceNicolas Lœuillet2016-11-071-5/+11
| |
* | Added http_status in Entry entityNicolas Lœuillet2016-11-181-0/+1
| |
* | Tried to fix testsNicolas Lœuillet2016-11-161-1/+0
| |
* | Added testsNicolas Lœuillet2016-11-161-4/+11
| |
* | Added constants for redirection valuesNicolas Lœuillet2016-11-161-1/+2
| |
* | Added a configuration to define the redirection after archiving an entryNicolas Lœuillet2016-11-161-1/+8
| | | | | | | | Fix #496
* | CleanupJeremy Benoist2016-11-031-3/+3
| |
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-031-4/+3
|\|
| * Inject parameter instead of serviceJeremy Benoist2016-10-301-4/+3
| | | | | | | | | | We are injecting CraueConfig service when we only need to retrieve one or two values from it. Instead I discovered we can directly inject a value from a service in the service definition!
* | Use custom event instead of Doctrine onesJeremy Benoist2016-11-011-33/+51
| | | | | | | | This give us ability to use Entry ID to determine where to store images and it’s then more easy to remove them when we remove the entry.
* | Add instance url to the downloaded imagesJeremy Benoist2016-10-301-1/+13
| |
* | Fixing testsJeremy Benoist2016-10-302-10/+14
| |
* | Use doctrine event to download imagesJeremy Benoist2016-10-302-128/+126
| |
* | CleanupJeremy Benoist2016-10-301-2/+2
| |
* | CSJeremy Benoist2016-10-292-37/+42
| |
* | WorkingThomas Citharel2016-10-291-1/+43
| |
* | Download pictures successfullyThomas Citharel2016-10-292-169/+156
| | | | | | | | Needs to rewrite them properly (get base url)
* | first draft (from v1)Thomas Citharel2016-10-291-0/+168
|/
* Avoid tag duplication when tagging all articlesJeremy Benoist2016-10-091-1/+7
| | | | | Mostly when the tag doesn’t yet exist. It was created each time it matche the rule… glups.
* Fix tag testJeremy Benoist2016-10-071-1/+0
|
* Fix relations export for EntryJeremy Benoist2016-10-071-8/+4
| | | | | Tags & Annotations weren’t really well exported. This is now fixed (+ tests)
* Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-10-021-1/+1
|\
| * Remove error message when creating ePub versionsPaulino Michelazzo2016-10-021-1/+1
| | | | | | | | | | | | Trying to create a ePub version, the first page shows a message of a “missing >”. This change solve this problem (and, for sure, in any download version that’s use HTML).
* | CSJeremy Benoist2016-09-251-4/+3
| |
* | Use scheduled entity insertions to avoid tag duplicateJeremy Benoist2016-09-251-5/+20
| | | | | | | | Using `getScheduledEntityInsertions()` we can retrieve not yet flushed but already persisted entities and then avoid tags duplication on import.
* | Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-09-191-1/+5
|\|
| * Fix issue #2296: epub export with `+` in the title.Étienne Gilli2016-09-181-1/+5
| |
* | Export dates from entriesJeremy Benoist2016-09-081-1/+2
| |
* | Links on each tag in Tags viewNicolas Lœuillet2016-08-231-0/+34
|/
* CSJeremy Benoist2016-08-171-3/+3
|
* Fix testsNicolas Lœuillet2016-04-151-8/+9
|
* Redirect to homepage if referer is nullNicolas Lœuillet2016-04-151-0/+36
| | | | Fix #1924
* Convert array + phpDocJeremy Benoist2016-04-123-26/+55
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Remove some complexicity in InstallCommandJeremy Benoist2016-03-281-0/+2
|