├── LICENSE.txt ├── README.md ├── app ├── code │ └── community │ │ └── Hackathon │ │ └── IndexerStats │ │ ├── Block │ │ └── Adminhtml │ │ │ └── Index │ │ │ └── Status.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── History.php │ │ ├── Observer.php │ │ ├── Resource │ │ │ ├── History.php │ │ │ └── History │ │ │ │ └── Collection.php │ │ └── Runtime.php │ │ ├── controllers │ │ └── Adminhtml │ │ │ └── ProcessController.php │ │ ├── data │ │ └── hackathon_indexerstats_setup │ │ │ └── data-install-0.1.0.php │ │ ├── etc │ │ ├── config.xml │ │ └── jstranslator.xml │ │ └── sql │ │ └── hackathon_indexerstats_setup │ │ └── install-0.1.0.php ├── design │ └── adminhtml │ │ └── base │ │ └── default │ │ └── layout │ │ └── hackathon_indexerstats.xml ├── etc │ └── modules │ │ └── Hackathon_IndexerStats.xml └── locale │ ├── de_DE │ └── Hackathon_IndexerStats.csv │ └── en_US │ └── Hackathon_IndexerStats.csv ├── composer.json ├── js └── hackathon_indexerstats │ └── index_progress.js ├── modman ├── screenshot-progress.png └── skin └── adminhtml └── default └── default └── hackathon_indexerstats.css /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Block/Adminhtml/Index/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Block/Adminhtml/Index/Status.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Model/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Model/History.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Model/Resource/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Model/Resource/History.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Model/Resource/History/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Model/Resource/History/Collection.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/Model/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/Model/Runtime.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/controllers/Adminhtml/ProcessController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/controllers/Adminhtml/ProcessController.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/data/hackathon_indexerstats_setup/data-install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/data/hackathon_indexerstats_setup/data-install-0.1.0.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/etc/jstranslator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/etc/jstranslator.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/IndexerStats/sql/hackathon_indexerstats_setup/install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/code/community/Hackathon/IndexerStats/sql/hackathon_indexerstats_setup/install-0.1.0.php -------------------------------------------------------------------------------- /app/design/adminhtml/base/default/layout/hackathon_indexerstats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/design/adminhtml/base/default/layout/hackathon_indexerstats.xml -------------------------------------------------------------------------------- /app/etc/modules/Hackathon_IndexerStats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/etc/modules/Hackathon_IndexerStats.xml -------------------------------------------------------------------------------- /app/locale/de_DE/Hackathon_IndexerStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/locale/de_DE/Hackathon_IndexerStats.csv -------------------------------------------------------------------------------- /app/locale/en_US/Hackathon_IndexerStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/app/locale/en_US/Hackathon_IndexerStats.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/composer.json -------------------------------------------------------------------------------- /js/hackathon_indexerstats/index_progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/js/hackathon_indexerstats/index_progress.js -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/modman -------------------------------------------------------------------------------- /screenshot-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/screenshot-progress.png -------------------------------------------------------------------------------- /skin/adminhtml/default/default/hackathon_indexerstats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Hackathon_IndexerStats/HEAD/skin/adminhtml/default/default/hackathon_indexerstats.css --------------------------------------------------------------------------------