aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-05-17Merge pull request #591 from mbarrien/jquery-requireAymeric Augustin
undefine "define" to avoid requirejs conflict
2014-05-17Don't show AJAX loader for preloaded panels.Aymeric Augustin
Fix #582, #594. Thanks TacoDelPaco for the report and ionelmc for the fix.
2014-05-16Merge pull request #597 from frewsxcv/patch-1Aymeric Augustin
Enable testing on Python 3.4
2014-05-11Enable testing on Python 3.4Corey Farwell
2014-05-06Merge pull request #593 from micrypt/patch-1Aymeric Augustin
settings: fix minor typo.
2014-05-04settings: fix minor typo.Seyi Ogunyemi
Otherwise, it render the deprecation warning as '… in theDEBUG_TOOLBAR_CONFIG …'
2014-04-29undefine "define" to avoid requirejs conflictMichael Barrientos
2014-04-25Bump version number.1.2Aymeric Augustin
2014-04-25Minor update in release process.Aymeric Augustin
2014-04-25Update translations.Aymeric Augustin
2014-04-25Update source translations.Aymeric Augustin
2014-04-25We don't minify CSS and JS any more.Aymeric Augustin
2014-04-25Merge pull request #586 from living180/improve_redirect_testAymeric Augustin
Improve the redirect context processor test.
2014-04-25Merge pull request #587 from living180/work_around_chrome_mousemoveAymeric Augustin
Work around spurious mousemove on Chrome.
2014-04-25Make the pain go away.Aymeric Augustin
Fix #581, #544, #541, #535 and a few others.
2014-04-25Work around spurious mousemove on Chrome.Daniel Harding
When clicking on an element in Chrome, spurious mousemove events can be generated when the cursor hasn't actually moved. This can prevent the toolbar from being shown when the handle is clicked because the code sees the mousemove event and thinks a handle drag is happening. Work around this by only running the handle drag code if the cursor has moved since the mousedown event.
2014-04-25Improve the redirect context processor test.Daniel Harding
* rename the context processor used from 'custom' to 'broken' * remove the custom middleware, because it is not used in the context of the test * rename the test to better identify what it is testing
2014-04-19Fix #549 -- Avoid breaking on mod_python.Aymeric Augustin
(Please don't use mod_python.)
2014-04-19Flake8.Aymeric Augustin
2014-04-19Fix #565 -- Replace render with render_to_response.Aymeric Augustin
2014-04-19Merge pull request #577 from prestontimmons/setup-versionAymeric Augustin
Remove upper limit from django version in setup.py.
2014-04-19Merge pull request #579 from ecederstrand/patch-1Aymeric Augustin
System encoding might not be utf-8
2014-04-15System encoding might not be utf-8Erik Cederstrand
Eliminates UnicodeDecodeError when opening README.rst if system encoding is not utf-8
2014-04-15Merge pull request #578 from ↵Jannis Leidel
catalanojuan/fix-dont-run-context-processor-for-redirects Fix dont run context processor for redirects
2014-04-15Added unit test for broken context processors due to use of `render`Juan Catalano
This adds the regression test for the case when a custom context processor breaks cause of the use of `render` in the redirects panel.
2014-04-15Don't run context processors for redirect template.Daniel Harding
2014-04-14Remove upper limit from django version in setup.py.Preston Timmons
2014-04-14Updated Spanish translation.Jannis Leidel
2014-04-13Merge pull request #576 from vishalsodani/masterAymeric Augustin
Add missing if
2014-04-13Add missing ifVishal Sodani
2014-04-12New version of flake8 adds new checks.1.1Aymeric Augustin
2014-04-12Bump version numbers for 1.1.Aymeric Augustin
2014-04-12Add Django 1.7b1 to tested versions.Aymeric Augustin
2014-04-03Merge pull request #551 from GomZik/masterAymeric Augustin
Fix UnicodeDecodeError in SQL panel.
2014-04-03Fix #571 -- Improve database engine detection.Aymeric Augustin
2014-03-25Merge pull request #567 from miohtama/masterAymeric Augustin
Be more explicit about function signature of toolbar callback
2014-03-21Be more explicit about function signatureMikko Ohtamaa
This is not a big change, but it the function signature is more readable this way.
2014-03-13Changelog for previous commit.Aymeric Augustin
2014-03-13Merge pull request #560 from tim-schilling/profiler-max-depth-settings-515Aymeric Augustin
Allow profiler max depth to be configurable.
2014-03-12Allow profiler max depth to be configurable.tschilling
2014-03-09Initiate changelog for 1.1.Aymeric Augustin
2014-03-09Document DISABLE_PANELS.Aymeric Augustin
2014-03-09Merge pull request #548 from tim-schilling/disable-panels-by-default-510Aymeric Augustin
Deprecating INTERCEPT_REDIRECTS in favor of DEFAULT_DISABLED_PANELS.
2014-03-09Merge pull request #559 from maikhoepfel/subtitlesAymeric Augustin
Add nav subtitles for template and request panels
2014-03-09Display abbreviated view function name as request panel's subtitleMaik Hoepfel
That's hopefully the most commonly required information from the panel.
2014-03-09Display main template name as template panel's subtitleMaik Hoepfel
Frequently, that's the only information required from the templates panel.
2014-02-26Merge pull request #553 from djsutho/patch-1Aymeric Augustin
Propagate mouseup events when not dragging toolbar
2014-02-25Propagate mouseup events when not dragging toolbarDavid Sutherland
In Chrome (this does not affect Firefox) onchange events on multi-selects are not fired all of the time e.g. with the following template: <body> <select multiple="multiple" onchange="console.log('clicked');"> <option value="1">1</option> </select> </body> Ctrl click on the option and view the js log. many of the events will not register. Therefore stop propagation and prevent default action only when handle is dragged.
2014-02-18Update forms.pyAlexey Homza
Fix UnicodeDecodeError exception when sql params has unicode characters
2014-02-15Changing set declaration.tschilling