├── .gitignore ├── README.md ├── app ├── code │ ├── community │ │ └── Hackathon │ │ │ └── Predictionio │ │ │ ├── Block │ │ │ └── Catalog │ │ │ │ └── Product │ │ │ │ └── List │ │ │ │ └── Upsell.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── Observer.php │ │ │ └── Prediction.php │ │ │ ├── controllers │ │ │ └── Frontend │ │ │ │ └── Review │ │ │ │ └── ProductController.php │ │ │ └── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ └── local │ │ └── Richdynamix │ │ └── SimilarProducts │ │ └── Block │ │ └── Catalog │ │ └── Product │ │ └── Recommendations.php ├── design │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── recommendations.xml │ │ └── template │ │ └── catalog │ │ └── product │ │ └── recommendations.phtml └── etc │ └── modules │ └── Hackathon_Predictionio.xml ├── modman └── shell └── similarity.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | .DS_Store 3 | Zone.Identifier 4 | *.iml 5 | /atlassian-ide-plugin.xml 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/Block/Catalog/Product/List/Upsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/Block/Catalog/Product/List/Upsell.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/Model/Prediction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/Model/Prediction.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/controllers/Frontend/Review/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/controllers/Frontend/Review/ProductController.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Predictionio/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/community/Hackathon/Predictionio/etc/system.xml -------------------------------------------------------------------------------- /app/code/local/Richdynamix/SimilarProducts/Block/Catalog/Product/Recommendations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/code/local/Richdynamix/SimilarProducts/Block/Catalog/Product/Recommendations.php -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/recommendations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Predictionio/HEAD/app/design/frontend/base/default/layout/recommendations.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/catalog/product/recommendations.phtml: -------------------------------------------------------------------------------- 1 |