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
df2f9c8d
Commit
df2f9c8d
authored
Dec 11, 2011
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove version from signals args
parent
bb7acd43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
docs/signals.rst
+1
-6
pipeline/signals.py
+2
-2
No files found.
docs/signals.rst
View file @
df2f9c8d
...
...
@@ -20,9 +20,7 @@ css_compressed
:package:
The package actually compressed.
:version:
The version identifier if the newly compressed file.
js_compressed
--------------
...
...
@@ -38,6 +36,3 @@ js_compressed
:package:
The package actually compressed.
:version:
The version identifier if the newly compressed file.
pipeline/signals.py
View file @
df2f9c8d
from
django.dispatch
import
Signal
css_compressed
=
Signal
(
providing_args
=
[
"package"
,
"version"
])
js_compressed
=
Signal
(
providing_args
=
[
"package"
,
"version"
])
css_compressed
=
Signal
(
providing_args
=
[
"package"
])
js_compressed
=
Signal
(
providing_args
=
[
"package"
])
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