-
Notifications
You must be signed in to change notification settings - Fork 0
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
Coveofoundation #1
base: coveo
Are you sure you want to change the base?
Conversation
@@ -49,10 +49,31 @@ | |||
<WarningLevel>4</WarningLevel> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<Reference Include="Coveo.Framework"> | |||
<HintPath>..\..\..\..\..\..\inetpub\wwwroot\Habitat.Coveo.Dev.Local\Website\bin\Coveo.Framework.dll</HintPath> |
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.
Les références de projet doivent pointer à l'intérieur de projet et non dans le web root. Inclue les fichiers que tu as besoin dans une tâche Gulp. Je crois que Habitat a déjà un script pour ramasser les DLLs de WFFM. S'il n'en a pas, je sais que Sitecore.Demo en a un pour ramasser les DLLs de Habitat.
@@ -74,6 +95,11 @@ | |||
<None Include="Web.config" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Compile Include="InboundFilters\ExcludeDesignerFiles.cs" /> |
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.
Certains de ces classes n'ont pas de lien avec Habitat mais ont un lien seulement avec Sitecore.Demo. Il faut les enlever de ce repo et les mettre seulement dans le repo Sitecore.Demo.Coveo qui sera créé plus tard.
@@ -82,6 +108,7 @@ | |||
<Name>Sitecore.Foundation.SitecoreExtensions</Name> | |||
</ProjectReference> | |||
</ItemGroup> | |||
<ItemGroup /> |
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.
Supprime cet itemGroup vide qui a été ajouté.
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.
DONE!
@@ -1,12 +1,12 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<?xml version="1.0" encoding="utf-8"?> |
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.
Ton éditeur semble avoir ajouté un BOM au début du fichier. Revert ce changement svp. Et assures-toi de ne pas committer de changements de la sorte dans le futur.
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.
Je comprend pas la diff entre les deux fichier sur cette ligne?
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.
La différence c'est un caractère invisible au début de la ligne. Ce caractère s'appelle le BOM (Byte order mark) et est utilisé dans les fichiers XML. https://en.wikipedia.org/wiki/Byte_order_mark
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.
Corrected!
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.
Ne semble pas corrected selon le diff dans GitHub
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.
Thread done.
@@ -0,0 +1,155 @@ | |||
// Copyright (c) 2005-2017, Coveo Solutions Inc. |
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.
Je pense qu'on peut enlever le copyright car on doit en mettre un différent dans notre repo.
<coveo> | ||
<defaultIndexConfiguration> | ||
<fieldMap type="Coveo.SearchProvider.CoveoFieldMap, Coveo.SearchProvider"> | ||
<fieldNames hint="raw:AddFieldByFieldName"> |
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.
Les fields vont aller avec les projets
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.
J'ai déplacé les fields dans le projet Habitat
.gitignore
Outdated
nCrunchTemp*.* |
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.
Revert de changement de fin de fichier svp.
@@ -0,0 +1,1028 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
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.
Ce fichier ne devrait pas être dans le repo. Il devrait être exclus par le gitignore.
<configuration name="Feature.CoveoSearch" dscription="Feature CoveoSearch" dependencies="Foundation.Serialization,Foundation.CoveoIndexing" patch:after="configuration[@name='Foundation.Serialization']"> | ||
<targetDataStore physicalRootPath="$(sourceFolder)\feature\coveosearch\serialization" type="Rainbow.Storage.SerializationFileSystemDataStore, Rainbow" useDataCache="false" singleInstance="true" /> | ||
<predicate type="Unicorn.Predicates.SerializationPresetPredicate, Unicorn" singleInstance="true"> | ||
</predicate> | ||
<predicate type="Unicorn.Roles.Predicates.EmptyPredicate, Unicorn.Roles" singleInstance="true" /> |
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.
t'es certain que c'est un EmptyPredicate du namespace Unicorn.Roles qu'on a besoin? Je pensais plus au namespace Unicorn.Predicates si c'est disponible. Car on a déjà des rolePredicates plus bas.
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.
Oui, seulement lorsqu'il n'y a pas d'item a sérializer. C'est un "dummy".
</predicate> | ||
<roleDataStore type="Unicorn.Roles.Data.FilesystemRoleDataStore, Unicorn.Roles" physicalRootPath="$(sourceFolder)\foundation\coveoindexing\serialization\Foundation.Indexing.Roles" singleInstance="true"/> | ||
<targetDataStore physicalRootPath="$(sourceFolder)\foundation\coveoindexing\serialization" type="Rainbow.Storage.SerializationFileSystemDataStore, Rainbow" useDataCache="false" singleInstance="true" /> | ||
<predicate type="Unicorn.Roles.Predicates.EmptyPredicate, Unicorn.Roles" singleInstance="true" /> |
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.
Même commentaire par rapport au namespace
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.
Meme commentaire qu'en haut
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.
Thread done.
Coveosearch components
<configuration name="Foundation.CoveoIndexing" description="Foundation CoveoIndexing" dependencies="Foundation.Serialization" patch:after="configuration[@name='Foundation.Serialization']"> | ||
<targetDataStore physicalRootPath="$(sourceFolder)\foundation\indexing\serialization" type="Rainbow.Storage.SerializationFileSystemDataStore, Rainbow" useDataCache="false" singleInstance="true" /> | ||
|
||
<targetDataStore physicalRootPath="$(sourceFolder)\foundation\coveoindexing\serialization" type="Rainbow.Storage.SerializationFileSystemDataStore, Rainbow" useDataCache="false" singleInstance="true" /> |
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.
Déplacer dans Projects/Common
<coveoInboundFilterPipeline> | ||
<processor type="Sitecore.Foundation.CoveoIndexing.ExcludeVideoFiles, Sitecore.Foundation.CoveoIndexing" /> | ||
<processor type="Sitecore.Foundation.CoveoIndexing.ExcludeImageFiles, Sitecore.Foundation.CoveoIndexing" /> | ||
<processor type="Coveo.SearchProvider.CoveoInboundFilters.HasLayoutInboundFilter, Coveo.SearchProviderBase"></processor> |
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.
Configurer le processeur pour affecter seulement les items de /sitecore/content mais ne pas toucher la media library.
<defaultIndexConfiguration> | ||
<fieldMap type="Coveo.SearchProvider.CoveoFieldMap, Coveo.SearchProvider"> | ||
<fieldNames hint="raw:AddFieldByFieldName"> | ||
<fieldType fieldName="metakeywords" isSortable="true" isExternal="true" isMultiValue="true" settingType="Coveo.Framework.Configuration.FieldConfiguration, Coveo.Framework" /> |
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.
Déplacer dans project/Common
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.
J'ai déplacé dans le project Common
<fieldMap type="Coveo.SearchProvider.CoveoFieldMap, Coveo.SearchProvider"> | ||
<fieldNames hint="raw:AddFieldByFieldName"> | ||
<fieldType fieldName="metakeywords" isSortable="true" isExternal="true" isMultiValue="true" settingType="Coveo.Framework.Configuration.FieldConfiguration, Coveo.Framework" /> | ||
<fieldType fieldName="title" isFacet="true" settingType="Coveo.Framework.Configuration.FieldConfiguration, Coveo.Framework" /> |
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.
Déplacer dans project/common puisque le champ title doit être défini dans une feature quelconque.
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.
Déplacé dans le projet Common
<externalFields hint="raw:AddExternalField"> | ||
<field fieldName="syslanguage"/> | ||
<field fieldName="sysfiletype"/> | ||
<field fieldName="date"/> |
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.
Changer pour sysdate.
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.
Done
<contentSearch> | ||
<configuration> | ||
<indexes hint="list:AddIndex"> | ||
<index id="Coveo_master_index_Habitat" type="Coveo.SearchProvider.ProviderIndex, Coveo.SearchProvider" patch:before = "*[1]"> |
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.
Les indexs Habitat vont dans project/habitat
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.
Done!
@@ -0,0 +1,21 @@ | |||
using Coveo.SearchProvider.Pipelines; |
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.
Ordonner les using en ordre alphabétique en commençant par les using System.
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.
Done
@@ -0,0 +1,21 @@ | |||
using Coveo.SearchProvider.Pipelines; |
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.
Ordonner les using en ordre alphabétique en commençant par les using System.
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.
Done
@@ -0,0 +1,31 @@ | |||
--- |
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.
Les facettes youtube et autres doivent être enlevées de ton pull request. Les facettes utiles doivent être dans Project/common
@@ -2,6 +2,51 @@ | |||
|
|||
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |||
<sitecore> | |||
<contentSearch> |
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.
Ce fichier est indenté avec 4 espaces. Assures-toi que tes ajoutes respectent le format du fichier.
…Include original searchbox in home Also recreate orginal search page, and create CoveoSearch page
…de Coveo at the end
…ut sorting and put them back in __Standard values
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.
Passé rapidement sur les items, mais there you go!
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); | ||
|
||
if ((extension == "gif") || (extension == "png") || (extension == "jpg")) |
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.
Serait facile de rendre ça configurable dans la config.
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.
Done
{ | ||
if (args.IndexableToIndex != null && !args.IsExcluded && ShouldExecute(args)) | ||
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); |
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.
Changer var
pour string
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.
Done
{ | ||
if (args.IndexableToIndex != null && !args.IsExcluded && ShouldExecute(args)) | ||
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); |
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.
Je propose de faire un ExcludeFilesWithExtensionTypes
qui prends une liste d'extension. Même pas besoin de classe abstraite.
/// </summary> | ||
/// <param name="p_Item">The item whose site to resolve.</param> | ||
/// <returns>The resolved site name, or <c>null</c> when no suitable site is found.</returns> | ||
protected virtual string ResolveItemSite(IItem p_Item) |
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.
Ça donne rien que cette méthode soit virtual. Rendu là je vais me faire un autre processeur.
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.
C'est une copie d'un processeur existant de Coveo for Sitecore avec un petit tweak pour Habitat.
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.
Thread done.
/// <summary> | ||
/// Gets the list of sites that are excluded by default. | ||
/// </summary> | ||
public static IEnumerable<string> DefaultExcludedSites { get; private set; } |
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.
Je vois pas beaucoup d'intérêt à mettre ça public.
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.
C'est une copie d'un processeur existant de Coveo for Sitecore avec un petit tweak pour Habitat.
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.
Thread done.
border: none; | ||
} | ||
|
||
.CoveoSearchbox{ |
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.
space
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.
Done
border-bottom: 2px solid white; | ||
} | ||
|
||
.CoveoSearchbox .magic-box .magic-box-input>input { |
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.
space
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.
Done
background-color: rgb(240, 240, 240); | ||
} | ||
|
||
.CoveoSearchButton>.coveo-icon, |
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.
spaces
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.
Done
color: #fff; | ||
} | ||
|
||
.CoveoSearchButton{ |
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.
space, le prochain aussi
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.
done
@@ -5,9 +5,9 @@ MemberOf: | |||
Role: | | |||
modules\Feature Multisite Admin | |||
Role: | | |||
modules\Feature Social Admin |
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.
Je vois pas pourquoi l'ordre a changé pour certains, ça serait plus facile de voir les vrais ajouts
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.
Surement pas la même version de Unicorn utilisée pour le sync initial et cette modif. Je suis d'accord avec François. Peux-tu resturer l'ordre (à la main au pire)
Corrected search view and Search boxes
string itemExtension = args.IndexableToIndex.Item.GetFieldValue("Extension"); | ||
|
||
foreach (string extensionType in extensionTypesToExclude) { | ||
|
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.
Pas mal d'espaces de trop dans cette classe-là :)
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.
l'indentation est désormais de 2 espaces
|
||
foreach (string extensionType in extensionTypesToExclude) { | ||
|
||
if (extensionType == itemExtension) |
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.
Tu veux probablement ignorer la casse.
Tu peux aussi remplacer ta boucle par un .Any
en LINQ:
if(extensionTypesToExclude.Any(toExclude => StringComparer.OrdinalIgnoreCase.Equals(toExclude, itemExtension))) {
args.IsExcluded = true;
}
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.
OK
|
||
if (args.IndexableToIndex != null && !args.IsExcluded && ShouldExecute(args)) | ||
{ | ||
string itemExtension = args.IndexableToIndex.Item.GetFieldValue("Extension"); |
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.
Mettre Extension
en constante?
<div class="navbar-coveo"> | ||
<div id="@Model.SearchboxId"> | ||
<div id="@Model.SearchboxId" style="display:none"> |
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.
Space de trop
@@ -78,4 +65,70 @@ | |||
|
|||
</div> | |||
</div> | |||
<script> | |||
function setCookie(cname, cvalue, exdays) { |
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.
Peux-tu scoper ça dans un autre fichier? Surtout scoper dans un module en fait....
C'est une feature pas mal standalone la switch pour activer Coveo, quelqu'un qui part de ça et qui veut pas la feature pourrait juste retirer 1 ligne pour toute flusher.
.coveo-title > a.CoveoResultLink:visited { | ||
color: #2e384e; | ||
font-weight: 600; | ||
} | ||
|
||
.result-summary, | ||
.result-summary > p { | ||
.result-summary{ |
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.
space
.CoveoResultLink:hover, a.CoveoResultLink:hover, .CoveoResult a.CoveoResultLink:hover{ | ||
.CoveoResultLink:hover, | ||
a.CoveoResultLink:hover, | ||
.CoveoResult a.CoveoResultLink:hover{ |
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.
space
|
||
/* No Results */ | ||
|
||
.coveo-query-summary-no-results-string{ |
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.
Encore space, lui d'après aussi :)
background-color: rgb(140,140,140); | ||
} | ||
|
||
.activate-coveo { |
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.
Place le direct en haut avec l'autre
} | ||
|
||
.activate-coveo:hover { | ||
background-color: rgb(220,90,0); |
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.
direct en haut avec cursor: pointer
gulpfile.js
Outdated
return gulp.src(solution).pipe(nugetRestore()); | ||
var solution = "./" + config.solutionName + ".sln"; | ||
return gulp.src(solution).pipe(nugetRestore({ | ||
additionalArgs: ["-Msbuildversion", "4"] |
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.
C'est pas done. C'est encore en 4 espaces.
gulpfile.js
Outdated
return gulp.src(solution).pipe(nugetRestore()); | ||
var solution = "./" + config.solutionName + ".sln"; | ||
return gulp.src(solution).pipe(nugetRestore({ | ||
additionalArgs: ["-Msbuildversion", "4"] |
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.
Ne pas committer notre flag de MSBuild version 4. C'est un workaround que nous avons besoin à l'interne mais que le reste du monde n'a pas besoin.
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/"> | ||
<configuration |
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.
La ligne XML n'est toujours pas là
|
||
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/"> | ||
<configuration | ||
xmlns:patch="http://www.sitecore.net/xmlconfig/"> |
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.
Ce n'est toujours pas fait.
string itemExtension = args.IndexableToIndex.Item.GetFieldValue("Extension"); | ||
|
||
foreach (string extensionType in extensionTypesToExclude) { | ||
|
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.
Pas de ligne vide après un foreach
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.
ok
<r | ||
ds="" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_6F3769A8-2EC7-4160-8492-E647507ACB9F" |
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.
pas de datasource ici?
<r | ||
ds="" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_C29EEEEC-A038-4022-8BB9-EDE71E064626" |
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.
pas de datasource ici?
<r | ||
ds="" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_7F51AE1D-66E1-49FF-98A0-8D6580C1BDAD" |
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.
pas de datasource ici?
<r | ||
ds="" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_D04CCB76-3E4C-47CC-AEB7-8D7B499D779E" |
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.
pas de datasource ici?
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.
Il manque toujours la datasource ici.
@@ -5,9 +5,9 @@ MemberOf: | |||
Role: | | |||
modules\Feature Multisite Admin | |||
Role: | | |||
modules\Feature Social Admin |
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.
Surement pas la même version de Unicorn utilisée pour le sync initial et cette modif. Je suis d'accord avec François. Peux-tu resturer l'ordre (à la main au pire)
{ | ||
if (args.IndexableToIndex != null && !args.IsExcluded && ShouldExecute(args)) | ||
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); |
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.
Done
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); | ||
|
||
if ((extension == "gif") || (extension == "png") || (extension == "jpg")) |
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.
Done
{ | ||
if (args.IndexableToIndex != null && !args.IsExcluded && ShouldExecute(args)) | ||
{ | ||
var extension = args.IndexableToIndex.Item.GetFieldValue("Extension"); |
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.
Done
@@ -0,0 +1,12 @@ | |||
.CoveoSearchbox { |
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.
Done!
float: right | ||
} | ||
|
||
body * { |
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.
Done!
<ItemGroup> | ||
<Folder Include="Views\Website\Sublayouts\" /> | ||
</ItemGroup> | ||
<ItemGroup /> |
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.
je ne le vois pas de mon bord (Sitecore.Habitat.Website.csproj ligne 187 dans Notepad++)
</div> | ||
</div> | ||
<script> | ||
function setCookie(cname, cvalue, exdays) { |
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.
pas à ma connaissance. jquery.cookie est une librairie externe qui permet ce genre de fonction, pas certain qu'on veuille l'inclure
function getCookie(cname) { | ||
var name = cname + "="; | ||
var decodedCookie = decodeURIComponent(document.cookie); | ||
var ca = decodedCookie.split(';'); |
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.
ok
var name = cname + "="; | ||
var decodedCookie = decodeURIComponent(document.cookie); | ||
var ca = decodedCookie.split(';'); | ||
for(var i = 0; i <ca.length; i++) { |
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.
ok
return ""; | ||
}; | ||
|
||
var coveoSearchBox = document.getElementById('@Model.SearchboxId'); |
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.
OK
function getCookie(cname) { | ||
var name = cname + "="; | ||
|
||
class CoveoSearchboxSwitcher{ |
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.
Space
function getCookie(cname) { | ||
var name = cname + "="; | ||
|
||
class CoveoSearchboxSwitcher{ |
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.
class
est pas supporté en IE11...
Tu devrais sois le compiler ou juste faire un scope minimal juste pour encapsuler.
Si tu pouvais le mettre dans un fichier appart aussi...
function getCookie(cname) { | ||
var name = cname + "="; | ||
var decodedCookie = decodeURIComponent(document.cookie); | ||
var ca = decodedCookie.split(';'); |
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.
Pas OK, il s'appelle encore ca
. Change pour allCookies
ou quelque chose du genre.
}else{ | ||
switchCoveoOn(); | ||
}; | ||
switchCoveoOff(){ |
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.
Space
function toggleCoveoSearchbox(){ | ||
|
||
coveoSearchBoxCookie = getCookie("coveoSearchBox"); | ||
switchCoveoOn(){ |
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.
Space
this.setCookie(this.constants.cookieName, this.constants.on, 30); | ||
}; | ||
|
||
checkCoveoSwitchCookie(){ |
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.
Space
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.
Oui, Comme dit François, on met toujours une espace avant l'accolade ouvrante:
something() { ... }
}; | ||
|
||
coveoSearchboxSwitcher = new CoveoSearchboxSwitcher(); | ||
coveoSearchboxSwitcher.checkCoveoSwitchCookie(); |
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.
J'aime encore mieux "initialize" ou "setInitialState()"
@@ -0,0 +1,11 @@ | |||
namespace Sitecore.Foundation.CoveoIndexing | |||
{ | |||
internal struct Constants |
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.
Formatte les fichier C# avec 4 espaces pour l'indentation au lieu de 2. C'est ce qui est par défaut dans le fichier .editorconfig à la racine du repo.
|
||
namespace Sitecore.Foundation.CoveoIndexing | ||
{ | ||
public class ExcludeFilesWithExtensionTypes : AbstractCoveoInboundFilterProcessor |
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.
indentation 4 espaces
{ | ||
internal struct ExcludeFilesWithExtension | ||
{ | ||
public const char FileExtensionSeparator = ';'; |
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.
Cette constante peut aller dans le fichier ExcludeFilesWithExtensionTypes.cs car elle est vraiment propre à ce processeur. Elle devra alors être en majuscules et private: private const string FILE_EXTENSION_SEPARATOR
Le fichier Constants.cs doit être utilisé pour les constantes utilisées à plus d'un endroit et les ID d'items Sitecore, noms de fields... par exemple.
public class ExcludeFilesWithExtensionTypes : AbstractCoveoInboundFilterProcessor | ||
{ | ||
/// <summary> | ||
/// ID of the field where activation checkbox is specified. |
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.
activation checkbox?
|
||
public override void Process(CoveoInboundFilterPipelineArgs args) | ||
{ | ||
string[] extensionTypesToExclude = ExtensionTypesToExclude.Split(Constants.ExcludeFilesWithExtension.FileExtensionSeparator); |
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.
Tu peux déplacer cette ligne à l'intérieur du IF. Ça va éviter de faire cette opération pour rien si l'item est déjà exclus.
- ID: "ca0479ce-0bfe-4522-83de-ba688b380a78" | ||
Hint: BrowserTitle | ||
Value: Search Results | ||
- Language: "ja-JP" |
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.
Not fixed. À adresser.
- Version: 1 | ||
Fields: | ||
- ID: "04bf00db-f5fb-41f7-8ab7-22408372a981" | ||
Hint: __Final Renderings |
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.
Not fixed. À adresser.
- ID: "2f5ef5f2-5b9a-4ce3-9596-3d7654203648" | ||
Hint: EnableSitecoreAnalytics | ||
Type: Checkbox | ||
Value: 0 |
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.
J'aimerais qu'on active les Sitecore Analytics dans nos components de demo.
ID: "d93961e6-59a5-4532-98b2-1d98ab0d34e4" | ||
Parent: "24e745e1-181e-457b-aad0-1caf5ddce16c" | ||
Template: "294075e4-cb2c-4e5f-a646-416fc078581f" | ||
Path: /sitecore/content/Habitat/Settings/Datasources/Coveo/Coveo Search Box Parameters |
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.
J'aimerais qu'on désactive le "focus on page load" pour la searchbox.
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.
Thread done.
Value: /sitecore/content/Habitat/Settings/Datasources/Coveo/Coveo Search Box Parameters | ||
- ID: "4867d192-326a-4aa4-81ef-ea430e224aff" | ||
Hint: Css assets | ||
Value: /styles/Habitat/CoveoHabitatSearchbox.css, /styles/Common/CoveoSearch.css |
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.
Serait-il mieux de loader common avant Habitat?
Also fixed some code here and there from my code review comments
! Fixed inbound filter namespace change in config. - Patch deleted default Coveo indexes. - Removed bugged serverUrl setting.
* Removed bold and uppercase from searchbox. ! Fixed JS endpoint introduced yesterday. ! Fixed JS call when switching Lucene/Coveo.
}); | ||
</script> | ||
|
||
<div class="activate-coveo" title="Activate Coveo Searchbox" onclick="coveoSearchboxSwitcher.toggleCoveoSearchbox()" style="display:none"></div> |
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.
Ce toggle doit être dans sa propre view. Le code JS associé devrait être dans un fichier JS séparé aussi pour améliorer le caching côté browser.
</div> | ||
|
||
<script> | ||
class CoveoSearchboxSwitcher{ |
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.
Convertir cette class ES2015 en ES5 pour qu'elle soit compatible avec tous les browsers supportés.
getCookie(cookieName) { | ||
var name = cookieName + "="; | ||
var decodedCookie = decodeURIComponent(document.cookie); | ||
var ca = decodedCookie.split(';'); |
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.
Donner un nom de variable clair qui explique l'utilité de celle-ci.
var decodedCookie = decodeURIComponent(document.cookie); | ||
var ca = decodedCookie.split(';'); | ||
for (var i = 0; i < ca.length; i++) { | ||
var c = ca[i]; |
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.
Donner un nom de variable clair qui explique l'utilité de celle-ci.
}; | ||
|
||
coveoSearchboxSwitcher = new CoveoSearchboxSwitcher(); | ||
coveoSearchboxSwitcher.checkCoveoSwitchCookie(); |
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.
Changer le nom de la méthode pour "initialize" ou "setInitialState"...
Coveo.$(function() { | ||
CoveoForSitecore.componentsOptions = @(Html.Raw(Model.GetJavaScriptInitializationOptions())); | ||
if (CoveoForSitecore.externalComponents) { | ||
CoveoForSitecore.componentsOptions.externalComponents = CoveoForSitecore.externalComponents; |
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.
Pourquoi utiliser un array temporaire (CoveoForSitecore.externalComponents) ici? Pourquoi ne pas coder la searchbox pour qu'elle s'ajoute directement à l'array CoveoForSitecore.componentsOptions.externalComponents?
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.
Thread done
{{ if (raw.syssource === "Sitecore Habitat Videos") { }} | ||
<span class="CoveoYouTubeThumbnail" data-width='100%' data-height='auto'></span> | ||
{{ } else { }} | ||
<div class="page-icon-container CoveoQuickview" |
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.
Le div CoveoQuickview devrait toujours être dans un if (hasHtmlVersion). L'afficher sans html version va faire une erreur en ouvrant le dialogue du quickview.
…Coveo into CoveoFoundation # Conflicts: # src/Project/Habitat/code/Views/Habitat/SearchBoxView.cshtml
…s, few adjustements in SearchView and SearchBoxView
… convert SearchboxSwitcher to standard JS
@@ -0,0 +1 @@ | |||
<div class="searchbox-switcher disabled" title="" onclick="coveoSearchboxSwitcher.toggleSearchboxOnClick()"></div> |
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.
Ici le code assume que la variable globale coveoSearchboxSwitcher existe. Il serait peut-être mieux d'attacher le click handler lors du constructeur de la classe ou bien lors du DOMContentLoaded. Qu'en penses-tu?
public override void Process(CoveoInboundFilterPipelineArgs args) | ||
{ | ||
if (args.IndexableToIndex != null && !args.IsExcluded && this.ShouldExecute(args)) { | ||
string[] extensionTypesToExclude = this.ExtensionTypesToExclude.Split(FILE_EXTENSION_SEPARATOR); |
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.
"this." n'est pas nécessaire et ajoute plus de bruit qu'autre chose en C#
<packages> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net46" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net46" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net46" /> | ||
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.3" targetFramework="net46" /> | ||
<package id="Microsoft.Net.Compilers" version="1.3.2" targetFramework="net46" developmentDependency="true" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net46" /> | ||
<package id="Sitecore.Kernel.NoReferences" version="8.2.161115" targetFramework="net46" developmentDependency="true" /> |
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.
Je ne suis pas certain à propos de developmentDependency puisque cet assembly est nécessaire au runtime pour le projet, pas juste pour compiler.
@@ -250,5 +252,4 @@ | |||
</Target> | |||
<Target Name="AfterBuild"> | |||
</Target> --> | |||
</Project> | |||
|
|||
</Project> |
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.
Ce problème de saut de ligne ne semble pas fixé.
@@ -1,4 +1,4 @@ | |||
--- | |||
--- |
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.
Peux-tu restaurer le fichier original svp? Celui que tu as présentement a un BOM en début de fichier et il manque une fin de ligne à la fin.
<r | ||
ds="{4E48D10A-1717-4D1E-9D78-C665CC4F290F}" | ||
id="{2BCAC115-1C0F-49C7-8A73-1E82F5EF8BB4}" | ||
par="FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&PagerLocation=%7BA1FBD885-7B5E-4AD3-87D1-06AB48937629%7D&ResultsPerPage=10&PagerShowPreviousNext=1&PagerNumberOfPages=10&PagerMaxNumberOfPages=100&QuerySummaryEnableSearchTips=1&QuerySummaryOnlyDisplaySearchTips&DidYouMeanEnableAutoCorrection=1&EnableInfiniteScroll&InfiniteScrollPageSize=10&DisplayResultsPerPage=1&DisplayFacets=1&DisplayLogo=1&DisplaySearchBox=1&DisplaySorting=1&HideUntilFirstQuery=1&DisplayQueryDuration=1&DisplayQuerySummary=1&DisplayBreadcrumb=1&DisplayDidYouMean=1&DisplayErrorReport=1&DisplayRecommendations=1&DisplayResultList=1&DisplayTabs=1&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&AutoTriggerQuery=1&ExcerptLength=200&EnableHistory=1&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_7CDDAF40-26B8-4B96-8E3B-54BA20527EBB" |
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.
Thread done
<r | ||
ds="{D93961E6-59A5-4532-98B2-1D98AB0D34E4}" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_295304F0-C550-4340-8B08-A3354FD878E3" |
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.
Thread done
ph="navbar-activity" | ||
uid="{F0B59CCD-EC41-4E3E-9F8C-BAC228657FED}" /> | ||
<r | ||
ds="" |
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.
Il manque ds="{D93961E6-59A5-4532-98B2-1D98AB0D34E4}" pour être pareil come les autres.
<r | ||
ds="" | ||
id="{E9ECDF34-1EB8-4466-9615-CBAD9E0E7CD9}" | ||
par="SearchBoxUniqueId&SearchPageItemId&KeepOmniboxSuggestionsProvidersDefaultOrdering&FilterExpressionRules&BoostExpressionRules&EnableAutomaticBoosting&FilterCulture=1&SearchBoxBehavior&EnablePartialMatch&PartialMatchKeywords=5&PartialMatchThreshold=50%25&EnableWildcards&EnableQuestionMarks&EnableLowercaseOperators&ResultsPerPage=10&DefaultSortType&DefaultSortDirection&DefaultSortField&SearchBoxPlaceholderText&AutoFocus=1&ExternalContentSources&ExternalContentCollections&EnableCoveoUsageAnalytics=1&CoveoUsageAnalyticsCustomMetadata&EnableSitecoreAnalytics&SitecoreAnalyticsRestUri=%2Fcoveo%2Frest%2Fv6%2Fanalytics&ThrowExceptionOnValidationError&EnableClientSideLogging&IncludeBucketFoldersInResults&IncludeMediaFoldersInResults&QueryPipelineName&RestUri=%2Fcoveo%2Frest&OmniboxEnableFieldAddon&OmniboxEnableSimpleFieldAddon&OmniboxEnableQueryExtensionAddon&ItemId=_D04CCB76-3E4C-47CC-AEB7-8D7B499D779E" |
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.
Il manque toujours la datasource ici.
@@ -37,4 +37,4 @@ MemberOf: | |||
Role: | | |||
modules\Feature Accounts Admin | |||
Role: | | |||
modules\Feature PageContent Admin | |||
modules\Feature PageContent Admin |
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.
Peux-tu restaurer le fichier original svp? Celui que tu as présentement manque une fin de ligne à la fin.
Added CoveoIndexing foundation and CoveoSearch Feature projects and serialized items