Ë
    ¹ûàgî  ã                   óP   — d Z ddlZddlZddlmZ ddlmZ ddlmZ ddl	m
Z
 dd„Zy)	zŽ
Views and functions for serving static files. These are only to be used during
development, and SHOULD NOT be used in a production setting.

é    N)Úsettings)Úfinders)ÚHttp404)Ústaticc                 ó|  — t         j                  s|st        ‚t        j                  |«      j                  d«      }t        j                  |«      }|s/|j                  d«      s|dk(  rt        d«      ‚t        d|z  «      ‚t        j                  j                  |«      \  }}t        j                  | |fd|i|¤ŽS )as  
    Serve static files below a given point in the directory structure or
    from locations inferred from the staticfiles finders.

    To use, put a URL pattern such as::

        from django.contrib.staticfiles import views

        path('<path:path>', views.serve)

    in your URLconf.

    It uses the django.views.static.serve() view to serve the found files.
    ú/Ú z'Directory indexes are not allowed here.z'%s' could not be foundÚdocument_root)r   ÚDEBUGr   Ú	posixpathÚnormpathÚlstripr   ÚfindÚendswithÚosÚpathÚsplitr   Úserve)Úrequestr   ÚinsecureÚkwargsÚnormalized_pathÚabsolute_pathr
   s          ú^/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/django/contrib/staticfiles/views.pyr   r      sŸ   € ô �>Š>¡(ÜˆÜ×(Ñ(¨Ó.×5Ñ5°cÓ:€OÜ—L‘L Ó1€MÙØ�=‰=˜Ô ¨¢ÜÐCÓDÐDÜÐ/°$Ñ6Ó7Ð7ÜŸ'™'Ÿ-™-¨Ó6Ñ€M�4Ü�<‰<˜ ÑM°]ÐMÀfÑMÐMó    )F)Ú__doc__r   r   Údjango.confr   Údjango.contrib.staticfilesr   Údjango.httpr   Údjango.viewsr   r   © r   r   ú<module>r"      s$   ðñó 
Û å  Ý .Ý Ý ôNr   