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
| plugins { | |
| id 'java' | |
| } | |
| group 'de.d3adspace' | |
| version '1.0-SNAPSHOT' | |
| allprojects { |
- Clientlibs
- Find/see all ClientLibs: http://localhost:4502/libs/granite/ui/content/dumplibs.html
- See the expected HTML output of clientlib includes based on category: http://localhost:4502/libs/granite/ui/content/dumplibs.test.html
- Highlights any dependencies or embedded categories that cannot be found: http://localhost:4502/libs/granite/ui/content/dumplibs.validate.html
- Force AEM to rebuild ClientLibs via this url: http://localhost:4502/libs/granite/ui/content/dumplibs.rebuild.html
- CRX:
/crx/explorer/index.jsp - Link Checker – find broken links:
http://localhost:4502/etc/linkchecker.html - QueryBuilder: https://docs.adobe.com/docs/en/aem/6-3/develop/search/querybuilder-api.html
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
| <!--/* More: https://docs.adobe.com/docs/en/htl/docs/block-statements.html#resource */--> | |
| <!--/* By default, the AEM decoration tags are disabled, the decorationTagName option allows to bring them back, and the cssClassName to add classes to that element. */--> | |
| <div data-sly-resource="${'headline' @ | |
| resourceType='about-project/components/content/c34-section-headline', | |
| decorationTagName='span', | |
| cssClassName='className' | |
| }"></div> | |
| <!--/* More about the decoration tag: https://docs.adobe.com/docs/en/aem/6-3/develop/components/decoration-tag.html */--> |
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
| import 'package:js/js.dart'; | |
| void main() { | |
| int count = 10000; | |
| var startTime = new DateTime.now(); | |
| var jsonStrList = []; | |
| for (int i = 0; i < count; ++i) { | |
| jsonStrList.add(testJSInterop()); | |
| } | |
| var endTime = new DateTime.now(); |
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
| import org.junit.jupiter.api.Assertions.* | |
| import org.junit.jupiter.api.Test | |
| internal class BowlingKtTest { | |
| @Test | |
| fun `score is 0 when the player did not knock down any pins`() { | |
| assertEquals(0, Array(20, { 0 }).toList().score()) | |
| } | |
| @Test |
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
| class $NAME$ extends StatefulWidget { | |
| $NAME$({Key key, this.title}) : super(key: key); | |
| static const String routeName = "/$NAME$"; | |
| final String title; | |
| @override | |
| _$NAME$State createState() => new _$NAME$State(); | |
| } |
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
| The following start script has been tested with SLES 12 SP2, AEM 6.3 and Java 8u161. | |
| ------------------------------------------------------------------------------------------------------------- | |
| cat << 'EOF' > /etc/systemd/system/aem.service | |
| [Unit] | |
| Description=Adobe Experience Manager | |
| After=network.target | |
| [Service] | |
| Type=forking |
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
| <items jcr:primaryType="nt:unstructured"> | |
| <widgetAlways | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="granite/ui/components/foundation/form/textfield" | |
| fieldLabel="This always shows" | |
| name="./widgetAlways"/> | |
| <widgetHeaderChrome | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="granite/ui/components/foundation/form/textfield" | |
| fieldLabel="This only shows when header "User-Agent" contains "chrome"" |
NewerOlder