forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Significant performance boost for filer directory listings (d…
…jango-cms#1353) * remove mptt * Remove deprecated function * Update test * Update flake8 errors * Fix: update move folder admin action * Remove n+1 issue from move files/folders admin * Remove unneeded ordering by mptt fields * Remove spaces * Optimize qs, delay thumbnail creation * Add back clipboard * Add url cache for file selector box Add upscaled images * Update package.json * Add performance test * Ensure annotation of thumbnail urls works in tests * Update pre-commit.yaml for current isort version * fix isort issue * Update docs wrt paginator default * Improved qs heuristics * Update pre-commit hooks, add Django 4.2 tests * Update changelog * Update tox.ini * feat: Allow uploads to be configured properly * Fix isort issue
- Loading branch information
Showing
32 changed files
with
299 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
"installed-apps": [ | ||
"filer", | ||
"easy_thumbnails", | ||
"mptt", | ||
"polymorphic" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
filer/migrations/0016_alter_folder_index_together_remove_folder_level_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 5.0.dev20230606055133 on 2023-06-07 14:14 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('filer', '0015_alter_file_owner_alter_file_polymorphic_ctype_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterIndexTogether( | ||
name='folder', | ||
index_together=set(), | ||
), | ||
migrations.RemoveField( | ||
model_name='folder', | ||
name='level', | ||
), | ||
migrations.RemoveField( | ||
model_name='folder', | ||
name='lft', | ||
), | ||
migrations.RemoveField( | ||
model_name='folder', | ||
name='rght', | ||
), | ||
migrations.RemoveField( | ||
model_name='folder', | ||
name='tree_id', | ||
), | ||
] |
Oops, something went wrong.