Ticket #11070: 11070-remove-jing-path-from-global-settings.diff

File 11070-remove-jing-path-from-global-settings.diff, 1.1 KB (added by Sean Legassick, 15 years ago)
  • django/conf/global_settings.py

     
    225225# loudly.
    226226SECRET_KEY = ''
    227227
    228 # Path to the "jing" executable -- needed to validate XMLFields
    229 JING_PATH = "/usr/bin/jing"
    230 
    231228# Default file storage mechanism that holds media.
    232229DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
    233230
  • docs/ref/settings.txt

     
    594594    * Receive X headers if the ``XViewMiddleware`` is installed (see
    595595      :ref:`topics-http-middleware`)
    596596
    597 .. setting:: JING_PATH
    598 
    599 JING_PATH
    600 ---------
    601 
    602 Default: ``'/usr/bin/jing'``
    603 
    604 Path to the "Jing" executable. Jing is a RELAX NG validator, and Django uses it
    605 to validate each ``XMLField`` in your models.
    606 See http://www.thaiopensource.com/relaxng/jing.html .
    607 
    608597.. setting:: LANGUAGE_CODE
    609598
    610599LANGUAGE_CODE
Back to Top