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
510a81d7
Commit
510a81d7
authored
Nov 22, 2008
by
Andreas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made it possible to use the title attribute on stylesheets via extra_context
parent
55235ee4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
8 deletions
+7
-8
compress/templates/compress/css.html
+1
-2
compress/templates/compress/css_ie.html
+2
-2
compress/templates/compress/js.html
+2
-2
compress/templates/compress/js_ie.html
+2
-2
No files found.
compress/templates/compress/css.html
View file @
510a81d7
<link
href=
"{{ url }}"
rel=
"stylesheet"
type=
"text/css"
media=
"{{ media|default:"
all
"
}}"
/>
<link
href=
"{{ url }}"
rel=
"stylesheet"
type=
"text/css"
media=
"{{ media|default:"
all
"
}}"
title=
"{{ title|default:"
all
"
}}"
charset=
"utf-8"
/>
\ No newline at end of file
compress/templates/compress/css_ie.html
View file @
510a81d7
<!--[if {{ condition|default:"IE" }}]><link href="{{ url }}" rel="stylesheet" type="text/css" media="{{ media|default:"all" }}" /><![endif]-->
<!--[if {{ condition|default:"IE" }}]><link href="{{ url }}" rel="stylesheet" type="text/css" media="{{ media|default:"all" }}" title="{{ title|default:"all" }}" charset="utf-8" /><![endif]-->
\ No newline at end of file
\ No newline at end of file
compress/templates/compress/js.html
View file @
510a81d7
<script
type=
"text/javascript"
src=
"{{ url }}"
></script>
<script
type=
"text/javascript"
src=
"{{ url }}"
charset=
"utf-8"
></script>
\ No newline at end of file
\ No newline at end of file
compress/templates/compress/js_ie.html
View file @
510a81d7
<!--[if {{ condition|default:"IE" }}]><script type="text/javascript" src="{{ url }}"></script><![endif]-->
<!--[if {{ condition|default:"IE" }}]><script type="text/javascript" src="{{ url }}" charset="utf-8"></script><![endif]-->
\ No newline at end of file
\ No newline at end of file
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