{ "info": { "author": "Arnon Sela", "author_email": "arnon@acrisel.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.8", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "==========\nurlcompass\n==========\n\n urlcompass is a simple Django app to display active trail of url visited.\n \n Detailed documentation is in the \"docs\" directory.\n \n Quick start\n ===========\n \n 1. Add \"polls\" to your INSTALLED_APPS setting like this::\n \n INSTALLED_APPS = [\n ...\n 'urlcompass',\n ]\n \n 2. URLCOMPASS={'root_name':'name-or-root-view',\n 'start':'[ ',\n 'end':' ]',\n 'sep':' > ',\n 'html_id': 'name-of-my-app',\n 'html_class':'compass bar class',\n 'rename': lambda x: x.replace('_', ' ')\n }\n \n 3. In base template add reference to compass:\n \n {% load urlcompass %}\n \n