-
Notifications
You must be signed in to change notification settings - Fork 3
/
web.config
2694 lines (2655 loc) · 148 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="sitecore" type="Sitecore.Configuration.ConfigReader, Sitecore.Kernel" />
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, Sitecore.Logging" />
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<connectionStrings configSource="App_Config\ConnectionStrings.config" />
<appSettings>
<add key="EmailReminder.FromAddress" value="[email protected]" />
<!-- NetSpell directory -->
<add key="DictionaryFolder" value="/sitecore/shell/RadControls/Spell/tdf" />
<add key="Lucene.Net.FSDirectory.class" value="Sitecore.Data.Indexing.FSDirectory, Sitecore.Kernel" />
<add key="Lucene.Net.CompressionLib.class" value="Sitecore.IO.Compression, Sitecore.Kernel" />
</appSettings>
<sitecore database="SqlServer">
<sc.variable name="dataFolder" value="/data" />
<sc.variable name="mediaFolder" value="/upload" />
<sc.variable name="tempFolder" value="/temp" />
<prototypes>
<sc.include file="/App_Config/Prototypes.config" />
</prototypes>
<!-- EVENT MAPS
events.timingLevel =
none - No timing information is logged for any of the events (no matter what their local settings are)
low - Start/end timing is logged for events with handlers. Local settings override.
medium - Start/end timing is logged for all events. Local settings override.
high - Start/end timing is logged for all events. Also, start/end for each handler is logged. Local settings override.
custom - Only local settings apply. Events without settings are not logged.
event.timingLevel =
none - No timing information is logged for the event.
low - The combined time of all handlers is logged for the event. If no handlers are specified, nothing is logged.
medium - The combined time of all handlers is logged for the event. Even if it does not have any handlers.
high - The combined and individual time of all handlers is logged for the event.
-->
<events timingLevel="custom">
<event name="data:updated" />
<event name="item:added">
<handler type="Sitecore.Data.Fields.ItemEventHandler, Sitecore.Kernel" method="OnItemAdded" />
</event>
<event name="item:copied">
<handler type="Sitecore.Tasks.ItemEventHandler, Sitecore.Kernel" method="OnItemCopied" />
</event>
<event name="item:copying" />
<event name="item:created" />
<event name="item:creating" />
<event name="item:deleted">
<handler type="Sitecore.Links.ItemEventHandler, Sitecore.Kernel" method="OnItemDeleted" />
<handler type="Sitecore.Tasks.ItemEventHandler, Sitecore.Kernel" method="OnItemDeleted" />
<handler type="Sitecore.Globalization.ItemEventHandler, Sitecore.Kernel" method="OnItemDeleted" />
<handler type="Sitecore.Data.Fields.ItemEventHandler, Sitecore.Kernel" method="OnItemDeleted" />
</event>
<event name="item:deleting" />
<event name="item:moved" />
<event name="item:moving" />
<event name="item:renamed" />
<event name="item:saved">
<handler type="Sitecore.Links.ItemEventHandler, Sitecore.Kernel" method="OnItemSaved" />
<handler type="Sitecore.Tasks.ItemEventHandler, Sitecore.Kernel" method="OnItemSaved" />
<handler type="Sitecore.Globalization.ItemEventHandler, Sitecore.Kernel" method="OnItemSaved" />
</event>
<event name="item:saving" />
<event name="item:sortorderchanged" />
<event name="item:versionAdded" />
<event name="item:versionAdding" />
<event name="item:versionRemoved">
<handler type="Sitecore.Links.ItemEventHandler, Sitecore.Kernel" method="OnVersionRemoved" />
</event>
<event name="item:versionRemoving" />
<event name="publish:begin" />
<event name="publish:end">
<handler type="Sitecore.Publishing.HtmlCacheClearer, Sitecore.Kernel" method="ClearCache">
<sites hint="list">
<site>website</site>
</sites>
</handler>
</event>
<event name="publish:fail" />
<event name="publish:itemProcessing" help="Receives an argument of type ItemProcessingEventArgs (namespace: Sitecore.Publishing.Pipelines.PublishItem)" />
<event name="publish:itemProcessed" help="Receives an argument of type ItemProcessedEventArgs (namespace: Sitecore.Publishing.Pipelines.PublishItem)" />
<event name="security:loggingIn" />
<event name="security:loggedIn" />
<event name="security:loggingOut" />
<event name="security:loggedOut">
<handler type="Sitecore.Sites.SiteContext, Sitecore.Kernel" method="OnLoggedOut" static="true" />
</event>
<event name="template:updated" />
<!-- Example (note: method must be compatible with the EventHandler delegate)
<event name="example">
<handler type="Sitecore.Example, Sitecore.Kernel" method="OnExample"/>
</event>
-->
</events>
<customHandlers>
<handler trigger="~/media/" handler="sitecore_media.ashx" />
<handler trigger="~/api/" handler="sitecore_api.ashx" />
<handler trigger="~/xaml/" handler="sitecore_xaml.ashx" />
<handler trigger="~/icon/" handler="sitecore_icon.ashx" />
</customHandlers>
<!-- LINK DATABASE -->
<LinkDatabase type="Sitecore.Data.$(database).$(database)LinkDatabase, Sitecore.Kernel">
<param connectionStringName="core" />
</LinkDatabase>
<!-- TASK DATABASE -->
<TaskDatabase type="Sitecore.Data.$(database).$(database)TaskDatabase, Sitecore.Kernel">
<param connectionStringName="core" />
</TaskDatabase>
<!-- ID TABLE -->
<IDTable type="Sitecore.Data.$(database).$(database)IDTable, Sitecore.Kernel" singleInstance="true">
<param connectionStringName="master" />
<param desc="cacheSize">500KB</param>
</IDTable>
<!-- PIPELINES -->
<pipelines>
<initialize>
<processor type="Sitecore.Pipelines.Loader.ShowVersion, Sitecore.Kernel">
<assemblies hint="list:AddAssembly">
<assembly>/bin/Sitecore.Client.dll</assembly>
<assembly>/bin/Sitecore.Kernel.dll</assembly>
</assemblies>
<showDatabases>true</showDatabases>
<showDomains>true</showDomains>
<showDebugWarning>true</showDebugWarning>
</processor>
<processor type="Sitecore.Pipelines.Loader.ShowHistory, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.SetGlobals, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.LoadHooks, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.InitializeManagers, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.InitializeScheduler, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.InitializeHeartbeat, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.InitializeAgilityPack, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Loader.EnsureAnonymousUsers, Sitecore.Kernel" />
</initialize>
<shutdown>
<processor type="Sitecore.Pipelines.Shutdown.ShowReason, Sitecore.Kernel" />
</shutdown>
<preprocessRequest help="Processors should derive from Sitecore.Pipelines.PreprocessRequest.PreprocessRequestProcessor">
<processor type="Sitecore.Pipelines.PreprocessRequest.NormalizeRawUrl, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.PreprocessRequest.IIS404Handler, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.PreprocessRequest.FilterUrlExtensions, Sitecore.Kernel">
<param desc="Allowed extensions (comma separated)">aspx, ashx, asmx</param>
<param desc="Blocked extensions (comma separated)">*</param>
<param desc="Blocked extensions that stream files (comma separated)">*</param>
<param desc="Blocked extensions that do not stream files (comma separated)">
</param>
</processor>
<processor type="Sitecore.Pipelines.PreprocessRequest.StripLanguage, Sitecore.Kernel" />
</preprocessRequest>
<httpRequestBegin>
<processor type="Sitecore.Pipelines.PreprocessRequest.CheckIgnoreFlag, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.StartMeasurements, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.IgnoreList, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.SiteResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.UserResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.DatabaseResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.BeginDiagnostics, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.DeviceResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.LanguageResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.CustomHandlers, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.FilterUrlExtensions, Sitecore.Kernel">
<param desc="Allowed extensions (comma separated)">aspx</param>
<param desc="Blocked extensions (comma separated)">*</param>
<param desc="Blocked extensions that stream files (comma separated)">css,js</param>
<param desc="Blocked extensions that do not stream files (comma separated)">*</param>
</processor>
<processor type="Sitecore.Pipelines.HttpRequest.QueryStringResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.DynamicLinkResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.AliasResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.DefaultResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.FileResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.ItemResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.LayoutResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.ExecuteRequest, Sitecore.Kernel" />
</httpRequestBegin>
<httpRequestEnd>
<processor type="Sitecore.Pipelines.PreprocessRequest.CheckIgnoreFlag, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.HttpRequest.EndDiagnostics, Sitecore.Kernel" />
<!--<processor type="Sitecore.Pipelines.HttpRequest.ResizePicture, Sitecore.Kernel"/>-->
<processor type="Sitecore.Pipelines.HttpRequest.StopMeasurements, Sitecore.Kernel">
<TimingThreshold desc="Milliseconds">1000</TimingThreshold>
<ItemThreshold desc="Item count">1000</ItemThreshold>
<MemoryThreshold desc="KB">10000</MemoryThreshold>
</processor>
</httpRequestEnd>
<job>
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="SignalStart" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="SetPriority" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="SetSecurity" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="SetContextUser" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="InitializeContext" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="RunMethod" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="ResetSecurity" />
<processor type="Sitecore.Jobs.JobRunner, Sitecore.Kernel" method="SignalEnd" />
</job>
<publish help="Processors should derive from Sitecore.Publishing.Pipelines.Publish.PublishProcessor">
<processor type="Sitecore.Publishing.Pipelines.Publish.AddLanguagesToQueue, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.Publish.AddItemsToQueue, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.Publish.ProcessQueue, Sitecore.Kernel" />
</publish>
<publishItem help="Processors should derive from Sitecore.Publishing.Pipelines.PublishItem.PublishItemProcessor">
<processor type="Sitecore.Publishing.Pipelines.PublishItem.RaiseProcessingEvent, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.CheckVirtualItem, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.CheckSecurity, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.DetermineAction, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.PerformAction, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.RemoveUnknownChildren, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.MoveItems, Sitecore.Kernel" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.RaiseProcessedEvent, Sitecore.Kernel" runIfAborted="true" />
<processor type="Sitecore.Publishing.Pipelines.PublishItem.UpdateStatistics, Sitecore.Kernel" runIfAborted="true">
<traceToLog>false</traceToLog>
</processor>
</publishItem>
<renderLayout>
<processor type="Sitecore.Pipelines.PreprocessRequest.CheckIgnoreFlag, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.PageHandlers, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.SecurityCheck, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.InsertRenderings, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.PageExtenders, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.BuildTree, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.InsertSystemControls, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.InsertUnusedControls, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderLayout.BrowserCaching, Sitecore.Kernel" />
</renderLayout>
<healthMonitor>
<processor type="Sitecore.Pipelines.HealthMonitor.HealthMonitor, Sitecore.Kernel" method="LogMemoryStatus" />
<processor type="Sitecore.Pipelines.HealthMonitor.HealthMonitor, Sitecore.Kernel" method="LogCacheStatus" />
<processor type="Sitecore.Pipelines.HealthMonitor.HealthMonitor, Sitecore.Kernel" method="LogCounterStatus">
<counters hint="raw:AddCounter">
<counter category="Process" name="Private Bytes" />
<counter category="Process" name="Virtual Bytes" />
<counter category="Process" name="Page File Bytes" />
<counter category=".net CLR Memory" name="# Bytes in all Heaps" />
<counter category=".net CLR Memory" name="% Time in GC" />
<counter category=".net CLR Memory" name="Large Object Heap size" />
<counter category=".net CLR Loading" name="Bytes in Loader Heap" />
<counter category=".net CLR Loading" name="Current Assemblies" />
</counters>
</processor>
</healthMonitor>
<sessionEnd>
<processor type="Sitecore.Pipelines.SessionEnd.SaveRecentDocuments, Sitecore.Kernel" />
</sessionEnd>
<getMediaStream>
<processor type="Sitecore.Resources.Media.ThumbnailProcessor, Sitecore.Kernel" />
<processor type="Sitecore.Resources.Media.ResizeProcessor, Sitecore.Kernel" />
<processor type="Sitecore.Resources.Media.GrayscaleProcessor, Sitecore.Kernel" />
</getMediaStream>
<expandInitialFieldValue help="Processors should derive from Sitecore.Pipelines.ExpandInitialFieldValue.ExpandInitialFieldValueProcessor">
<processor type="Sitecore.Pipelines.ExpandInitialFieldValue.SkipStandardValueItems, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ExpandInitialFieldValue.ReplaceVariables, Sitecore.Kernel" />
</expandInitialFieldValue>
<expandBranchItemName>
<processor type="Sitecore.Pipelines.ExpandBranchItemName.ReplaceVariables, Sitecore.Kernel" />
</expandBranchItemName>
<convertToDesignTimeHtml>
<processor type="Sitecore.Pipelines.ConvertToDesignTimeHtml.PrepareHtml, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToDesignTimeHtml.ConvertWebControls, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToDesignTimeHtml.FixBullets, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToDesignTimeHtml.FinalizeHtml, Sitecore.Kernel" />
</convertToDesignTimeHtml>
<convertToRuntimeHtml>
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.PrepareHtml, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.ShortenLinks, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.SetImageSizes, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.ConvertWebControls, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.FixBullets, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.ConvertToRuntimeHtml.FinalizeHtml, Sitecore.Kernel" />
</convertToRuntimeHtml>
<fixXHtml>
<processor type="Sitecore.Pipelines.FixXHtml.PrepareHtml, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.FixXHtml.ConvertToXHtml, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.FixXHtml.CheckSchema, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.FixXHtml.RemoveEmptySpans, Sitecore.Kernel" />
</fixXHtml>
<renderItemTile>
<processor type="Sitecore.Pipelines.RenderItemTile.RenderFolderTile, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderItemTile.RenderTemplateTile, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderItemTile.RenderDefaultTile, Sitecore.Kernel" />
</renderItemTile>
<getAboutInformation>
</getAboutInformation>
<getLookupSourceItems>
<processor type="Sitecore.Pipelines.GetLookupSourceItems.ProcessQuerySource, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetLookupSourceItems.ProcessDefaultSource, Sitecore.Kernel" />
</getLookupSourceItems>
<getRenderingPreview>
<processor type="Sitecore.Pipelines.GetRenderingPreview.GetXslRenderingPreview,Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetRenderingPreview.GetRenderingPreviewField,Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetRenderingPreview.GetDefaultRenderingPreview,Sitecore.Kernel" />
</getRenderingPreview>
<getContentEditorFields>
<processor type="Sitecore.Shell.Applications.ContentEditor.Pipelines.GetContentEditorFields.GetFields, Sitecore.Client" />
</getContentEditorFields>
<getContentEditorSkin>
<processor type="Sitecore.Shell.Applications.ContentEditor.Pipelines.GetContentEditorSkin.ShowStandardFields, Sitecore.Client" />
<processor type="Sitecore.Shell.Applications.ContentEditor.Pipelines.GetContentEditorSkin.BuildSkin, Sitecore.Client" />
</getContentEditorSkin>
<getContentEditorWarnings>
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.ItemNotFound, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.CanReadLanguage, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.HasNoVersions, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.CanWrite, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.CanWriteWorkflow, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.CanWriteLanguage, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.IsReadOnly, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.IsLocked, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.HasNoFields, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.NeverPublish, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.ItemPublishingRestricted, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.VersionPublishingRestricted, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.GetContentEditorWarnings.ShowingInputBoxes, Sitecore.Kernel" />
</getContentEditorWarnings>
<renderContentEditor>
<processor type="Sitecore.Shell.Applications.ContentEditor.Pipelines.RenderContentEditor.RenderSkinedContentEditor, Sitecore.Client" />
<processor type="Sitecore.Shell.Applications.ContentEditor.Pipelines.RenderContentEditor.RenderStandardContentEditor, Sitecore.Client" />
</renderContentEditor>
<renderField>
<processor type="Sitecore.Pipelines.RenderField.SetParameters, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.ExpandLinks, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetImageFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetLinkFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetInternalLinkFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetMemoFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.GetDateFieldValue, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.AddBeforeAndAfterValues, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.RenderField.RenderWebEditing, Sitecore.Kernel" />
</renderField>
<search>
<processor type="Sitecore.Pipelines.Search.IDResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.PathResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.UrlResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.SecurityResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.DatabaseResolver, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.SearchSystemIndex, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.CategorizeResults, Sitecore.Kernel" />
<processor type="Sitecore.Pipelines.Search.AddInstantOptions, Sitecore.Kernel" />
</search>
</pipelines>
<!-- DATA PROVIDERS -->
<dataProviders>
<main type="Sitecore.Data.$(database).$(database)DataProvider, Sitecore.Kernel">
<param connectionStringName="$(1)" />
<Name>$(1)</Name>
</main>
<filesystem type="Sitecore.Data.DataProviders.FileSystemDataProvider, Sitecore.Kernel">
<CacheOptions.DisableAll>true</CacheOptions.DisableAll>
</filesystem>
<templatefile type="Sitecore.Data.DataProviders.TemplateFileResolver, Sitecore.Kernel">
<param desc="template file">$(1)</param>
<abortChain>true</abortChain>
</templatefile>
<methodGroups>
<copyMove>
<CopyItem />
<MoveItem />
</copyMove>
<create>
<AddVersion />
<CreateItem />
</create>
<delete>
<DeleteItem />
<RemoveVersion />
<RemoveVersions />
</delete>
<properties>
<GetProperty />
<RemoveProperty />
<SetProperty />
</properties>
<publishing>
<AddToPublishQueue />
<CleanupPublishQueue />
<GetPublishQueue />
</publishing>
<query>
<SelectIDs />
<SelectSingleID />
</query>
<read>
<BlobStreamExists />
<GetItemDefinition />
<GetItemFields />
<GetItemVersions />
</read>
<relations>
<GetChildIDs />
<GetParentID />
<GetRootID />
<HasChildren />
</relations>
<resolve>
<ResolvePath />
</resolve>
<templates>
<ChangeTemplate />
<GetTemplateItemIds />
<GetTemplates />
</templates>
<update>
<SaveItem />
</update>
<workflow>
<GetItemsInWorkflowState />
<GetWorkflowInfo />
<SetWorkflowInfo />
</workflow>
</methodGroups>
</dataProviders>
<!-- DATA PROVIDERS -->
<proxyDataProviders>
<main type="Sitecore.Data.$(database).$(database)ProxyDataProvider, Sitecore.Kernel">
<param connectionStringName="$(1)" />
<Name>$(1)</Name>
</main>
</proxyDataProviders>
<workflowHistoryStores>
<main type="Sitecore.Data.$(database).$(database)HistoryStore, Sitecore.Kernel">
<param connectionStringName="$(1)" />
</main>
</workflowHistoryStores>
<!-- DATABASES -->
<databases>
<!-- core -->
<database id="core" singleInstance="true" type="Sitecore.Data.Database, Sitecore.Kernel">
<param desc="name">$(id)</param>
<connectionStringName>$(id)</connectionStringName>
<icon>Software/16x16/application_server.png</icon>
<dataProviders hint="list:AddDataProvider">
<dataProvider ref="dataProviders/main" param1="$(id)">
<prefetch hint="raw:AddPrefetch">
<sc.include file="/App_Config/Prefetch/Common.config" />
<sc.include file="/App_Config/Prefetch/Core.config" />
</prefetch>
</dataProvider>
</dataProviders>
<workflowProvider hint="defer" type="Sitecore.Workflows.Simple.WorkflowProvider, Sitecore.Kernel">
<param desc="database">$(id)</param>
<param desc="history store" ref="workflowHistoryStores/main" param1="$(id)" />
</workflowProvider>
<indexes hint="list:AddIndex">
<index path="indexes/index[@id='system']" />
</indexes>
<archives hint="raw:AddArchive">
<archive name="archive" />
<archive name="recyclebin" />
</archives>
<cacheSizes hint="setting">
<data>20MB</data>
<items>10MB</items>
<paths>500KB</paths>
<standardValues>500KB</standardValues>
</cacheSizes>
<Engines.HistoryEngine.Storage>
<obj type="Sitecore.Data.$(database).$(database)HistoryStorage, Sitecore.Kernel">
<param connectionStringName="$(id)">
</param>
</obj>
</Engines.HistoryEngine.Storage>
</database>
<!-- master -->
<database id="master" singleInstance="true" type="Sitecore.Data.Database, Sitecore.Kernel">
<param desc="name">$(id)</param>
<icon>People/16x16/cubes_blue.png</icon>
<dataProviders hint="list:AddDataProvider">
<dataProvider ref="dataProviders/main" param1="$(id)">
<prefetch hint="raw:AddPrefetch">
<sc.include file="/App_Config/Prefetch/Common.config" />
<sc.include file="/App_Config/Prefetch/Master.config" />
</prefetch>
</dataProvider>
</dataProviders>
<securityEnabled>true</securityEnabled>
<proxiesEnabled>false</proxiesEnabled>
<publishVirtualItems>true</publishVirtualItems>
<proxyDataProvider ref="proxyDataProviders/main" param1="$(id)" />
<workflowProvider hint="defer" type="Sitecore.Workflows.Simple.WorkflowProvider, Sitecore.Kernel">
<param desc="database">$(id)</param>
<param desc="history store" ref="workflowHistoryStores/main" param1="$(id)" />
</workflowProvider>
<indexes hint="list:AddIndex">
<index path="indexes/index[@id='system']" />
</indexes>
<archives hint="raw:AddArchive">
<archive name="archive" />
<archive name="recyclebin" />
</archives>
<Engines.HistoryEngine.Storage>
<obj type="Sitecore.Data.$(database).$(database)HistoryStorage, Sitecore.Kernel">
<param connectionStringName="$(id)" />
<EntryLifeTime>30.00:00:00</EntryLifeTime>
</obj>
</Engines.HistoryEngine.Storage>
<Engines.HistoryEngine.SaveDotNetCallStack>false</Engines.HistoryEngine.SaveDotNetCallStack>
<cacheSizes hint="setting">
<data>20MB</data>
<items>10MB</items>
<paths>500KB</paths>
<standardValues>500KB</standardValues>
</cacheSizes>
</database>
<!-- web -->
<database id="web" singleInstance="true" type="Sitecore.Data.Database, Sitecore.Kernel">
<param desc="name">$(id)</param>
<icon>Network/16x16/earth.png</icon>
<securityEnabled>true</securityEnabled>
<dataProviders hint="list:AddDataProvider">
<dataProvider ref="dataProviders/main" param1="$(id)">
<disableGroup>publishing</disableGroup>
<prefetch hint="raw:AddPrefetch">
<sc.include file="/App_Config/Prefetch/Common.config" />
<sc.include file="/App_Config/Prefetch/Web.config" />
</prefetch>
</dataProvider>
</dataProviders>
<proxiesEnabled>false</proxiesEnabled>
<proxyDataProvider ref="proxyDataProviders/main" param1="$(id)" />
<archives hint="raw:AddArchive">
<archive name="archive" />
<archive name="recyclebin" />
</archives>
<cacheSizes hint="setting">
<data>20MB</data>
<items>10MB</items>
<paths>500KB</paths>
<standardValues>500KB</standardValues>
</cacheSizes>
</database>
<!-- file system -->
<database id="filesystem" singleInstance="true" type="Sitecore.Data.Database, Sitecore.Kernel">
<param desc="name">$(id)</param>
<dataProviders hint="list:AddDataProvider">
<dataProvider ref="dataProviders/filesystem" param1="$(id)" />
</dataProviders>
<readonly>true</readonly>
<securityEnabled>false</securityEnabled>
<cacheSizes hint="setting">
<data>0</data>
<items>0</items>
<paths>0</paths>
<standardValues>0</standardValues>
</cacheSizes>
</database>
</databases>
<!-- ARCHIVES -->
<!--
Define archive providers for databases
IMPORTANT: If you wish to support multiple provides, you must set defaultProvider="switcher"
Supported attributes:
name: A unique provider name
type: The provider type
database: Connects the provider with a specified database.
If the database attribute is missing or the value of this attribute is equal to "*"
then the provider will be used for all databases.
If we have more than one provider which is connected to the same database an exception will be thrown.
Examples of usages:
<add name="<unique_name>" type="<type>" database="core"/>
<add name="<unique_name>" type="<type>" database="web|master"/>
<add name="<unique_name>" type="<type>" database="*"/>
-->
<archives defaultProvider="sql" enabled="true">
<providers>
<clear />
<add name="sql" type="Sitecore.Data.Archiving.SqlArchiveProvider, Sitecore.Kernel" database="*" />
<add name="switcher" type="Sitecore.Data.Archiving.SwitchingArchiveProvider, Sitecore.Kernel" />
</providers>
</archives>
<indexes>
<index id="system" singleInstance="true" type="Sitecore.Data.Indexing.Index, Sitecore.Kernel">
<param desc="name">$(id)</param>
<fields hint="raw:AddField">
<field target="created">__created</field>
<field target="updated">__updated</field>
<field target="author">__updated by</field>
<field target="published">__published</field>
<field target="name">@name</field>
<field storage="unstored">@name</field>
<field target="template" storage="keyword">@tid</field>
<field target="id" storage="unstored">@id</field>
<type storage="unstored">memo</type>
<type storage="unstored">text</type>
<type storage="unstored" stripTags="true">html</type>
<type storage="unstored" stripTags="true">rich text</type>
</fields>
</index>
</indexes>
<search>
<analyzer type="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" />
<categorizer type="Sitecore.Pipelines.Search.CategorizeResults+Categorizer, Sitecore.Kernel">
<Categories hint="raw:AddCategory">
<category path="/sitecore/content" />
<category displayName="Images">
<templateID>{F1828A2C-7E5D-4BBD-98CA-320474871548}</templateID>
<templateID>{DAF085E8-602E-43A6-8299-038FF171349F}</templateID>
<templateID>{C97BA923-8009-4858-BDD5-D8BE5FCCECF7}</templateID>
<templateID>{EB3FB96C-D56B-4AC9-97F8-F07B24BB9BF7}</templateID>
</category>
<category displayName="Documents">
<templateID>{16692733-9A61-45E6-B0D4-4C0C06F8DD3C}</templateID>
<templateID>{777F0C76-D712-46EA-9F40-371ACDA18A1C}</templateID>
<templateID>{7BB0411F-50CD-4C21-AD8F-1FCDE7C3AFFE}</templateID>
<templateID>{0603F166-35B8-469F-8123-E8D87BEDC171}</templateID>
<templateID>{3DB3A3CA-A0A9-4228-994B-F70C8E99A1CE}</templateID>
<templateID>{2A130D0C-A2A9-4443-B418-917F857BF6C9}</templateID>
<templateID>{F57FB07D-332A-4934-AA67-0A629C5396E2}</templateID>
<templateID>{CC80011D-8EAE-4BFC-84F1-67ECD0223E9E}</templateID>
</category>
<category path="/sitecore/media library" />
<category path="/sitecore/layout/devices" />
<category path="/sitecore/layout/layouts" />
<category path="/sitecore/layout/sublayouts" />
<category path="/sitecore/layout/renderings" />
<category path="/sitecore/layout" />
<category templateIDs="{455A3E98-A627-4B40-8035-E683A0331AC7}" displayName="Template Fields" />
<category templateIDs="{E269FBB5-3750-427A-9149-7AA950B49301}" displayName="Template Sections" />
<category path="/sitecore/templates/branches" />
<category path="/sitecore/templates/system" displayName="System Templates" />
<category path="/sitecore/templates" />
<category path="/sitecore/system/aliases" />
<category path="/sitecore/system/languages" />
<category path="/sitecore/system/workflows" />
<category path="/sitecore/system" />
<category path="/sitecore/content/applications/control panel" database="core" />
<category path="/sitecore/content/applications" database="core" />
</Categories>
</categorizer>
<configuration type="Sitecore.Search.SearchConfiguration, Sitecore.Kernel" singleInstance="true">
<indexes hint="list:AddIndex">
<index id="system" type="Sitecore.Search.Index, Sitecore.Kernel">
<param desc="name">$(id)</param>
<param desc="folder">__system</param>
<Analyzer ref="search/analyzer" />
<locations hint="list:AddCrawler">
<core type="Sitecore.Search.Crawlers.DatabaseCrawler,Sitecore.Kernel">
<Database>core</Database>
<Root>/sitecore/content</Root>
<include hint="list:IncludeTemplate">
<application>{EB06CEC0-5E2D-4DC4-875B-01ADCC577D13}</application>
</include>
<Tags>application</Tags>
<Boost>2.0</Boost>
</core>
<core-controlpanel type="Sitecore.Search.Crawlers.DatabaseCrawler,Sitecore.Kernel">
<Database>core</Database>
<Root>/sitecore/content/applications/control panel</Root>
<include hint="list:IncludeTemplate">
<taskoption>{BDB6FA46-2F76-4BDE-8138-52B56C2FC47E}</taskoption>
</include>
<Tags>taskoption</Tags>
<Boost>1.9</Boost>
</core-controlpanel>
<master type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel">
<Database>master</Database>
<Tags>master content</Tags>
</master>
</locations>
</index>
</indexes>
</configuration>
</search>
<!-- AUTHENTICATION -->
<authentication defaultProvider="forms">
<providers>
<clear />
<add name="forms" type="Sitecore.Security.Authentication.FormsAuthenticationProvider, Sitecore.Kernel" />
</providers>
</authentication>
<!-- USERS -->
<userManager defaultProvider="default" enabled="true">
<providers>
<clear />
<add name="default" type="Sitecore.Security.Accounts.UserProvider, Sitecore.Kernel" />
</providers>
</userManager>
<!-- ROLES -->
<rolesInRolesManager defaultProvider="sql" enabled="true">
<providers>
<clear />
<add name="sql" type="Sitecore.Security.Accounts.SqlServerRolesInRolesProvider, Sitecore.Kernel" connectionStringName="core" rolesInRolesSupported="true" globalRolesConfigStoreName="globalRoles" raiseEvents="true" />
</providers>
</rolesInRolesManager>
<!-- AUTHORIZATION -->
<authorization defaultProvider="sql">
<providers>
<clear />
<add name="sql" type="Sitecore.Security.AccessControl.SqlServerAuthorizationProvider, Sitecore.Kernel" connectionStringName="core" embedAclInItems="true" />
</providers>
</authorization>
<!--
ACCESS RIGHTS
Example of a <rights> element using a custom type (which must derive from AccessRight):
<add name="my:access" comment="Custom right." title="Custom" type="My.Security.MyAccessRight, My.Assembly"/>
Example of a <rules> element using a custom type (which must derive from AcessRightRule):
<add prefix="my:" typeName="My.MyEntity" type="My.MyAcessRightRule, My.Assembly"/>
-->
<accessRights defaultProvider="config">
<providers>
<clear />
<add name="config" type="Sitecore.Security.AccessControl.ConfigAccessRightProvider, Sitecore.Kernel" configRoot="accessRights" />
</providers>
<rights defaultType="Sitecore.Security.AccessControl.AccessRight, Sitecore.Kernel">
<add name="field:read" comment="Read right for fields." title="Field Read" />
<add name="field:write" comment="Write right for fields." title="Field Write" modifiesData="true" />
<add name="item:read" comment="Read right for items." title="Read" />
<add name="item:write" comment="Write right for items." title="Write" modifiesData="true" />
<add name="item:rename" comment="Rename right for items." title="Rename" modifiesData="true" />
<add name="item:create" comment="Create right for items." title="Create" modifiesData="true" />
<add name="item:delete" comment="Delete right for items." title="Delete" modifiesData="true" />
<add name="item:admin" comment="Admin right for items." title="Administer" modifiesData="true" />
<add name="language:read" comment="Read right for languages." title="Language Read" />
<add name="language:write" comment="Write right for languages." title="Language Write" modifiesData="true" />
<add name="site:enter" comment="The right to enter a site." title="Site Enter" />
<add name="insert:show" comment="Determines if the user can see the insert option" title="Show in Insert" />
<add name="workflowState:delete" comment="The right to delete an item based on its workflow state." title="Workflow State Delete" />
<add name="workflowState:write" comment="The right to write an item based on its workflow state." title="Workflow State Write" modifiesData="true" />
<add name="workflowCommand:execute" comment="The right to execute a workflow command." title="Workflow Command Execute" />
<add name="*" comment="Wildcard right. For internal use only." />
</rights>
<rules>
<add prefix="field:" ancestor="{3C1715FE-6A13-4FCF-845F-DE308BA9741D}" comment="/sitecore/templates" />
<add prefix="insert:" templateId="{35E75C72-4985-4E09-88C3-0EAC6CD1E64F}" comment="insert:show for Branch template" />
<add prefix="insert:" templateId="{B2613CC1-A748-46A3-A0DB-3774574BD339}" comment="insert:show for Command template" />
<add prefix="insert:" templateId="{AB86861A-6030-46C5-B394-E8F99E8B87DB}" comment="insert:show for Template template" />
<add prefix="item:" typeName="Sitecore.Data.Items.Item" />
<add prefix="language:" ancestor="{64C4F646-A3FA-4205-B98E-4DE2C609B60F}" comment="/sitecore/system/language" />
<add prefix="workflowState:" ancestor="{05592656-56D7-4D85-AACF-30919EE494F9}" comment="/sitecore/system/workflows" />
<add prefix="workflowCommand:" ancestor="{05592656-56D7-4D85-AACF-30919EE494F9}" comment="/sitecore/system/workflows" />
</rules>
</accessRights>
<!-- PRESENTATION -->
<presentationManager defaultProvider="item" enabled="true">
<providers>
<clear />
<add name="item" type="Sitecore.Presentation.PresentationProvider, Sitecore.Kernel" />
</providers>
</presentationManager>
<!-- CONTROL -->
<controlManager defaultProvider="default" enabled="true">
<providers>
<clear />
<add name="default" type="Sitecore.Presentation.ControlProvider, Sitecore.Kernel" />
</providers>
</controlManager>
<!-- PUBLIHING -->
<publishManager defaultProvider="default" enabled="true">
<providers>
<clear />
<add name="default" type="Sitecore.Publishing.PipelinePublishProvider, Sitecore.Kernel" />
</providers>
</publishManager>
<!-- PREVIEW -->
<previewManager defaultProvider="default" enabled="true">
<providers>
<clear />
<add name="default" type="Sitecore.Publishing.PreviewProvider, Sitecore.Kernel" />
</providers>
</previewManager>
<!-- CONFIG STORES -->
<configStores>
<add name="domains" type="Sitecore.Configuration.XmlConfigStore, Sitecore.Kernel" factoryMethod="LoadFromFile" arg0="/App_Config/Security/Domains.config.xml" />
<add name="globalRoles" type="Sitecore.Configuration.XmlConfigStore, Sitecore.Kernel" factoryMethod="LoadFromFile" arg0="/App_Config/Security/GlobalRoles.config.xml" />
</configStores>
<!-- DOMAINS -->
<itemManager defaultProvider="default">
<providers>
<clear />
<add name="default" type="Sitecore.Data.Managers.ItemProvider, Sitecore.Kernel" />
</providers>
</itemManager>
<!-- DOMAINS -->
<domainManager defaultProvider="file">
<providers>
<clear />
<add name="file" type="Sitecore.Security.Domains.ConfigStoreDomainProvider, Sitecore.Kernel" configStoreName="domains" />
<add name="config" type="Sitecore.SecurityModel.ConfigDomainProvider, Sitecore.Kernel" domainList="domainManager/domains" defaultDomain="sitecore" />
</providers>
<!-- Sample for use with config provider above -->
<domains>
<domain id="sitecore" type="Sitecore.Security.Domains.Domain, Sitecore.Kernel">
<param desc="name">$(id)</param>
<ensureAnonymousUser>false</ensureAnonymousUser>
</domain>
<domain id="extranet" type="Sitecore.Security.Domains.Domain, Sitecore.Kernel">
<param desc="name">$(id)</param>
<ensureAnonymousUser>true</ensureAnonymousUser>
</domain>
<domain id="default" type="Sitecore.Security.Domains.Domain, Sitecore.Kernel">
<param desc="name">$(id)</param>
<ensureAnonymousUser>true</ensureAnonymousUser>
<isDefault>true</isDefault>
</domain>
</domains>
</domainManager>
<!-- SWITCHING PROVIDERS -->
<switchingProviders>
<membership>
<provider providerName="sql" storeFullNames="true" wildcard="%" domains="*" />
</membership>
<roleManager>
<provider providerName="sql" storeFullNames="true" wildcard="%" domains="*" />
</roleManager>
<profile>
<provider providerName="sql" storeFullNames="true" wildcard="%" domains="*" />
</profile>
</switchingProviders>
<!-- MEDIA PATH -->
<mediaPath defaultProvider="default">
<providers>
<clear />
<add name="default" type="Sitecore.Resources.Media.MediaPathProvider, Sitecore.Kernel" />
</providers>
</mediaPath>
<!-- SITES -->
<siteManager defaultProvider="config">
<providers>
<clear />
<add name="config" type="Sitecore.Sites.ConfigSiteProvider, Sitecore.Kernel" siteList="sites" checkSecurity="false" />
</providers>
</siteManager>
<!-- LINKS -->
<!-- Options (first is default):
addAspxExtension: true | false (If you set this to false, remember to configure IIS to map all requests (*) to ASP.NET)
alwaysIncludeServerUrl: false | true
encodeNames: true | false
languageEmbedding: asNeeded | always | never
languageLocation: filePath | queryString
shortenUrls: true | false
useDisplayName: false | true
-->
<linkManager defaultProvider="sitecore">
<providers>
<clear />
<add name="sitecore" type="Sitecore.Links.LinkProvider, Sitecore.Kernel" addAspxExtension="true" alwaysIncludeServerUrl="false" encodeNames="true" languageEmbedding="asNeeded" languageLocation="filePath" shortenUrls="true" useDisplayName="false" />
</providers>
</linkManager>
<!-- STANDARD VALUES -->
<standardValues defaultProvider="sitecore">
<providers>
<clear />
<add name="sitecore" type="Sitecore.Data.StandardValuesProvider, Sitecore.Kernel" />
</providers>
</standardValues>
<!-- FIELD TYPES -->
<!-- Defines the releation between a field type name, e.g. "lookup", and an implementation class -->
<fieldTypes>
<sc.include file="/App_Config/FieldTypes.config" />
</fieldTypes>
<!-- CLIENT DATASTORE -->
<clientDataStore type="Sitecore.Data.$(database).$(database)ClientDataStore, Sitecore.Kernel">
<param connectionStringName="core" />
<param desc="object lifetime">00:20:00</param>
</clientDataStore>
<!-- HOOKS -->
<hooks>
<hook type="Sitecore.Diagnostics.HealthMonitorHook, Sitecore.Kernel" />
<hook type="Sitecore.Diagnostics.MemoryMonitorHook, Sitecore.Kernel">
<param desc="Threshold">800MB</param>
<param desc="Check interval">00:00:05</param>
<param desc="Minimum time between log entries">00:01:00</param>
<ClearCaches>false</ClearCaches>
<GarbageCollect>false</GarbageCollect>
<AdjustLoadFactor>false</AdjustLoadFactor>
</hook>
</hooks>
<!-- SCHEDULING -->
<scheduling>
<!-- Time between checking for scheduled tasks waiting to execute -->
<frequency>00:05:00</frequency>
<!-- Agent to process schedules embedded as items in a database -->
<agent type="Sitecore.Tasks.DatabaseAgent" method="Run" interval="00:10:00">
<param desc="database">core</param>
<param desc="schedule root">/sitecore/system/tasks/schedules</param>
<LogActivity>true</LogActivity>
</agent>
<!-- Agent to process schedules embedded as items in a database -->
<agent type="Sitecore.Tasks.DatabaseAgent" method="Run" interval="00:10:00">
<param desc="database">master</param>
<param desc="schedule root">/sitecore/system/tasks/schedules</param>
<LogActivity>true</LogActivity>
</agent>
<!-- Agent to retrieve a URL -->
<agent type="Sitecore.Tasks.UrlAgent" method="Run" interval="01:00:00">
<param desc="url">/sitecore/service/keepalive.aspx</param>
<LogActivity>true</LogActivity>
</agent>
<!-- Agent to process tasks from the task database (TaskDatabase) -->
<agent type="Sitecore.Tasks.TaskDatabaseAgent" method="Run" interval="00:10:00" />
<!-- Agent to cleanup client data -->
<agent type="Sitecore.Tasks.CompactClientDataAgent" method="Run" interval="04:00:00" />
<!-- Agent to cleanup history data -->
<agent type="Sitecore.Tasks.CleanupHistory" method="Run" interval="04:00:00" />
<!-- Agent to cleanup publishing queue -->
<agent type="Sitecore.Tasks.CleanupPublishQueue, Sitecore.Kernel" method="Run" interval="04:00:00">
<DaysToKeep>30</DaysToKeep>
</agent>
<!-- Agent to clear the HTML cache periodically -->
<agent type="Sitecore.Tasks.HtmlCacheClearAgent" method="Run" interval="00:00:00" />
<!-- Agent to publish database periodically -->
<agent type="Sitecore.Tasks.PublishAgent" method="Run" interval="00:00:00">
<param desc="source database">master</param>
<param desc="target database">web</param>
<param desc="mode (full or incremental)">incremental</param>
<param desc="languages">en, da</param>
</agent>
<!-- Agent to cleanup work files -->
<agent type="Sitecore.Tasks.CleanupAgent" method="Run" interval="06:00:00">
<!-- Specifies files to be cleaned up.
If rolling="true", [minCount] and [maxCount] will be ignored.
[minAge] and [maxAge] must be specified as [days.]hh:mm:ss. The default value
of [minAge] is 30 minutes.
[strategy]: number of files within hour, day, week, month, year
[recursive=true|false]: descend folders?
-->
<files hint="raw:AddCommand">
<remove folder="$(dataFolder)/logs" pattern="log.*.txt" maxCount="20" minAge="7.00:00:00" />
<remove folder="$(dataFolder)/viewstate" pattern="*.txt" maxAge="2.00:00:00" recursive="true" />
<remove folder="/App_Data/MediaCache" pattern="*.*" maxAge="90.00:00:00" recursive="true" />
</files>
</agent>
<!-- Agent to dump performance counter data -->
<agent type="Sitecore.Tasks.CounterDumpAgent" method="Run" interval="01:00:00">
<DumpFile>$(dataFolder)/diagnostics/counters.{date}.{time}.{processid}.txt</DumpFile>
</agent>
</scheduling>
<!-- PROCESSORS
Classes must have parameterless constructor.
Supported attributes:
mode=[on|off]
type=name of class (case-sensitive).
namespace=namespace containing class. If no namespace is included, it is assumed that the namespace is the same as the assembly name.
assembly=name of dll containing the class (case-sensitive)
-->
<processors>
<dispatch>
<!-- This pipeline has been deprecated - try using the CommandManager object instead -->
</dispatch>
<attachFile argsType="Sitecore.Pipelines.Attach.AttachArgs">
<processor mode="on" type="Sitecore.Pipelines.Attach.CheckSize,Sitecore.Kernel" />
<processor mode="on" type="Sitecore.Pipelines.Attach.UpdatePath,Sitecore.Kernel" />
<processor mode="on" type="Sitecore.Pipelines.Attach.Save,Sitecore.Kernel" />
</attachFile>
<uiAddFromTemplate>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.AddFromTemplate,Sitecore.Kernel" method="GetTemplate" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.AddFromTemplate,Sitecore.Kernel" method="Execute" />
</uiAddFromTemplate>
<uiArchiveItems>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckPermissions" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.ArchiveItems,Sitecore.Kernel" method="Confirm" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckTemplateLinks" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckLinks" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckLanguage" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.ArchiveItems,Sitecore.Kernel" method="Execute" />
</uiArchiveItems>
<closeWizard>
<processor mode="on" type="Sitecore.Web.UI.Pages.WizardForm, Sitecore.Kernel" method="Confirmation" />
</closeWizard>
<uiCopyItems>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.CopyItems,Sitecore.Kernel" method="GetDestination" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.CopyItems,Sitecore.Kernel" method="CheckDestination" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.CopyItems,Sitecore.Kernel" method="CheckLanguage" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.CopyItems,Sitecore.Kernel" method="Execute" />
</uiCopyItems>
<uiDeleteFiles>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteFiles,Sitecore.Kernel" method="Confirm" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteFiles,Sitecore.Kernel" method="Execute" />
</uiDeleteFiles>
<uiDeleteItems>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckPermissions" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="Confirm" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckTemplateLinks" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckLinks" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="CheckLanguage" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel" method="Execute" />
</uiDeleteItems>
<deleteVersionsUI>
<processor mode="on" type="Sitecore.Shell.Framework.Commands.DeleteVersion,Sitecore.Kernel" method="Confirmation" />
<processor mode="on" type="Sitecore.Shell.Framework.Commands.DeleteVersion,Sitecore.Kernel" method="DeleteVersions" />
</deleteVersionsUI>
<uiDragItemTo>
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="CheckPermissions" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="CheckShadows" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="Confirm" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="CheckLanguage" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="CheckLinks" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="Execute" />
<processor mode="on" type="Sitecore.Shell.Framework.Pipelines.DragItemTo,Sitecore.Kernel" method="RepairLinks" />
</uiDragItemTo>
<uiDuplicateItem>