File: SOURCES.txt

package info (click to toggle)
django-pipeline 4.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 904 kB
  • sloc: python: 3,170; makefile: 120; javascript: 59
file content (148 lines) | stat: -rw-r--r-- 4,247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
.flake8
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
AUTHORS
CODE_OF_CONDUCT.md
CONTRIBUTING.rst
HISTORY.rst
LICENSE
MANIFEST.in
README.rst
pyproject.toml
.github/dependabot.yml
.github/workflows/release.yml
.github/workflows/test.yml
django_pipeline.egg-info/PKG-INFO
django_pipeline.egg-info/SOURCES.txt
django_pipeline.egg-info/dependency_links.txt
django_pipeline.egg-info/requires.txt
django_pipeline.egg-info/top_level.txt
docs/Makefile
docs/compilers.rst
docs/compressors.rst
docs/conf.py
docs/configuration.rst
docs/index.rst
docs/installation.rst
docs/make.bat
docs/signals.rst
docs/storages.rst
docs/templates.rst
docs/usage.rst
docs/using.rst
img/django-pipeline.svg
pipeline/__init__.py
pipeline/collector.py
pipeline/conf.py
pipeline/exceptions.py
pipeline/finders.py
pipeline/forms.py
pipeline/glob.py
pipeline/middleware.py
pipeline/packager.py
pipeline/signals.py
pipeline/storage.py
pipeline/utils.py
pipeline/views.py
pipeline/compilers/__init__.py
pipeline/compilers/coffee.py
pipeline/compilers/es6.py
pipeline/compilers/less.py
pipeline/compilers/livescript.py
pipeline/compilers/sass.py
pipeline/compilers/stylus.py
pipeline/compilers/typescript.py
pipeline/compressors/__init__.py
pipeline/compressors/closure.py
pipeline/compressors/csshtmljsminify.py
pipeline/compressors/cssmin.py
pipeline/compressors/csstidy.py
pipeline/compressors/jsmin.py
pipeline/compressors/terser.py
pipeline/compressors/uglifyjs.py
pipeline/compressors/yuglify.py
pipeline/compressors/yui.py
pipeline/jinja2/__init__.py
pipeline/jinja2/pipeline/css.jinja
pipeline/jinja2/pipeline/inline_js.jinja
pipeline/jinja2/pipeline/js.jinja
pipeline/templates/pipeline/compile_error.html
pipeline/templates/pipeline/css.html
pipeline/templates/pipeline/css.jinja
pipeline/templates/pipeline/inline_js.html
pipeline/templates/pipeline/inline_js.jinja
pipeline/templates/pipeline/js.html
pipeline/templates/pipeline/js.jinja
pipeline/templatetags/__init__.py
pipeline/templatetags/pipeline.py
tests/__init__.py
tests/models.py
tests/settings.py
tests/urls.py
tests/utils.py
tests/views.py
tests/assets/compilers/coffee/expected.js
tests/assets/compilers/coffee/input.coffee
tests/assets/compilers/es6/expected.js
tests/assets/compilers/es6/input.es6
tests/assets/compilers/less/expected.css
tests/assets/compilers/less/input.less
tests/assets/compilers/livescript/expected.js
tests/assets/compilers/livescript/input.ls
tests/assets/compilers/scss/expected.css
tests/assets/compilers/scss/input.scss
tests/assets/compilers/stylus/expected.css
tests/assets/compilers/stylus/input.styl
tests/assets/compilers/typescript/expected.js
tests/assets/compilers/typescript/input.ts
tests/assets/compressors/closure.js
tests/assets/compressors/csshtmljsminify.css
tests/assets/compressors/csshtmljsminify.js
tests/assets/compressors/cssmin.css
tests/assets/compressors/csstidy.css
tests/assets/compressors/jsmin.js
tests/assets/compressors/slimit.js
tests/assets/compressors/terser.js
tests/assets/compressors/uglifyjs.js
tests/assets/compressors/yuglify.css
tests/assets/compressors/yuglify.js
tests/assets/compressors/yui.css
tests/assets/compressors/yui.js
tests/assets/css/first.css
tests/assets/css/second.css
tests/assets/css/sourcemap.css
tests/assets/css/unicode.css
tests/assets/css/urls.css
tests/assets/css/nested/nested.css
tests/assets/fonts/pipeline.eot
tests/assets/fonts/pipeline.svg
tests/assets/fonts/pipeline.ttf
tests/assets/fonts/pipeline.woff
tests/assets/images/arrow.png
tests/assets/images/sprite-buttons.png
tests/assets/images/embed/arrow.png
tests/assets/js/application.js
tests/assets/js/dummy.coffee
tests/assets/js/first.js
tests/assets/js/second.js
tests/assets/js/sourcemap.js
tests/assets/templates/photo/detail.jst
tests/assets/templates/photo/list.jst
tests/assets/templates/video/detail.jst
tests/templates/empty.html
tests/templates/index.html
tests/tests/__init__.py
tests/tests/models.py
tests/tests/test_collector.py
tests/tests/test_compiler.py
tests/tests/test_compressor.py
tests/tests/test_conf.py
tests/tests/test_forms.py
tests/tests/test_glob.py
tests/tests/test_middleware.py
tests/tests/test_packager.py
tests/tests/test_storage.py
tests/tests/test_template.py
tests/tests/test_utils.py
tests/tests/test_views.py