Sith/core/scss/finder.py

52 lines
1.7 KiB
Python
Raw Normal View History

2017-05-05 12:26:46 +00:00
#!/usr/bin/env python3
#
# Copyright 2016,2017
# - Sli <antoine@bartuccio.fr>
#
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
# http://ae.utbm.fr.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License a published by the Free Software
# Foundation; either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
# Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
import os
from collections import OrderedDict
2024-06-24 11:07:36 +00:00
2017-05-05 12:26:46 +00:00
from django.conf import settings
from django.contrib.staticfiles.finders import FileSystemFinder
from django.core.files.storage import FileSystemStorage
class ScssFinder(FileSystemFinder):
2024-07-12 07:34:16 +00:00
"""Find static *.css files compiled on the fly."""
2018-10-04 19:29:19 +00:00
2017-05-05 12:26:46 +00:00
locations = []
def __init__(self, apps=None, *args, **kwargs):
location = settings.STATIC_ROOT
if not os.path.isdir(location):
return
2018-10-04 19:29:19 +00:00
self.locations = [("", location)]
2017-05-05 12:26:46 +00:00
self.storages = OrderedDict()
filesystem_storage = FileSystemStorage(location=location)
filesystem_storage.prefix = self.locations[0][0]
self.storages[location] = filesystem_storage
2024-06-27 12:30:58 +00:00
def find(self, path, all=False): # noqa A002 (shadows the builtin `all` function)
2018-10-04 19:29:19 +00:00
if path.endswith(".css"):
2024-06-27 12:46:43 +00:00
return super().find(path, all)
2017-05-05 12:26:46 +00:00
return []