aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
Commit message (Collapse)AuthorAgeFilesLines
* manage assets through npmThomas Citharel2016-06-092-4/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Rename getEntriesByUser method to getEntriesByUserIdNicolas Lœuillet2016-05-041-1/+1
|
* Fix number of entries in tag/listNicolas Lœuillet2016-05-031-0/+12
| | | | Fix #2006
* Some cleanupJeremy Benoist2016-03-271-1/+1
| | | | | - travis tabulation - extra namespace definition in entities
* Convert english translation fileJeremy Benoist2016-03-201-2/+2
| | | | | | | - 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>`
* Merge pull request #1767 from wallabag/v2-setting-for-reading-timeJeremy Benoist2016-03-181-0/+31
|\ | | | | Setting for reading time
| * Improved testsNicolas Lœuillet2016-03-181-2/+2
| |
| * Added setting to have a personal reading timeNicolas Lœuillet2016-03-141-0/+31
| |
* | use integers for archived/starred statusThomas Citharel2016-03-161-0/+24
|/
* API shows just what needed for userThomas Citharel2016-03-131-0/+32
|
* Rename CommentBundle with AnnotationBundleNicolas Lœuillet2016-02-261-9/+9
|
* Comment work with annotator v2Thomas Citharel2016-02-261-8/+8
| | | | | | - add missing annotator.js file and fix typo - edit & delete routes, started tests - basic tests
* remove tag from entry #1377Thomas Citharel2016-02-101-0/+10
|
* Remove tag relation when removing an entryJeremy Benoist2016-01-201-1/+1
| | | | Fix #1453
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-153-4/+4
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Few phpDoc fixJeremy Benoist2016-01-032-8/+9
| | | | And some little mistakes
* Remove user reference in tagJeremy Benoist2015-12-292-16/+3
| | | | Fix #1543
* Avoid multiple tag creationJeremy Benoist2015-12-281-0/+8
| | | | | | | When a new tag is created but not yet persisted, it can be duplicated. It could happen when multiple rules match the content and at least 2 of them should attach same new tag. Fix #1528
* add slug for tagsNicolas Lœuillet2015-12-281-0/+12
|
* changed table name for tagging ruleNicolas Lœuillet2015-12-081-1/+1
|
* Fix tagging rules orderingKévin Gomez2015-11-291-0/+1
|
* Add matches operatorKévin Gomez2015-11-131-1/+1
|
* Fix incorrect comment.Kévin Gomez2015-11-111-1/+1
|
* Add a command to automatically tag all entries for a userKévin Gomez2015-11-111-0/+4
|
* Validate used operators when creating tagging rulesKévin Gomez2015-11-111-1/+4
|
* Also validate used variables when creating tagging rulesKévin Gomez2015-11-111-1/+1
|
* Add naïve validation for tagging rules (only checks the syntax)Kévin Gomez2015-11-111-0/+2
|
* Add missing use statementKévin Gomez2015-11-111-0/+1
|
* Add TaggingRule entityKévin Gomez2015-11-112-0/+154
|
* use JMS SerializerThomas Citharel2015-11-091-1/+1
|
* use the groups annotation instead of setIgnoredAttributesThomas Citharel2015-11-091-0/+35
|
* Quoted entity to avoid reserved keywordJeremy Benoist2015-11-073-3/+3
| | | | Should fix #1498
* fix type hint for UserNicolas Lœuillet2015-10-061-1/+1
|
* move some files to UserBundleNicolas Lœuillet2015-10-033-3/+3
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-034-209/+9
|
* * public registrationNicolas Lœuillet2015-10-031-20/+2
| | | | | * remove WSSE implementation * add oAuth2 implementation
* Move readingTime & domainName in ContentProxyJeremy Benoist2015-09-281-3/+0
| | | | So, everything is centralized in one place when we save a new entry.
* Handle entry in languageJeremy Benoist2015-09-222-3/+33
| | | | Fix #1333
* implement FosUserNicolas Lœuillet2015-09-111-238/+12
|
* CSJeremy Benoist2015-08-241-3/+2
|
* Integrate grabyJeremy Benoist2015-08-241-0/+32
|
* assign tags to an entryNicolas Lœuillet2015-08-221-0/+5
|
* Remove unsed thingsJeremy Benoist2015-08-201-2/+2
|
* CSJeremy Benoist2015-08-202-7/+7
| | | | We shouldn't forget to run `php-cs-fixer` time to time
* store domainName in databaseNicolas Lœuillet2015-08-121-0/+1
|
* store estimated reading time / filters on reading timeNicolas Lœuillet2015-08-121-1/+3
|
* Add basic title editionJeremy Benoist2015-06-022-1/+7
| | | | | Fix #218 I mean basic, because there is no javascript at all. It could be a nice edit-in-place. But for the moment, it is simple.
* CSJeremy Benoist2015-05-304-84/+102
|
* Merge pull request #1164 from wallabag/v2-remove-username-in-configNicolas Lœuillet2015-04-011-0/+4
|\ | | | | Remove ability to change username
| * Remove ability to change usernameJeremy2015-04-011-0/+4
| | | | | | | | | | | | | | | | | | | | Since password are linked to username it was hard to change username while checking that the password is the good one. Instead of doing crazy things to achieve that, I act that user won't be able to update username. Also, username (and email) must be unique, since people logged in using username and can request a new password using email. This should fix #1149