Shannon
|
e1629932dc
|
Wires up the correct saving logic + validation for the member type editor, moves the GetSafeAlias method to the EntityController
|
2015-10-15 15:29:14 +02:00 |
|
Per Ploug
|
c4abe6c771
|
Enables available templates
fixes the last mapping issues
|
2015-06-08 14:03:48 +02:00 |
|
Shannon
|
64cbeb4c9d
|
Merge branch 'dev-v7' into 7.3.0
Conflicts:
src/Umbraco.Core/Services/EntityService.cs
src/Umbraco.Core/Services/ServiceContext.cs
src/Umbraco.Web/Cache/DataTypeCacheRefresher.cs
src/Umbraco.Web/Cache/TemplateCacheRefresher.cs
src/umbraco.cms/businesslogic/template/Template.cs
|
2015-05-13 12:20:43 +10:00 |
|
Shannon
|
ad8926668e
|
Fixes: U4-6588 UmbracoSettings Error404 support Guids and Xpath - To achieve this, had to create an Id -> Key and Key -> Id method on EntityService including a cache for it which means updating all relavent cache refreshers to clear this cache when things are removed. Moved the logic for parsing an Umbraco XPath query (with tokens) to a stand-alone testable class (though haven't written tests), move the logic for looking up a not found page to the NotFoundHandlerHelper (instead of legacy 'library'). Fixes the $root query, since I don't think that ever worked. I've tested $root now for both MNTP and for the not found handler and it works.
|
2015-05-12 12:39:46 +10:00 |
|
Shannon
|
7134373933
|
Fixes: U4-6484 Don't cast to specific Examine types - only interfaces like ISearcher/IIndexer
|
2015-05-06 13:25:24 +10:00 |
|
AndyButland
|
0c107fd869
|
Ensures footer breadcrumb in content and media returned in correct order
|
2015-03-25 21:52:39 +01:00 |
|
Stephan
|
de53dbffd1
|
U4-6129 - fix order of EntityService.GetByIds items
|
2015-02-04 19:07:51 +01:00 |
|
Shannon
|
7a42b5dae3
|
streamlines and simplifies contentpicker.controller.js, ensures that filtering is performed properly even based on search results and differently based on members
|
2014-10-28 15:37:47 +10:00 |
|
Shannon
|
cc8f07c0d8
|
Fixes: U4-5694 When searching in a picker, the filtering rules are ignored
|
2014-10-28 15:23:05 +10:00 |
|
Shannon
|
b6d0b46332
|
Fixes: U4-5691 Search in backoffice pickers not working
|
2014-10-28 09:28:53 +10:00 |
|
Shannon
|
c58a9429e1
|
Member picker now using standard treePicker and search is working
|
2014-10-09 11:08:09 +11:00 |
|
Shannon
|
8136b3ecb0
|
Got searching working from a particular node id, got the UI nearly working
|
2014-10-08 19:03:45 +11:00 |
|
Shannon
|
ec30251271
|
Fixes most tree pickers to show/hide the header correctly, updates the entitycontroller to be able to search from a start node and use the user's assigned start node if one is not passed in. Ensure the search bar is visible for the treepicker at all times. Now to get the remaining bits working...
|
2014-10-07 17:22:26 +11:00 |
|
Shannon
|
c49560f39d
|
Updates the member indexer to re-index all members WAY faster than before. Updates the search controller to limit search results to 200 otherwise a ton of CPU can be used if there's thousands of results.
|
2014-09-30 12:08:21 +10:00 |
|
Shannon
|
42fe4c77f6
|
Fixes n+1 queries on template repository
|
2014-09-02 12:47:46 +10:00 |
|
Shannon
|
c21dcb0279
|
Fixes n+1 queries for content and media types when resolving their properties and groups, this fixes the n+1 queries with the scheduled publishing too. Adds a test for template mappings, fixes call for GetAll on EntityController to not be called when there are no ids.
|
2014-09-02 11:50:04 +10:00 |
|
Shannon
|
202f582661
|
Renames TagsRepository to TagRepository, Fixes n+1 queries on entity repository, fixes n+1 queries on tag repository, updates umbraco member types to specify an entity type for IMember and IMemberType so the entity repository can use it.
|
2014-09-01 18:06:24 +10:00 |
|
Shannon
|
ee5c532be7
|
Fixes: U4-4738 Backoffice search should support node ID search
|
2014-07-23 14:07:05 -07:00 |
|
Shannon
|
dd83dced4c
|
Fixes up back office search, U4-5048, U4-5021, U4-5167, U4-5194
|
2014-07-23 09:03:54 -07:00 |
|
arknu
|
188613e5e7
|
U4-5167: Handle quoted searches in the backoffice correctly
|
2014-07-18 17:42:47 +02:00 |
|
arknu
|
a9261d217e
|
U4-5194: Fix handling of multiple words in backoffice search
|
2014-07-18 17:00:59 +02:00 |
|
Shannon
|
389724cba5
|
Re-fixes: U4-4211 User without media section permission will be logged out immediately when accessing a document type using a media picker datatype (u7.0.3)
|
2014-05-09 14:06:15 +10:00 |
|
Sebastiaan Janssen
|
59cb1ad31e
|
Revert "Fixes: U4-4211 User without media section permission will be logged out immediately when accessing a document type using a media picker datatype (u7.0.3) - this is done by using the entityResource in the mediaPicker but to do this we need to return a cut down version of the media properties in the additionalData which is tricky because the cropper stores json which is ntext and the existing sql didn't cater for this. This also cleans up the entity service and we no longer have this internal collection of properties, everything is just added to additionalData, then had to add mediaHelper method to deal with getting urls from a media 'entity' not just a media object."
This reverts commit c38c2ede11.
|
2014-05-08 16:08:16 +02:00 |
|
Shannon
|
c38c2ede11
|
Fixes: U4-4211 User without media section permission will be logged out immediately when accessing a document type using a media picker datatype (u7.0.3) - this is done by using the entityResource in the mediaPicker but to do this we need to return a cut down version of the media properties in the additionalData which is tricky because the cropper stores json which is ntext and the existing sql didn't cater for this. This also cleans up the entity service and we no longer have this internal collection of properties, everything is just added to additionalData, then had to add mediaHelper method to deal with getting urls from a media 'entity' not just a media object.
|
2014-05-07 23:55:20 +10:00 |
|
Shannon
|
c669a2702b
|
Fixes: U4-4210 MNTP not working with Member and ensures the content picker has real validation built into it. Fixes up the EntityController switching out the global action selector.
|
2014-03-17 18:34:41 +11:00 |
|
Shannon
|
9de0a62cff
|
Fixes merge issues
|
2014-02-21 16:43:49 +11:00 |
|
perploug
|
2a81162756
|
Fixes inconsistently named private method
Replaces delegates with lambdas
|
2014-01-27 08:27:31 +01:00 |
|
perploug
|
8258619055
|
adds getByQuery to entityService
|
2014-01-24 18:38:08 +01:00 |
|
Shannon
|
793a1a9aa8
|
Adds comments to EntityController code to use UmbracoHelper
|
2014-01-15 11:08:02 +11:00 |
|
Shannon
|
e3da493345
|
Re-adds all updates for the WIP for xpath/css filtering and the cropper.
|
2014-01-15 11:06:20 +11:00 |
|
Shannon
|
5a29441640
|
Reverts GetByQuery and MNTP Xpath query WIP - is contained only in 7.1
|
2014-01-15 10:53:14 +11:00 |
|
Shannon
|
e2a395e245
|
Fixes merge issues
|
2014-01-08 16:09:35 +11:00 |
|
Shannon
|
62e3ab27fe
|
Adds comments to EntityController code to use UmbracoHelper
|
2013-12-24 10:58:11 +11:00 |
|
perploug
|
f2c2b7590b
|
Get Entity by Query WIP
|
2013-12-19 11:31:55 +01:00 |
|
Shannon
|
4354840674
|
Fixes an issue with member search
|
2013-11-21 15:57:53 +11:00 |
|
Shannon
|
cf342ece45
|
Fixes: U4-3322 MNTP doesn't work when choosing media or members
|
2013-11-05 18:17:16 +11:00 |
|
Shannon
|
787f304de7
|
Adds GetByKey to entity controller/repository/service, fixes: U4-3263 Member picker isn't working as expected
|
2013-11-05 13:23:27 +11:00 |
|
Shannon
|
51aefd2b6b
|
Adds the tab and multi-tab parameter editors
|
2013-10-30 18:30:04 +11:00 |
|
Shannon
|
5c7f551015
|
Creates a re-usable dropdown/multilist for any type of Entity that uses the entityResource, so now user picker, property type (+ multiple) param editor, content type (+multiple) param editor all use this. Fixes: U4-3268 UserPicker doesn't actually persist a value
|
2013-10-30 18:14:16 +11:00 |
|
perploug
|
d8a8556598
|
Fixes an issue with missing _key in member search
|
2013-10-29 22:10:56 +01:00 |
|
Shannon
|
3d7f7db396
|
Fixes some value conversions and updates the entity search to be more accurate
|
2013-10-29 18:46:12 +11:00 |
|
Shannon
|
aca550a9b4
|
Fixes search algorithm to have more accurate results
|
2013-10-29 16:00:15 +11:00 |
|
Shannon
|
0cac739b50
|
Fixes EntityController search to search fields correctly with the correct case and wildcards
|
2013-10-29 15:22:52 +11:00 |
|
Shannon
|
2075311773
|
Fixes member data indexing to ensure it includes the unique key, fixes the EntityService search to return IEnumerable<EntityBasic>, not search results so the data returned is limited to non-sensitive data, adds AdditionalData to EntityBasic so we can add additional values like URL to outgoing entities, Fixes up the searchService, searchControllers to use new structure.
|
2013-10-29 11:39:34 +11:00 |
|
Shannon
|
6263b07087
|
Working on (WIP) U4-3255 Fix search - shouldn't search on every key change, shouldn't show up for non-search sections, shouldn't return ISearchResults
|
2013-10-28 18:38:20 +11:00 |
|
perploug
|
738cc81439
|
fixes membersearch returning no results
|
2013-10-11 12:12:29 +02:00 |
|
perploug
|
6f39f190a4
|
Adds guid to entitybasic
|
2013-10-10 13:33:25 +02:00 |
|
perploug
|
59f711f802
|
memberpicker search updates
|
2013-10-10 12:43:59 +02:00 |
|
perploug
|
a3e4eaa2e4
|
membersearch support
|
2013-10-10 08:51:55 +02:00 |
|
Shannon
|
d0cd8ba346
|
Moves GetPath to EntityController and entityResource since all entities can have a path not just content.
|
2013-10-08 10:55:47 +11:00 |
|