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
| vlt --credentials admin:admin co http://localhost:4502/crx/-/jcr:root/mypage |
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
| /libs/granite/ui/content/dumplibs.rebuild.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
| <note | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="cq/gui/components/authoring/dialog/note" | |
| note="NoteText" /> |
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.mk.core.services; | |
| import com.adobe.granite.workflow.PayloadMap; | |
| import com.day.cq.replication.ReplicationAction; | |
| import com.day.cq.replication.ReplicationActionType; | |
| import com.day.cq.wcm.api.NameConstants; | |
| import com.day.cq.workflow.WorkflowException; | |
| import com.day.cq.workflow.WorkflowService; | |
| import com.day.cq.workflow.WorkflowSession; | |
| import com.day.cq.workflow.exec.WorkflowData; |
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
| ${request.requestParameterMap['test'][0].toString} |
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
| #!/usr/bin/env bash | |
| # Usage: | |
| #set SAVETOPATH | |
| # ./vltit.sh - l /content/some/path | |
| USERNAME=admin | |
| PASSWORD=admin | |
| SAVETOPATH="${HOME}/matt.kuckuck/myvlt"] | |
| HOST="http://localhost:4502" |
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
| #!/usr/bin/env bash | |
| # Add to .bash_profile: alias pushit='. /locationtofile/pushit.sh' | |
| CURRENT_BRANCH="$(git rev-parse --abbrev-ref HEAD)" | |
| echo "pushing to branch $CURRENT_BRANCH" | |
| git push origin $CURRENT_BRANCH |
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
| Querybuilder Debugger Tool | |
| http://localhost:4502/libs/cq/search/content/querydebug.html | |
| Standard Search based on brand | |
| fulltext=something | |
| 1_group.p.or=true | |
| 1_group.1_type=cq:Page | |
| 1_group.2_type=dam:Asset | |
| 2_group.p.or=true | |
| 2_group.1_path=/content/brand | |
| 2_group.2_path=/content/dam/branch |
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
| Coral.commons.ready(function () { | |
| try{ | |
| var $element = $('[data-target="touchui-reviewer-group-target"]'); | |
| if($element && $element.length > 0){ | |
| var jsonResponse = Granite.HTTP.eval('sampleUrl'); | |
| var select = CUI.Widget.fromElement(CUI.Select,$element); | |
| var selectList = CUI.Widget.fromElement(CUI.SelectList,select._selectList); | |
| jsonResponse.forEach(function(json) { | |
| var text = json.text; | |
| selectList.addOption({ |