Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-pipeline
Commits
7166203a
Commit
7166203a
authored
Jun 13, 2012
by
pierre.drescher@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added two new settings to help control which images get embedded in css
parent
2fe0dad3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
pipeline/compressors/__init__.py
+4
-4
pipeline/conf/settings.py
+3
-1
No files found.
pipeline/compressors/__init__.py
View file @
7166203a
...
@@ -16,8 +16,6 @@ from pipeline.conf import settings
...
@@ -16,8 +16,6 @@ from pipeline.conf import settings
from
pipeline.utils
import
to_class
,
relpath
from
pipeline.utils
import
to_class
,
relpath
from
pipeline.storage
import
default_storage
from
pipeline.storage
import
default_storage
MAX_IMAGE_SIZE
=
32700
EMBEDDABLE
=
r'[/]?embed/'
EMBEDDABLE
=
r'[/]?embed/'
URL_DETECTOR
=
r'url\([\'"]?([^\s)]+\.[a-z]+[\?\#\d\w]*)[\'"]?\)'
URL_DETECTOR
=
r'url\([\'"]?([^\s)]+\.[a-z]+[\?\#\d\w]*)[\'"]?\)'
URL_REPLACER
=
r'url\(__EMBED__(.+?)(\?\d+)?\)'
URL_REPLACER
=
r'url\(__EMBED__(.+?)(\?\d+)?\)'
...
@@ -157,13 +155,15 @@ class Compressor(object):
...
@@ -157,13 +155,15 @@ class Compressor(object):
"""Is the asset embeddable ?"""
"""Is the asset embeddable ?"""
name
,
ext
=
os
.
path
.
splitext
(
path
)
name
,
ext
=
os
.
path
.
splitext
(
path
)
font
=
ext
in
FONT_EXTS
font
=
ext
in
FONT_EXTS
if
not
variant
:
if
not
variant
:
return
False
return
False
if
not
(
re
.
search
(
EMBEDDABLE
,
path
)
and
self
.
storage
.
exists
(
path
)):
if
not
((
settings
.
PIPELINE_EMBED_ALL_IMAGES
or
re
.
search
(
EMBEDDABLE
,
path
))
and
\
self
.
storage
.
exists
(
path
)):
return
False
return
False
if
not
ext
in
EMBED_EXTS
:
if
not
ext
in
EMBED_EXTS
:
return
False
return
False
if
not
(
font
or
len
(
self
.
encoded_content
(
path
))
<
MAX_IMAGE_SIZE
):
if
not
(
font
or
len
(
self
.
encoded_content
(
path
))
<
settings
.
PIPELINE_EMBED_
MAX_IMAGE_SIZE
):
return
False
return
False
return
True
return
True
...
...
pipeline/conf/settings.py
View file @
7166203a
from
django.conf
import
settings
from
django.conf
import
settings
PIPELINE
=
getattr
(
settings
,
'PIPELINE'
,
not
settings
.
DEBUG
)
PIPELINE
=
getattr
(
settings
,
'PIPELINE'
,
not
settings
.
DEBUG
)
PIPELINE_ROOT
=
getattr
(
settings
,
'PIPELINE_ROOT'
,
settings
.
STATIC_ROOT
)
PIPELINE_ROOT
=
getattr
(
settings
,
'PIPELINE_ROOT'
,
settings
.
STATIC_ROOT
)
PIPELINE_URL
=
getattr
(
settings
,
'PIPELINE_URL'
,
settings
.
STATIC_URL
)
PIPELINE_URL
=
getattr
(
settings
,
'PIPELINE_URL'
,
settings
.
STATIC_URL
)
...
@@ -56,5 +55,8 @@ PIPELINE_MIMETYPES = getattr(settings, 'PIPELINE_MIMETYPES', (
...
@@ -56,5 +55,8 @@ PIPELINE_MIMETYPES = getattr(settings, 'PIPELINE_MIMETYPES', (
(
'text/javascript'
,
'.js'
)
(
'text/javascript'
,
'.js'
)
))
))
PIPELINE_EMBED_MAX_IMAGE_SIZE
=
getattr
(
settings
,
'PIPELINE_EMBED_MAX_IMAGE_SIZE'
,
32700
)
PIPELINE_EMBED_ALL_IMAGES
=
getattr
(
settings
,
'PIPELINE_EMBED_ALL_IMAGES'
,
False
)
if
PIPELINE_COMPILERS
is
None
:
if
PIPELINE_COMPILERS
is
None
:
PIPELINE_COMPILERS
=
[]
PIPELINE_COMPILERS
=
[]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment