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
d533921d
Commit
d533921d
authored
Aug 09, 2011
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move changelog away from index
parent
261107ff
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
87 deletions
+36
-87
docs/backwardsincompatiblechanges.rst
+0
-64
docs/changelog.rst
+34
-0
docs/configuration.rst
+1
-1
docs/index.rst
+1
-22
No files found.
docs/backwardsincompatiblechanges.rst
deleted
100644 → 0
View file @
261107ff
.. _ref-backwardsincompatiblechanges:
==============================
Backwards Incompatible Changes
==============================
A list of backwards incompatible changes
Version 1.1.0
=============
* Most of the settings name have change to be prefixed by ``PIPELINE_``.
* CSSTidy isn't the default anymore, YUI Compressor is now the default.
* Filters are now called compressors.
* You can only specify one compressor via ``PIPELINE_CSS_COMPRESSOR`` or
``PIPELINE_JS_COMPRESSOR``
Revision 53
===========
http://code.google.com/p/django-compress/source/detail?r=53
Changed the default media type for CSS to "all" instead of "media,projection".
You can still specify media type with `extra_context`.
Revision 56
===========
http://code.google.com/p/django-compress/source/detail?r=56
*bump_filename completely changed*
bump_filename was broken because a lot of caches does not properly cache files with querystrings.
Therefore it is completely rewritten without any thoughts on backwards compatibility, since it was not possible anyways.
This changeset also introduces a couple of other changes that could potentially break old code.
* The `bump_filename` option was removed from the group settings.
There is no need specifying it for all groups, if you actually use it,
you most likely want to use it on all your compressed files.
* The bump_filename options is replaced by the setting ``PIPELINE_VERSION``,
and is completely ignored.
* The querystring is no longer used to determine a files version, since it was use.
* If ``PIPELINE_VERSION`` is used, you specify the version part of the `output_filename` file with '?'.
This placeholder can be changed with ``PIPELINE_VERSION_PLACEHOLDER``.
E.g.::
'screen': {
'source_filenames': ('css/screen/style.css', 'css/screen/paginator.css', 'css/screen/agenda.css', 'css/screen/weather.css', 'css/screen/gallery.css', ),
'output_filename': 'c/screen.r?.css',
},
* ``PIPELINE_VERSION`` requires ``PIPELINE_AUTO`` to be enabled.
``PIPELINE_AUTO`` is enabled by default, but if you explicitly set it to ``False`` an ``ImproperlyConfiguredError`` exception will be thrown.
``PIPELINE_AUTO`` changes
* The CSS/Javascript files are not checked during Django's initialization anymore.
It was not really useful and did not make sense.
The automatic part is now handled by the templatetags (i.e. what used to be ``PIPELINE_TEMPLATE_AUTO``).
* ``PIPELINE_AUTO`` is replaced by ``PIPELINE_AUTO_TEMPLATE``, and the old behavior
of ``PIPELINE_AUTO`` is removed. This might be really confusing, the :doc:`configuration` should make it clear.
\ No newline at end of file
docs/changelog.rst
0 → 100644
View file @
d533921d
Changelog
=========
1.1.9
-----
* Play more nicely with staticfiles app via ``PipelineFinderStorage``,
see :doc:`storages`.
1.1.8.1
-------
* Fix bug in asset absolute path rewriting.
1.1.8
-----
* Faster templates tags
* Storage speed up
1.1.7
-----
* Improved windows support. Thanks to Kyle MacFarlane.
* Added Manifesto support.
1.1.0
-----
* Most of the settings name have change to be prefixed by ``PIPELINE_``.
* CSSTidy isn't the default anymore, YUI Compressor is now the default.
* Filters are now called compressors.
* You can only specify one compressor via ``PIPELINE_CSS_COMPRESSOR`` or
``PIPELINE_JS_COMPRESSOR``
docs/configuration.rst
View file @
d533921d
...
...
@@ -10,7 +10,7 @@ Configuration and list of available settings for Pipeline
.. note::
If you are updating from django-compress or from previous versions of django-pipeline,
don't forget to read :doc:`
backwardsincompatiblechanges
`.
don't forget to read :doc:`
changelog
`.
Specifying files
================
...
...
docs/index.rst
View file @
d533921d
...
...
@@ -22,28 +22,7 @@ Table Of Contents
templates
storages
farfutureexpires
backwardsincompatiblechanges
Changelog
=========
1.1.8.1
-------
* Fix bug in asset absolute path rewriting.
1.1.8
-----
* Faster templates tags
* Storage speed up
1.1.7
-----
* Improved windows support. Thanks to Kyle MacFarlane.
* Added Manifesto support.
changelog
Indices and tables
==================
...
...
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