├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ ├── ArturDoruchPaginatorBundle │ │ └── views │ │ │ └── Pagination │ │ │ ├── all.html.twig │ │ │ ├── displayedItems.html.twig │ │ │ ├── pagination.html.twig │ │ │ └── totalItems.html.twig │ └── views │ │ └── base.html.twig └── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ └── services.yml ├── bin ├── console ├── symfony_requirements └── system_requirements ├── composer.json ├── composer.json-legacy ├── composer.lock ├── composer.lock-legacy ├── phpunit.xml.dist ├── scripts ├── build-dashboard.sh ├── clear-cache.sh ├── cron.sh ├── notify.sh ├── reset-data.sh ├── run-webserver.sh ├── update-drupal.sh └── update-sites.sh ├── src ├── .htaccess └── Deeson │ ├── WardenBundle │ ├── Asset │ │ └── VersionStrategy │ │ │ └── DateVersionStrategy.php │ ├── Client │ │ ├── GuzzleHttpRequestHandler.php │ │ ├── HttpRequestHandlerException.php │ │ └── HttpRequestHandlerInterface.php │ ├── Command │ │ ├── BuildDashboardCommand.php │ │ ├── DashboardEmailAlertCommand.php │ │ ├── DashboardSendNotificationCommand.php │ │ ├── InstallCommand.php │ │ ├── ResetDataCommand.php │ │ └── WardenCronCommand.php │ ├── Composer │ │ └── ScriptHandler.php │ ├── Controller │ │ ├── DashboardController.php │ │ ├── SecurityController.php │ │ └── SitesController.php │ ├── DeesonWardenBundle.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── DeesonWardenExtension.php │ ├── Document │ │ ├── BaseDocument.php │ │ ├── DashboardDocument.php │ │ ├── SiteDocument.php │ │ └── SiteRequestLogDocument.php │ ├── Event │ │ ├── CronEvent.php │ │ ├── DashboardAddSiteEvent.php │ │ ├── DashboardListEvent.php │ │ ├── DashboardUpdateEvent.php │ │ ├── SiteDeleteEvent.php │ │ ├── SiteEvent.php │ │ ├── SiteListEvent.php │ │ ├── SiteRefreshEvent.php │ │ ├── SiteShowEvent.php │ │ ├── SiteUpdateEvent.php │ │ └── WardenEvents.php │ ├── Exception │ │ ├── DocumentMethodNotFoundException.php │ │ ├── DocumentNotFoundException.php │ │ ├── SSLEncryptionException.php │ │ ├── WardenException.php │ │ └── WardenRequestException.php │ ├── Listener │ │ └── ExceptionListener.php │ ├── Managers │ │ ├── BaseManager.php │ │ ├── DashboardManager.php │ │ ├── SiteManager.php │ │ └── SiteRequestLogManager.php │ ├── Resources │ │ ├── config │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ ├── doc │ │ │ └── index.rst │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── AdminLTE.css │ │ │ │ │ ├── AdminLTE.min.css │ │ │ │ │ ├── datatables │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ │ ├── skins │ │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ │ ├── warden.css │ │ │ │ │ │ └── warden.min.css │ │ │ │ │ └── timepicker │ │ │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ │ │ └── bootstrap-timepicker.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── icomoon │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ │ └── icomoon.woff │ │ │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── ajax-loader1.gif │ │ │ │ │ ├── email │ │ │ │ │ │ └── dashboard │ │ │ │ │ │ │ ├── banner.jpg │ │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ └── js │ │ │ │ │ ├── adminlte.js │ │ │ │ │ ├── adminlte.min.js │ │ │ │ │ └── plugins │ │ │ │ │ └── datatables │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ └── images │ │ │ │ └── logo.gif │ │ ├── translations │ │ │ └── messages.fr.xlf │ │ └── views │ │ │ ├── Dashboard │ │ │ ├── index.html.twig │ │ │ └── unauthorised.html.twig │ │ │ ├── Exception │ │ │ └── exception.html.twig │ │ │ ├── Mail │ │ │ ├── dashboard.html.twig │ │ │ └── template.html.twig │ │ │ ├── Security │ │ │ ├── install.html.twig │ │ │ └── login.html.twig │ │ │ ├── Sites │ │ │ ├── delete.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── index.html.twig │ │ │ ├── logs.html.twig │ │ │ └── show.html.twig │ │ │ ├── footer.html.twig │ │ │ ├── header.html.twig │ │ │ ├── layout.html.twig │ │ │ └── loginlayout.html.twig │ ├── Security │ │ ├── FormLoginAuthenticator.php │ │ └── WebserviceUserProvider.php │ └── Services │ │ ├── MailService.php │ │ ├── SSLEncryptionService.php │ │ ├── SiteConnectionService.php │ │ └── WardenSetupService.php │ ├── WardenDrupalBundle │ ├── Command │ │ ├── DrupalUpdateCommand.php │ │ └── ModuleUpdateCommand.php │ ├── Controller │ │ └── ModulesController.php │ ├── DeesonWardenDrupalBundle.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── DeesonWardenDrupalExtension.php │ ├── Document │ │ ├── DrupalModuleDocument.php │ │ ├── SiteDrupalDocument.php │ │ └── SiteDrupalModuleDocument.php │ ├── Managers │ │ ├── DrupalBaseManager.php │ │ ├── DrupalModuleManager.php │ │ ├── SiteDrupalManager.php │ │ └── SiteDrupalModuleManager.php │ ├── Resources │ │ ├── config │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ ├── public │ │ │ └── images │ │ │ │ ├── drupal7-logo.png │ │ │ │ └── drupal8-logo.png │ │ └── views │ │ │ ├── Modules │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ │ │ └── Sites │ │ │ ├── moduleUpdates.html.twig │ │ │ ├── modules.html.twig │ │ │ └── siteDetails.html.twig │ └── Services │ │ ├── DrupalModuleService.php │ │ ├── DrupalSiteService.php │ │ └── DrupalUpdateRequestService.php │ └── WardenThirdPartyLibraryBundle │ ├── Command │ └── BuildThirdPartyLibrariesCommand.php │ ├── Controller │ └── ThirdPartyLibrariesController.php │ ├── DeesonWardenThirdPartyLibraryBundle.php │ ├── DependencyInjection │ ├── Configuration.php │ └── DeesonWardenThirdPartyLibraryExtension.php │ ├── Document │ ├── SiteThirdPartyLibraryDocument.php │ └── ThirdPartyLibraryDocument.php │ ├── Managers │ ├── SiteThirdPartyLibraryManager.php │ ├── ThirdPartyBaseManager.php │ └── ThirdPartyLibraryManager.php │ ├── Resources │ ├── config │ │ ├── routing.yml │ │ └── services.yml │ └── views │ │ ├── Sites │ │ └── libraries.html.twig │ │ └── ThirdPartyLibraries │ │ ├── index.html.twig │ │ └── show.html.twig │ └── Services │ └── ThirdPartyLibraryService.php ├── tests └── Deeson │ └── WardenDrupalBundle │ └── Tests │ └── Unit │ └── Document │ ├── ModuleDocumentTest.php │ └── SiteDrupalModuleDocumentTest.php ├── var ├── SymfonyRequirements.php ├── cache │ └── .gitkeep └── logs │ └── .gitkeep └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/ArturDoruchPaginatorBundle/views/Pagination/all.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/Resources/ArturDoruchPaginatorBundle/views/Pagination/all.html.twig -------------------------------------------------------------------------------- /app/Resources/ArturDoruchPaginatorBundle/views/Pagination/displayedItems.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/Resources/ArturDoruchPaginatorBundle/views/Pagination/displayedItems.html.twig -------------------------------------------------------------------------------- /app/Resources/ArturDoruchPaginatorBundle/views/Pagination/pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/Resources/ArturDoruchPaginatorBundle/views/Pagination/pagination.html.twig -------------------------------------------------------------------------------- /app/Resources/ArturDoruchPaginatorBundle/views/Pagination/totalItems.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/Resources/ArturDoruchPaginatorBundle/views/Pagination/totalItems.html.twig -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/bin/console -------------------------------------------------------------------------------- /bin/symfony_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/bin/symfony_requirements -------------------------------------------------------------------------------- /bin/system_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/bin/system_requirements -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/composer.json -------------------------------------------------------------------------------- /composer.json-legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/composer.json-legacy -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.lock-legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/composer.lock-legacy -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /scripts/build-dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/build-dashboard.sh -------------------------------------------------------------------------------- /scripts/clear-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/clear-cache.sh -------------------------------------------------------------------------------- /scripts/cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/cron.sh -------------------------------------------------------------------------------- /scripts/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/notify.sh -------------------------------------------------------------------------------- /scripts/reset-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/reset-data.sh -------------------------------------------------------------------------------- /scripts/run-webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/run-webserver.sh -------------------------------------------------------------------------------- /scripts/update-drupal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/update-drupal.sh -------------------------------------------------------------------------------- /scripts/update-sites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/scripts/update-sites.sh -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Asset/VersionStrategy/DateVersionStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Asset/VersionStrategy/DateVersionStrategy.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Client/GuzzleHttpRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Client/GuzzleHttpRequestHandler.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Client/HttpRequestHandlerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Client/HttpRequestHandlerException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Client/HttpRequestHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Client/HttpRequestHandlerInterface.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/BuildDashboardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/BuildDashboardCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/DashboardEmailAlertCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/DashboardEmailAlertCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/DashboardSendNotificationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/DashboardSendNotificationCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/InstallCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/ResetDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/ResetDataCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Command/WardenCronCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Command/WardenCronCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Composer/ScriptHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Composer/ScriptHandler.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Controller/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Controller/DashboardController.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Controller/SitesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Controller/SitesController.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/DeesonWardenBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/DeesonWardenBundle.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/DependencyInjection/DeesonWardenExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/DependencyInjection/DeesonWardenExtension.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Document/BaseDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Document/BaseDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Document/DashboardDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Document/DashboardDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Document/SiteDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Document/SiteDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Document/SiteRequestLogDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Document/SiteRequestLogDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/CronEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/CronEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/DashboardAddSiteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/DashboardAddSiteEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/DashboardListEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/DashboardListEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/DashboardUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/DashboardUpdateEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteDeleteEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteListEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteListEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteRefreshEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteRefreshEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteShowEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteShowEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/SiteUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/SiteUpdateEvent.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Event/WardenEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Event/WardenEvents.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Exception/DocumentMethodNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Exception/DocumentMethodNotFoundException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Exception/DocumentNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Exception/DocumentNotFoundException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Exception/SSLEncryptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Exception/SSLEncryptionException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Exception/WardenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Exception/WardenException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Exception/WardenRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Exception/WardenRequestException.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Listener/ExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Listener/ExceptionListener.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Managers/BaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Managers/BaseManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Managers/DashboardManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Managers/DashboardManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Managers/SiteManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Managers/SiteManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Managers/SiteRequestLogManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Managers/SiteRequestLogManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/AdminLTE.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/AdminLTE.min.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/dataTables.bootstrap.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_both.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/skins/skin-red-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/skins/skin-red-light.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/skins/skin-red-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/skins/skin-red-light.min.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/skins/warden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/skins/warden.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/skins/warden.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/skins/warden.min.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/timepicker/bootstrap-timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/timepicker/bootstrap-timepicker.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/css/timepicker/bootstrap-timepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/css/timepicker/bootstrap-timepicker.min.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/fonts/icomoon/style.css -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/ajax-loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/ajax-loader1.gif -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/banner.jpg -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/blog.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/email/dashboard/logo.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/icons.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/adminlte.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/adminlte.min.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/dataTables.bootstrap.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/assets/js/plugins/datatables/jquery.dataTables.min.js -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/public/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/public/images/logo.gif -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/translations/messages.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/translations/messages.fr.xlf -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Dashboard/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Dashboard/index.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Dashboard/unauthorised.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Dashboard/unauthorised.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Exception/exception.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Exception/exception.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Mail/dashboard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Mail/dashboard.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Mail/template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Mail/template.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Security/install.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Security/install.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Security/login.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Sites/delete.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Sites/delete.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Sites/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Sites/edit.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Sites/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Sites/index.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Sites/logs.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Sites/logs.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/Sites/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/Sites/show.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/footer.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/header.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Resources/views/loginlayout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Resources/views/loginlayout.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Security/FormLoginAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Security/FormLoginAuthenticator.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Security/WebserviceUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Security/WebserviceUserProvider.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Services/MailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Services/MailService.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Services/SSLEncryptionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Services/SSLEncryptionService.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Services/SiteConnectionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Services/SiteConnectionService.php -------------------------------------------------------------------------------- /src/Deeson/WardenBundle/Services/WardenSetupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenBundle/Services/WardenSetupService.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Command/DrupalUpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Command/DrupalUpdateCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Command/ModuleUpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Command/ModuleUpdateCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Controller/ModulesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Controller/ModulesController.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/DeesonWardenDrupalBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/DeesonWardenDrupalBundle.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/DependencyInjection/DeesonWardenDrupalExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/DependencyInjection/DeesonWardenDrupalExtension.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Document/DrupalModuleDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Document/DrupalModuleDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Document/SiteDrupalDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Document/SiteDrupalDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Document/SiteDrupalModuleDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Document/SiteDrupalModuleDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Managers/DrupalBaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Managers/DrupalBaseManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Managers/DrupalModuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Managers/DrupalModuleManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Managers/SiteDrupalManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Managers/SiteDrupalManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Managers/SiteDrupalModuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Managers/SiteDrupalModuleManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/public/images/drupal7-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/public/images/drupal7-logo.png -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/public/images/drupal8-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/public/images/drupal8-logo.png -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/views/Modules/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/views/Modules/index.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/views/Modules/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/views/Modules/show.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/views/Sites/moduleUpdates.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/views/Sites/moduleUpdates.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/views/Sites/modules.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/views/Sites/modules.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Resources/views/Sites/siteDetails.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Resources/views/Sites/siteDetails.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Services/DrupalModuleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Services/DrupalModuleService.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Services/DrupalSiteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Services/DrupalSiteService.php -------------------------------------------------------------------------------- /src/Deeson/WardenDrupalBundle/Services/DrupalUpdateRequestService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenDrupalBundle/Services/DrupalUpdateRequestService.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Command/BuildThirdPartyLibrariesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Command/BuildThirdPartyLibrariesCommand.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Controller/ThirdPartyLibrariesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Controller/ThirdPartyLibrariesController.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/DeesonWardenThirdPartyLibraryBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/DeesonWardenThirdPartyLibraryBundle.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/DependencyInjection/DeesonWardenThirdPartyLibraryExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/DependencyInjection/DeesonWardenThirdPartyLibraryExtension.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Document/SiteThirdPartyLibraryDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Document/SiteThirdPartyLibraryDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Document/ThirdPartyLibraryDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Document/ThirdPartyLibraryDocument.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Managers/SiteThirdPartyLibraryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Managers/SiteThirdPartyLibraryManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Managers/ThirdPartyBaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Managers/ThirdPartyBaseManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Managers/ThirdPartyLibraryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Managers/ThirdPartyLibraryManager.php -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/Sites/libraries.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/Sites/libraries.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/ThirdPartyLibraries/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/ThirdPartyLibraries/index.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/ThirdPartyLibraries/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Resources/views/ThirdPartyLibraries/show.html.twig -------------------------------------------------------------------------------- /src/Deeson/WardenThirdPartyLibraryBundle/Services/ThirdPartyLibraryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/src/Deeson/WardenThirdPartyLibraryBundle/Services/ThirdPartyLibraryService.php -------------------------------------------------------------------------------- /tests/Deeson/WardenDrupalBundle/Tests/Unit/Document/ModuleDocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/tests/Deeson/WardenDrupalBundle/Tests/Unit/Document/ModuleDocumentTest.php -------------------------------------------------------------------------------- /tests/Deeson/WardenDrupalBundle/Tests/Unit/Document/SiteDrupalModuleDocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/tests/Deeson/WardenDrupalBundle/Tests/Unit/Document/SiteDrupalModuleDocumentTest.php -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamdeeson/warden/HEAD/web/robots.txt --------------------------------------------------------------------------------