Custom Query (2152 matches)
Results (976 - 978 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#889 | fixed | Support extra footer material in config option (e.g. for google analytics) | rgrp | rgrp |
Description |
Add a config option 'template_footer_end' which is inserted in layout_template just before </body>. This allows sysadmins to add extra items, especially, scripts directly into site without having to do any theming and is especially useful for things like google analytics. Aside: going forward may want to turn this into a extension. Cost: 1h |
|||
#898 | fixed | Changes stored indefinitely | rgrp | dread |
Description |
Every change to every object is being stored in memory, which could add up to quite a lot of memory. This fixes it by making sure the objects are in a weakref. https://bitbucket.org/kindly/vdm/changeset/8d5f91db641f |
|||
#899 | fixed | Optimise check_real_change | rgrp | dread |
Description |
There is no need to re-query the database to detect if there has been a changed as sqlalchemy knows this. It saves about 15 secs in the ckan tests. https://bitbucket.org/kindly/vdm/changeset/0050d023ca4e From David Raznick |