| 64 | | * CookBook: Code recipes. |
| 65 | | * CommonPitfalls: Common developer errors, gotchas, etc. |
| 66 | | * DocumentationSuggestions: A place to put docs that you wish ''you'' could have found while learning |
| 67 | | * [wiki:DosAndDontsForApplicationWriters Do's and Dont's for application writers]: how to make an application that is easy to distribute |
| | 66 | * [wiki:SetupOnTiger Setup on Mac OS X Tiger]: Includes installing python 2.4 (which isn't required), the latest version of postgresql, and psycopg. |
| | 67 | * [wiki:WindowsInstall] - install django on Windows in 5 minutes (using sqlite and the internal webserver) |
| | 68 | |
| | 69 | === Development Environment === |
| | 70 | |
| | 71 | * [wiki:SimpleBashScriptToSetupDevelopmentEnvironment Simple Bash Script To Setup Development Environment]: An example of how to set up your development environment. |
| | 72 | * [wiki:DjangoSettingsBashFunction 'django-settings' Bash function]: Save the typing of DJANGO_SETTINGS_MODULE. |
| | 73 | * [wiki:UsingVimWithDjango Django development with Vim]: Hints and tips for using the Vim editor. |
| | 74 | * [wiki:PythonScriptForParsingSettings A python script for parsing settings.py]: A small python script can be used to read, modify, save settings.py file. |
| | 75 | * [wiki:PythonScriptForParsingUrlConf A python script for parsing urls.py]: A small python script can be used to read, modify, save urls.py file. |
| | 76 | |
| | 77 | === General === |
| | 78 | |
| | 79 | * CookBook: Code recipes. |
| | 80 | * CommonPitfalls: Common developer errors, gotchas, etc. |
| | 81 | * DocumentationSuggestions: A place to put docs that you wish ''you'' could have found while learning |
| | 82 | * [wiki:DosAndDontsForApplicationWriters Do's and Dont's for application writers]: how to make an application that is easy to distribute |
| | 83 | * [http://djangoapi.quamquam.org/ Django API (Beta)]: Automatic generated API using epydoc |
| | 84 | * [wiki:AjaxDjangoDojoForm Ajax and Django, using Dojo] How to submit a form using Ajax with Dojo. |
| | 85 | * FormField documentation for Manipulators |
| | 86 | * ExtendedUserModel: How to extend the auth systems's User class to contain extra data. (Warning: kludge!) |
| | 87 | * [wiki:CustomFormFields Making Custom form fields]: Adventures in making new form fields |
| | 88 | |
| | 89 | === Templates === |
| | 90 | |
| | 91 | * ExtendingAdminTemplates |
| | 92 | * [wiki:TemplateTagsCheatSheet] - A quick list of all the template tags. |
| | 93 | |
| | 94 | === Internationalization === |
| | 95 | |
| | 96 | * [wiki:ChineseDjangoTutorial Chinese Django Tutorial]: A Chinese Django tutorial step by step. |
| | 97 | |
| | 98 | === Performance === |
| | 99 | |
| | 100 | * [wiki:ProfilingDjango Profiling Django]: How to use the Python hotshot profiler with Django |
| | 101 | |
| | 102 | === Presentations === |
| | 103 | |
| | 104 | * [wiki:SnakesAndRubiesTranscript Snakes and Rubies Transcript]: Currently a partial transcript of the Snakes and Rubies meeting videos. |
| 70 | | * [wiki:SimpleBashScriptToSetupDevelopmentEnvironment Simple Bash Script To Setup Development Environment]: An example of how to set up your development environment. |
| 71 | | * [wiki:DjangoSettingsBashFunction 'django-settings' Bash function]: Save the typing of DJANGO_SETTINGS_MODULE. |
| 72 | | * ExtendedUserModel: How to extend the auth systems's User class to contain extra data. (Warning: kludge!) |
| 73 | | * [wiki:UsingVimWithDjango Django development with Vim]: Hints and tips for using the Vim editor. |
| 74 | | * [wiki:SnakesAndRubiesTranscript Snakes and Rubies Transcript]: Currently a partial transcript of the Snakes and Rubies meeting videos. |
| 75 | | * [wiki:WebServices WebServices]: An example showing how to access a web service (Amazon.com) using Python. |
| 76 | | * [wiki:PythonScriptForParsingSettings A python script for parsing settings.py]: A small python script can be used to read, modify, save settings.py file. |
| 77 | | * [wiki:PythonScriptForParsingUrlConf A python script for parsing urls.py]: A small python script can be used to read, modify, save urls.py file. |
| 78 | | * [wiki:ChineseDjangoTutorial Chinese Django Tutorial]: A Chinese Django tutorial step by step. |
| 79 | | * [wiki:SetupOnTiger Setup on Mac OS X Tiger]: Includes installing python 2.4 (which isn't required), the latest version of postgresql, and psycopg. |
| 80 | | * [wiki:CustomFormFields Making Custom form fields]: Adventures in making new form fields |
| 81 | | * [http://djangoapi.quamquam.org/ Django API (Beta)]: Automatic generated API using epydoc |
| 82 | | * [wiki:ProfilingDjango Profiling Django]: How to use the Python hotshot profiler with Django |
| 83 | | * ExtendingAdminTemplates |
| 84 | | * FormField documentation for Manipulators |
| | 107 | |
| | 108 | === Web Services/APIs === |
| | 109 | |