Changes between Version 98 and Version 99 of IrcFAQ


Ignore:
Timestamp:
Oct 17, 2014, 7:53:47 AM (10 years ago)
Author:
Kevin Marsh
Comment:

Fixed some broken links that were pointing to "http://www.djangoproject.com/documentation/..."

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v98 v99  
    11This 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.
    22
    3 There's also a helpful [http://www.djangoproject.com/documentation/faq/ official FAQ].
     3There's also a helpful [https://docs.djangoproject.com/en/dev/faq/ official FAQ].
    44
    55[[TOC]]
     
    4242"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.
    4343
    44 If you feel like pitching in, great! See the [http://www.djangoproject.com/documentation/contributing/ Contributing] docs.
     44If you feel like pitching in, great! See the [https://docs.djangoproject.com/en/dev/internals/contributing/ Contributing] docs.
    4545
    4646== I'm trying to install Django on Windows and something is weird. == #Windows
     
    6868Django doesn't serve static media automatically (exception: admin app running under the dev server).
    6969
    70 If you're running the development server, read this: http://www.djangoproject.com/documentation/static_files/
     70If you're running the development server, read this: https://docs.djangoproject.com/en/dev/howto/static-files/
    7171
    72 If you're running Apache, read this: http://www.djangoproject.com/documentation/modpython/#serving-media-files
     72If you're running Apache, read this: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/#serving-files
    7373
    7474Confusingly, 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.
     
    7676== Why isn't my template tag or filter working? == #TemplateTagsAndFilters
    7777
    78 Of course, you've read the [http://www.djangoproject.com/documentation/templates_python/#extending-the-template-system documentation], right?
     78Of course, you've read the [https://docs.djangoproject.com/en/dev/howto/custom-template-tags/ documentation], right?
    7979Here's a brief list of things to check first before asking:
    8080
     
    100100== I think Ajax is awesome! How do I do Ajax with Django? == #Ajax
    101101
    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/
     102Choose 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].
    103103
    104104Also 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
Back to Top