Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtelligent committed Feb 18, 2019
0 parents commit 8289308
Show file tree
Hide file tree
Showing 52 changed files with 8,032 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.cs text=auto diff=csharp
*.html text=auto
*.htm text=auto
*.css text=auto
*.scss text=auto
*.sass text=auto
*.less text=auto
*.js text=auto
*.sql text=auto

*.csproj text=auto merge=union
*.sln text=auto eol=crlf merge=union

*.item -text
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[Oo]bj/
src/**/[Bb]in/
specs/**/[Bb]in/
.nuget/
_ReSharper.*
packages/
artifacts/
*.user
*.cache
*.suo
*.userprefs
*DS_Store
*.sln.ide
lib/license.xml
lib/Sitecore/*
!lib/Sitecore/readme.MD
lib/System/*
!lib/System/readme.MD
.sonar
vars.user.cmd
/.vs
/target
/node_modules
temp/
*.ncrunchproject
*.ncrunchsolution
.vscode
nCrunchTemp*.*
9 changes: 9 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"generator-helix": {
"promptValues": {
"sourceFolder": "src",
"target": "v4.6",
"VendorPrefix": "Samples"
}
}
}
10 changes: 10 additions & 0 deletions Handlebars.vssscc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
""
{
"FILE_VERSION" = "9237"
"ENLISTMENT_CHOICE" = "NEVER"
"PROJECT_FILE_RELATIVE_PATH" = ""
"NUMBER_OF_EXCLUDED_FILES" = "0"
"ORIGINAL_PROJECT_FILE_PATH" = ""
"NUMBER_OF_NESTED_PROJECTS" = "0"
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT"
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 David San Filippo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#Trace Logger for Sitecore

Define Presentation in Handlebar Templates stored in Sitecore. Templates are bound server side during rendering.

Binds to Dynamic Item Model that works with Field Renderer to make your templates support Content Editing Seamlessly.

Includes Handlebar Helper functions for Placeholders, Edit Frames and more. Extend the handlebar helper pipeline with your own methods in c#.

Components provided can bind to single items, folders, explicit collections or even Sitecore queries.

SXA Version supports toolbox and can even be used as a Rendering Variant for Standard SXA Components.

Note this repository currently supports Sitecore 9.1 and SXA 1.8.
Binary file added Sitecore.Courier_src.update
Binary file not shown.
72 changes: 72 additions & 0 deletions TraceLogger.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.73
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "1. Project", "1. Project", "{5D709AC7-1426-4B80-B1F3-079F17EC5856}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "2. Feature", "2. Feature", "{86F6F902-A9B3-408F-8E23-2CCB46AFC036}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3. Foundation", "3. Foundation", "{BC50975C-41D6-42E4-B31D-4668BF3097A7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Configuration", "Configuration", "{4F86B5F9-CCE4-4DB2-8983-7B271E1D3AA6}"
ProjectSection(SolutionItems) = preProject
scripts\applytransform.targets = scripts\applytransform.targets
gulp-config.js = gulp-config.js
gulpfile.js = gulpfile.js
package.json = package.json
package.xml = package.xml
publishsettings.targets = publishsettings.targets
README.md = README.md
WebEssentials2015-Settings.json = WebEssentials2015-Settings.json
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TraceLogger", "TraceLogger", "{8A237AA4-BC13-4998-9074-32F8DDACDC33}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Foundation.TraceLogger", "src\Foundation\TraceLogger\code\Foundation.TraceLogger.csproj", "{4FD358BF-BA15-4621-AA18-F21C6B523EA9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
always|Any CPU = always|Any CPU
always|x64 = always|x64
ci|Any CPU = ci|Any CPU
ci|x64 = ci|x64
Cloud|Any CPU = Cloud|Any CPU
Cloud|x64 = Cloud|x64
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.always|Any CPU.ActiveCfg = always|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.always|Any CPU.Build.0 = always|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.always|x64.ActiveCfg = always|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.always|x64.Build.0 = always|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.ci|Any CPU.ActiveCfg = ci|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.ci|Any CPU.Build.0 = ci|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.ci|x64.ActiveCfg = ci|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.ci|x64.Build.0 = ci|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Cloud|Any CPU.ActiveCfg = ci|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Cloud|Any CPU.Build.0 = ci|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Cloud|x64.ActiveCfg = ci|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Cloud|x64.Build.0 = ci|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Debug|x64.ActiveCfg = Debug|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Debug|x64.Build.0 = Debug|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Release|Any CPU.Build.0 = Release|Any CPU
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Release|x64.ActiveCfg = Release|x64
{4FD358BF-BA15-4621-AA18-F21C6B523EA9}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8A237AA4-BC13-4998-9074-32F8DDACDC33} = {BC50975C-41D6-42E4-B31D-4668BF3097A7}
{4FD358BF-BA15-4621-AA18-F21C6B523EA9} = {8A237AA4-BC13-4998-9074-32F8DDACDC33}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A0CB39A0-36E0-4A13-A099-C8B976860B54}
EndGlobalSection
EndGlobal
58 changes: 58 additions & 0 deletions WebEssentials2015-Settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"BrowserLink": {
"CssIgnorePatterns": "bootstrap*; reset.css; normalize.css; jquery*; toastr*; foundation*; animate*; inuit*; elements*; ratchet*; hint*; flat-ui*; 960*; skeleton*",
"EnableMenu": true,
"EnablePixelPushing": true,
"ShowMenu": true
},
"CodeGen": {
"AddTypeScriptReferencePath": true,
"CamelCaseEnumerationValues": false,
"CamelCasePropertyNames": true,
"CamelCaseTypeNames": false
},
"Css": {
"ShowBrowserTooltip": true,
"ShowInitialInherit": false,
"SyncBase64ImageValues": true,
"SyncVendorValues": true,
"ValidateDuplicateSelectors": true,
"ValidateStarSelector": true,
"ValidateVendorSpecifics": true,
"ValidateZeroUnit": true,
"ValidationLocation": "Messages"
},
"General": {
"AllMessagesToOutputWindow": false,
"KeepImportantComments": true,
"ShowLogoWatermark": false,
"SvgPreviewPane": true
},
"Html": {
"AttributeQuotesRemovalMode": "KeepQuotes",
"CustomAngularDirectiveList": null,
"EnableBootstrapValidation": true,
"EnableEnterFormat": true,
"EnableFoundationValidation": true,
"EnableMicrodataValidation": true,
"MinifyAngularBindingExpressions": false,
"MinifyKnockoutBindingExpressions": false,
"ProcessableScriptTypeList": null
},
"JavaScript": {
"BlockCommentCompletion": true,
"EvalTreatment": "MakeImmediateSafe",
"TermSemicolons": true
},
"Markdown": {
"CompileOnBuild": false,
"CompileOnSave": true,
"GlobalPreviewCSSFile": null,
"GlobalPreviewHtmlTemplate": null,
"MinifyInPlace": false,
"OutputDirectory": null,
"RenderSoftLineBreaksAsLineBreaks": false,
"ShowPreviewPane": true,
"TrackSourcePosition": false
}
}
21 changes: 21 additions & 0 deletions appSettings.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<appSettings>
<add key="baseUrl" value="http://habitat.test5ua1.dk.sitecore.net" />
<add key="demoSiteUrl" value="http://demo.habitat.test5ua1.dk.sitecore.net/" />
<add key="registerUrl" value="/register" />
<add key="editUserProfileUrl" value="/en/Edit-Profile" />
<add key="loginPageUrl" value="/login" />
<add key="database" value="Web" />
<add key="testsProxyUrl" value="/tests.proxy.asmx" />
<add key="utfProxyUrl" value="/HelperWebService.asmx" />
<add key="forgotPasswordUrl" value="/Login/Forgot-Password" />
<add key="endSessionUrl" value="/endSession.aspx" />
<add key="endVisitUrl" value="/api/sitecore/Demo/EndVisit" />
<add key="rolesTemplates" value="{59D216D1-035C-4497-97B4-E3C5E9F1C06B}|{C9B1855E-CA80-4414-B5BA-956CB67DC5A9}|{26DF8F38-7E1B-43D2-85DD-68DF05FA276B}|{2D9AA1E4-3359-4F02-9EAA-5CF972FD990D}|{01628DCB-611F-495E-A1DA-E89027AB7035}|{1224B40E-7B6C-42B3-A6D0-C40A6C61345C}|{359AD0B9-20B5-49E7-A430-891D6E67BC5C}|{C6D4DDD5-B912-4C1A-A3A3-E1D90E4D0939}|{327D6873-A384-435A-BE87-7E869782B243}|{A7EBF38A-5F66-4579-92D1-568A8BA50293}|{9544F0B3-FD5E-4301-9DDE-9E73D2C3F7BA}|{3AF7DB6C-A602-4ABC-8D63-19E2D2C6726B}|{FA8DE5B9-D5D8-40A7-866A-23AF4F5A9629}|{748EBA96-3F0C-4F45-8AFB-DE8DCC707B84}|{04C34CF5-B7EA-4408-88E8-5FC851173DBD}|{1E6A8C8C-6646-4776-8AB4-615265669633}|{55A5BDAD-EB69-40F5-8195-CDA182E48EE4}|{A44E450E-BA3F-4FAF-9C53-C63241CC34EB}|{FAE0C913-1600-4EBA-95A9-4D6FD7407E25}|{AE4635AF-CFBF-4BF6-9B50-00BE23A910C0}|{5A1B724B-B396-4C48-A833-655CD19018E1}|{D339E56B-6A8A-46BD-A7D3-C9725D50DD4A}|{409F883A-0DC8-431A-9508-7316B59B92BE}|{D88CCD80-D851-470D-AF11-701FF23504E7}|{CF38E914-9298-47CC-9205-210553E79F97}|{0FCCFE4F-B087-498F-BD26-5CDFFC522C9A}|{A16B74E9-01B8-439C-B44E-42B3FB2EE14B}|{18BAF6B0-E0D6-4CCE-9184-A4849343E7E4}|{F9F4FC05-98D0-4C62-860F-F08AE7F0EE25}|{A1CBA309-D22B-46D5-80F8-2972C185363F}|{2F75C8AF-35FC-4A88-B585-7595203F442C}|{AF74A00B-8CA7-4C9A-A5C1-156A68590EE2}|{745652AE-3298-48B1-9BE1-99012D91F3AC}|{7ACA6ECF-1A80-4E35-97F5-DBAA8E3EC617}|{755F1188-D385-4717-8681-EF45F2258575}|{14E452CA-064D-48A8-9FF2-2744D10437A1}|{89D988BC-A9A7-43F5-A9FD-A05B0B164720}|{BDD24F35-05E8-4466-8798-7D3DD6A6C991}|{20A56D46-F5E3-4DB8-8B96-081575363D44}|{FEC0E62A-01FD-40E5-88F3-E5229FE79527}|{7CEAC341-B953-4C69-B907-EE44302BF6AE}|{91962B60-25F6-428F-8D10-02AA1E49D6A5}|{8FD6C8B6-A9A4-4322-947E-90CE3D94916D}|{C82DC5FF-09EF-4403-96D3-3CAF377B8C5B}|{BB85C5C2-9F87-48CE-8012-AF67CF4F765D}|{BCCFEBEA-DCCB-48FE-9570-6503829EC03F}|{BFDC1F27-3D2D-495F-89A3-0951F882420B}|{BA1EB1BD-E705-4BE6-A432-06B7F1B2F2CC}|{4176BFC2-7814-4FA5-ABCF-7FA0714BF05F}" />
<add key="demoSiteCampaignUrl" value="http://habitat.dev.local/?sc_camp={0BFFAF94-F523-452A-9F2A-1FA3292D4647}" />
<add key="SocialPageExperienceEditorUrl" value="/Modules/Feature/Social?sc_mode=edit" />
<add key="SocialPageUrl" value="/Modules/Feature/Social"/>
<add key="MainPageExperienceEditorUrl" value="/?sc_mode=edit"/>
<add key="GettingStartedPageUrl" value="/About-Habitat/Getting-Started" />
<add key="formsPageUrl" value="/Modules/Foundation/Forms/" />
<add key="employeeList" value="/Modules/Feature/Person/Employees-List" />
</appSettings>
15 changes: 15 additions & 0 deletions gulp-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = function () {
var instanceRoot = "C:\\Websites\\tracelogger.dev.local";
var config = {
websiteRoot: instanceRoot,
sitecoreLibraries: instanceRoot + "\\bin",
licensePath: instanceRoot + "\\App_Data\\license.xml",
solutionName: "TraceLogger",
buildConfiguration: "Debug",
buildPlatform: "Any CPU",
buildToolsVersion: 15.0, //change to 15.0 for VS2017 support
publishPlatform: "AnyCpu",
runCleanBuilds: false
};
return config;
}
Loading

0 comments on commit 8289308

Please sign in to comment.