]> git.immae.eu Git - github/wallabag/wallabag.git/commit
WIP federation 3163/head
authorThomas Citharel <tcit@tcit.fr>
Wed, 31 May 2017 07:31:18 +0000 (09:31 +0200)
committerThomas Citharel <tcit@tcit.fr>
Fri, 23 Jun 2017 08:08:54 +0000 (10:08 +0200)
commitbf6c0346d8d35a719dd1bff1cb4d573d422f99ff
tree04fb80e20ad1cffacb72357a632a9afe2ec058cb
parentd6d3f4ec3698effd1d4b063e295341791bdcf7d7
WIP

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
80 files changed:
app/AppKernel.php
app/DoctrineMigrations/Version20170328185535.php [new file with mode: 0644]
app/Resources/static/themes/material/css/index.scss
app/Resources/static/themes/material/css/layout.scss
app/Resources/static/themes/material/css/profile.scss [new file with mode: 0644]
app/config/config.yml
app/config/parameters.yml.dist
app/config/routing.yml
app/config/security.yml
src/Wallabag/AnnotationBundle/Controller/WallabagAnnotationController.php
src/Wallabag/ApiBundle/Controller/EntryRestController.php
src/Wallabag/CoreBundle/Command/InstallCommand.php
src/Wallabag/CoreBundle/Controller/ConfigController.php
src/Wallabag/CoreBundle/Controller/EntryController.php
src/Wallabag/CoreBundle/Controller/ShareController.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Controller/TagController.php
src/Wallabag/CoreBundle/Entity/Activity.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Entity/Config.php
src/Wallabag/CoreBundle/Entity/Entry.php
src/Wallabag/CoreBundle/Entity/Notification.php
src/Wallabag/CoreBundle/Entity/Share.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Annotation/AnnotationCreatedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Annotation/AnnotationDeletedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Annotation/AnnotationEditedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Annotation/AnnotationEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryDeletedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEditedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryFavouriteEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryReadEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntrySavedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryTaggedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FederationEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/RecommendedEntryEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/UnfollowEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Share/ShareAcceptedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Share/ShareCancelledEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Share/ShareCreatedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Share/ShareDeniedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/Share/ShareEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/User/UserDeletedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/User/UserEditedEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/Actions/User/UserEvent.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/Activity/ActivitySubscriber.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Event/EntryDeletedEvent.php [deleted file]
src/Wallabag/CoreBundle/Event/EntrySavedEvent.php [deleted file]
src/Wallabag/CoreBundle/Event/Subscriber/DownloadImagesSubscriber.php
src/Wallabag/CoreBundle/Repository/ChangeRepository.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Repository/EntryRepository.php
src/Wallabag/CoreBundle/Resources/config/services.yml
src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml
src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
src/Wallabag/FederationBundle/Command/CreateAccountsCommand.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/InboxController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/LikedController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/MetadataController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/OutboxController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/ProfileController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Controller/RecommandController.php [new file with mode: 0644]
src/Wallabag/FederationBundle/DependencyInjection/Configuration.php [new file with mode: 0644]
src/Wallabag/FederationBundle/DependencyInjection/WallabagFederationExtension.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Entity/Account.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Entity/Instance.php [new file with mode: 0644]
src/Wallabag/FederationBundle/EventListener/CreateAccountListener.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Federation/CloudId.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Form/Type/AccountType.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Repository/AccountRepository.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Repository/InstanceRepository.php [new file with mode: 0644]
src/Wallabag/FederationBundle/Resources/config/services.yml [new file with mode: 0644]
src/Wallabag/FederationBundle/Resources/views/themes/material/User/followers.html.twig [new file with mode: 0644]
src/Wallabag/FederationBundle/Resources/views/themes/material/User/profile.html.twig [new file with mode: 0644]
src/Wallabag/FederationBundle/Resources/views/themes/material/User/profile_header.html.twig [new file with mode: 0644]
src/Wallabag/FederationBundle/Resources/views/themes/material/User/recommendations.html.twig [new file with mode: 0644]
src/Wallabag/FederationBundle/WallabagFederationBundle.php [new file with mode: 0644]
src/Wallabag/UserBundle/Entity/User.php
tests/Wallabag/CoreBundle/Command/InstallCommandTest.php