Commit Graph

11667 Commits

Author SHA1 Message Date
LorenzoFrediani-Laser
993e57d7fd fix record mapping nhibernate (#8415) 2020-09-24 19:15:07 +02:00
Matteo Piovanelli
70c04a9a5f Prevent NREs for null text (#8418)
When the text we are localizing is null (which potentially happens when localizing dynamic content), it could result in a null parent translation, which would throw when used as "basis" for comparisons.
2020-09-21 12:10:31 +02:00
Matteo Piovanelli
66a611fbf3 Handle the case where a form sends more than one attempted value for a boolean (#8416) 2020-09-18 08:40:56 +02:00
Matteo Piovanelli
f67e6b3695 Upgrade host resolution (#8387)
* Reverted changes to RunningShellTable and then changed the way shells are sorted,
so we can correctly give "priority" to tenants based on their prefix.

Added test adapter reference to Orchard.Framework.Tests so tests can be run in
the latest VS 2017.

Fixed a test that was failing to account for the order the shells were being
processed.

* Removed some stuff from csproj that vs had added
2020-09-18 08:40:44 +02:00
DiegoMarguerettaz-Laser
0d3f3ed9f3 Issue #8318: Managing multiple scopes in localization concurrent dictionary. (#8334)
* Manage multiple scopes in localization concurrent dictionary (issue 8318)

Co-authored-by: matteo.piovanelli <matteo.piovanelli@laser-group.com>
2020-09-18 08:40:09 +02:00
Matteo Piovanelli
b528ecd1e0 New version of Boolean Binder Provider (#8413)
* New version of Boolean Binder Provider
* Use Convert.ToBoolean(string) rather than ValueProviderResult.ConvertTo(bool)
2020-09-11 11:02:53 +02:00
Matteo Piovanelli
6dc4f62a98 Removed changes to model bindings (#8412)
This is the same as reverting 1.10.x to commit 868ce12ad6
2020-09-07 16:20:31 +02:00
Hermes Sbicego
3ceda381c5 Fix/8392 remeber me model state exception (#8410)
@sebastienros this fixes the possible NRE that would happen for absent models from merged #8393 
(see your comment there https://github.com/OrchardCMS/Orchard/pull/8393#issuecomment-686630198)
2020-09-04 09:12:10 +02:00
Hermes Sbicego
c566e12abd Fixes Boolean Conversion error (#8393) 2020-09-03 10:07:47 -07:00
Matteo Piovanelli
868ce12ad6 fix for CPF when other scripts are also adding to sessionStorage (#8404) 2020-07-30 10:04:43 -07:00
Hermes Sbicego
87477518fa Fix wrong behaviours and exceptions when blog is unpublished. (#8389)
* Fix wrong behaviours and exceptions when blog is unpublished. More details there #8388.
2020-07-10 08:31:11 +02:00
Imran Azad
c62203116f Update DistributedLockService.cs (#8398) 2020-07-09 10:09:35 -07:00
Imran Azad
df2bdb3e5c Remove lock from the dictionary when the task has completed. (#8395)
Fixes #8391
2020-06-18 10:19:44 -07:00
Matteo Piovanelli
2bc7079593 tokens sort criteria (#8382)
* Tokenized state for sort criteria

* Tokenized state also in the other place where sort criteria are used
2020-06-05 12:37:35 +02:00
Matteo Piovanelli
f0c5b62b20 Process ignored paths while being aware of RequestUrlPrefix (#8384)
* Process ignored paths while being aware of RequestUrlPrefix

* Fix: I had moved a Trim to the wrong place

* Fixed issue with empty/uninitialized null set of ignored urls
2020-06-05 12:37:21 +02:00
Matteo Piovanelli
488e18d11a Updated UI for projections (#8380)
Some textboxes were too small for the actual text users would generally write in them.
Those meant to hold HTML have been converted to textareas.
2020-05-21 10:08:12 -07:00
Matteo Piovanelli
b82e232e38 Fix/8376 nolock subqueries (#8377)
* NolockInterceptor handles subqueries now
The parser as it was ignored subqueries completely. Now it treats them as queries
and places them back in their parent queries.
2020-05-15 08:36:52 +02:00
Hermes Sbicego
cf1d91f0b2 Prevent loosing contentId when Model has errors (#8358) 2020-05-14 10:30:47 -07:00
Matteo Piovanelli
f581d235d2 Memorize query results in blog service (#8374)
The query for all published blogs is being called twice while building the admin menu,
so we are memorizing its results.
2020-05-14 10:29:59 -07:00
Matteo Piovanelli
d85ff5fa37 Fix/8354 caching (#8364)
* Caching the ShellDescriptor
This avoids fetching all connected records on every request.
refreshed cache after an update
This is after having evicted it and having updated the database
2020-05-08 08:31:33 +02:00
Matteo Piovanelli
e520a178aa Fix for TermContentItem deadlocks (#8368)
Now it should only fetch the id, which is what we need, rather than the
whole record, so it should be able to correctly take advantage of the indexes

Try to not fetch terms back from the database right as we do an update, by
using what is in the view model we just updated
2020-05-07 10:40:54 -07:00
Matteo Piovanelli
35738c1b58 Added indexes for common queries (#8369) 2020-05-07 10:39:35 -07:00
Matteo Piovanelli
9392718d3e Cache list of configured layers (#8373)
On every page load on frontend we were querying for all existing layers to test
for the ones that are currently active. Since that information is not bound to
change often, we added a cache layer to prevent querying every time. The cache
is evicted whenever a Layer gets updated.
2020-05-07 10:35:53 -07:00
Matteo Piovanelli
60464035f7 Save MemberBindingRecords in memory (#8371)
Prevent fetching the same table from the database 5+ times per request by
loading it and saving it in a private property for a request.
2020-05-07 10:29:58 -07:00
Matteo Piovanelli
9d1267a94c localizationpartdriver refactor (#8366)
* Performance on LocalizationPart
Prevent driver from repeating the same query several times in a request (it used
to try and fetch all of a part's localizations at least twice per request).
Changed query for a MasterContentItem's localizations so it should "hint" sql to
use different indexes.
2020-05-07 10:27:58 -07:00
Matteo Piovanelli
a75203b883 Attempted AutoroutePart improvement (#8360)
This should ease Database issues, because it short circuits some code paths
through aliases.
2020-04-30 10:09:33 -07:00
Matteo Piovanelli
b2a8e92a53 Added a new index to CommonPartRecord (#8362) 2020-04-30 10:08:10 -07:00
Hermes Sbicego
c1374f9be9 Reuse Settings_ShellDescriptorRecord during an http request (#8355) 2020-04-30 10:05:57 -07:00
Hermes Sbicego
8a327cf887 Removes useless and case sensitive check (#8352)
That check was useless because we use a int.TryParse. Morevoer queryString.AllKeys.Contains() is case sensitive.
2020-04-23 10:11:07 -07:00
Steven Dawkins
914b5f8391 Made RazorCompiler ILogger property public to allow ILogger to be injected (#8343) 2020-04-16 10:24:43 -07:00
Matteo Piovanelli
b523b342d6 Added admin search permissions (#8346) 2020-04-16 10:22:20 -07:00
Hermes Sbicego
21cb531949 Fixes errors during Indexing (#8349) 2020-04-16 10:17:56 -07:00
Matteo Piovanelli
d57af5860a Added tokenizable default value to ContentPickerFields (#8351) 2020-04-16 10:13:30 -07:00
Zoltán Lehóczky
b960866531 Merge branch '1.10.x' into dev
# Conflicts:
#	src/Orchard.Web/Modules/Markdown/Markdown.csproj
#	src/Orchard.Web/Modules/Orchard.Projections/Handlers/FieldIndexPartHandler.cs
#	src/Orchard.Web/Modules/Orchard.Recipes/Views/Admin/Index.cshtml
#	src/Orchard.Web/Modules/Orchard.Taxonomies/Views/TermAdmin/Index.cshtml
#	src/Orchard.sln
2020-04-07 23:03:58 +02:00
Lombiq
dbc1e61069 Adding NuGet config file to keep packages in the packages folder and thus be able to build the solution with the current NuGet version 2020-04-07 22:06:10 +02:00
Hermes Sbicego
b54d2fadc0 CustomForms throws an error when used within a Widget (#8338) 2020-04-02 10:12:55 -07:00
ElenaRepository
55f0115459 replace code with static method (#8337)
Co-authored-by: elena.lampugnani <elena.lampugnani@laser-group.com>
2020-03-26 12:03:56 -07:00
Hermes Sbicego
e4b251b9ce - Moved condition of ContentType not null in a try catch statement to handle the case the ContentItem was destroyed (#8335) 2020-03-19 12:05:53 -07:00
Sébastien Ros
27e6401965 Add a fake transparent background for image thumbnails (#8329) 2020-03-05 14:35:11 -08:00
Sébastien Ros
fb220a60a3 Add button manage approve disable in edit user (#8321) 2020-03-05 12:06:11 -08:00
Hermes Sbicego
5015809444 Adds a link "View" in "Admin/Index.cshtml" to see how it looks the Taxonomony on the front-end (#8323)
Fixes #8322
2020-02-13 12:09:35 -08:00
Matteo Piovanelli
937702479c Tabs and Cards to better organize parts and fields (#8310) 2020-02-06 12:16:16 -08:00
Aaron Amm
e4ac0c02bc Convert Kudu custom script to PowerShell (#8315) 2020-02-06 12:15:46 -08:00
Lawyerson
ffaa98724a Tweak TermsPartHandler to skip unpublished terms (#8311) 2020-01-23 12:30:09 -08:00
Lawyerson
92773eb8bf Remove newly added terms before processing (#8312) 2020-01-23 12:29:48 -08:00
Andrew Cartwright
0469c3a2fd Remove ArchiveLaterTask if content item is deleted (#8308) 2020-01-23 12:26:46 -08:00
ElenaRepository
d94d50f67d Correct archive when date changed (#8306) 2020-01-16 13:12:11 -08:00
ElenaRepository
fc9a08fd12 Fix/8302 manage pagination blogpostarchive (#8304) 2020-01-09 12:13:52 -08:00
Aaron Amm
608df75429 Upgrade to net 461 (#8296)
* Add New-TargetFramework PowerShell script to set .NET Framework

* Update all projects in the solution to .NET 4.6.1 that supports .NET Standard 2.0
2019-12-19 12:26:54 -08:00
Hermes Sbicego
e47aca5914 Making messages of register.cshtml consistent with the User settings (#8301) 2019-12-19 12:25:45 -08:00