10000 fix: Replacement of SEND_BROKEN_LINK_EMAILS by BrokenLinkEmailsMiddleware by fsbraun · Pull Request #7419 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Replacement of SEND_BROKEN_LINK_EMAILS by BrokenLinkEmailsMiddleware #7419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c4fae50
Actions: run gulp build
fsbraun Mar 23, 2022
0151b22
Add console.log
fsbraun Mar 23, 2022
6075489
Add: github actions artifacts and see if it runs with node 10
fsbraun Mar 23, 2022
35735a9
Fix: missing comma in yaml
fsbraun Mar 23, 2022
0281288
Back to node@6
fsbraun Mar 23, 2022
05a8d8e
Merge branch 'django-cms:develop-4' into develop-4
fsbraun Mar 23, 2022
9421e08
Fix: Structure board button disappearing after changing a page's con…
fsbraun Mar 23, 2022
d7cb809
Fix: Undo other debug changes
fsbraun Mar 23, 2022
1a8d642
Fix: Re-add cms_path to toolbar url
fsbraun Mar 23, 2022
a6390d5
Fix: Broken test
fsbraun Mar 23, 2022
b405c94 8000
Fix: lint errors
fsbraun Mar 23, 2022
6078f40
Fix: Improved responisveness by saving an unecessary xhr call for th…
fsbraun Mar 23, 2022
385e38a
Tribute to eslint
fsbraun Mar 23, 2022
8cd900e
Fix: get_toolbar xhr call needs to resolve to the cms_path not the r…
fsbraun Mar 23, 2022
2bc18ac
Add: Test for invalid toolbar resolver path
fsbraun Mar 24, 2022
c106f59
Change: Buggy Helpers.updateUrlWithPath. Works fine as long as only …
fsbraun Mar 24, 2022
7da41c7
Fix: toolbar py test
fsbraun Mar 25, 2022
12e09d5
Merge branch 'develop-4' into develop-4
Aiky30 May 18, 2022
966fe39
Update cms/static/cms/js/modules/cms.structureboard.js
fsbraun May 18, 2022
3bc9808
Update cms/static/cms/js/modules/cms.toolbar.js
fsbraun May 18, 2022
330d333
Update cms/tests/test_toolbar.py
fsbraun May 18, 2022
0ed88e1
Update cms.base.js
fsbraun May 18, 2022
760d4bb
Update cms.base.js
fsbraun May 18, 2022
f906289
Merge branch 'django-cms:develop-4' into develop-4
fsbraun Jun 25, 2022
4477ed0
Merge branch 'django-cms:develop-4' into develop-4
fsbraun Sep 14, 2022
90dbcb9
Remove outdated setting of SEND_BROKEN_LINK_EMAILS
fsbraun Oct 23, 2022
b78a2f4
add changelog entry
fsbraun Oct 23, 2022
bf34274
Merge branch 'develop-4' into fix/brokenLinkTests
fsbraun Oct 23, 2022
e5429e7
Fix: flake8 line length in tests
fsbraun Oct 23, 2022
05b589a
Merge branch 'fix/brokenLinkTests' of github.com:fsbraun/django-cms i…
fsbraun Oct 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add console.log
  • Loading branch information
fsbraun committed Mar 23, 2022
commit 0151b22f11cbe2c974754f726641104c32b21c99
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
gulp tests:unit
gulp lint
gulp bundle

2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.toolbar.js
50D1
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ var Toolbar = new Class({
const diff = dd.diff(this.ui.toolbar[0], newToolbar[0]);

dd.apply(this.ui.toolbar[0], diff);

console.log('XXX', $('.cms-toolbar-item-cms-mode-switcher'), switcher);
$('.cms-toolbar-item-cms-mode-switcher').replaceWith(switcher);

this._setupUI();
Expand Down
0