-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Content cloning and translation #6540
Closed
Closed
Conversation
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 change fixes that the `"class"` attribute would be added to the tag even if there are no css classes to assign. This in turn has the effect that the root `Canvas` element is not rendering its outer tags needlessly by default (only if it has at least one attribute).
second time to fix OrchardCMS#6245
This enables setting a default value (tokens supported) for the following fields: - TextField - TextArea - UrlField - HiddenField - EmailField - Enumeration - Query -
The bug would cause a null reference exception in case there is no alias with an empty string (the home alias).
Due to a bug in the orchard-workflows.js script, the activity toolbox filter was broken.
…migrations and changing affected code to use this
…ace-lib-with-nuget
…ortCommand [Fixes OrchardCMS#6181] Fixed bad assumption about HttpContext
[Fixes OrchardCMS#6148] Replace lib with nuget
WorkContext & HttpContext: Unused registration and last minor refactoring for better clarity
Update for issue OrchardCMS#6267
A handful of compiler errors would appear in most modules while having Razor views open in Visual Studio 2015. Adding a reference to System.Core in Web.config of modules fixes this.
Breaking change: Existing themes relying on Layout and TheThemeMachine will need to add a reference to this css.
- Added Roslyn CodeDom Nuget packages to Orchard.Web and Orchard.Azure.Web. - Added the necessary Web.config section to all modules/themes to make the VS editor recognize C# 6 syntax. - Added a sample/proof use in BadgeOfHonor.cshtml.
…cally added to the content type/item, see OrchardCMS#6360
Cloned content is no more saved
Cloned content has same culture as original by default
TFleury
force-pushed
the
feature/clone-content
branch
from
March 22, 2016 08:36
d095c7c
to
2a08914
Compare
As @sebastienros asked, I reopened a new PR #6630 based on dev branch. I also removed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds new clone handling to replace export/import logic, and also allow translating a clone of the master content item.
It introduces new
Cloning
andCloned
content handlers to specify a clone logic that can be different of import/export ones.ContentManager
'sDuplicate
method don't save a new draft content any more, but create a new content initialized by clone handlers. Admin Content Controller Duplicate action opens a editor to edit the cloned content before saving.It fixes : #5535, #5089, #4983, #4970, #4538