├── .gitignore ├── Classes ├── Controller │ └── HistoryController.php ├── Domain │ └── Repository │ │ └── NodeEventRepository.php └── ViewHelpers │ ├── AssetExistsViewHelper.php │ ├── DiffViewHelper.php │ └── NodeTypeIconViewHelper.php ├── Configuration ├── NodeTypes.yaml ├── Policy.yaml └── Settings.yaml ├── LICENSE ├── README.md ├── Resources ├── Private │ ├── Fusion │ │ └── Root.fusion │ ├── Images │ │ ├── history.jpg │ │ ├── inspector.jpg │ │ └── specific-page.jpg │ ├── JavaScript │ │ └── NodeInfoView │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── NodeInfoView.js │ │ │ ├── index.js │ │ │ ├── manifest.js │ │ │ └── style.css │ │ │ └── yarn.lock │ ├── Partials │ │ └── DocumentBreadcrumb.html │ └── Templates │ │ └── History │ │ └── Index.html └── Public │ ├── JavaScript │ ├── NodeInfoView.html │ ├── NodeInfoView.js │ └── NodeInfoView │ │ ├── Plugin.js │ │ └── Plugin.js.map │ └── Styles │ ├── Module.css │ ├── Module.css.map │ └── Module.scss └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Classes/Controller/HistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Classes/Controller/HistoryController.php -------------------------------------------------------------------------------- /Classes/Domain/Repository/NodeEventRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Classes/Domain/Repository/NodeEventRepository.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/AssetExistsViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Classes/ViewHelpers/AssetExistsViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/DiffViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Classes/ViewHelpers/DiffViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/NodeTypeIconViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Classes/ViewHelpers/NodeTypeIconViewHelper.php -------------------------------------------------------------------------------- /Configuration/NodeTypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Configuration/NodeTypes.yaml -------------------------------------------------------------------------------- /Configuration/Policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Configuration/Policy.yaml -------------------------------------------------------------------------------- /Configuration/Settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Configuration/Settings.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Private/Fusion/Root.fusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Fusion/Root.fusion -------------------------------------------------------------------------------- /Resources/Private/Images/history.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Images/history.jpg -------------------------------------------------------------------------------- /Resources/Private/Images/inspector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Images/inspector.jpg -------------------------------------------------------------------------------- /Resources/Private/Images/specific-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Images/specific-page.jpg -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/JavaScript/NodeInfoView/package.json -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/src/NodeInfoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/JavaScript/NodeInfoView/src/NodeInfoView.js -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/src/index.js: -------------------------------------------------------------------------------- 1 | require('./manifest'); 2 | -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/JavaScript/NodeInfoView/src/manifest.js -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/JavaScript/NodeInfoView/src/style.css -------------------------------------------------------------------------------- /Resources/Private/JavaScript/NodeInfoView/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/JavaScript/NodeInfoView/yarn.lock -------------------------------------------------------------------------------- /Resources/Private/Partials/DocumentBreadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Partials/DocumentBreadcrumb.html -------------------------------------------------------------------------------- /Resources/Private/Templates/History/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Private/Templates/History/Index.html -------------------------------------------------------------------------------- /Resources/Public/JavaScript/NodeInfoView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/JavaScript/NodeInfoView.html -------------------------------------------------------------------------------- /Resources/Public/JavaScript/NodeInfoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/JavaScript/NodeInfoView.js -------------------------------------------------------------------------------- /Resources/Public/JavaScript/NodeInfoView/Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/JavaScript/NodeInfoView/Plugin.js -------------------------------------------------------------------------------- /Resources/Public/JavaScript/NodeInfoView/Plugin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/JavaScript/NodeInfoView/Plugin.js.map -------------------------------------------------------------------------------- /Resources/Public/Styles/Module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/Styles/Module.css -------------------------------------------------------------------------------- /Resources/Public/Styles/Module.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/Styles/Module.css.map -------------------------------------------------------------------------------- /Resources/Public/Styles/Module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/Resources/Public/Styles/Module.scss -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aertmann/history/HEAD/composer.json --------------------------------------------------------------------------------