{ "info": { "author": "Joe Vasquez", "author_email": "joe.vasquez@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "VZ_WIKI\n===============\n\nVZ_Wiki is a Django powered wiki app.\n\nTODO\n----\n\n* Search\n* Tag filtering\n* File/Attachments\n\nInstallation\n------------\n\n`sudo easy_install django_vz_wiki`\n\nAdd the following to *urls.py*\n\n`(r'^wiki/', include('vz_wiki.urls')),`\n\nAdd the following to *INSTALED_APPS*\n\n`'django_vz_wiki',`\n\nIntegration Into Existing Templates\n-----------------------------------\n\n**Be sure to uncomment the the egg based templated loader in *TEMPLATE_LOADERS***\n\n`django.template.loaders.eggs.load_template_source`\n\nAll wiki templates have the following:\n\n`{% extends \"base.html\" %}`\n\nThe block tags match the suggested best practices by [Lincoln Loop](http://lincolnloop.com/django-best-practices/apps/modules/templates.html)\n\nTemplate blocks include:\n\n* **title** - full page title\n* **extra_head** - for extra css/javascript\n* **body** - wraps everything inside body tag\n* **content_title** - title for wiki page\n* **content** - wiki page contents\n* **block vz_wiki_page_menu** - this is required for page options, it should be wrapped\ninside `