-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Fix word cloud modules not exporting correctly. #492
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good, I think, to assert something about the results of the export.
In particular, I think the thing that concerned me about the fix in the raw module is whether it would cause issues for other subclasses of
RawDescriptorthat didn't expectself.datato be empty, and whether an an export/import pair would leaveself.datain the same state.To be even more specific: If I
del foo.data, and then export, and then re-import, won'tfoo.data == '<foomodule/>', andfoo.data != None. That seems like it could cause problems.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cpennington Did you mean that it would cause problems for other subclasses of RawDescriptor that DID expect self.data to be empty? If you del foo.data, then I think there would be a problem on export (the same problem that word cloud is having right now). What would be the use case for expecting foo.data to be empty?
Peter can go back to the wordcloud-specific fix, and perhaps that is the best approach. But I am concerned that the same bug will creep up in new xmodules (with no data). Although perhaps we artificially created the no-data situation by too zealously moving things into fields with Scope.settings (vs. Scope.content).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, my point was that, given the code in this PR, you can end up w/ a situation where you
del foo.data, and then reimport, andfoo.datawon't be the default value ofNone, it'll be<foo/>.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To fix that, we might just want the
RawDescriptorto correctly clear outself.dataif it's an empty xml element.But basically, to start, let's get a test that
.dataattribute of a module.datais None