aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle
Commit message (Collapse)AuthorAgeFilesLines
...
* Send every imported item to the queueJeremy Benoist2016-09-111-0/+6
| | | | | Instead of queing real Entry to process, we queue all the item to import from Pocket in a raw format. Then, the worker retrieve that information, find / create the entry and save it.
* Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-08-282-1/+12
|\
| * Occitan versionQuent-in2016-08-271-0/+11
| | | | | | | | Occitan translation, I hope I properly put it where it has to be. If there reminds other textes to translate, please let me know!
| * Changes in the login form:Alexandr Danilov2016-08-251-1/+1
| | | | | | | | | | * The alignment of the login form centered in WebKit * Indent after the reference password recovery
* | CSJeremy Benoist2016-08-232-2/+2
| |
* | Proper parameter name, simplify logic & phpdocThomas Citharel2016-08-232-5/+6
| |
* | Add option to disable registrationThomas Citharel2016-08-235-1/+50
| |
* | Merge branch 'master' into 2.1Jeremy Benoist2016-06-231-84/+0
|\|
| * Jump to Symfony 3.1Jeremy Benoist2016-06-221-84/+0
| |
* | manage assets through npmThomas Citharel2016-06-097-10/+10
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | first draft remote assetic totally work nearly there use at least nodejs > 0.12 use proper version of grunt bump nodejs version for travis update npm workaround for materialize install node 5.0 add grunt-cli baggy theme & cache node modules cache bower & npm make travis build assets on php7 only exclude installing node & npm if not needed & use bash clean & try to make icomoon work on baggy ready config for travis rebase make travis work more travis work impove travis & update deps add missing pixrem deps add module through oddly lost ui updates install latest nodejs add install_dev.sh, link local binaries for npm/bower/grunt ui improvements (mostly baggy) fix travis build no need to install on travis Add unread filter to entries pages Add the ability to filter for unread pages in the filters menu. Add unread filter test to EntryControllerTest Add a new test to the EntryControllerTest collection which checks that only entries which have not been archived (and are treated as "unread") are retrieved. Improve English translation Update FAQ -Fix grammar -Add notes about MTA, firewall, and SELinux Update installation instructions -Fix grammar -Add SELinux section add screenshots of android docu in English Fix the deletion of Tags/Entries relation when delete an entry Fix #2121 Move fixtures to the right place Display a message when saving an entry failed When saving an entry fail because of database error we previously just returned `false`. Now we got an error in the log and the displayed notice to the user is updated too. Change ManyToMany between entry & tag Following https://gist.github.com/Ocramius/3121916 Be sure to remove the related entity when removing an entity. Let say you have Entry -> EntryTag -> Tag. If you remove the entry: - before that commit, the EntryTag will stay (at least using SQLite). - with that commit, the related entity is removed Prepare wallabag 2.0.5 enforce older materialize version
* Forgot a double quoteBaptiste Mille-Mathias2016-05-191-1/+1
|
* Fix image path in 2-factor authentification emailBaptiste Mille-Mathias2016-05-181-1/+1
| | | | Fix the broken url to image ressource hosted on wallabag.org
* Fix translation for Go to your account button after subscriptionNicolas Lœuillet2016-04-201-1/+1
| | | | Fix #1956
* Convert array + phpDocJeremy Benoist2016-04-124-6/+6
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Convert english translation fileJeremy Benoist2016-03-2023-223/+47
| | | | | | | - convert english translation to translate key - remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material) - fix tests about text in response (now checking translation key instead of translated text) - remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
* Remove extra definitionJeremy Benoist2016-02-291-5/+0
| | | | Since Symfony 3.0.3 has been released
* Make English welcome message more naturalOlivier Mehani2016-02-252-2/+2
| | | | | | sed -i "s/Welcome on wallabag/Welcome to wallabag/" Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Add some missing french translationsNicolas Lœuillet2016-02-182-2/+2
|
* Fix #1643: fix the way to load the HTML template in 2factor authNicolas Lœuillet2016-02-042-3/+3
|
* Fix from_email & fos_userJeremy Benoist2016-01-311-0/+5
|
* CSJeremy Benoist2016-01-311-1/+1
|
* Fix testsJeremy Benoist2016-01-311-2/+10
|
* Add CraueConfig for internal settingsJeremy Benoist2016-01-312-7/+6
|
* Add Turkish translationOgün Karakuş2016-01-241-0/+7
| | | | Signed-off-by: Ogün Karakuş <kirk5bucuk@gmail.com>
* Move public assets for themesJeremy Benoist2016-01-221-1/+1
| | | | | So they can be installed using the `assets:install` command and there'll no longer symlink in the repo They moved from `web/themes/...` to `bundles/wallabagcore/themes/...`
* CSJeremy Benoist2016-01-221-2/+2
|
* Use FOSUserEvents instead of c/p a controllerJeremy Benoist2016-01-213-75/+48
| | | | | The `resetAction` was overriden to redirect user to the homepage instead of `fos_user_profile_show`. Instead of copying the whole method we can simply use FOSUserEvents to handle that.
* Update HTML 2FA templateJeremy Benoist2016-01-216-36/+51
| | | | | | Split paragraph in translation Inject wallabag_url for image in HTML template Remove username & password from config_dev.yml (null are already the default value)
* #1490 HTML in E-MailsAlexandr Danilov2016-01-211-3/+97
|
* CSJeremy Benoist2016-01-212-9/+6
|
* Use HTML email for 2FAJeremy Benoist2016-01-216-39/+62
| | | | Related to #1490
* Use translator interface instead of final classJeremy Benoist2016-01-172-16/+13
| | | | | | | | | Symfony use a different class when in dev mode and prod mode. Prod loads `Symfony\Bundle\FrameworkBundle\Translation\Translator`. Dev loads `Symfony\Component\Translation\DataCollectorTranslator` to gather information for the debug bar. Fix #1585
* Merge pull request #1524 from wallabag/sf2.8Nicolas Lœuillet2016-01-157-11/+11
|\ | | | | Upgrade to Symfony 3.0
| * Update bundle & stock fileJeremy Benoist2016-01-155-5/+5
| | | | | | | | | | | | - update stock file (AppKernel, app.php, etc ..) from SymfonyStandard edition) - update bundle to latest release - remove security on profiler
| * Symfony Upgrade Fixer FTWJeremy Benoist2016-01-152-6/+6
| | | | | | | | symfony-upgrade-fixer fix src/Wallabag/
* | Quickstart for beginnersNicolas Lœuillet2016-01-151-0/+11
|/
* Merge pull request #1545 from wallabag/v2-user-tagNicolas Lœuillet2016-01-021-27/+0
|\ | | | | v2 – Remove user reference in tag
| * Remove user reference in tagJeremy Benoist2015-12-291-27/+0
| | | | | | | | Fix #1543
* | Add custom email for 2FAJeremy Benoist2015-12-297-0/+242
|/ | | | Related #1490
* Add a command to automatically tag all entries for a userKévin Gomez2015-11-111-0/+15
|
* Quoted entity to avoid reserved keywordJeremy Benoist2015-11-071-1/+1
| | | | Should fix #1498
* add tests for 2factor authenticationNicolas Lœuillet2015-10-141-19/+0
|
* 2factor authentication via emailNicolas Lœuillet2015-10-134-1/+151
|
* use form widget for registrationNicolas Lœuillet2015-10-062-18/+16
|
* move cssNicolas Lœuillet2015-10-051-5/+2
|
* last changes for baggy themeNicolas Lœuillet2015-10-052-9/+18
|
* material design for register/login/recover pagesNicolas Lœuillet2015-10-0521-239/+429
|
* move some files to UserBundleNicolas Lœuillet2015-10-039-1/+312
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-035-0/+240