-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: - use Monkay for settings, extensions and cli instance tracking - tests lazy imports and imports - make EdgyExtra and Migrate deprecated stubs, with Migrate keeping its model_apps system - fix get_engine_url_and_metadata - fix typos and include @tarsild suggestions - bump version - update release notes and docs
- Loading branch information
Showing
78 changed files
with
941 additions
and
1,353 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ results/ | |
site/ | ||
target/ | ||
tests/cli/migrations | ||
tests/cli/migrations2 | ||
media/ | ||
test_media/ | ||
|
||
|
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 |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# Edgy People | ||
# Edgy Contributors | ||
|
||
## The Special Ones | ||
|
||
Currently there are no special ones but we are hoping this will change soon. | ||
Edgy wouldn't be possible in this way without these people. | ||
|
||
## The Legends | ||
- @kokoserver (https://github.com/Kokoserver) | ||
|
||
Currently there are no legends but we are hoping this will change soon. | ||
He provided a lot of valuable bug reports and PRs. Especially related to migrations. | ||
|
||
|
||
- @devkral (https://github.com/devkral) | ||
|
||
He refactored an reworked edgy nearly completely. Some features he provided are | ||
FileFields, Registry hooks, copying models... |
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,18 @@ | ||
# Extensions | ||
|
||
Edgy has extension support build on the Monkay extensions system. Adding extensions | ||
is possible in settings via the attribute/parameter `extensions`. | ||
|
||
They must implement the monkay extension protocol or return as a callable a class implementing the extension protocol. | ||
This sounds hard but it isn't: | ||
|
||
``` python | ||
{!> ../docs_src/extensions/settings !} | ||
``` | ||
|
||
You can also lazily provide them via add_extension (should happen before the instance is set) | ||
|
||
|
||
``` python | ||
{!> ../docs_src/extensions/add_extension !} | ||
``` |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.