This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.nateyolles.aem; | |
| import org.apache.felix.scr.annotations.Reference; | |
| import org.apache.felix.scr.annotations.sling.SlingServlet; | |
| import org.apache.sling.api.SlingHttpServletRequest; | |
| import org.apache.sling.api.SlingHttpServletResponse; | |
| import org.apache.sling.api.servlets.SlingSafeMethodsServlet; | |
| import org.apache.sling.engine.SlingRequestProcessor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var SlingSettingsService = Packages.org.apache.sling.settings.SlingSettingsService; | |
| use(function () { | |
| // Get runmodes and transform them into an object that is easier to read for Sightly | |
| var runmodesObj = {}; | |
| var runmodesSet = sling.getService(SlingSettingsService).getRunModes(); | |
| var iterator = runmodesSet.iterator(); | |
| while (iterator.hasNext()) { | |
| runmodesObj[iterator.next()] = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* This OSGi service listens for events and creates a job for each one matching some conditions. */ | |
| @Component | |
| @Service | |
| @Properties({ | |
| // choose appropriate topic values | |
| @Property(name = EventConstants.EVENT_TOPIC, value = { | |
| SlingConstants.TOPIC_RESOURCE_CHANGED, | |
| SlingConstants.TOPIC_RESOURCE_ADDED, | |
| SlingConstants.TOPIC_RESOURCE_REMOVED | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #To find the We.Retail Specific changes, search for "We.Retail Alert" | |
| # Each farm configures a set of load balanced renders (i.e. remote servers) | |
| /farms | |
| { | |
| # First farm entry | |
| /website | |
| { | |
| # Request headers that should be forwarded to the remote server. | |
| /clientheaders |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
| jcr:primaryType="cq:Component" | |
| jcr:title="Rich Text" | |
| sling:resourceSuperType="core/wcm/components/text/v2/text" | |
| componentGroup="General"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This must be in a client library with the category cq.authoring.editor.hook | |
| /* global Granite, jQuery, document */ | |
| (function ($, channel) { | |
| 'use strict'; | |
| $(function () { | |
| var loadedTime = new Date(); | |
| channel.on('cq-layer-activated', function (event) { | |
| if (event.prevLayer && event.layer !== event.prevLayer) { | |
| var eventTime = new Date(); | |
| if (event.prevLayer !== 'Annotate' && event.layer !== 'Annotate' && (eventTime - loadedTime) > 1500) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This file is only here to provide the title of the gist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--/* We can define a list within a Sightly template to avoid redundant code */--> | |
| <sly data-sly-test.versions="${['desktop', 'mobile']}"/> | |
| <sly data-sly-list.identifier="${versions}"> | |
| <div class="element ${identifier}">Repeated content</div> | |
| </sly> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <sly data-sly-use.component="template.html" | |
| data-sly-call="${component.template @ properties=properties}" /> |
NewerOlder