Changes between Version 98 and Version 99 of IrcFAQ
- Timestamp:
- Oct 17, 2014, 7:53:47 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IrcFAQ
v98 v99 1 1 This is a work in progress, answering questions that do indeed get asked frequently on the [irc://irc.freenode.net/django Django IRC channel] (#django on irc.freenode.net). Feel free to contribute, but try to keep it clear and concise. Please don't editorialize. 2 2 3 There's also a helpful [http ://www.djangoproject.com/documentation/faq/ official FAQ].3 There's also a helpful [https://docs.djangoproject.com/en/dev/faq/ official FAQ]. 4 4 5 5 [[TOC]] … … 42 42 "When it's done" is the short answer. Reading the [http://docs.djangoproject.com/en/dev/internals/release-process/ release process documentation] is recommended if you're curious. Searching or browsing the developer list (http://groups.google.com/group/django-developers/) can also be informative. 43 43 44 If you feel like pitching in, great! See the [http ://www.djangoproject.com/documentation/contributing/ Contributing] docs.44 If you feel like pitching in, great! See the [https://docs.djangoproject.com/en/dev/internals/contributing/ Contributing] docs. 45 45 46 46 == I'm trying to install Django on Windows and something is weird. == #Windows … … 68 68 Django doesn't serve static media automatically (exception: admin app running under the dev server). 69 69 70 If you're running the development server, read this: http ://www.djangoproject.com/documentation/static_files/70 If you're running the development server, read this: https://docs.djangoproject.com/en/dev/howto/static-files/ 71 71 72 If you're running Apache, read this: http ://www.djangoproject.com/documentation/modpython/#serving-media-files72 If you're running Apache, read this: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/#serving-files 73 73 74 74 Confusingly, though the {{{MEDIA_*}}} settings in your settings.py file refer to ''your'' media files, not the Admin app's media files, the default path for Admin app media ({{{ADMIN_MEDIA_PREFIX}}}) is set to "/media/". Many Django users change this to "/admin_media/" or "/adminmedia/" to reduce potential confusion. … … 76 76 == Why isn't my template tag or filter working? == #TemplateTagsAndFilters 77 77 78 Of course, you've read the [http ://www.djangoproject.com/documentation/templates_python/#extending-the-template-systemdocumentation], right?78 Of course, you've read the [https://docs.djangoproject.com/en/dev/howto/custom-template-tags/ documentation], right? 79 79 Here's a brief list of things to check first before asking: 80 80 … … 100 100 == I think Ajax is awesome! How do I do Ajax with Django? == #Ajax 101 101 102 Choose your favorite excellent Javascript library and go to it. Django provides serializers to JSON and XML, which you can read about in the documentation: http://www.djangoproject.com/documentation/serialization/102 Choose your favorite excellent Javascript library and go to it. Django provides serializers to JSON and XML, which you can read about in the [https://docs.djangoproject.com/en/dev/topics/serialization/ documentation]. 103 103 104 104 Also see this helpful article from James Bennett (with bonus anti-Javascript-helpers rant!): http://www.b-list.org/weblog/2006/07/02/django-and-ajax