Commit Graph

9 Commits

Author SHA1 Message Date
9729558e10 Add 9.5 to the feature matrix 2015-07-08 13:36:56 +01:00
1432dd7d28 Add 9.4 to the feature matrix 2014-05-15 16:27:39 +02:00
3f1bc77001 add 9.3 to the feature matrix so that thom can start updating it 2013-05-26 12:34:47 -04:00
88ccd0d6b8 Add feature matrix entry for 9.2, hide 7.4 for layout reasons
Requires manual sql to be run on all installations:

BEGIN;
ALTER TABLE featurematrix_feature ADD COLUMN v92 int;
UPDATE featurematrix_feature SET v92=v91;
ALTER TABLE featurematrix_feature ALTER COLUMN v92 SET NOT NULL;
COMMIT;
2012-05-27 21:07:06 +02:00
f963e559d5 Make it possible to turn off visibilty of versions in the feature matrix
Turn the feature matrix fields into their own class and add a paramter
for visible_default to it. Turning this off will hide them from view.
In the future this could be expanded to make it dynamic, but for now let's
just stick to being able to statically hide them.
2012-05-27 21:05:36 +02:00
5bcbf1253e All purge_urls must be rooted, since we add ^ at the beginning 2011-11-27 13:31:20 +01:00
379b8d41cd Update feature matrix versions etc
8.5 -> 9.0
add 8.1
bugfix typo for loading of 8.5/9.0 values
2011-08-11 16:22:18 +02:00
f92709d2a6 Implement basic varnish purging
This allows all models inherited from PgModel to specify which
URLs to purge by either setting a field or defining a function
called purge_urls, at which point they will be purged whenever
the save signal is fired.

Also implements a form under /admin/purge/ that allows for manual
purging. This should probably be extended in the future to show
the status of the pgq slaves, but that will come later.

Includes a SQL function that posts the expires to a pgq queue. For
a local deployment, this can be replaced with a simple void function
to turn off varnish purging.
2011-06-14 19:48:48 +02:00
cad9eddd92 Implement the feature matrix 2010-01-11 22:55:00 +01:00