├── .codeclimate.yml ├── .codeclimate ├── checkstyle.xml ├── header.txt └── pmd-ruleset.xml ├── .codecov.yml ├── .csslintrc ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── config.yml ├── stale.yml └── workflows │ └── maven.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── RELEASING.md ├── all ├── .gitignore ├── pom.xml └── src │ └── main │ ├── content │ └── META-INF │ │ └── vault │ │ └── filter.xml │ └── resources │ ├── META-INF │ ├── COPYRIGHT │ ├── LICENSE │ └── NOTICE │ └── thumbnail.png ├── bundle-cloud ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── adobe │ └── acs │ └── commons │ ├── email │ └── impl │ │ └── MailTemplateManagerImpl.java │ └── replication │ └── dispatcher │ └── impl │ ├── CloudDispatcherFlushRulesExecutor.java │ └── CloudDispatcherFlusher.java ├── bundle-onprem ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── acs │ │ │ └── commons │ │ │ ├── email │ │ │ └── impl │ │ │ │ └── MailTemplateManagerImpl.java │ │ │ └── logging │ │ │ └── impl │ │ │ └── SyslogAppender.java │ └── resources │ │ └── META-INF │ │ ├── COPYRIGHT │ │ └── LICENSE │ └── test │ └── java │ └── com │ └── adobe │ └── acs │ └── commons │ └── logging │ └── impl │ └── SyslogAppenderTest.java ├── bundle ├── .gitignore ├── bnd.bnd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── acs │ │ │ └── commons │ │ │ ├── adobeio │ │ │ └── service │ │ │ │ ├── EndpointService.java │ │ │ │ ├── IntegrationService.java │ │ │ │ ├── impl │ │ │ │ ├── AdobeioConstants.java │ │ │ │ ├── AdobeioHealthcheck.java │ │ │ │ ├── AdobeioHelper.java │ │ │ │ ├── AdobeioHelperImpl.java │ │ │ │ ├── EndpointConfiguration.java │ │ │ │ ├── EndpointServiceImpl.java │ │ │ │ ├── IntegrationConfiguration.java │ │ │ │ └── IntegrationServiceImpl.java │ │ │ │ └── package-info.java │ │ │ ├── aep │ │ │ └── impl │ │ │ │ └── FpidCookieServlet.java │ │ │ ├── analysis │ │ │ └── jcrchecksum │ │ │ │ ├── ChecksumGenerator.java │ │ │ │ ├── ChecksumGeneratorOptions.java │ │ │ │ ├── impl │ │ │ │ ├── ChecksumGeneratorImpl.java │ │ │ │ ├── JSONGenerator.java │ │ │ │ ├── options │ │ │ │ │ ├── AbstractChecksumGeneratorOptions.java │ │ │ │ │ ├── ChecksumGeneratorOptionsFactory.java │ │ │ │ │ ├── CustomChecksumGeneratorOptions.java │ │ │ │ │ ├── DefaultChecksumGeneratorOptions.java │ │ │ │ │ └── RequestChecksumGeneratorOptions.java │ │ │ │ └── servlets │ │ │ │ │ ├── BaseChecksumServlet.java │ │ │ │ │ ├── ChecksumGeneratorServlet.java │ │ │ │ │ ├── JSONDumpServlet.java │ │ │ │ │ └── ServletConstants.java │ │ │ │ └── package-info.java │ │ │ ├── assets │ │ │ ├── FileExtensionMimeTypeConstants.java │ │ │ └── package-info.java │ │ │ ├── audit_log_search │ │ │ ├── AuditLogSearchRequest.java │ │ │ ├── impl │ │ │ │ └── AuditLogSearchServlet.java │ │ │ └── package-info.java │ │ │ ├── auth │ │ │ └── saml │ │ │ │ └── impl │ │ │ │ └── OktaLogoutHandler.java │ │ │ ├── ccvar │ │ │ ├── ContentVariableProvider.java │ │ │ ├── PropertyAggregatorService.java │ │ │ ├── PropertyConfigService.java │ │ │ ├── TransformAction.java │ │ │ ├── filter │ │ │ │ ├── CapturingResponseWrapper.java │ │ │ │ ├── ContentVariableJsonFilter.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── AllPagePropertiesContentVariableProvider.java │ │ │ │ ├── PropertyAggregatorServiceImpl.java │ │ │ │ ├── PropertyConfigServiceImpl.java │ │ │ │ └── UrlEncodeAction.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ │ ├── ContentVariableReplacementUtil.java │ │ │ │ ├── PropertyAggregatorUtil.java │ │ │ │ └── package-info.java │ │ │ ├── cloudconfig │ │ │ ├── CloudConfiguration.java │ │ │ ├── CloudConfigurationList.java │ │ │ ├── impl │ │ │ │ ├── CloudConfigurationImpl.java │ │ │ │ ├── CloudConfigurationListImpl.java │ │ │ │ └── CreateCloudConfigServlet.java │ │ │ └── package-info.java │ │ │ ├── contentsync │ │ │ ├── CatalogItem.java │ │ │ ├── ConfigurationUtils.java │ │ │ ├── ContentCatalog.java │ │ │ ├── ContentCatalogJobConsumer.java │ │ │ ├── ContentReader.java │ │ │ ├── ContentSync.java │ │ │ ├── RemoteInstance.java │ │ │ ├── SyncHostConfiguration.java │ │ │ ├── UpdateStrategy.java │ │ │ ├── impl │ │ │ │ ├── AssetChecksumStrategy.java │ │ │ │ ├── EncryptPasswordPostProcessor.java │ │ │ │ └── LastModifiedStrategy.java │ │ │ ├── package-info.java │ │ │ └── servlet │ │ │ │ └── ContentCatalogServlet.java │ │ │ ├── cqsearch │ │ │ ├── QueryUtil.java │ │ │ ├── impl │ │ │ │ └── NodeExistsPredicateEvaluator.java │ │ │ └── package-info.java │ │ │ ├── dam │ │ │ ├── AbstractRenditionModifyingProcess.java │ │ │ ├── ColorConversion.java │ │ │ ├── DAMFunctions.java │ │ │ ├── RenditionPatternPicker.java │ │ │ ├── audio │ │ │ │ ├── AudioFunctions.java │ │ │ │ ├── impl │ │ │ │ │ ├── AudioException.java │ │ │ │ │ ├── AudioHelper.java │ │ │ │ │ ├── AudioHelperImpl.java │ │ │ │ │ ├── FFMpegAudioEncodeProcess.java │ │ │ │ │ └── FFMpegAudioUtils.java │ │ │ │ ├── package-info.java │ │ │ │ └── watson │ │ │ │ │ └── impl │ │ │ │ │ ├── TranscriptionProcess.java │ │ │ │ │ ├── TranscriptionService.java │ │ │ │ │ └── TranscriptionServiceImpl.java │ │ │ ├── impl │ │ │ │ ├── AddWatermarkToRenditionProcess.java │ │ │ │ ├── ColorConversionImpl.java │ │ │ │ ├── CopyAssetPublishUrlFeature.java │ │ │ │ ├── CustomComponentActivatorListServlet.java │ │ │ │ ├── MatteRenditionProcess.java │ │ │ │ └── ReviewTaskAssetMoverHandler.java │ │ │ └── package-info.java │ │ │ ├── data │ │ │ ├── CompositeVariant.java │ │ │ ├── Spreadsheet.java │ │ │ ├── Variant.java │ │ │ └── package-info.java │ │ │ ├── dispatcher │ │ │ └── impl │ │ │ │ └── PermissionSensitiveCacheServlet.java │ │ │ ├── email │ │ │ ├── EmailService.java │ │ │ ├── EmailServiceConstants.java │ │ │ ├── impl │ │ │ │ ├── EmailServiceImpl.java │ │ │ │ └── MailTemplateManager.java │ │ │ ├── package-info.java │ │ │ └── process │ │ │ │ └── impl │ │ │ │ ├── SendTemplatedEmailConstants.java │ │ │ │ ├── SendTemplatedEmailProcess.java │ │ │ │ └── SendTemplatedEmailUtils.java │ │ │ ├── errorpagehandler │ │ │ ├── ErrorPageHandlerService.java │ │ │ ├── cache │ │ │ │ └── impl │ │ │ │ │ ├── CacheEntry.java │ │ │ │ │ ├── ErrorPageCache.java │ │ │ │ │ ├── ErrorPageCacheImpl.java │ │ │ │ │ └── ErrorPageCacheMBean.java │ │ │ ├── impl │ │ │ │ ├── ErrorPageHandlerImpl.java │ │ │ │ └── StringLengthComparator.java │ │ │ └── package-info.java │ │ │ ├── etag │ │ │ └── impl │ │ │ │ └── EtagMessageDigestServletFilter.java │ │ │ ├── exporters │ │ │ └── impl │ │ │ │ ├── tags │ │ │ │ ├── Parameters.java │ │ │ │ ├── TagsExportService.java │ │ │ │ └── TagsExportServlet.java │ │ │ │ └── users │ │ │ │ ├── Constants.java │ │ │ │ ├── Parameters.java │ │ │ │ ├── UsersExportServlet.java │ │ │ │ ├── UsersInitServlet.java │ │ │ │ └── UsersSaveServlet.java │ │ │ ├── fam │ │ │ ├── ActionManager.java │ │ │ ├── ActionManagerConstants.java │ │ │ ├── ActionManagerFactory.java │ │ │ ├── CancelHandler.java │ │ │ ├── Failure.java │ │ │ ├── ThrottledTaskRunner.java │ │ │ ├── actions │ │ │ │ ├── ActionBatch.java │ │ │ │ ├── Actions.java │ │ │ │ ├── AssetActions.java │ │ │ │ ├── Filters.java │ │ │ │ ├── ReplicationActions.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── ActionManagerFactoryImpl.java │ │ │ │ ├── ActionManagerImpl.java │ │ │ │ ├── PriorityThreadPoolExecutor.java │ │ │ │ ├── ReusableResolver.java │ │ │ │ ├── RunningStatistic.java │ │ │ │ ├── ThrottledTaskRunnerImpl.java │ │ │ │ ├── ThrottledTaskRunnerStats.java │ │ │ │ ├── TimedRunnable.java │ │ │ │ └── TimedRunnableFuture.java │ │ │ ├── mbean │ │ │ │ ├── ActionManagerMBean.java │ │ │ │ ├── ThrottledTaskRunnerMBean.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── filefetch │ │ │ ├── FileFetchConfiguration.java │ │ │ ├── FileFetchMBean.java │ │ │ ├── FileFetcher.java │ │ │ ├── impl │ │ │ │ ├── FileFetchMBeanImpl.java │ │ │ │ └── FileFetcherImpl.java │ │ │ └── package-info.java │ │ │ ├── functions │ │ │ ├── CheckedBiConsumer.java │ │ │ ├── CheckedBiFunction.java │ │ │ ├── CheckedConsumer.java │ │ │ ├── CheckedFunction.java │ │ │ ├── CheckedSupplier.java │ │ │ ├── RoundRobin.java │ │ │ └── package-info.java │ │ │ ├── genericlists │ │ │ ├── GenericList.java │ │ │ ├── impl │ │ │ │ ├── GenericListAdapterFactory.java │ │ │ │ ├── GenericListImpl.java │ │ │ │ └── GenericListJsonResourceProvider.java │ │ │ └── package-info.java │ │ │ ├── granite │ │ │ └── ui │ │ │ │ └── components │ │ │ │ ├── CustomELVariableInjector.java │ │ │ │ ├── ELVariableProvider.java │ │ │ │ ├── NamespacedTransformedResourceProvider.java │ │ │ │ ├── impl │ │ │ │ ├── ContextualPageRootELVariableProvider.java │ │ │ │ ├── CustomELVariableInjectorImpl.java │ │ │ │ └── include │ │ │ │ │ ├── IncludeDecoratorFilterImpl.java │ │ │ │ │ ├── NamespaceDecoratedValueMapBuilder.java │ │ │ │ │ ├── NamespaceResourceWrapper.java │ │ │ │ │ └── NamespacedTransformedResourceProviderImpl.java │ │ │ │ └── package-info.java │ │ │ ├── hc │ │ │ └── impl │ │ │ │ ├── HealthCheckStatusEmailer.java │ │ │ │ └── SMTPMailServiceHealthCheck.java │ │ │ ├── http │ │ │ ├── HttpClientFactory.java │ │ │ ├── JsonObjectResponseHandler.java │ │ │ ├── headers │ │ │ │ └── impl │ │ │ │ │ ├── AbstractDispatcherCacheHeaderFilter.java │ │ │ │ │ ├── AbstractExpiresHeaderFilter.java │ │ │ │ │ ├── DailyExpiresHeaderFilter.java │ │ │ │ │ ├── DispatcherMaxAgeHeaderFilter.java │ │ │ │ │ ├── MonthlyExpiresHeaderFilter.java │ │ │ │ │ ├── PropertyBasedDispatcherMaxAgeHeaderFilter.java │ │ │ │ │ ├── ResourceBasedDispatcherMaxAgeHeaderFilter.java │ │ │ │ │ ├── ResourceTypeBasedDispatcherMaxAgeHeaderFilter.java │ │ │ │ │ └── WeeklyExpiresHeaderFilter.java │ │ │ ├── impl │ │ │ │ └── HttpClientFactoryImpl.java │ │ │ ├── injectors │ │ │ │ ├── AbstractHtmlRequestInjector.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── httpcache │ │ │ ├── config │ │ │ │ ├── AuthenticationStatusConfigConstants.java │ │ │ │ ├── HttpCacheConfig.java │ │ │ │ ├── HttpCacheConfigExtension.java │ │ │ │ ├── impl │ │ │ │ │ ├── AbstractKeyValueExtension.java │ │ │ │ │ ├── CombinedCacheConfigExtension.java │ │ │ │ │ ├── CombinedCacheKeyFactory.java │ │ │ │ │ ├── GroupHttpCacheConfigExtension.java │ │ │ │ │ ├── HttpCacheConfigComparator.java │ │ │ │ │ ├── HttpCacheConfigImpl.java │ │ │ │ │ ├── RequestCookieHttpCacheConfigExtension.java │ │ │ │ │ ├── RequestHeaderHttpCacheConfigExtension.java │ │ │ │ │ ├── RequestParameterHttpCacheConfigExtension.java │ │ │ │ │ ├── RequestPathHttpCacheConfigExtension.java │ │ │ │ │ ├── ResourcePropertiesHttpCacheConfigExtension.java │ │ │ │ │ ├── ResourceTypeHttpCacheConfigExtension.java │ │ │ │ │ └── keys │ │ │ │ │ │ ├── CombinedCacheKey.java │ │ │ │ │ │ ├── GroupCacheKey.java │ │ │ │ │ │ ├── KeyValueCacheKey.java │ │ │ │ │ │ ├── RequestPathCacheKey.java │ │ │ │ │ │ └── ResourcePathCacheKey.java │ │ │ │ └── package-info.java │ │ │ ├── engine │ │ │ │ ├── CacheContent.java │ │ │ │ ├── HttpCacheEngine.java │ │ │ │ ├── HttpCacheServletResponseWrapper.java │ │ │ │ ├── impl │ │ │ │ │ ├── HttpCacheEngineImpl.java │ │ │ │ │ ├── HttpCacheEngineMBean.java │ │ │ │ │ ├── TeePrintWriter.java │ │ │ │ │ ├── TeeServletOutputStream.java │ │ │ │ │ └── delegate │ │ │ │ │ │ ├── HttpCacheEngineBindingsDelegate.java │ │ │ │ │ │ └── HttpCacheEngineMBeanDelegate.java │ │ │ │ └── package-info.java │ │ │ ├── exception │ │ │ │ ├── HttpCacheConfigConflictException.java │ │ │ │ ├── HttpCacheDataStreamException.java │ │ │ │ ├── HttpCacheException.java │ │ │ │ ├── HttpCacheKeyCreationException.java │ │ │ │ ├── HttpCachePersistenceException.java │ │ │ │ ├── HttpCacheRepositoryAccessException.java │ │ │ │ └── package-info.java │ │ │ ├── filter │ │ │ │ └── impl │ │ │ │ │ ├── AbstractHttpCacheFilter.java │ │ │ │ │ ├── HttpCacheIncludeFilter.java │ │ │ │ │ └── HttpCacheRequestFilter.java │ │ │ ├── invalidator │ │ │ │ ├── CacheInvalidationJobConstants.java │ │ │ │ ├── HttpCacheInvalidationJobConsumer.java │ │ │ │ ├── event │ │ │ │ │ ├── JCRNodeChangeEventHandler.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── keys │ │ │ │ ├── AbstractCacheKey.java │ │ │ │ ├── CacheKey.java │ │ │ │ ├── CacheKeyFactory.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── rule │ │ │ │ ├── AbstractHttpCacheHandlingRule.java │ │ │ │ ├── HttpCacheHandlingRule.java │ │ │ │ ├── impl │ │ │ │ │ ├── CacheOnlyGetRequest.java │ │ │ │ │ ├── CacheOnlyResponse200.java │ │ │ │ │ ├── DoNotCacheRequestWithQueryString.java │ │ │ │ │ ├── DoNotCacheZeroSizeResponse.java │ │ │ │ │ ├── HonorCacheControlHeaders.java │ │ │ │ │ └── MarkResponseAsCacheDelivered.java │ │ │ │ └── package-info.java │ │ │ ├── store │ │ │ │ ├── HttpCacheStore.java │ │ │ │ ├── TempSink.java │ │ │ │ ├── caffeine │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AbstractCaffeineCacheMBean.java │ │ │ │ │ │ ├── CacheExpiryPolicy.java │ │ │ │ │ │ ├── CaffeineCacheMBean.java │ │ │ │ │ │ └── CaffeineMemHttpCacheStoreImpl.java │ │ │ │ ├── disk │ │ │ │ │ └── impl │ │ │ │ │ │ └── DiskHttpCacheStoreImpl.java │ │ │ │ ├── jcr │ │ │ │ │ └── impl │ │ │ │ │ │ ├── JCRHttpCacheStoreConstants.java │ │ │ │ │ │ ├── JCRHttpCacheStoreImpl.java │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ └── BucketNodeFactoryException.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── BucketNodeHandler.java │ │ │ │ │ │ ├── EntryNodeToCacheContentHandler.java │ │ │ │ │ │ └── EntryNodeToCacheKeyHandler.java │ │ │ │ │ │ ├── visitor │ │ │ │ │ │ ├── AbstractNodeVisitor.java │ │ │ │ │ │ ├── AllEntryNodesCountVisitor.java │ │ │ │ │ │ ├── EntryNodeByStringKeyVisitor.java │ │ │ │ │ │ ├── EntryNodeMapVisitor.java │ │ │ │ │ │ ├── ExpiredNodesVisitor.java │ │ │ │ │ │ ├── InvalidateAllNodesVisitor.java │ │ │ │ │ │ ├── InvalidateByCacheConfigVisitor.java │ │ │ │ │ │ └── TotalCacheSizeVisitor.java │ │ │ │ │ │ └── writer │ │ │ │ │ │ ├── BucketNodeFactory.java │ │ │ │ │ │ └── EntryNodeWriter.java │ │ │ │ ├── mem │ │ │ │ │ └── impl │ │ │ │ │ │ ├── MemCacheMBean.java │ │ │ │ │ │ ├── MemCachePersistenceObject.java │ │ │ │ │ │ ├── MemHttpCacheStoreImpl.java │ │ │ │ │ │ └── MemTempSinkImpl.java │ │ │ │ └── package-info.java │ │ │ └── util │ │ │ │ ├── CacheUtils.java │ │ │ │ ├── UserUtils.java │ │ │ │ └── package-info.java │ │ │ ├── i18n │ │ │ ├── I18nProvider.java │ │ │ ├── impl │ │ │ │ ├── Config.java │ │ │ │ └── I18nProviderImpl.java │ │ │ └── package-info.java │ │ │ ├── images │ │ │ ├── ImageTransformer.java │ │ │ ├── NamedImageTransformer.java │ │ │ ├── impl │ │ │ │ ├── NamedImageTransformerImpl.java │ │ │ │ ├── NamedTransformImageServlet.java │ │ │ │ ├── ProgressiveJpeg.java │ │ │ │ ├── SocialImageImpl.java │ │ │ │ └── SocialRemoteImageImpl.java │ │ │ ├── package-info.java │ │ │ └── transformers │ │ │ │ └── impl │ │ │ │ ├── AdjustImageTransformerImpl.java │ │ │ │ ├── BoundedResizeTransformerImpl.java │ │ │ │ ├── CropImageTransformerImpl.java │ │ │ │ ├── GreyscaleImageTransformerImpl.java │ │ │ │ ├── LetterPillarBoxImageTransformerImpl.java │ │ │ │ ├── MultiplyBlendImageTransformerImpl.java │ │ │ │ ├── RGBShiftImageTransformerImpl.java │ │ │ │ ├── ResizeImageTransformerImpl.java │ │ │ │ ├── RotateImageTransformerImpl.java │ │ │ │ ├── ScaleImageTransformerImpl.java │ │ │ │ ├── SharpenImageTransformerImpl.java │ │ │ │ └── composites │ │ │ │ ├── MultiplyBlendComposite.java │ │ │ │ └── contexts │ │ │ │ ├── ColorMask.java │ │ │ │ └── MultiplyCompositeContext.java │ │ │ ├── indesign │ │ │ └── dynamicdeckdynamo │ │ │ │ ├── constants │ │ │ │ ├── DynamicDeckDynamoConstants.java │ │ │ │ ├── DynamicDeckDynamoIDSConstants.java │ │ │ │ └── package-info.java │ │ │ │ ├── exception │ │ │ │ ├── DynamicDeckDynamoException.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── CollectionSelectComponent.java │ │ │ │ ├── DynamicDeckInitiatorPageModel.java │ │ │ │ ├── GenericListSelectComponent.java │ │ │ │ └── package-info.java │ │ │ │ ├── services │ │ │ │ ├── DynamicDeckConfigurationService.java │ │ │ │ ├── DynamicDeckService.java │ │ │ │ ├── XMLGeneratorService.java │ │ │ │ ├── impl │ │ │ │ │ ├── DynamicDeckConfiguration.java │ │ │ │ │ ├── DynamicDeckConfigurationServiceImpl.java │ │ │ │ │ ├── DynamicDeckServiceImpl.java │ │ │ │ │ └── XMLGeneratorServiceImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── servlets │ │ │ │ └── impl │ │ │ │ │ └── TriggerDeckDynamoServlet.java │ │ │ │ ├── utils │ │ │ │ ├── DynamicDeckUtils.java │ │ │ │ ├── XMLResourceIterator.java │ │ │ │ └── package-info.java │ │ │ │ └── workflow │ │ │ │ └── processes │ │ │ │ └── impl │ │ │ │ └── DynamicDeckBackTrackProcess.java │ │ │ ├── json │ │ │ ├── AbstractJSONObjectVisitor.java │ │ │ ├── JcrJsonAdapter.java │ │ │ ├── JsonObjectUtil.java │ │ │ └── package-info.java │ │ │ ├── logging │ │ │ └── impl │ │ │ │ └── JsonEventLogger.java │ │ │ ├── marketo │ │ │ ├── FormValue.java │ │ │ ├── MarketoClientConfiguration.java │ │ │ ├── MarketoClientConfigurationManager.java │ │ │ ├── MarketoForm.java │ │ │ ├── client │ │ │ │ ├── MarketoApiException.java │ │ │ │ ├── MarketoClient.java │ │ │ │ ├── MarketoError.java │ │ │ │ ├── MarketoField.java │ │ │ │ ├── MarketoForm.java │ │ │ │ ├── MarketoResponse.java │ │ │ │ ├── impl │ │ │ │ │ ├── MarketoClientImpl.java │ │ │ │ │ ├── MarketoFieldResponse.java │ │ │ │ │ └── MarketoFormResponse.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── FormValueImpl.java │ │ │ │ ├── MarketoClientConfigurationImpl.java │ │ │ │ ├── MarketoClientConfigurationManagerImpl.java │ │ │ │ ├── MarketoFieldDataSource.java │ │ │ │ ├── MarketoFormDataSource.java │ │ │ │ ├── MarketoFormImpl.java │ │ │ │ └── TestMarketoConnectionServlet.java │ │ │ └── package-info.java │ │ │ ├── mcp │ │ │ ├── AdministratorsOnlyProcessDefinitionFactory.java │ │ │ ├── AuthorizedGroupProcessDefinitionFactory.java │ │ │ ├── ControlledProcessManager.java │ │ │ ├── DynamicScriptResolverService.java │ │ │ ├── McpLocalizationService.java │ │ │ ├── ProcessDefinition.java │ │ │ ├── ProcessDefinitionFactory.java │ │ │ ├── ProcessInstance.java │ │ │ ├── form │ │ │ │ ├── AbstractContainerComponent.java │ │ │ │ ├── AbstractGroupingContainerComponent.java │ │ │ │ ├── AbstractResourceImpl.java │ │ │ │ ├── AutocompleteComponent.java │ │ │ │ ├── ButtonComponent.java │ │ │ │ ├── CheckboxComponent.java │ │ │ │ ├── ContainerComponent.java │ │ │ │ ├── DatePickerComponent.java │ │ │ │ ├── Description.java │ │ │ │ ├── DialogProvider.java │ │ │ │ ├── DialogProviderAnnotationProcessor.java │ │ │ │ ├── DialogResourceProvider.java │ │ │ │ ├── FieldComponent.java │ │ │ │ ├── FieldsetComponent.java │ │ │ │ ├── FileUploadComponent.java │ │ │ │ ├── FormComponent.java │ │ │ │ ├── FormField.java │ │ │ │ ├── FormProcessor.java │ │ │ │ ├── GeneratedDialog.java │ │ │ │ ├── GeneratedDialogWrapper.java │ │ │ │ ├── MultifieldComponent.java │ │ │ │ ├── NumberfieldComponent.java │ │ │ │ ├── PasswordComponent.java │ │ │ │ ├── PathfieldComponent.java │ │ │ │ ├── RadioComponent.java │ │ │ │ ├── ReadonlyTextfieldComponent.java │ │ │ │ ├── RichTextEditorComponent.java │ │ │ │ ├── SelectComponent.java │ │ │ │ ├── TagPickerComponent.java │ │ │ │ ├── TextareaComponent.java │ │ │ │ ├── TextfieldComponent.java │ │ │ │ ├── package-info.java │ │ │ │ └── workflow │ │ │ │ │ ├── WorkflowModelSelector.java │ │ │ │ │ ├── WorkflowStatusSelector.java │ │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── ControlledProcessManagerImpl.java │ │ │ │ ├── ControlledProcessManagerServlet.java │ │ │ │ ├── DialogResourceProviderImpl.java │ │ │ │ ├── GenericReportExcelServlet.java │ │ │ │ ├── McpLocalizationConfiguration.java │ │ │ │ ├── McpLocalizationServiceImpl.java │ │ │ │ ├── ProcessErrorReportExcelServlet.java │ │ │ │ ├── ProcessInstanceImpl.java │ │ │ │ └── processes │ │ │ │ │ ├── AssetFolderCreator.java │ │ │ │ │ ├── AssetFolderCreatorFactory.java │ │ │ │ │ ├── AssetReport.java │ │ │ │ │ ├── AssetReportFactory.java │ │ │ │ │ ├── BrokenLinksReport.java │ │ │ │ │ ├── BrokenLinksReportFactory.java │ │ │ │ │ ├── BulkPageTagger.java │ │ │ │ │ ├── BulkPageTaggerFactory.java │ │ │ │ │ ├── BulkWorkflow.java │ │ │ │ │ ├── BulkWorkflowFactory.java │ │ │ │ │ ├── DataImporter.java │ │ │ │ │ ├── DataImporterFactory.java │ │ │ │ │ ├── DeepPrune.java │ │ │ │ │ ├── DeepPruneFactory.java │ │ │ │ │ ├── ProcessCleanup.java │ │ │ │ │ ├── ProcessCleanupFactory.java │ │ │ │ │ ├── ReferenceFinder.java │ │ │ │ │ ├── RefreshFolderThumbnailsFactory.java │ │ │ │ │ ├── RefreshFolderTumbnails.java │ │ │ │ │ ├── TagCreator.java │ │ │ │ │ ├── TagCreatorFactory.java │ │ │ │ │ ├── TagReportFactory.java │ │ │ │ │ ├── TagReporter.java │ │ │ │ │ ├── TreeReplication.java │ │ │ │ │ ├── TreeReplicationFactory.java │ │ │ │ │ ├── WorkflowRemover.java │ │ │ │ │ ├── WorkflowRemoverFactory.java │ │ │ │ │ ├── asset │ │ │ │ │ ├── AssetIngestor.java │ │ │ │ │ ├── AssetIngestorException.java │ │ │ │ │ ├── ClientProvider.java │ │ │ │ │ ├── FileAssetIngestor.java │ │ │ │ │ ├── FileAssetIngestorFactory.java │ │ │ │ │ ├── FileOrRendition.java │ │ │ │ │ ├── Folder.java │ │ │ │ │ ├── HierarchicalElement.java │ │ │ │ │ ├── NameUtil.java │ │ │ │ │ ├── NamesFilter.java │ │ │ │ │ ├── S3AssetIngestor.java │ │ │ │ │ ├── S3AssetIngestorFactory.java │ │ │ │ │ ├── Source.java │ │ │ │ │ ├── UrlAssetImport.java │ │ │ │ │ └── UrlAssetImportFactory.java │ │ │ │ │ ├── cfi │ │ │ │ │ ├── ContentFragmentImport.java │ │ │ │ │ └── ContentFragmentImportFactory.java │ │ │ │ │ └── renovator │ │ │ │ │ ├── MovingAsset.java │ │ │ │ │ ├── MovingException.java │ │ │ │ │ ├── MovingFolder.java │ │ │ │ │ ├── MovingNode.java │ │ │ │ │ ├── MovingPage.java │ │ │ │ │ ├── MovingResource.java │ │ │ │ │ ├── Renovator.java │ │ │ │ │ ├── RenovatorFactory.java │ │ │ │ │ ├── ReplicatorQueue.java │ │ │ │ │ └── Util.java │ │ │ ├── mbean │ │ │ │ ├── CPMBean.java │ │ │ │ └── package-info.java │ │ │ ├── model │ │ │ │ ├── AbstractReport.java │ │ │ │ ├── ArchivedProcessFailure.java │ │ │ │ ├── AvailableProcessDefinitions.java │ │ │ │ ├── FieldFormat.java │ │ │ │ ├── GenericBlobReport.java │ │ │ │ ├── GenericReport.java │ │ │ │ ├── ManagedProcess.java │ │ │ │ ├── Result.java │ │ │ │ ├── ValueFormat.java │ │ │ │ ├── impl │ │ │ │ │ └── ArchivedProcessInstance.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ │ ├── AccessibleObjectUtil.java │ │ │ │ ├── AnnotatedFieldDeserializer.java │ │ │ │ ├── DeserializeException.java │ │ │ │ ├── FrozenAsset.java │ │ │ │ ├── FrozenRendition.java │ │ │ │ ├── IntrospectionUtil.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── SyntheticResourceBuilder.java │ │ │ │ ├── ValueMapSerializer.java │ │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── injectors │ │ │ │ ├── annotation │ │ │ │ │ ├── AemObject.java │ │ │ │ │ ├── ChildResourceFromRequest.java │ │ │ │ │ ├── ContentPolicyValue.java │ │ │ │ │ ├── HierarchicalPageProperty.java │ │ │ │ │ ├── I18N.java │ │ │ │ │ ├── JsonValueMapValue.java │ │ │ │ │ ├── PageProperty.java │ │ │ │ │ ├── ParentResourceValueMapValue.java │ │ │ │ │ ├── SharedValueMapValue.java │ │ │ │ │ ├── TagProperty.java │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── AemObjectAnnotationProcessorFactory.java │ │ │ │ │ │ ├── ChildResourceFromRequestAnnotationProcessorFactory.java │ │ │ │ │ │ ├── ContentPolicyValueAnnotationProcessorFactory.java │ │ │ │ │ │ ├── HierarchicalPagePropertyAnnotationProcessorFactory.java │ │ │ │ │ │ ├── I18NAnnotationProcessorFactory.java │ │ │ │ │ │ ├── JsonValueMapValueAnnotationProcessorFactory.java │ │ │ │ │ │ ├── PagePropertyAnnotationProcessorFactory.java │ │ │ │ │ │ ├── ParentResourceValueMapValueAnnotationProcessorFactory.java │ │ │ │ │ │ ├── SharedValueMapValueAnnotationProcessorFactory.java │ │ │ │ │ │ └── TagPropertyAnnotationProcessorFactory.java │ │ │ │ │ └── package-info.java │ │ │ │ └── impl │ │ │ │ │ ├── AemObjectInjector.java │ │ │ │ │ ├── ChildResourceFromRequestInjector.java │ │ │ │ │ ├── ContentPolicyValueInjector.java │ │ │ │ │ ├── HierarchicalPagePropertyInjector.java │ │ │ │ │ ├── I18nInjector.java │ │ │ │ │ ├── InjectorUtils.java │ │ │ │ │ ├── JsonValueMapValueInjector.java │ │ │ │ │ ├── ParentResourceValueMapValueInjector.java │ │ │ │ │ ├── SharedValueMapValueInjector.java │ │ │ │ │ └── TagPropertyInjector.java │ │ │ └── via │ │ │ │ ├── annotations │ │ │ │ ├── ContentPolicyViaType.java │ │ │ │ ├── PageContentResourceViaType.java │ │ │ │ └── package-info.java │ │ │ │ └── impl │ │ │ │ ├── ContentPolicyPropertiesViaProvider.java │ │ │ │ └── PageContentResourceViaProvider.java │ │ │ ├── notifications │ │ │ ├── InboxNotification.java │ │ │ ├── InboxNotificationSender.java │ │ │ ├── impl │ │ │ │ ├── InboxNotificationImpl.java │ │ │ │ └── InboxNotificationSenderImpl.java │ │ │ └── package-info.java │ │ │ ├── oak │ │ │ ├── EnsureOakIndexManager.java │ │ │ ├── impl │ │ │ │ ├── AppliableEnsureOakIndex.java │ │ │ │ ├── EnsureOakIndex.java │ │ │ │ ├── EnsureOakIndexJobHandler.java │ │ │ │ ├── EnsureOakIndexManagerImpl.java │ │ │ │ ├── EnsureOakIndexManagerMBean.java │ │ │ │ └── EnsureOakIndexServlet.java │ │ │ ├── package-info.java │ │ │ └── sql2scorer │ │ │ │ └── impl │ │ │ │ └── servlets │ │ │ │ └── ExplainScoreServlet.java │ │ │ ├── ondeploy │ │ │ ├── OnDeployExecutor.java │ │ │ ├── OnDeployScriptProvider.java │ │ │ ├── impl │ │ │ │ ├── OnDeployEarlyTerminationException.java │ │ │ │ ├── OnDeployExecutorImpl.java │ │ │ │ └── OnDeployExecutorMBean.java │ │ │ ├── package-info.java │ │ │ └── scripts │ │ │ │ ├── OnDeployScript.java │ │ │ │ ├── OnDeployScriptBase.java │ │ │ │ ├── OnDeployScriptException.java │ │ │ │ └── package-info.java │ │ │ ├── packagegarbagecollector │ │ │ ├── PackageGarbageCollectionConfig.java │ │ │ ├── PackageGarbageCollectionJob.java │ │ │ ├── PackageGarbageCollectionScheduler.java │ │ │ └── package-info.java │ │ │ ├── packaging │ │ │ ├── PackageHelper.java │ │ │ ├── impl │ │ │ │ ├── ACLPackagerServletImpl.java │ │ │ │ ├── AbstractPackagerServlet.java │ │ │ │ ├── AssetPackagerServletImpl.java │ │ │ │ ├── AuthorizablePackagerServletImpl.java │ │ │ │ ├── InstantPackageImpl.java │ │ │ │ ├── JcrPackageCoverageProgressListener.java │ │ │ │ ├── PackageHelperImpl.java │ │ │ │ └── QueryPackagerServletImpl.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ │ ├── AssetPackageUtil.java │ │ │ │ └── package-info.java │ │ │ ├── redirectmaps │ │ │ ├── impl │ │ │ │ ├── AddEntryServlet.java │ │ │ │ ├── FakeHttpServletRequest.java │ │ │ │ ├── RedirectEntriesServlet.java │ │ │ │ ├── RedirectEntriesUtils.java │ │ │ │ ├── RedirectMapServlet.java │ │ │ │ ├── RemoveEntryServlet.java │ │ │ │ └── UpdateEntryServlet.java │ │ │ ├── models │ │ │ │ ├── MapEntry.java │ │ │ │ ├── RedirectConfigModel.java │ │ │ │ ├── RedirectMapModel.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── redirects │ │ │ ├── LocationHeaderAdjuster.java │ │ │ ├── filter │ │ │ │ ├── RedirectFilter.java │ │ │ │ ├── RedirectFilterMBean.java │ │ │ │ └── package-info.java │ │ │ ├── models │ │ │ │ ├── Configurations.java │ │ │ │ ├── ExportColumn.java │ │ │ │ ├── HandleQueryString.java │ │ │ │ ├── ImportLog.java │ │ │ │ ├── RedirectConfiguration.java │ │ │ │ ├── RedirectMatch.java │ │ │ │ ├── RedirectRule.java │ │ │ │ ├── RedirectState.java │ │ │ │ ├── Redirects.java │ │ │ │ ├── SubstitutionElement.java │ │ │ │ ├── UpgradeLegacyRedirects.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── servlets │ │ │ │ ├── CreateRedirectConfigurationServlet.java │ │ │ │ ├── ExportRedirectMapServlet.java │ │ │ │ ├── ImportRedirectMapServlet.java │ │ │ │ ├── RewriteMapServlet.java │ │ │ │ └── package-info.java │ │ │ ├── remoteassets │ │ │ ├── RemoteAssetsBinarySync.java │ │ │ ├── RemoteAssetsNodeSync.java │ │ │ ├── RemoteAssetsNodeSyncTriggerMBean.java │ │ │ ├── impl │ │ │ │ ├── RemoteAssetDecorator.java │ │ │ │ ├── RemoteAssets.java │ │ │ │ ├── RemoteAssetsBinarySyncImpl.java │ │ │ │ ├── RemoteAssetsConfigImpl.java │ │ │ │ ├── RemoteAssetsNodeSyncImpl.java │ │ │ │ ├── RemoteAssetsNodeSyncScheduler.java │ │ │ │ ├── RemoteAssetsNodeSyncTrigger.java │ │ │ │ └── RemoteAssetsServiceException.java │ │ │ └── package-info.java │ │ │ ├── replication │ │ │ ├── AemPublishAgentFilter.java │ │ │ ├── AgentHosts.java │ │ │ ├── AgentIdsAgentFilter.java │ │ │ ├── BrandPortalAgentFilter.java │ │ │ ├── ReplicateVersion.java │ │ │ ├── ReplicationResult.java │ │ │ ├── dispatcher │ │ │ │ ├── DispatcherFlushFilter.java │ │ │ │ ├── DispatcherFlushRules.java │ │ │ │ ├── DispatcherFlusher.java │ │ │ │ ├── DispatcherFlusherModel.java │ │ │ │ ├── FlushAggregateHandler.java │ │ │ │ ├── impl │ │ │ │ │ ├── DispatcherFlushModelImpl.java │ │ │ │ │ ├── DispatcherFlushRulesImpl.java │ │ │ │ │ ├── DispatcherFlusherImpl.java │ │ │ │ │ ├── DispatcherFlusherServlet.java │ │ │ │ │ ├── RefetchFlushContentBuilderImpl.java │ │ │ │ │ └── ReplicationResultListener.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── AgentHostsImpl.java │ │ │ │ ├── ReplicateVersionImpl.java │ │ │ │ └── ReplicateVersionServlet.java │ │ │ ├── package-info.java │ │ │ ├── packages │ │ │ │ └── automatic │ │ │ │ │ ├── AutomaticPackageReplicatorMBean.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── AutomaticPackageReplicatorJob.java │ │ │ │ │ ├── ConfigurationUpdateListener.java │ │ │ │ │ └── ReplicatePackageProcess.java │ │ │ │ │ ├── model │ │ │ │ │ ├── AutomaticPackageReplicatorModel.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ └── status │ │ │ │ ├── ReplicationStatusManager.java │ │ │ │ ├── impl │ │ │ │ ├── JcrPackageReplicationStatusEventHandler.java │ │ │ │ ├── ReplicatedByWorkflowProcess.java │ │ │ │ ├── ReplicationStatusManagerImpl.java │ │ │ │ └── SetReplicationStatusProcess.java │ │ │ │ └── package-info.java │ │ │ ├── reports │ │ │ ├── api │ │ │ │ ├── ReportCellCSVExporter.java │ │ │ │ ├── ReportException.java │ │ │ │ ├── ReportExecutor.java │ │ │ │ ├── ResultsPage.java │ │ │ │ └── package-info.java │ │ │ ├── internal │ │ │ │ ├── DelimiterConfiguration.java │ │ │ │ ├── ExporterUtil.java │ │ │ │ ├── PredictedTagsUtil.java │ │ │ │ ├── ReportCSVExportServlet.java │ │ │ │ ├── ReportExecutorProvider.java │ │ │ │ ├── ReportsRenderCondition.java │ │ │ │ ├── datasources │ │ │ │ │ └── DynamicSelectDataSource.java │ │ │ │ └── package-info.java │ │ │ └── models │ │ │ │ ├── ContainingPageReportCellCSVExporter.java │ │ │ │ ├── DateReportCellCSVExporter.java │ │ │ │ ├── PageReplicationStatusModel.java │ │ │ │ ├── PathListReportConfig.java │ │ │ │ ├── PathListReportExecutor.java │ │ │ │ ├── PathReportCellCSVExporter.java │ │ │ │ ├── PredictedTag.java │ │ │ │ ├── PredictedTagReportCellCSVExporter.java │ │ │ │ ├── PredictedTagsCellValue.java │ │ │ │ ├── QueryReportConfig.java │ │ │ │ ├── QueryReportExecutor.java │ │ │ │ ├── ReferencesModel.java │ │ │ │ ├── ReportCellValue.java │ │ │ │ ├── ReportRunner.java │ │ │ │ ├── StringReportCellCSVExporter.java │ │ │ │ ├── TagReportCellCSVExporter.java │ │ │ │ ├── TagsCellValue.java │ │ │ │ └── package-info.java │ │ │ ├── rewriter │ │ │ ├── ContentHandlerBasedTransformer.java │ │ │ ├── DelegatingTransformer.java │ │ │ ├── impl │ │ │ │ ├── ContentHandlerAdapter.java │ │ │ │ ├── ContentVariableTransformer.java │ │ │ │ ├── ContentVariableTransformerFactory.java │ │ │ │ ├── PlainXMLSerializer.java │ │ │ │ ├── PlainXMLSerializerFactory.java │ │ │ │ ├── ResourceResolverMapTransformerFactory.java │ │ │ │ ├── SaxElementUtils.java │ │ │ │ ├── StaticReferenceRewriteTransformerFactory.java │ │ │ │ ├── StylesheetInlinerTransformerFactory.java │ │ │ │ ├── VersionedClientLibraryMd5CacheKey.java │ │ │ │ ├── VersionedClientlibsTransformerFactory.java │ │ │ │ ├── XMLParserGenerator.java │ │ │ │ └── XMLParserGeneratorFactory.java │ │ │ └── package-info.java │ │ │ ├── scripting │ │ │ └── impl │ │ │ │ └── QueryBuilderBindingsValuesProvider.java │ │ │ ├── social │ │ │ └── linkedin │ │ │ │ ├── LinkedInApi20.java │ │ │ │ └── package-info.java │ │ │ ├── sorter │ │ │ ├── NodeSorter.java │ │ │ ├── SortNodesOperation.java │ │ │ ├── Sorters.java │ │ │ ├── SortersPojo.java │ │ │ ├── impl │ │ │ │ ├── HierarchyNodeComparator.java │ │ │ │ ├── NodeNameSorter.java │ │ │ │ ├── NodeTitleSorter.java │ │ │ │ └── SortersImpl.java │ │ │ └── package-info.java │ │ │ ├── synth │ │ │ ├── Synthesizer.java │ │ │ ├── WrappedRequestPathInfo.java │ │ │ ├── children │ │ │ │ ├── ChildrenAsPropertyResource.java │ │ │ │ ├── InvalidDataFormatException.java │ │ │ │ ├── SyntheticChildAsPropertyResource.java │ │ │ │ ├── impl │ │ │ │ │ └── JSONModifiableValueMapDecorator.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── SynthesizedResource.java │ │ │ │ └── SynthesizedSlingHttpServletRequest.java │ │ │ └── package-info.java │ │ │ ├── throttling │ │ │ ├── CpuLoadEstimator.java │ │ │ ├── LoadEstimator.java │ │ │ ├── RequestThrottler.java │ │ │ ├── ThrottlingConfiguration.java │ │ │ ├── ThrottlingDecision.java │ │ │ ├── ThrottlingState.java │ │ │ └── package-info.java │ │ │ ├── twitter │ │ │ ├── TwitterClient.java │ │ │ ├── impl │ │ │ │ ├── TwitterAdapterFactory.java │ │ │ │ ├── TwitterAdapterFactoryRegisterer.java │ │ │ │ ├── TwitterClientImpl.java │ │ │ │ ├── TwitterFeedScheduler.java │ │ │ │ ├── TwitterFeedUpdater.java │ │ │ │ └── TwitterFeedUpdaterImpl.java │ │ │ └── package-info.java │ │ │ ├── users │ │ │ └── impl │ │ │ │ ├── AbstractAuthorizable.java │ │ │ │ ├── Ace.java │ │ │ │ ├── EnsureAce.java │ │ │ │ ├── EnsureAuthorizable.java │ │ │ │ ├── EnsureAuthorizableException.java │ │ │ │ ├── EnsureAuthorizableManager.java │ │ │ │ ├── EnsureAuthorizableManagerImpl.java │ │ │ │ ├── EnsureGroup.java │ │ │ │ ├── EnsureServiceUser.java │ │ │ │ ├── Group.java │ │ │ │ ├── Operation.java │ │ │ │ ├── ProtectedAuthorizables.java │ │ │ │ └── ServiceUser.java │ │ │ ├── util │ │ │ ├── BufferedHttpServletResponse.java │ │ │ ├── BufferedServletOutput.java │ │ │ ├── BufferedServletResponse.java │ │ │ ├── BufferedSlingHttpServletResponse.java │ │ │ ├── ClusterLeader.java │ │ │ ├── CookieUtil.java │ │ │ ├── DynamicObjectInputStream.java │ │ │ ├── InfoWriter.java │ │ │ ├── ModeUtil.java │ │ │ ├── OverridePathSlingRequestWrapper.java │ │ │ ├── ParameterUtil.java │ │ │ ├── PathInfoUtil.java │ │ │ ├── QueryHelper.java │ │ │ ├── RequireAem.java │ │ │ ├── RequireAemModel.java │ │ │ ├── ResourceDataUtil.java │ │ │ ├── ResourceServiceManager.java │ │ │ ├── ResourceUtil.java │ │ │ ├── ServletOutputStreamWrapper.java │ │ │ ├── TemplateUtil.java │ │ │ ├── TextUtil.java │ │ │ ├── ThreadContextClassLoaderTaskExecutor.java │ │ │ ├── TypeUtil.java │ │ │ ├── WorkflowHelper.java │ │ │ ├── datadefinitions │ │ │ │ ├── ResourceDefinition.java │ │ │ │ ├── ResourceDefinitionBuilder.java │ │ │ │ ├── impl │ │ │ │ │ ├── BasicResourceDefinition.java │ │ │ │ │ ├── JcrValidNameDefinitionBuilderImpl.java │ │ │ │ │ ├── LocalizedTitleDefinitionBuilderImpl.java │ │ │ │ │ ├── LowercaseWithDashesDefinitionBuilderImpl.java │ │ │ │ │ └── TitleAndNodeNameDefinitionBuilderImpl.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── AbstractCacheMBean.java │ │ │ │ ├── AbstractGuavaCacheMBean.java │ │ │ │ ├── AbstractJCRCacheMBean.java │ │ │ │ ├── Activator.java │ │ │ │ ├── BundleDisabler.java │ │ │ │ ├── CacheMBean.java │ │ │ │ ├── ComponentDisabler.java │ │ │ │ ├── DelegatingServletFactoryImpl.java │ │ │ │ ├── DiscoveryServiceHelper.java │ │ │ │ ├── JcrCacheMBean.java │ │ │ │ ├── MultifieldPanelDialogRewriteRule.java │ │ │ │ ├── QueryHelperImpl.java │ │ │ │ ├── ReflectionUtil.java │ │ │ │ ├── RequireAemImpl.java │ │ │ │ ├── SecureRandomStringUtils.java │ │ │ │ ├── UrlFilter.java │ │ │ │ ├── ValueMapTypeConverter.java │ │ │ │ ├── WorkflowHelperImpl.java │ │ │ │ ├── XPathPasshtroughEvaluator.java │ │ │ │ └── exception │ │ │ │ │ └── CacheMBeanException.java │ │ │ ├── mbeans │ │ │ │ ├── ResourceServiceManagerMBean.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── visitors │ │ │ │ ├── ContentVisitor.java │ │ │ │ ├── ResourceRunnable.java │ │ │ │ ├── SimpleFilteringResourceVisitor.java │ │ │ │ ├── TraversalException.java │ │ │ │ ├── TreeFilteringResourceVisitor.java │ │ │ │ └── package-info.java │ │ │ ├── version │ │ │ ├── Evolution.java │ │ │ ├── EvolutionAnalyser.java │ │ │ ├── EvolutionContext.java │ │ │ ├── EvolutionEntry.java │ │ │ ├── impl │ │ │ │ ├── CurrentEvolutionEntryImpl.java │ │ │ │ ├── CurrentEvolutionImpl.java │ │ │ │ ├── EvolutionAnalyserImpl.java │ │ │ │ ├── EvolutionConfig.java │ │ │ │ ├── EvolutionContextImpl.java │ │ │ │ ├── EvolutionEntryImpl.java │ │ │ │ ├── EvolutionImpl.java │ │ │ │ └── EvolutionPathUtil.java │ │ │ ├── model │ │ │ │ ├── EvolutionModel.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── wcm │ │ │ ├── AuthorUIHelper.java │ │ │ ├── ComponentEditType.java │ │ │ ├── ComponentErrorHandler.java │ │ │ ├── PageRootProvider.java │ │ │ ├── comparisons │ │ │ │ ├── PageCompareData.java │ │ │ │ ├── PageCompareDataLine.java │ │ │ │ ├── PageCompareDataLines.java │ │ │ │ ├── PageCompareDataLoader.java │ │ │ │ ├── VersionSelection.java │ │ │ │ ├── VersionService.java │ │ │ │ ├── impl │ │ │ │ │ ├── PageCompareDataImpl.java │ │ │ │ │ ├── PageCompareDataLineImpl.java │ │ │ │ │ ├── PageCompareDataLinesImpl.java │ │ │ │ │ ├── PageCompareDataLoaderImpl.java │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── VersionSelectionImpl.java │ │ │ │ │ ├── VersionServiceImpl.java │ │ │ │ │ └── lines │ │ │ │ │ │ ├── LineImpl.java │ │ │ │ │ │ ├── LinesGenerator.java │ │ │ │ │ │ └── Stepper.java │ │ │ │ ├── lines │ │ │ │ │ ├── Line.java │ │ │ │ │ ├── Lines.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── model │ │ │ │ │ ├── PageCompareModel.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── components │ │ │ │ ├── NamedTransformImageModel.java │ │ │ │ ├── TwitterFeedModel.java │ │ │ │ ├── impl │ │ │ │ │ ├── NamedTransformImageModelImpl.java │ │ │ │ │ └── TwitterFeedModelImpl.java │ │ │ │ └── package-info.java │ │ │ ├── datasources │ │ │ │ ├── DataSourceBuilder.java │ │ │ │ ├── DataSourceOption.java │ │ │ │ ├── impl │ │ │ │ │ └── DataSourceBuilderImpl.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ │ ├── AbstractDynamicClientLibraryServlet.java │ │ │ │ ├── AbstractWidgetConfigurationServlet.java │ │ │ │ ├── AcsCommonsConsoleAuthoringUIModeFilter.java │ │ │ │ ├── AcsCommonsConsoleEditorFilter.java │ │ │ │ ├── AemEnvironmentIndicatorFilter.java │ │ │ │ ├── AuthorUIHelperImpl.java │ │ │ │ ├── ComponentErrorHandlerImpl.java │ │ │ │ ├── CopySitesPublishUrlFeature.java │ │ │ │ ├── DesignReferenceProvider.java │ │ │ │ ├── FileImporter.java │ │ │ │ ├── PageRootProviderConfig.java │ │ │ │ ├── PageRootProviderMultiImpl.java │ │ │ │ ├── PagesReferenceProvider.java │ │ │ │ ├── PropertyMergePostProcessor.java │ │ │ │ ├── PublishUrlServlet.java │ │ │ │ ├── QrCodeServlet.java │ │ │ │ ├── RobotsServlet.java │ │ │ │ ├── SiteMapServlet.java │ │ │ │ ├── TagWidgetConfigurationServlet.java │ │ │ │ └── WorkflowModelFilterPageInfoProvider.java │ │ │ ├── notifications │ │ │ │ ├── SystemNotifications.java │ │ │ │ ├── impl │ │ │ │ │ └── SystemNotificationsImpl.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── properties │ │ │ │ └── shared │ │ │ │ │ ├── SharedComponentProperties.java │ │ │ │ │ ├── SharedValueMapResourceAdapter.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── SharedComponentPropertiesBindingsValuesProvider.java │ │ │ │ │ ├── SharedComponentPropertiesImpl.java │ │ │ │ │ ├── SharedComponentPropertiesPageInfoProvider.java │ │ │ │ │ ├── SharedPropertiesRequestCache.java │ │ │ │ │ └── SharedValueMapResourceAdapterImpl.java │ │ │ │ │ └── package-info.java │ │ │ ├── tags │ │ │ │ ├── DefineObjects.java │ │ │ │ ├── package-info.java │ │ │ │ └── wcmmode │ │ │ │ │ ├── AbstractMode.java │ │ │ │ │ ├── DesignMode.java │ │ │ │ │ ├── DisabledMode.java │ │ │ │ │ ├── EditMode.java │ │ │ │ │ ├── PreviewMode.java │ │ │ │ │ ├── SetWCMMode.java │ │ │ │ │ ├── WCMModeFunctions.java │ │ │ │ │ └── package-info.java │ │ │ └── vanity │ │ │ │ ├── VanityURLService.java │ │ │ │ ├── VanityUrlAdjuster.java │ │ │ │ ├── WrappedRequestPathInfoWrapper.java │ │ │ │ ├── impl │ │ │ │ ├── ExtensionlessRequestWrapper.java │ │ │ │ ├── RequestPathInfoWrapper.java │ │ │ │ └── VanityURLServiceImpl.java │ │ │ │ └── package-info.java │ │ │ └── workflow │ │ │ ├── WorkflowPackageManager.java │ │ │ ├── bulk │ │ │ ├── execution │ │ │ │ ├── BulkWorkflowEngine.java │ │ │ │ ├── BulkWorkflowRunner.java │ │ │ │ ├── impl │ │ │ │ │ ├── BulkWorkflowEngineImpl.java │ │ │ │ │ ├── ConfigResourceVisitor.java │ │ │ │ │ ├── TransientWorkflowUtil.java │ │ │ │ │ ├── runners │ │ │ │ │ │ ├── AEMTransientWorkflowRunnerImpl.java │ │ │ │ │ │ ├── AEMWorkflowRunnerImpl.java │ │ │ │ │ │ ├── AbstractAEMWorkflowRunner.java │ │ │ │ │ │ ├── AbstractWorkflowRunner.java │ │ │ │ │ │ ├── FastActionManagerRunnerImpl.java │ │ │ │ │ │ └── SyntheticWorkflowRunnerImpl.java │ │ │ │ │ └── servlets │ │ │ │ │ │ ├── InitFormServlet.java │ │ │ │ │ │ ├── JSONErrorUtil.java │ │ │ │ │ │ ├── ResumeServlet.java │ │ │ │ │ │ ├── StartServlet.java │ │ │ │ │ │ ├── StatusServlet.java │ │ │ │ │ │ └── StopServlet.java │ │ │ │ ├── model │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── Failure.java │ │ │ │ │ ├── Payload.java │ │ │ │ │ ├── PayloadGroup.java │ │ │ │ │ ├── Status.java │ │ │ │ │ ├── SubStatus.java │ │ │ │ │ ├── Workspace.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── removal │ │ │ │ ├── WorkflowInstanceRemover.java │ │ │ │ ├── WorkflowRemovalConfig.java │ │ │ │ ├── WorkflowRemovalException.java │ │ │ │ ├── WorkflowRemovalForceQuitException.java │ │ │ │ ├── WorkflowRemovalMaxDurationExceededException.java │ │ │ │ ├── WorkflowRemovalStatus.java │ │ │ │ ├── impl │ │ │ │ ├── WorkflowInstanceFolderComparator.java │ │ │ │ ├── WorkflowInstanceRemoverImpl.java │ │ │ │ └── WorkflowInstanceRemoverScheduler.java │ │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ └── WorkflowPackageManagerImpl.java │ │ │ ├── package-info.java │ │ │ ├── process │ │ │ ├── impl │ │ │ │ ├── BrandPortalSyncProcess.java │ │ │ │ ├── CopyPropertiesProcess.java │ │ │ │ ├── DamMetadataPropertyResetProcess.java │ │ │ │ ├── ParameterizedActivatePageProcess.java │ │ │ │ ├── ParameterizedDeactivatePageProcess.java │ │ │ │ ├── ReplicateWithOptionsWorkflowProcess.java │ │ │ │ ├── SetImageOrientationProcess.java │ │ │ │ ├── SyncSmartTagsToXmpMetadataNodeProcess.java │ │ │ │ ├── SyntheticWrapperWorkflowProcess.java │ │ │ │ └── WorkflowDelegationStep.java │ │ │ └── package-info.java │ │ │ └── synthetic │ │ │ ├── SyntheticWorkflowModel.java │ │ │ ├── SyntheticWorkflowRunner.java │ │ │ ├── SyntheticWorkflowStep.java │ │ │ ├── cq │ │ │ ├── WrappedSyntheticWorkItem.java │ │ │ └── package-info.java │ │ │ ├── granite │ │ │ ├── WrappedSyntheticWorkItem.java │ │ │ ├── WrappedSyntheticWorkflowSession.java │ │ │ └── package-info.java │ │ │ ├── impl │ │ │ ├── SyntheticMetaDataMap.java │ │ │ ├── SyntheticWorkflowData.java │ │ │ ├── SyntheticWorkflowModelImpl.java │ │ │ ├── SyntheticWorkflowProcess.java │ │ │ ├── SyntheticWorkflowRunnerAccessor.java │ │ │ ├── SyntheticWorkflowRunnerImpl.java │ │ │ ├── SyntheticWorkflowStepImpl.java │ │ │ ├── cq │ │ │ │ ├── SyntheticRoute.java │ │ │ │ ├── SyntheticWorkItem.java │ │ │ │ ├── SyntheticWorkflow.java │ │ │ │ ├── SyntheticWorkflowSession.java │ │ │ │ └── exceptions │ │ │ │ │ ├── SyntheticCompleteWorkflowException.java │ │ │ │ │ ├── SyntheticRestartWorkflowException.java │ │ │ │ │ ├── SyntheticTerminateWorkflowException.java │ │ │ │ │ └── SyntheticWorkflowModelException.java │ │ │ └── granite │ │ │ │ ├── SyntheticRoute.java │ │ │ │ ├── SyntheticWorkItem.java │ │ │ │ ├── SyntheticWorkflow.java │ │ │ │ ├── SyntheticWorkflowModelImpl.java │ │ │ │ ├── SyntheticWorkflowSession.java │ │ │ │ └── exceptions │ │ │ │ ├── SyntheticCompleteWorkflowException.java │ │ │ │ ├── SyntheticRestartWorkflowException.java │ │ │ │ ├── SyntheticTerminateWorkflowException.java │ │ │ │ └── SyntheticWorkflowModelException.java │ │ │ └── package-info.java │ └── resources │ │ ├── META-INF │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── audio.tld │ │ ├── dam.tld │ │ ├── wcm.tld │ │ └── wcmmode.tld │ │ ├── com │ │ └── adobe │ │ │ └── acs │ │ │ └── commons │ │ │ └── oak │ │ │ └── impl │ │ │ └── EnsureOakIndexServlet_doGet.html │ │ ├── icc │ │ ├── cmyk │ │ │ ├── CoatedFOGRA27.icc │ │ │ ├── CoatedFOGRA39.icc │ │ │ ├── JapanColor2001Coated.icc │ │ │ ├── JapanColor2001Uncoated.icc │ │ │ ├── JapanColor2002Newspaper.icc │ │ │ ├── JapanWebCoated.icc │ │ │ ├── USSheetfedCoated.icc │ │ │ ├── USSheetfedUncoated.icc │ │ │ ├── USWebCoatedSWOP.icc │ │ │ ├── USWebUncoated.icc │ │ │ ├── UncoatedFOGRA29.icc │ │ │ └── WebCoatedFOGRA28.icc │ │ └── rgb │ │ │ ├── AdobeRGB1998.icc │ │ │ ├── AppleRGB.icc │ │ │ └── ColorMatchRGB.icc │ │ └── remoteassets │ │ ├── remote_asset.3g2 │ │ ├── remote_asset.3gp │ │ ├── remote_asset.aac │ │ ├── remote_asset.ai │ │ ├── remote_asset.aiff │ │ ├── remote_asset.avi │ │ ├── remote_asset.bmp │ │ ├── remote_asset.css │ │ ├── remote_asset.doc │ │ ├── remote_asset.docx │ │ ├── remote_asset.eps │ │ ├── remote_asset.epub │ │ ├── remote_asset.f4v │ │ ├── remote_asset.flv │ │ ├── remote_asset.gif │ │ ├── remote_asset.html │ │ ├── remote_asset.indd │ │ ├── remote_asset.jar │ │ ├── remote_asset.jpeg │ │ ├── remote_asset.jpg │ │ ├── remote_asset.m2v │ │ ├── remote_asset.m4v │ │ ├── remote_asset.midi │ │ ├── remote_asset.mov │ │ ├── remote_asset.mp3 │ │ ├── remote_asset.mp4 │ │ ├── remote_asset.mpeg │ │ ├── remote_asset.mpg │ │ ├── remote_asset.ogg │ │ ├── remote_asset.ogv │ │ ├── remote_asset.pdf │ │ ├── remote_asset.png │ │ ├── remote_asset.ppt │ │ ├── remote_asset.pptx │ │ ├── remote_asset.ps │ │ ├── remote_asset.psd │ │ ├── remote_asset.rar │ │ ├── remote_asset.rtf │ │ ├── remote_asset.svg │ │ ├── remote_asset.swf │ │ ├── remote_asset.tar │ │ ├── remote_asset.tgz │ │ ├── remote_asset.tif │ │ ├── remote_asset.tiff │ │ ├── remote_asset.txt │ │ ├── remote_asset.wav │ │ ├── remote_asset.webm │ │ ├── remote_asset.wma │ │ ├── remote_asset.wmv │ │ ├── remote_asset.xls │ │ ├── remote_asset.xlsx │ │ ├── remote_asset.xml │ │ └── remote_asset.zip │ └── test │ ├── java │ ├── ch │ │ └── randelshofer │ │ │ └── media │ │ │ ├── io │ │ │ ├── ByteArrayImageInputStream.java │ │ │ ├── ImageInputStreamAdapter.java │ │ │ └── ImageInputStreamImpl2.java │ │ │ └── jpeg │ │ │ ├── CMYKJPEGImageReader.java │ │ │ ├── CMYKJPEGImageReaderSpi.java │ │ │ └── JFIFInputStream.java │ ├── com │ │ ├── adobe │ │ │ └── acs │ │ │ │ └── commons │ │ │ │ ├── adobeio │ │ │ │ └── service │ │ │ │ │ └── impl │ │ │ │ │ ├── EndpointServiceImplTest.java │ │ │ │ │ └── IntegrationServiceImplTest.java │ │ │ │ ├── analysis │ │ │ │ └── jcrchecksum │ │ │ │ │ └── impl │ │ │ │ │ ├── ChecksumGeneratorImplTest.java │ │ │ │ │ └── servlets │ │ │ │ │ ├── ChecksumGeneratorServletTest.java │ │ │ │ │ └── JSONDumpServletTest.java │ │ │ │ ├── audit_log_search │ │ │ │ └── impl │ │ │ │ │ └── AuditLogSearchServletTest.java │ │ │ │ ├── auth │ │ │ │ └── saml │ │ │ │ │ └── impl │ │ │ │ │ └── OktaLogoutHandlerTest.java │ │ │ │ ├── ccvar │ │ │ │ ├── ContextualContentVariableTestUtil.java │ │ │ │ ├── filter │ │ │ │ │ └── ContentVariableJsonFilterTest.java │ │ │ │ └── impl │ │ │ │ │ ├── PropertyAggregatorServiceImplTest.java │ │ │ │ │ └── UrlEncodeActionTest.java │ │ │ │ ├── cloudconfig │ │ │ │ └── impl │ │ │ │ │ ├── CloudConfigurationListImplTest.java │ │ │ │ │ └── CreateCloudConfigServletTest.java │ │ │ │ ├── contentsync │ │ │ │ ├── MockCryptoSupport.java │ │ │ │ ├── TestContentCatalog.java │ │ │ │ ├── TestContentCatalogJobConsumer.java │ │ │ │ ├── TestContentReader.java │ │ │ │ ├── TestContentSync.java │ │ │ │ ├── TestSyncHostConfiguration.java │ │ │ │ ├── impl │ │ │ │ │ ├── TestEncryptPasswordPostProcessor.java │ │ │ │ │ └── TestLastModifiedStrategy.java │ │ │ │ └── servlet │ │ │ │ │ └── TestContentCatalogServlet.java │ │ │ │ ├── cqsearch │ │ │ │ ├── QueryUtilTest.java │ │ │ │ └── impl │ │ │ │ │ └── NodeExistsPredicateEvaluatorTest.java │ │ │ │ ├── dam │ │ │ │ ├── DAMFunctionsTest.java │ │ │ │ ├── RenditionModifyingProcessTest.java │ │ │ │ ├── RenditionPatternPickerTest.java │ │ │ │ ├── TestHarness.java │ │ │ │ ├── TestRenditionModifyingProcess.java │ │ │ │ └── impl │ │ │ │ │ ├── ColorConversionImplTest.java │ │ │ │ │ ├── CopyAssetPublishUrlFeatureTest.java │ │ │ │ │ ├── CustomComponentActivatorListServletTest.java │ │ │ │ │ └── ReviewTaskAssetMoverHandlerTest.java │ │ │ │ ├── data │ │ │ │ ├── SpreadsheetTest.java │ │ │ │ └── VariantTest.java │ │ │ │ ├── dispatcher │ │ │ │ └── impl │ │ │ │ │ └── PermissionSensitiveCacheServletTest.java │ │ │ │ ├── email │ │ │ │ ├── impl │ │ │ │ │ └── EmailServiceImplTest.java │ │ │ │ └── process │ │ │ │ │ └── impl │ │ │ │ │ ├── SendTemplatedEmailProcessTest.java │ │ │ │ │ ├── SendTemplatedEmailUtilsTest.java │ │ │ │ │ ├── TestHarness.java │ │ │ │ │ └── TestSendTemplatedEmailProcess.java │ │ │ │ ├── errorpagehandler │ │ │ │ ├── cache │ │ │ │ │ └── impl │ │ │ │ │ │ ├── CacheEntryTest.java │ │ │ │ │ │ └── ErrorPageCacheImplTest.java │ │ │ │ └── impl │ │ │ │ │ └── ErrorPageHandlerImplTest.java │ │ │ │ ├── etag │ │ │ │ └── impl │ │ │ │ │ └── EtagMessageDigestServletFilterTest.java │ │ │ │ ├── exporters │ │ │ │ └── impl │ │ │ │ │ ├── tags │ │ │ │ │ ├── TagsExportServiceTest.java │ │ │ │ │ └── TagsExportServletTest.java │ │ │ │ │ └── users │ │ │ │ │ ├── UserExportServletTest.java │ │ │ │ │ ├── UsersInitServletTest.java │ │ │ │ │ └── UsersSaveServletTest.java │ │ │ │ ├── fam │ │ │ │ ├── ActionsTest.java │ │ │ │ └── impl │ │ │ │ │ ├── ActionManagerTest.java │ │ │ │ │ └── ThrottledTaskRunnerTest.java │ │ │ │ ├── filefetch │ │ │ │ └── impl │ │ │ │ │ ├── FileFetchImplTest.java │ │ │ │ │ └── FileFetchMBeanTest.java │ │ │ │ ├── functions │ │ │ │ └── RoundRobinTest.java │ │ │ │ ├── genericlists │ │ │ │ └── impl │ │ │ │ │ ├── GenericListAdapterFactoryTest.java │ │ │ │ │ └── GenericListJsonResourceProviderTest.java │ │ │ │ ├── granite │ │ │ │ └── ui │ │ │ │ │ └── components │ │ │ │ │ └── impl │ │ │ │ │ └── include │ │ │ │ │ ├── IncludeDecoratorFilterImplTest.java │ │ │ │ │ └── NamespaceResourceWrapperTest.java │ │ │ │ ├── hc │ │ │ │ └── impl │ │ │ │ │ ├── HealthCheckStatusEmailerTest.java │ │ │ │ │ └── SMTPMailServiceHealthCheckTest.java │ │ │ │ ├── http │ │ │ │ ├── headers │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AbstractDispatcherCacheHeaderFilterTest.java │ │ │ │ │ │ ├── AbstractExpiresHeaderFilterTest.java │ │ │ │ │ │ ├── DailyExpiresHeaderFilterTest.java │ │ │ │ │ │ ├── DispatcherMaxAgeHeaderFilterTest.java │ │ │ │ │ │ ├── MonthlyExpiresHeaderFilterTest.java │ │ │ │ │ │ └── WeeklyExpiresHeaderFilterTest.java │ │ │ │ └── impl │ │ │ │ │ └── HttpClientFactoryImplTest.java │ │ │ │ ├── httpcache │ │ │ │ ├── config │ │ │ │ │ └── impl │ │ │ │ │ │ ├── CombinedCacheConfigExtensionTest.java │ │ │ │ │ │ ├── CombinedCacheKeyFactoryTest.java │ │ │ │ │ │ ├── HttpCacheConfigImplTest.java │ │ │ │ │ │ ├── RequestCookieCacheExtensionTest.java │ │ │ │ │ │ ├── RequestHeaderHttpCacheConfigExtensionTest.java │ │ │ │ │ │ ├── RequestParameterHttpCacheConfigExtensionTest.java │ │ │ │ │ │ ├── RequestPathHttpCacheConfigExtensionTest.java │ │ │ │ │ │ ├── ResourcePropertiesHttpCacheConfigExtensionTest.java │ │ │ │ │ │ ├── ResourceTypeHttpCacheConfigExtensionTest.java │ │ │ │ │ │ └── keys │ │ │ │ │ │ └── KeyValueCacheKeyTest.java │ │ │ │ ├── engine │ │ │ │ │ ├── HttpCacheServletResponseWrapperTest.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── HttpCacheEngineImplTest.java │ │ │ │ ├── invalidator │ │ │ │ │ └── event │ │ │ │ │ │ └── JCRNodeChangeEventHandlerTest.java │ │ │ │ └── store │ │ │ │ │ ├── caffeine │ │ │ │ │ └── impl │ │ │ │ │ │ └── CaffeineMemHttpCacheStoreImplTest.java │ │ │ │ │ ├── jcr │ │ │ │ │ └── impl │ │ │ │ │ │ ├── CacheKeyMock.java │ │ │ │ │ │ ├── JCRHttpCacheStoreImplTest.java │ │ │ │ │ │ ├── visitor │ │ │ │ │ │ └── mock │ │ │ │ │ │ │ └── RootNodeMockFactory.java │ │ │ │ │ │ └── writer │ │ │ │ │ │ ├── BucketNodeFactoryTest.java │ │ │ │ │ │ ├── EntryNodeWriterMocks.java │ │ │ │ │ │ └── EntryNodeWriterTest.java │ │ │ │ │ └── mem │ │ │ │ │ └── impl │ │ │ │ │ └── MemHttpCacheStoreImplTest.java │ │ │ │ ├── i18n │ │ │ │ └── impl │ │ │ │ │ └── I18nProviderImplTest.java │ │ │ │ ├── images │ │ │ │ ├── imagetransformers │ │ │ │ │ └── impl │ │ │ │ │ │ └── BoundedResizeTransformerImplTest.java │ │ │ │ ├── impl │ │ │ │ │ ├── EmptyImageTransformer.java │ │ │ │ │ ├── EmptyNamedImageTransformer.java │ │ │ │ │ ├── FeaturedNamedImageTransformer.java │ │ │ │ │ ├── NamedTransformImageServletTest.java │ │ │ │ │ ├── ProgressiveJpegTest.java │ │ │ │ │ └── SmallNamedImageTransformer.java │ │ │ │ └── transformers │ │ │ │ │ └── impl │ │ │ │ │ ├── AdjustImageTransformerImplTest.java │ │ │ │ │ ├── CropImageTransformerImplTest.java │ │ │ │ │ ├── GreyscaleImageTransformerImplTest.java │ │ │ │ │ ├── LetterPillarBoxImageTransformerImplTest.java │ │ │ │ │ ├── ResizeImageTransformerImplTest.java │ │ │ │ │ ├── RotateImageTransformerImplTest.java │ │ │ │ │ ├── ScaleImageTransformerImplTest.java │ │ │ │ │ ├── SharpenImageTransformerImplTest.java │ │ │ │ │ └── composites │ │ │ │ │ └── MultiplyBlendCompositeTest.java │ │ │ │ ├── indesign │ │ │ │ └── dynamicdeckdynamo │ │ │ │ │ ├── services │ │ │ │ │ └── impl │ │ │ │ │ │ ├── DynamicDeckConfigurationServiceImplTest.java │ │ │ │ │ │ └── DynamicDeckServiceImplTest.java │ │ │ │ │ └── servlets │ │ │ │ │ └── impl │ │ │ │ │ └── TriggerDeckDynamoServletTest.java │ │ │ │ ├── it │ │ │ │ └── build │ │ │ │ │ ├── BundleContainsTldsIT.java │ │ │ │ │ └── ScrMetadataIT.java │ │ │ │ ├── json │ │ │ │ ├── JcrJsonAdapterTest.java │ │ │ │ └── JsonObjectUtilTest.java │ │ │ │ ├── logging │ │ │ │ └── impl │ │ │ │ │ └── JsonEventLoggerTest.java │ │ │ │ ├── marketo │ │ │ │ ├── MarketoClientConfigurationImplTest.java │ │ │ │ ├── client │ │ │ │ │ └── impl │ │ │ │ │ │ ├── StaticResponseMarketoClient.java │ │ │ │ │ │ └── TestMarketoClient.java │ │ │ │ └── impl │ │ │ │ │ ├── MarketoAPIExceptionTest.java │ │ │ │ │ ├── TestFormValueImpl.java │ │ │ │ │ ├── TestMarketoClientConfiguration.java │ │ │ │ │ ├── TestMarketoConnectionServletTest.java │ │ │ │ │ ├── TestMarketoFieldDataSource.java │ │ │ │ │ ├── TestMarketoFormDataSource.java │ │ │ │ │ ├── TestMarketoFormImpl.java │ │ │ │ │ └── TestMarketoInterfaces.java │ │ │ │ ├── mcp │ │ │ │ ├── AuthorizedGroupProcessDefinitionFactoryTest.java │ │ │ │ ├── form │ │ │ │ │ ├── AbstractResourceImplTest.java │ │ │ │ │ ├── DatePickerComponentTest.java │ │ │ │ │ ├── DialogProviderAnnotationProcessorTest.java │ │ │ │ │ ├── FieldComponentTest.java │ │ │ │ │ ├── FieldsetTest.java │ │ │ │ │ ├── RadioComponentTest.java │ │ │ │ │ ├── SelectComponentTest.java │ │ │ │ │ ├── SyntheticDialogTest.java │ │ │ │ │ └── SyntheticFormResourceTest.java │ │ │ │ ├── impl │ │ │ │ │ ├── ControlledProcessManagerServletTest.java │ │ │ │ │ ├── DynamicScriptServiceProviderTest.java │ │ │ │ │ ├── FactoryInjectionTest.java │ │ │ │ │ ├── McpLocalizationServiceTest.java │ │ │ │ │ ├── ProcessErrorReportExcelServletTest.java │ │ │ │ │ ├── TestGenericReportExcelServlet.java │ │ │ │ │ └── processes │ │ │ │ │ │ ├── AssetFolderCreatorTest.java │ │ │ │ │ │ ├── AssetFolderDefinitionTest.java │ │ │ │ │ │ ├── BrokenLinksTest.java │ │ │ │ │ │ ├── BulkPageTaggerTest.java │ │ │ │ │ │ ├── BulkWorkflowTest.java │ │ │ │ │ │ ├── DataImporterTest.java │ │ │ │ │ │ ├── ReferenceFinderTest.java │ │ │ │ │ │ ├── RefreshFolderTumbnailsTest.java │ │ │ │ │ │ ├── TagCreatorTest.java │ │ │ │ │ │ ├── TagReportTest.java │ │ │ │ │ │ ├── TreeReplicationTest.java │ │ │ │ │ │ ├── WorkflowRemoverTest.java │ │ │ │ │ │ ├── asset │ │ │ │ │ │ ├── AssetIngestorUtil.java │ │ │ │ │ │ ├── FileAssetIngestorTest.java │ │ │ │ │ │ ├── FileAssetIngestorUtilitiesTest.java │ │ │ │ │ │ ├── FileOrRenditionTest.java │ │ │ │ │ │ ├── MockDirectoryBuilder.java │ │ │ │ │ │ ├── NamesFilterTest.java │ │ │ │ │ │ ├── S3AssetIngestorTest.java │ │ │ │ │ │ ├── S3AssetIngestorUtilitiesTest.java │ │ │ │ │ │ └── UrlAssetImportTest.java │ │ │ │ │ │ ├── cfi │ │ │ │ │ │ ├── ContentFragmentImportTest.java │ │ │ │ │ │ ├── MockContentElement.java │ │ │ │ │ │ ├── MockContentFragment.java │ │ │ │ │ │ ├── MockDataType.java │ │ │ │ │ │ └── MockFragmentData.java │ │ │ │ │ │ └── renovator │ │ │ │ │ │ └── RenovatorTest.java │ │ │ │ ├── model │ │ │ │ │ ├── GenericBlobReportTest.java │ │ │ │ │ ├── SimpleModelFour.java │ │ │ │ │ ├── SimpleModelOne.java │ │ │ │ │ ├── SimpleModelThree.java │ │ │ │ │ ├── SimpleModelTwo.java │ │ │ │ │ └── ValueFormatTest.java │ │ │ │ └── util │ │ │ │ │ ├── AnnotatedFieldDeserializerTest.java │ │ │ │ │ ├── IntrospectionTest.java │ │ │ │ │ └── ValueMapSerializerTest.java │ │ │ │ ├── models │ │ │ │ ├── injectors │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AemObjectInjectorTest.java │ │ │ │ │ │ ├── ChildResourceFromRequestInjectorTest.java │ │ │ │ │ │ ├── ContentPolicyValueInjectorTest.java │ │ │ │ │ │ ├── HierarchicalPagePropertyInjectorTest.java │ │ │ │ │ │ ├── I18NInjectorTest.java │ │ │ │ │ │ ├── InjectorAEMContext.java │ │ │ │ │ │ ├── JsonValueMapValueInjectorTest.java │ │ │ │ │ │ ├── ParentResourceValueMapValueInjectorTest.java │ │ │ │ │ │ ├── SharedValueMapValueInjectorTest.java │ │ │ │ │ │ ├── TagPropertyInjectorTest.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── TestHierarchicalPagePropertiesModel.java │ │ │ │ │ │ ├── TestJsonObjectInjection.java │ │ │ │ │ │ ├── TestModelChildResourceFromRequest.java │ │ │ │ │ │ ├── TestModelChildResourceFromRequestChild.java │ │ │ │ │ │ ├── TestModelI18nValue.java │ │ │ │ │ │ ├── TestPagePropertiesModel.java │ │ │ │ │ │ ├── TestParentResourceValueMapValueModel.java │ │ │ │ │ │ ├── TestResourceModel.java │ │ │ │ │ │ ├── TestSharedValueMapValueModel.java │ │ │ │ │ │ ├── TestTagPropertyInjectModel.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── TestHierarchicalPagePropertiesModelModelImpl.java │ │ │ │ │ │ ├── TestJsonObject.java │ │ │ │ │ │ ├── TestJsonObjectInjectionImpl.java │ │ │ │ │ │ ├── TestModelChildResourceFromRequestChildImpl.java │ │ │ │ │ │ ├── TestModelChildResourceFromRequestImpl.java │ │ │ │ │ │ ├── TestModelI18nValueImpl.java │ │ │ │ │ │ ├── TestPagePropertiesModelModelImpl.java │ │ │ │ │ │ ├── TestParentResourceValueMapValueModelImpl.java │ │ │ │ │ │ ├── TestResourceModelImpl.java │ │ │ │ │ │ ├── TestSharedValueMapValueModelImpl.java │ │ │ │ │ │ └── TestTagPropertyInjectModelImpl.java │ │ │ │ └── via │ │ │ │ │ └── impl │ │ │ │ │ └── PageContentResourceViaProviderTest.java │ │ │ │ ├── oak │ │ │ │ ├── impl │ │ │ │ │ ├── EnsureOakIndexJobHandlerTest.java │ │ │ │ │ ├── EnsureOakIndexManagerImplTest.java │ │ │ │ │ ├── EnsureOakIndexServletTest.java │ │ │ │ │ └── EnsureOakIndexTest.java │ │ │ │ └── sql2scorer │ │ │ │ │ └── impl │ │ │ │ │ └── servlets │ │ │ │ │ └── ExplainScoreServletTest.java │ │ │ │ ├── ondeploy │ │ │ │ ├── impl │ │ │ │ │ └── OnDeployExecutorImplTest.java │ │ │ │ └── scripts │ │ │ │ │ ├── OnDeployScriptBaseTest.java │ │ │ │ │ ├── OnDeployScriptTestExampleFailExecute.java │ │ │ │ │ ├── OnDeployScriptTestExampleFlipFlop.java │ │ │ │ │ ├── OnDeployScriptTestExampleMakeChangesThenFail.java │ │ │ │ │ ├── OnDeployScriptTestExampleSuccess1.java │ │ │ │ │ ├── OnDeployScriptTestExampleSuccess2.java │ │ │ │ │ └── OnDeployScriptTestExampleSuccessWithPause.java │ │ │ │ ├── packagegarbagecollector │ │ │ │ ├── PackageGarbageCollectionJobTest.java │ │ │ │ └── PackageGarbageCollectionSchedulerTest.java │ │ │ │ ├── packaging │ │ │ │ └── impl │ │ │ │ │ ├── AssetPackagerServletImplTest.java │ │ │ │ │ └── PackageHelperImplTest.java │ │ │ │ ├── redirectmaps │ │ │ │ ├── impl │ │ │ │ │ ├── FakeHttpServletRequestTest.java │ │ │ │ │ └── TestServlets.java │ │ │ │ └── models │ │ │ │ │ ├── MapEntryTest.java │ │ │ │ │ └── RedirectMapModelTest.java │ │ │ │ ├── redirects │ │ │ │ ├── Asserts.java │ │ │ │ ├── RedirectResourceBuilder.java │ │ │ │ ├── filter │ │ │ │ │ └── RedirectFilterTest.java │ │ │ │ ├── models │ │ │ │ │ ├── RedirectConfigurationTest.java │ │ │ │ │ ├── RedirectRuleTest.java │ │ │ │ │ ├── SubstitutionElementTest.java │ │ │ │ │ └── UpgradeLegacyRedirectsTest.java │ │ │ │ └── servlets │ │ │ │ │ ├── CreateRedirectConfigurationServletTest.java │ │ │ │ │ ├── ExportRedirectMapServletTest.java │ │ │ │ │ ├── ImportRedirectMapServletTest.java │ │ │ │ │ └── RewriteMapServletTest.java │ │ │ │ ├── remoteassets │ │ │ │ └── impl │ │ │ │ │ ├── RemoteAssetDecoratorTest.java │ │ │ │ │ ├── RemoteAssetsBinarySyncImplTest.java │ │ │ │ │ ├── RemoteAssetsConfigImplTest.java │ │ │ │ │ ├── RemoteAssetsNodeSyncImplTest.java │ │ │ │ │ └── RemoteAssetsTestUtil.java │ │ │ │ ├── replication │ │ │ │ ├── AgentIdsAgentFilterTest.java │ │ │ │ ├── BrandPortalAgentFilterTest.java │ │ │ │ ├── dispatcher │ │ │ │ │ ├── DispatcherFlushFilterTest.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── DispatcherFlushRulesImplTest.java │ │ │ │ │ │ ├── DispatcherFlusherImplTest.java │ │ │ │ │ │ └── RefetchFlushContentBuilderImplTest.java │ │ │ │ ├── impl │ │ │ │ │ └── ReplicateVersionImplTest.java │ │ │ │ └── status │ │ │ │ │ └── impl │ │ │ │ │ ├── JcrPackageReplicationStatusEventHandlerTest.java │ │ │ │ │ ├── ReplicationStatusManagerImplTest.java │ │ │ │ │ └── SetReplicationStatusProcessTest.java │ │ │ │ ├── reports │ │ │ │ ├── api │ │ │ │ │ ├── ReportExceptionTest.java │ │ │ │ │ └── ResultsPageTest.java │ │ │ │ ├── internal │ │ │ │ │ ├── DelimiterConfigurationTest.java │ │ │ │ │ ├── ExporterUtilTest.java │ │ │ │ │ └── datasources │ │ │ │ │ │ └── DynamicSelectDataSourceTest.java │ │ │ │ └── models │ │ │ │ │ ├── ContainingPageReportCellCSVExporterTest.java │ │ │ │ │ ├── DateReportCellCSVExporterTest.java │ │ │ │ │ ├── MockReportExecutor.java │ │ │ │ │ ├── PathListReportExecutorTest.java │ │ │ │ │ ├── PathReportCellCSVExporterTest.java │ │ │ │ │ ├── PredictedTagReportCellCSVExporterTest.java │ │ │ │ │ ├── PredictedTagsCellValueTest.java │ │ │ │ │ ├── QueryReportExecutorTest.java │ │ │ │ │ ├── ReferencesModelTest.java │ │ │ │ │ ├── ReportCellValueTest.java │ │ │ │ │ ├── ReportRunnerTest.java │ │ │ │ │ ├── StringReportCellCSVExporterTest.java │ │ │ │ │ ├── TagReportCellCSVExporterTest.java │ │ │ │ │ ├── TagsCellValueTest.java │ │ │ │ │ └── references │ │ │ │ │ ├── MockReferenceList.java │ │ │ │ │ └── MockReferencesAggregator.java │ │ │ │ ├── rewriter │ │ │ │ ├── DelegatingTransformerTest.java │ │ │ │ └── impl │ │ │ │ │ ├── ContentHandlerAdapterTest.java │ │ │ │ │ ├── ContentVariableTransformerFactoryTest.java │ │ │ │ │ ├── ResourceResolverMapTransformerFactoryTest.java │ │ │ │ │ ├── SaxElementUtilsTest.java │ │ │ │ │ ├── StaticReferenceRewriteTransformerFactoryTest.java │ │ │ │ │ ├── StylesheetInlinerTransformerFactoryTest.java │ │ │ │ │ ├── VersionedClientlibsTransformerFactoryTest.java │ │ │ │ │ └── XMLParserGeneratorTest.java │ │ │ │ ├── scripting │ │ │ │ └── impl │ │ │ │ │ └── QueryBuilderBindingsValuesProviderTest.java │ │ │ │ ├── social │ │ │ │ └── linkedin │ │ │ │ │ └── LinkedInApi20Test.java │ │ │ │ ├── sorter │ │ │ │ └── SortNodesOperationTest.java │ │ │ │ ├── synth │ │ │ │ ├── children │ │ │ │ │ └── ChildrenAsPropertyResourceTest.java │ │ │ │ └── impl │ │ │ │ │ └── SynthesizedSlingHttpServletRequestTest.java │ │ │ │ ├── testutil │ │ │ │ └── LogTester.java │ │ │ │ ├── throttling │ │ │ │ ├── CpuLoadEstimatorTest.java │ │ │ │ ├── RequestThrottlerTest.java │ │ │ │ └── ThrottlingStateTest.java │ │ │ │ ├── twitter │ │ │ │ └── impl │ │ │ │ │ ├── TwitterAdapterFactoryTest.java │ │ │ │ │ └── TwitterFeedSchedulerTest.java │ │ │ │ ├── users │ │ │ │ └── impl │ │ │ │ │ ├── AbstractAuthorizableTest.java │ │ │ │ │ ├── EnsureAceTest.java │ │ │ │ │ └── GroupTest.java │ │ │ │ ├── util │ │ │ │ ├── BufferedServletOutputTest.java │ │ │ │ ├── CookieUtilTest.java │ │ │ │ ├── InfoWriterTest.java │ │ │ │ ├── ModeUtilTest.java │ │ │ │ ├── OverridePathSlingRequestWrapperTest.java │ │ │ │ ├── ParameterUtilTest.java │ │ │ │ ├── PathInfoUtilTest.java │ │ │ │ ├── ResourceUtilTest.java │ │ │ │ ├── TemplateUtilTest.java │ │ │ │ ├── TextUtilTest.java │ │ │ │ ├── ThreadContextClassLoaderTaskExecutorTest.java │ │ │ │ ├── TypeUtilTest.java │ │ │ │ ├── datadefinitions │ │ │ │ │ └── impl │ │ │ │ │ │ ├── JcrValidNameDefinitionBuilderImplTest.java │ │ │ │ │ │ ├── LocalizedTitleDefinitionBuilderImplTest.java │ │ │ │ │ │ ├── LowercaseWithDashesDefinitionBuilderImplTest.java │ │ │ │ │ │ └── TitleAndNodeNameDefinitionBuilderImplTest.java │ │ │ │ ├── impl │ │ │ │ │ ├── ActivatorHelper.java │ │ │ │ │ ├── BundleDisablerTest.java │ │ │ │ │ ├── DiscoveryServiceHelperTest.java │ │ │ │ │ ├── QueryHelperImplTest.java │ │ │ │ │ ├── ReflectionUtilTest.java │ │ │ │ │ ├── RequireAemImplTest.java │ │ │ │ │ ├── UrlFilterTest.java │ │ │ │ │ └── WorkflowHelperImplTest.java │ │ │ │ └── visitors │ │ │ │ │ ├── ContentVisitorTest.java │ │ │ │ │ ├── SimpleFilteringResourceVisitorTest.java │ │ │ │ │ └── TreeFilteringResourceVisitorTest.java │ │ │ │ ├── version │ │ │ │ └── impl │ │ │ │ │ ├── EvolutionConfigTest.java │ │ │ │ │ └── EvolutionContextImplTest.java │ │ │ │ ├── wcm │ │ │ │ ├── comparisons │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── PageCompareDataImplTest.java │ │ │ │ │ │ ├── PageCompareDataLineImplTest.java │ │ │ │ │ │ ├── PageCompareDataLinesTest.java │ │ │ │ │ │ ├── PageCompareDataLoaderImplTest.java │ │ │ │ │ │ ├── PropertiesTest.java │ │ │ │ │ │ ├── VersionSelectionTest.java │ │ │ │ │ │ ├── VersionServiceImplTest.java │ │ │ │ │ │ └── lines │ │ │ │ │ │ │ ├── LineImplTest.java │ │ │ │ │ │ │ ├── LinesTest.java │ │ │ │ │ │ │ └── StepperTest.java │ │ │ │ │ └── model │ │ │ │ │ │ └── PageCompareModelTest.java │ │ │ │ ├── impl │ │ │ │ │ ├── AcsCommonsConsoleAuthoringUIModeFilterTest.java │ │ │ │ │ ├── AemEnvironmentIndicatorFilterTest.java │ │ │ │ │ ├── AuthorUIHelperImplTest.java │ │ │ │ │ ├── ComponentErrorHandlerImplTest.java │ │ │ │ │ ├── CopySitesPublishUrlFeatureTest.java │ │ │ │ │ ├── DesignReferenceProviderTest.java │ │ │ │ │ ├── FileImporterTest.java │ │ │ │ │ ├── PageRootProviderConfigTest.java │ │ │ │ │ ├── PageRootProviderMultiImplTest.java │ │ │ │ │ ├── PagesReferenceProviderTest.java │ │ │ │ │ ├── PropertyMergePostProcessorTest.java │ │ │ │ │ ├── PublishUrlServletTest.java │ │ │ │ │ ├── QrCodeServletTest.java │ │ │ │ │ ├── RobotsServletTest.java │ │ │ │ │ └── SiteMapServletTest.java │ │ │ │ ├── notifications │ │ │ │ │ └── impl │ │ │ │ │ │ └── SystemNotificationsImplTest.java │ │ │ │ ├── properties │ │ │ │ │ └── shared │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── SharedComponentPropertiesBindingsValuesProviderTest.java │ │ │ │ │ │ └── SharedValueMapResourceAdapterImplTest.java │ │ │ │ ├── tags │ │ │ │ │ └── wcmmode │ │ │ │ │ │ ├── AbstractModeTest.java │ │ │ │ │ │ ├── DesignModeTest.java │ │ │ │ │ │ ├── DisabledModeTest.java │ │ │ │ │ │ ├── EditModeTest.java │ │ │ │ │ │ ├── PreviewModeTest.java │ │ │ │ │ │ ├── SetWCMModeTest.java │ │ │ │ │ │ └── WCMModeFunctionsTest.java │ │ │ │ └── vanity │ │ │ │ │ └── impl │ │ │ │ │ ├── ExtensionlessRequestWrapperTest.java │ │ │ │ │ ├── RequestPathInfoWrapperTest.java │ │ │ │ │ └── VanityURLServiceImplTest.java │ │ │ │ └── workflow │ │ │ │ ├── bulk │ │ │ │ └── removal │ │ │ │ │ ├── WorkflowInstanceFolderComparatorTest.java │ │ │ │ │ └── WorkflowInstanceRemoverTest.java │ │ │ │ ├── impl │ │ │ │ └── WorkflowPackageManagerImplTest.java │ │ │ │ ├── process │ │ │ │ └── impl │ │ │ │ │ ├── BrandPortalSyncProcessTest.java │ │ │ │ │ ├── CopyPropertiesProcessTest.java │ │ │ │ │ ├── ReplicateWithOptionsWorkflowProcessTest.java │ │ │ │ │ ├── SetImageOrientationProcessTest.java │ │ │ │ │ └── SyncSmartTagsToXmpMetadataNodeProcessTest.java │ │ │ │ └── synthetic │ │ │ │ └── impl │ │ │ │ ├── DeprecatedSyntheticCqWorkflowRunnerImplTest.java │ │ │ │ ├── DeprecatedSyntheticGraniteWorkflowRunnerImplTest.java │ │ │ │ ├── DeprecatedSyntheticMixedWorkflowRunnerImplTest.java │ │ │ │ ├── SyntheticCqWorkflowRunnerImplTest.java │ │ │ │ ├── SyntheticGraniteWorkflowRunnerImplTest.java │ │ │ │ ├── SyntheticMixedWorkflowRunnerImplTest.java │ │ │ │ ├── SyntheticWorkflowStepImplTest.java │ │ │ │ ├── cq │ │ │ │ ├── SyntheticWorkItemTest.java │ │ │ │ └── SyntheticWorkflowSessionTest.java │ │ │ │ ├── cqtestprocesses │ │ │ │ ├── GoNextWorkflowProcess.java │ │ │ │ ├── NoNextWorkflowProcess.java │ │ │ │ ├── ReadDataWorkflowProcess.java │ │ │ │ ├── RestartWorkflowProcess.java │ │ │ │ ├── SetDataWorkflowProcess.java │ │ │ │ ├── TerminateDataWorkflowProcess.java │ │ │ │ ├── UpdateWorkflowDataWorkflowProcess.java │ │ │ │ ├── WfArgsWorkflowProcess.java │ │ │ │ └── WfDataWorkflowProcess.java │ │ │ │ ├── granite │ │ │ │ ├── SyntheticWorkItemTest.java │ │ │ │ └── SyntheticWorkflowSessionTest.java │ │ │ │ └── granitetestprocesses │ │ │ │ ├── GoNextWorkflowProcess.java │ │ │ │ ├── NoNextWorkflowProcess.java │ │ │ │ ├── ReadDataWorkflowProcess.java │ │ │ │ ├── RestartWorkflowProcess.java │ │ │ │ ├── SetDataWorkflowProcess.java │ │ │ │ ├── TerminateDataWorkflowProcess.java │ │ │ │ ├── UpdateWorkflowDataWorkflowProcess.java │ │ │ │ ├── WfArgsWorkflowProcess.java │ │ │ │ └── WfDataWorkflowProcess.java │ │ └── amazonaws │ │ │ └── util │ │ │ └── StringUtils.java │ ├── io │ │ └── wcm │ │ │ └── testing │ │ │ └── mock │ │ │ └── aem │ │ │ └── MockPageManagerFactory.java │ └── org │ │ └── apache │ │ └── jackrabbit │ │ └── oak │ │ └── spi │ │ └── commit │ │ └── CommitInfo.java │ └── resources │ ├── ch │ └── randelshofer │ │ └── media │ │ └── jpeg │ │ └── Generic CMYK Profile.icc │ ├── com │ └── adobe │ │ └── acs │ │ └── commons │ │ ├── audit_log_search │ │ └── impl │ │ │ ├── AuditLogSearchServletTest.json │ │ │ └── audit.cnd │ │ ├── ccvar │ │ ├── filter │ │ │ └── ContentVariableJsonFilterContent.json │ │ └── impl │ │ │ ├── PropertyAggregatorServiceAppsContent.json │ │ │ └── PropertyAggregatorServiceContent.json │ │ ├── cloudconfig │ │ └── cloudconfig.json │ │ ├── dam │ │ └── impl │ │ │ └── ReviewTaskAssetMoverHandlerTest.json │ │ ├── data │ │ └── spreadsheet-data-types.xlsx │ │ ├── dynamicdeckdynamo │ │ └── dynamicdeckResources.json │ │ ├── email │ │ └── impl │ │ │ ├── emailTemplate.txt │ │ │ └── emailTemplateAttachment.html │ │ ├── errorpagehandler │ │ └── impl │ │ │ └── ErrorPageHandlerImplTest.json │ │ ├── exporters │ │ └── impl │ │ │ └── tags │ │ │ ├── brandTestCqTags.json │ │ │ └── brandTestTags.json │ │ ├── granite │ │ └── ui │ │ │ └── components │ │ │ └── impl │ │ │ └── include │ │ │ ├── filter-test.json │ │ │ └── namespace-wrapper-test.json │ │ ├── httpcache │ │ ├── engine │ │ │ └── impl │ │ │ │ └── cachecontent.html │ │ └── store │ │ │ ├── caffeine │ │ │ └── impl │ │ │ │ └── cachecontent.html │ │ │ ├── jcr │ │ │ └── impl │ │ │ │ ├── visitor │ │ │ │ └── mock │ │ │ │ │ └── cachecontent.html │ │ │ │ └── writer │ │ │ │ └── cachecontent.html │ │ │ └── mem │ │ │ └── impl │ │ │ └── cachecontent.html │ │ ├── marketo │ │ ├── cloudconfig.json │ │ ├── field-response.json │ │ ├── form-response.json │ │ ├── formvalue.json │ │ ├── pages.json │ │ ├── response-error.json │ │ ├── response-noassets.json │ │ ├── response-notsuccess.json │ │ └── token-response.json │ │ ├── mcp │ │ └── impl │ │ │ └── processes │ │ │ ├── BulkWorkflowTest.json │ │ │ ├── asset-folder-creator.xlsx │ │ │ ├── asset-ingestor.json │ │ │ ├── bulkPageTagger.xlsx │ │ │ ├── content.json │ │ │ ├── data-importer.xlsx │ │ │ ├── lotsofchildren.json │ │ │ ├── tag-creator.xlsx │ │ │ └── tags.json │ │ ├── models │ │ └── injectors │ │ │ └── impl │ │ │ ├── tags.json │ │ │ └── we-retail-pages.json │ │ ├── packaging │ │ └── impl │ │ │ ├── AssetPackagerServletConfiguration.json │ │ │ ├── AssetPackagerServletConfiguration2.json │ │ │ ├── AssetPackagerServletConfiguration3.json │ │ │ ├── AssetPackagerServletConfiguration4.json │ │ │ ├── AssetPackagerServletConfiguration5.json │ │ │ ├── AssetPackagerServletConfiguration6.json │ │ │ ├── AssetPackagerServletContent.json │ │ │ ├── AssetPackagerServletDamContent.json │ │ │ └── AssetPackagerServletPackagesContent.json │ │ ├── replication │ │ └── status │ │ │ └── impl │ │ │ ├── ReplicationStatusManagerImplTest.json │ │ │ └── replication.cnd │ │ ├── rewriter │ │ └── impl │ │ │ └── ContentVariableTransformerContent.json │ │ ├── wcm │ │ ├── impl │ │ │ ├── AemEnvironmentIndicatorFilterTest.json │ │ │ ├── PagesReferenceProviderTest.json │ │ │ ├── PublishUrlServletResponse.json │ │ │ ├── RobotsServlet.json │ │ │ ├── RobotsServlet_testAllowFolderAndDisallowPage.txt │ │ │ ├── RobotsServlet_testCrawlerDelay.txt │ │ │ ├── RobotsServlet_testDisallowFolderAndAllowPage.txt │ │ │ ├── RobotsServlet_testWriteFromAsset.txt │ │ │ ├── RobotsServlet_testWriteFromOsgiConfig.txt │ │ │ ├── RobotsServlet_testWriteFromOsgiConfigSimple.txt │ │ │ ├── RobotsServlet_testWriteFromPageProperties.txt │ │ │ ├── RobotsServlet_testWriteFromPageProperty.txt │ │ │ ├── SiteMapServlet.json │ │ │ └── emailTemplate.txt │ │ └── vanity │ │ │ └── impl │ │ │ └── RequestPathInfoWrapperContent.json │ │ └── workflow │ │ ├── bulk │ │ └── removal │ │ │ ├── WorkflowInstanceRemoverTest.json │ │ │ └── WorkflowInstanceRemoverTest_empty.json │ │ └── process │ │ └── impl │ │ ├── CopyPropertiesProcessTest.json │ │ ├── ReplicateWithOptionsWorkflowProcessTest.json │ │ └── SyncSmartTagsToXmpMetadataNodeTest.json │ ├── contentsync │ ├── asset.json │ ├── jcr_content.json │ ├── ordered-folder.json │ ├── riverside-camping-australia.1.json │ └── wknd-faqs.json │ ├── img │ └── test.png │ ├── logback-test-no-logging.xml │ ├── logback-test.xml │ └── remoteassetstest │ ├── cq5dam.thumbnail.140.100.png │ ├── cq5dam.thumbnail.48.48.png │ ├── cq5dam.web.1280.1280.png │ ├── nodesync │ ├── dam.a.a1jpg.content.json │ ├── dam.a.a1jpg.content.metadata.json │ ├── dam.a.a1jpg.content.renditions.1280.content.json │ ├── dam.a.a1jpg.content.renditions.1280.json │ ├── dam.a.a1jpg.content.renditions.48.content.json │ ├── dam.a.a1jpg.content.renditions.48.json │ ├── dam.a.a1jpg.content.renditions.json │ ├── dam.a.a1jpg.content.renditions.original.content.json │ ├── dam.a.a1jpg.content.renditions.original.json │ ├── dam.a.a1jpg.json │ ├── dam.a.a1sub.a3gif.content.json │ ├── dam.a.a1sub.a3gif.content.metadata.json │ ├── dam.a.a1sub.a3gif.content.renditions.1280.content.json │ ├── dam.a.a1sub.a3gif.content.renditions.1280.json │ ├── dam.a.a1sub.a3gif.content.renditions.48.content.json │ ├── dam.a.a1sub.a3gif.content.renditions.48.json │ ├── dam.a.a1sub.a3gif.content.renditions.json │ ├── dam.a.a1sub.a3gif.content.renditions.original.content.json │ ├── dam.a.a1sub.a3gif.content.renditions.original.json │ ├── dam.a.a1sub.a3gif.json │ ├── dam.a.a1sub.content.json │ ├── dam.a.a1sub.json │ ├── dam.a.a2png.content.json │ ├── dam.a.a2png.content.metadata.json │ ├── dam.a.a2png.content.renditions.1280.content.json │ ├── dam.a.a2png.content.renditions.1280.json │ ├── dam.a.a2png.content.renditions.48.content.json │ ├── dam.a.a2png.content.renditions.48.json │ ├── dam.a.a2png.content.renditions.json │ ├── dam.a.a2png.content.renditions.original.content.json │ ├── dam.a.a2png.content.renditions.original.json │ ├── dam.a.a2png.json │ ├── dam.a.content.json │ ├── dam.a.json │ ├── dam.b.content.json │ ├── dam.b.json │ ├── tags.a.a1.a1a.json │ ├── tags.a.a1.json │ ├── tags.a.a2.json │ ├── tags.a.json │ ├── tags.b.b1.json │ └── tags.b.json │ └── original.png ├── copy-javadoc.sh ├── dependency-check-maven-plugin-suppression.xml ├── generate-user-uuid.groovy ├── oakpal-checks ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── acs │ │ │ └── commons │ │ │ └── oakpal │ │ │ └── checks │ │ │ ├── AcsCommonsAuthorizableCompatibilityCheck.java │ │ │ ├── ContentClassifications.java │ │ │ ├── ImportedPackages.java │ │ │ ├── RecommendEnsureAuthorizable.java │ │ │ └── RecommendEnsureOakIndex.java │ ├── resources │ │ ├── OAKPAL-INF │ │ │ └── checklist │ │ │ │ ├── acs-commons-integrators.json │ │ │ │ ├── acs-internal.json │ │ │ │ ├── content-class-aem64.json │ │ │ │ └── content-class-aem65.json │ │ ├── bundleinfo │ │ │ └── 6.5.json │ │ └── com │ │ │ └── adobe │ │ │ └── acs │ │ │ └── commons │ │ │ └── oakpal │ │ │ └── checks │ │ │ ├── AcsCommonsAuthorizableCompatibilityCheck.properties │ │ │ ├── ContentClassifications.properties │ │ │ ├── ImportedPackages.properties │ │ │ ├── RecommendEnsureAuthorizable.properties │ │ │ └── RecommendEnsureOakIndex.properties │ └── script │ │ └── ExtractBundleInfo.groovy │ └── test │ ├── java │ └── com │ │ └── adobe │ │ └── acs │ │ └── commons │ │ └── oakpal │ │ ├── checks │ │ ├── AcsCommonsAuthorizableCompatibilityCheckTest.java │ │ ├── CheckTestBase.java │ │ ├── ContentClassificationsTest.java │ │ ├── ImportedPackagesTest.java │ │ ├── RecommendEnsureAuthorizableTest.java │ │ └── RecommendEnsureOakIndexTest.java │ │ └── it │ │ └── ChecklistIT.java │ └── resources │ ├── content-classifications-filevault │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ └── properties.xml │ └── jcr_root │ │ ├── apps │ │ └── acs │ │ │ ├── abstract │ │ │ ├── .content.xml │ │ │ └── script.js │ │ │ ├── final │ │ │ ├── .content.xml │ │ │ └── script.js │ │ │ ├── internal │ │ │ ├── .content.xml │ │ │ └── script.js │ │ │ ├── invalidcmp_final │ │ │ └── .content.xml │ │ │ ├── invalidcmp_final_child │ │ │ └── .content.xml │ │ │ ├── invalidcmp_internal │ │ │ └── .content.xml │ │ │ ├── invalidcmp_internal_child │ │ │ └── .content.xml │ │ │ ├── public │ │ │ ├── .content.xml │ │ │ └── script.js │ │ │ ├── validcmp_abstract │ │ │ └── .content.xml │ │ │ ├── validcmp_abstract_child │ │ │ └── .content.xml │ │ │ ├── validcmp_internal_public │ │ │ └── .content.xml │ │ │ ├── validcmp_internal_public_child │ │ │ └── .content.xml │ │ │ ├── validcmp_public │ │ │ └── .content.xml │ │ │ └── validcmp_public_child │ │ │ └── .content.xml │ │ ├── content │ │ └── acs │ │ │ ├── invalidpage_abstract │ │ │ └── .content.xml │ │ │ ├── invalidpage_final_child │ │ │ └── .content.xml │ │ │ ├── invalidpage_final_implicitchild │ │ │ └── .content.xml │ │ │ ├── invalidpage_internal │ │ │ └── .content.xml │ │ │ ├── validpage_final │ │ │ └── .content.xml │ │ │ └── validpage_public │ │ │ └── .content.xml │ │ └── libs │ │ └── out_of_bounds │ │ └── .content.xml │ ├── home-users-filevault │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ └── properties.xml │ ├── README-test-authorizables.md │ └── jcr_root │ │ └── home │ │ ├── groups │ │ ├── .content.xml │ │ ├── acs-commons-derived │ │ │ └── .content.xml │ │ └── developers │ │ │ └── .content.xml │ │ └── users │ │ ├── .content.xml │ │ ├── acme │ │ └── .content.xml │ │ ├── acs-commons-developer │ │ └── .content.xml │ │ └── system │ │ ├── .content.xml │ │ └── acs-commons-service-user-for-acme │ │ └── .content.xml │ ├── nodetypes │ └── content_classifications.cnd │ ├── oak-index-filevault │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ └── properties.xml │ └── jcr_root │ │ ├── .content.xml │ │ ├── _oak_index │ │ └── .content.xml │ │ ├── content │ │ ├── .content.xml │ │ └── _oak_index │ │ │ └── .content.xml │ │ └── etc │ │ ├── .content.xml │ │ └── _oak_index │ │ └── .content.xml │ ├── package-imports-version-mismatch-jar │ ├── .gitkeep │ └── META-INF │ │ └── MANIFEST.MF │ ├── package-imports │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ └── properties.xml │ └── jcr_root │ │ └── apps │ │ └── myco │ │ └── install │ │ └── testbundle.jar │ ├── simple-content │ ├── .gitkeep │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ ├── nodetypes.cnd │ │ │ └── properties.xml │ └── jcr_root │ │ ├── content │ │ └── example │ │ │ └── .content.xml │ │ └── etc │ │ └── example │ │ └── .content.xml │ ├── simple-libs │ ├── .gitkeep │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ ├── nodetypes.cnd │ │ │ └── properties.xml │ └── jcr_root │ │ └── apps │ │ └── example │ │ └── .content.xml │ ├── simple-mixed │ ├── .gitkeep │ ├── META-INF │ │ └── vault │ │ │ ├── filter.xml │ │ │ ├── nodetypes.cnd │ │ │ └── properties.xml │ └── jcr_root │ │ ├── apps │ │ └── example │ │ │ └── .content.xml │ │ ├── content │ │ └── example │ │ │ └── .content.xml │ │ └── etc │ │ └── example │ │ └── .content.xml │ └── simplelogger.properties ├── pom.xml ├── ui.apps ├── .gitignore ├── pom.xml └── src │ └── main │ ├── content │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ └── jcr_root │ │ └── apps │ │ ├── acs-commons │ │ ├── asset-selectors │ │ │ └── ms-office │ │ │ │ ├── asset-selector │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ ├── asset-selector.html │ │ │ │ └── clientlibs │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ ├── js.txt │ │ │ │ │ ├── resources │ │ │ │ │ └── icon.png │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── styles.less │ │ │ │ ├── page │ │ │ │ └── .content.xml │ │ │ │ ├── readme │ │ │ │ ├── .content.xml │ │ │ │ └── readme.html │ │ │ │ ├── resources │ │ │ │ ├── powerpoint_manifest.xml │ │ │ │ └── word_manifest.xml │ │ │ │ └── template │ │ │ │ ├── .content.xml │ │ │ │ └── page │ │ │ │ └── .content.xml │ │ ├── authoring │ │ │ ├── audio-asset-finder │ │ │ │ ├── .content.xml │ │ │ │ ├── audioController.js │ │ │ │ └── js.txt │ │ │ ├── dam-copy-publishurl │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── dam-copy-publish-url.css │ │ │ │ ├── dam-copy-publish-url.js │ │ │ │ └── js.txt │ │ │ ├── dam-location │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── reformat-degrees.js │ │ │ ├── editor-styles │ │ │ │ ├── .content.xml │ │ │ │ ├── audio.css │ │ │ │ └── css.txt │ │ │ ├── granite-select-filter │ │ │ │ ├── .content.xml │ │ │ │ ├── granite-select-filter.js │ │ │ │ └── js.txt │ │ │ ├── shared-component-properties │ │ │ │ ├── classicui │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ │ └── shared-component-properties-classic.js │ │ │ │ └── touchui │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ └── shared-component-properties.js │ │ │ ├── sites-copy-publishurl │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── js.txt │ │ │ │ ├── sites-copy-publish-url.css │ │ │ │ └── sites-copy-publish-url.js │ │ │ ├── switchlayers │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ └── shortcuts.js │ │ │ └── vendor │ │ │ │ ├── jquery.fonticonpicker │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── iconpicker.eot │ │ │ │ ├── iconpicker.svg │ │ │ │ ├── iconpicker.ttf │ │ │ │ ├── iconpicker.woff │ │ │ │ ├── jquery.fonticonpicker.css │ │ │ │ ├── jquery.fonticonpicker.js │ │ │ │ └── js.txt │ │ │ │ ├── jquery.hotkeys │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ └── jquery.hotkeys.js │ │ │ │ └── leaflet │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── css │ │ │ │ └── leaflet.css │ │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ ├── fix-image-path.js │ │ │ │ └── leaflet.js │ │ ├── clientlibs │ │ │ ├── angularCoral │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── headings.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── module.js │ │ │ │ │ ├── table.js │ │ │ │ │ └── toolsHeader.js │ │ │ ├── main │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── rte-rtl-switch │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ └── RightToLeftKeyboardShortcut.js │ │ │ └── vendor │ │ │ │ ├── angularjs │ │ │ │ ├── bindonce │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── bindonce.min.js │ │ │ │ │ └── js.txt │ │ │ │ └── v1.8 │ │ │ │ │ ├── all │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── js.txt │ │ │ │ │ ├── angular-animate.js │ │ │ │ │ ├── angular-animate.min.js │ │ │ │ │ ├── angular-animate.min.js.map │ │ │ │ │ ├── angular-aria.js │ │ │ │ │ ├── angular-aria.min.js │ │ │ │ │ ├── angular-aria.min.js.map │ │ │ │ │ ├── angular-cookies.js │ │ │ │ │ ├── angular-cookies.min.js │ │ │ │ │ ├── angular-cookies.min.js.map │ │ │ │ │ ├── angular-csp.css │ │ │ │ │ ├── angular-loader.js │ │ │ │ │ ├── angular-loader.min.js │ │ │ │ │ ├── angular-loader.min.js.map │ │ │ │ │ ├── angular-message-format.js │ │ │ │ │ ├── angular-message-format.min.js │ │ │ │ │ ├── angular-message-format.min.js.map │ │ │ │ │ ├── angular-messages.js │ │ │ │ │ ├── angular-messages.min.js │ │ │ │ │ ├── angular-messages.min.js.map │ │ │ │ │ ├── angular-mocks.js │ │ │ │ │ ├── angular-parse-ext.js │ │ │ │ │ ├── angular-parse-ext.min.js │ │ │ │ │ ├── angular-parse-ext.min.js.map │ │ │ │ │ ├── angular-resource.js │ │ │ │ │ ├── angular-resource.min.js │ │ │ │ │ ├── angular-resource.min.js.map │ │ │ │ │ ├── angular-route.js │ │ │ │ │ ├── angular-route.min.js │ │ │ │ │ ├── angular-route.min.js.map │ │ │ │ │ ├── angular-sanitize.js │ │ │ │ │ ├── angular-sanitize.min.js │ │ │ │ │ ├── angular-sanitize.min.js.map │ │ │ │ │ ├── angular-touch.js │ │ │ │ │ ├── angular-touch.min.js │ │ │ │ │ ├── angular-touch.min.js.map │ │ │ │ │ ├── angular.js │ │ │ │ │ ├── angular.min.js │ │ │ │ │ ├── angular.min.js.map │ │ │ │ │ ├── core │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── js.txt │ │ │ │ │ ├── errors.json │ │ │ │ │ ├── modules │ │ │ │ │ └── ng-storage │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── ngStorage.min.js │ │ │ │ │ ├── version.json │ │ │ │ │ └── version.txt │ │ │ │ ├── fontawesome │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.css │ │ │ │ └── resources │ │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── json │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── json2.js │ │ │ │ ├── jsondiffpatch │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── css │ │ │ │ │ ├── annotated.css │ │ │ │ │ └── html.css │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ ├── diff_match_patch_uncompressed.js │ │ │ │ │ ├── jsondiffpatch-formatters.js │ │ │ │ │ ├── jsondiffpatch-formatters.min.js │ │ │ │ │ ├── jsondiffpatch-formatters.min.map │ │ │ │ │ ├── jsondiffpatch-full.js │ │ │ │ │ ├── jsondiffpatch-full.min.js │ │ │ │ │ ├── jsondiffpatch-full.min.map │ │ │ │ │ ├── jsondiffpatch.js │ │ │ │ │ ├── jsondiffpatch.min.js │ │ │ │ │ └── jsondiffpatch.min.map │ │ │ │ ├── jsplumb │ │ │ │ ├── .content.xml │ │ │ │ ├── jquery.jsPlumb-1.7.2-min.js │ │ │ │ └── js.txt │ │ │ │ ├── lodash │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── lodash-v4.17.21.js │ │ │ │ └── qrcode │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ └── qrcode.min.js │ │ ├── components │ │ │ ├── authoring │ │ │ │ ├── draggablelist │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── init.jsp │ │ │ │ │ ├── readonly │ │ │ │ │ │ └── readonly.jsp │ │ │ │ │ └── render.jsp │ │ │ │ ├── graphiciconselect │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── render.jsp │ │ │ │ └── search-pathbrowser │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── search-pathbrowser.jsp │ │ │ ├── common │ │ │ │ └── datasources │ │ │ │ │ └── named-transforms │ │ │ │ │ └── named-transforms.jsp │ │ │ ├── content │ │ │ │ ├── embeddable │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── marketo │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── marketo.html │ │ │ │ ├── named-transform-image │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ ├── named-transform-image.html │ │ │ │ │ └── options.json.GET.jsp │ │ │ │ └── twitter-feed │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── icon.png │ │ │ │ │ └── twitter-feed.html │ │ │ ├── dam │ │ │ │ ├── asset-location-map │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── asset-location-map.html │ │ │ │ │ └── asset-location-map.js │ │ │ │ ├── color-swatches │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── cmyk.svg │ │ │ │ │ │ │ ├── lab.svg │ │ │ │ │ │ │ ├── process.svg │ │ │ │ │ │ │ ├── rgb.svg │ │ │ │ │ │ │ └── spot.svg │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── color-swatches.html │ │ │ │ │ └── color-swatches.js │ │ │ │ ├── custom-component-activator │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── clientlib │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── activator.js │ │ │ │ │ │ └── js.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── fonts.html │ │ │ │ │ └── fonts.js │ │ │ │ └── history │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ai_cc_app_RGB.svg │ │ │ │ │ │ ├── br_appicon_RGB.svg │ │ │ │ │ │ ├── id_cc_app_RGB.svg │ │ │ │ │ │ └── ps_cc_app_RGB.svg │ │ │ │ │ └── styles.css │ │ │ │ │ ├── history.html │ │ │ │ │ └── history.js │ │ │ ├── utilities │ │ │ │ ├── app-page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── app-page.jsp │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── form.less │ │ │ │ │ │ │ ├── notifications.less │ │ │ │ │ │ │ └── page.less │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── angularjs │ │ │ │ │ │ │ └── notifications.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ │ ├── file-api.jsp │ │ │ │ │ │ ├── footer-libs.jsp │ │ │ │ │ │ ├── head-libs.jsp │ │ │ │ │ │ └── notifications.jsp │ │ │ │ ├── audit-log-search │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.css │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ └── results.jsp │ │ │ │ ├── automatic-package-replication │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ └── js.txt │ │ │ │ │ └── content.jsp │ │ │ │ ├── bulk-workflow-manager │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.less │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ │ ├── aem-transient-workflow │ │ │ │ │ │ ├── form-info.jsp │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ ├── interval-update.jsp │ │ │ │ │ │ ├── status-table.jsp │ │ │ │ │ │ └── status.jsp │ │ │ │ │ │ ├── aem-workflow │ │ │ │ │ │ ├── form-info.jsp │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ ├── interval-update.jsp │ │ │ │ │ │ ├── status-table.jsp │ │ │ │ │ │ └── status.jsp │ │ │ │ │ │ ├── controls.jsp │ │ │ │ │ │ ├── failures-table.jsp │ │ │ │ │ │ ├── fast-action-manager │ │ │ │ │ │ ├── form-info.jsp │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ ├── status-table.jsp │ │ │ │ │ │ └── status.jsp │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ ├── status.jsp │ │ │ │ │ │ └── synthetic-workflow │ │ │ │ │ │ ├── form-info.jsp │ │ │ │ │ │ ├── form.jsp │ │ │ │ │ │ ├── status-table.jsp │ │ │ │ │ │ └── status.jsp │ │ │ │ ├── cloudconfig │ │ │ │ │ ├── clientlib │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── delete.js │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── summary.css │ │ │ │ │ ├── cloudconfiglist │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── cloudconfiglist.html │ │ │ │ │ └── marketo │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── marketo.jsp │ │ │ │ ├── component-error-handler │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── edit.html │ │ │ │ │ └── preview.html │ │ │ │ ├── contentsync │ │ │ │ │ ├── POST.jsp │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.css │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configurehostdatasource │ │ │ │ │ │ │ └── configurehostdatasource.jsp │ │ │ │ │ │ └── configurehostentry │ │ │ │ │ │ │ └── configurehostentry.jsp │ │ │ │ │ ├── history │ │ │ │ │ │ └── table │ │ │ │ │ │ │ └── table.html │ │ │ │ │ ├── iframe │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── iframe.jsp │ │ │ │ │ ├── selecthostdatasource │ │ │ │ │ │ └── selecthostdatasource.jsp │ │ │ │ │ └── strategydatasource │ │ │ │ │ │ └── strategydatasource.jsp │ │ │ │ ├── dispatcher-flush │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── configuration.html │ │ │ │ │ ├── instructions.html │ │ │ │ │ └── main.html │ │ │ │ ├── dynamic-deck │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib-base │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── dynamic-deck-action.js │ │ │ │ │ └── dynamic-deck.html │ │ │ │ ├── errorpagehandler │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── 404.jsp │ │ │ │ │ ├── default.jsp │ │ │ │ │ └── preview │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── errorpagehandler.css │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── errorpagehandler.js │ │ │ │ │ │ └── errormessage.jsp │ │ │ │ ├── exporters │ │ │ │ │ ├── tags-to-csv │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── app.less │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── app.js │ │ │ │ │ │ └── content.jsp │ │ │ │ │ └── users-to-csv │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.less │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ │ └── content.jsp │ │ │ │ ├── generic-list-console │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── generic-list-console.js │ │ │ │ │ └── meta │ │ │ │ │ │ └── meta.jsp │ │ │ │ ├── genericlist │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── body.jsp │ │ │ │ │ ├── content.jsp │ │ │ │ │ ├── content │ │ │ │ │ │ └── content.jsp │ │ │ │ │ ├── datasource │ │ │ │ │ │ └── datasource.jsp │ │ │ │ │ ├── generic-list.png │ │ │ │ │ └── list.json.jsp │ │ │ │ ├── instant-package │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib-authoring │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── instant-package.js │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ ├── includes │ │ │ │ │ │ └── form.jsp │ │ │ │ │ ├── option-selection │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── instantPackageButton │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── optionForm │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── jcr-compare │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── style.less │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ │ ├── tab-configuration.jsp │ │ │ │ │ │ ├── tab-content-comparison.jsp │ │ │ │ │ │ └── tab-download-json.jsp │ │ │ │ ├── manage-controlled-processes │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── mcp.css │ │ │ │ │ │ │ └── process-manager.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── nav.js │ │ │ │ │ │ │ └── scriptRunner.js │ │ │ │ │ ├── manage-controlled-processes.jsp │ │ │ │ │ ├── process-manager.html │ │ │ │ │ ├── start-process-form.html │ │ │ │ │ └── start-process.html │ │ │ │ ├── manage-redirects │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ └── js.txt │ │ │ │ │ ├── manage-redirects.html │ │ │ │ │ ├── redirect-row │ │ │ │ │ │ └── redirect-row.html │ │ │ │ │ ├── redirects │ │ │ │ │ │ ├── prefixsubmithandler │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── prefixsubmithandler.jsp │ │ │ │ │ │ ├── redirects.html │ │ │ │ │ │ └── submithandler │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── submithandler.jsp │ │ │ │ │ ├── replicate.POST.jsp │ │ │ │ │ ├── search.html │ │ │ │ │ ├── serverlibs │ │ │ │ │ │ └── context.js │ │ │ │ │ └── template.html │ │ │ │ ├── packager │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── acl-packager │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── configuration.html │ │ │ │ │ │ └── definition │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── package-thumbnail.png │ │ │ │ │ ├── asset-packager │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── configuration.html │ │ │ │ │ │ └── definition │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── package-thumbnail.png │ │ │ │ │ ├── authorizable-packager │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── configuration.html │ │ │ │ │ │ └── definition │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── package-thumbnail.png │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── packager.js │ │ │ │ │ ├── definition │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── package-thumbnail.png │ │ │ │ │ ├── instructions.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── query-packager │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── configuration.html │ │ │ │ │ │ └── definition │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── package-thumbnail.png │ │ │ │ │ └── results.html │ │ │ │ ├── page-compare │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.less │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── details.js │ │ │ │ │ │ │ ├── legend.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── diff.js │ │ │ │ │ ├── one.jsp │ │ │ │ │ └── page-compare.jsp │ │ │ │ ├── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── incompatible.html │ │ │ │ │ ├── instructions.html │ │ │ │ │ └── page.html │ │ │ │ ├── process-instance │ │ │ │ │ ├── errors.html │ │ │ │ │ ├── process-blob-report │ │ │ │ │ │ └── process-blob-report.html │ │ │ │ │ ├── process-generic-report │ │ │ │ │ │ └── process-generic-report.html │ │ │ │ │ └── process-instance.html │ │ │ │ ├── qr-code │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlib-authoring │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── authoring.js │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ │ └── form.jsp │ │ │ │ ├── redirectmappage │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ └── js.txt │ │ │ │ │ └── content.jsp │ │ │ │ ├── redirects │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── redirects.jsp │ │ │ │ ├── report-builder │ │ │ │ │ ├── columns │ │ │ │ │ │ ├── containing-page │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── containing-page.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── date │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── date.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── editor.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── path.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── predictedTags │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── predictedTags.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── property.jsp │ │ │ │ │ │ ├── references │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── references.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── replicationstatus │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── replicationstatus.jsp │ │ │ │ │ │ │ └── results.jsp │ │ │ │ │ │ ├── tags │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── results.jsp │ │ │ │ │ │ │ └── tags.jsp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── results.jsp │ │ │ │ │ │ │ └── text.jsp │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── paths-list │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── paths-list.jsp │ │ │ │ │ │ └── queryconfig │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── queryconfig.jsp │ │ │ │ │ ├── parameters │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── basic.jsp │ │ │ │ │ │ ├── dynamic-select │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── dynamic-select.html │ │ │ │ │ │ └── select │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── select.jsp │ │ │ │ │ ├── report-list-page │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── app.css │ │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── app.js │ │ │ │ │ │ └── content.jsp │ │ │ │ │ └── report-page │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.css │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ │ ├── content.jsp │ │ │ │ │ │ ├── includes │ │ │ │ │ │ ├── editor.jsp │ │ │ │ │ │ ├── head-libs.jsp │ │ │ │ │ │ ├── report-body.jsp │ │ │ │ │ │ └── report.jsp │ │ │ │ │ │ ├── report-page.jsp │ │ │ │ │ │ └── results.jsp │ │ │ │ ├── sites-publish-url │ │ │ │ │ └── .content.xml │ │ │ │ ├── sort-nodes │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ └── sort-nodes.html │ │ │ │ ├── system-notifications │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ ├── page.js │ │ │ │ │ │ └── page.less │ │ │ │ │ ├── list.jsp │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ │ ├── notification.js │ │ │ │ │ │ │ └── notification.less │ │ │ │ │ │ └── notification.jsp │ │ │ │ │ └── system-notifications.html │ │ │ │ ├── twitter-rate-limit-checker │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── body.jsp │ │ │ │ │ ├── head.jsp │ │ │ │ │ └── headlibs.jsp │ │ │ │ ├── version-compare │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── app.less │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── graph.jsp │ │ │ │ │ ├── options.jsp │ │ │ │ │ ├── page-header.jsp │ │ │ │ │ └── version-compare.jsp │ │ │ │ └── version-replicator │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ ├── css │ │ │ │ │ │ └── app.less │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── content.jsp │ │ │ │ │ └── includes │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── form.jsp │ │ │ │ │ └── results.html │ │ │ └── workflow │ │ │ │ ├── .content.xml │ │ │ │ ├── copy-properties │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── select-agent │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ ├── activate │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── cache-invalidate │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── datasource │ │ │ │ │ └── datasource.jsp │ │ │ │ └── deactivate │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ └── watson-audio-transcription │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ ├── console │ │ │ ├── .content.xml │ │ │ ├── createpagewizard │ │ │ │ └── .content.xml │ │ │ ├── createtemplatewizard │ │ │ │ └── .content.xml │ │ │ ├── folderproperties │ │ │ │ └── .content.xml │ │ │ ├── movepagewizard │ │ │ │ └── .content.xml │ │ │ ├── properties │ │ │ │ └── .content.xml │ │ │ ├── publishpagewizard │ │ │ │ └── .content.xml │ │ │ ├── publishtemplatewizard │ │ │ │ └── .content.xml │ │ │ ├── renderconditions │ │ │ │ └── require-aem │ │ │ │ │ └── require-aem.jsp │ │ │ ├── templates │ │ │ │ ├── .content.xml │ │ │ │ └── properties │ │ │ │ │ └── .content.xml │ │ │ ├── unpublishpagewizard │ │ │ │ └── .content.xml │ │ │ ├── unpublishtemplatewizard │ │ │ │ └── .content.xml │ │ │ └── versionhistory │ │ │ │ └── .content.xml │ │ ├── content │ │ │ ├── audit-log-search │ │ │ │ └── .content.xml │ │ │ ├── cloudservice │ │ │ │ ├── console │ │ │ │ │ └── .content.xml │ │ │ │ ├── create │ │ │ │ │ └── .content.xml │ │ │ │ └── thumb.png │ │ │ ├── contentsync │ │ │ │ ├── .content.xml │ │ │ │ ├── configure │ │ │ │ │ └── .content.xml │ │ │ │ └── history │ │ │ │ │ └── .content.xml │ │ │ ├── dynamic-deck-initiator │ │ │ │ └── .content.xml │ │ │ ├── jcr-compare │ │ │ │ └── .content.xml │ │ │ ├── manage-controlled-processes │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ ├── office-addin │ │ │ │ ├── powerpoint_manifest.xml │ │ │ │ ├── readme │ │ │ │ │ └── .content.xml │ │ │ │ └── word_manifest.xml │ │ │ ├── page-compare │ │ │ │ └── .content.xml │ │ │ ├── redirect-manager │ │ │ │ ├── .content.xml │ │ │ │ └── redirects │ │ │ │ │ └── .content.xml │ │ │ ├── reports │ │ │ │ └── .content.xml │ │ │ ├── sort-nodes │ │ │ │ └── .content.xml │ │ │ ├── version-compare │ │ │ │ └── .content.xml │ │ │ └── version-replicator │ │ │ │ └── .content.xml │ │ ├── dam │ │ │ └── content │ │ │ │ └── admin │ │ │ │ ├── .content.xml │ │ │ │ ├── asset-location-map │ │ │ │ └── .content.xml │ │ │ │ ├── color-swatches │ │ │ │ └── .content.xml │ │ │ │ ├── fonts │ │ │ │ └── .content.xml │ │ │ │ └── history │ │ │ │ └── .content.xml │ │ ├── datasources │ │ │ └── named-image-transforms │ │ │ │ └── named-image-transforms.jsp │ │ ├── extensions │ │ │ └── contentfinder │ │ │ │ ├── .content.xml │ │ │ │ └── audio.js │ │ ├── granite │ │ │ └── ui │ │ │ │ └── components │ │ │ │ ├── form │ │ │ │ └── queryautocomplete │ │ │ │ │ └── datasource │ │ │ │ │ └── datasource.jsp │ │ │ │ ├── include │ │ │ │ └── include.jsp │ │ │ │ └── renderconditions │ │ │ │ └── path │ │ │ │ └── path.jsp │ │ ├── gui │ │ │ ├── components │ │ │ │ └── authoring │ │ │ │ │ ├── dialogshared │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── README.md │ │ │ │ │ └── publishurl │ │ │ │ │ └── publishurl.jsp │ │ │ └── content │ │ │ │ └── publishurl │ │ │ │ └── .content.xml │ │ ├── renderconditons │ │ │ ├── iscurrentusermemberof │ │ │ │ └── iscurrentusermemberof.jsp │ │ │ └── ispublished │ │ │ │ └── ispublished.jsp │ │ ├── rte-plugins │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── clientlibs │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ ├── css │ │ │ │ │ │ └── accordion.less │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ │ └── accordion.js │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ │ └── rte-accordion.js │ │ │ └── dialog-plugin │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ └── dialog-plugin.js │ │ ├── templates │ │ │ └── utilities │ │ │ │ ├── acl-packager │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── asset-packager │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── authorizable-packager │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── automatic-package-replication │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── bulk-workflow-manager │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── dispatcher-flush │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── exporters │ │ │ │ ├── tags-to-csv │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── users-to-csv │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── genericlist │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── marketocloudconfig │ │ │ │ └── .content.xml │ │ │ │ ├── query-packager │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── redirectmap │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ └── system-notifications │ │ │ │ ├── .content.xml │ │ │ │ └── thumbnail.png │ │ ├── touchui-widgets │ │ │ ├── composite-multifield │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ │ ├── touchui-composite-multifield-nodestore.js │ │ │ │ │ ├── touchui-composite-multifield.js │ │ │ │ │ └── touchui-widgets-init.js │ │ │ ├── configure-limit-parsys │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── touchui-limit-parsys.js │ │ │ ├── configure-parsys-placeholder │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── touchui-configure-parsys-placeholder.js │ │ │ ├── contextualpathbrowser │ │ │ │ ├── .content.xml │ │ │ │ └── contextualpathbrowser.jsp │ │ │ ├── draggable-list │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ │ ├── draggablelist.css │ │ │ │ │ └── draggablelist.js │ │ │ ├── enriched-el-container │ │ │ │ ├── .content.xml │ │ │ │ └── enriched-el-container.jsp │ │ │ ├── icon-picker │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ │ ├── icon-picker.js │ │ │ │ │ └── jquery.fonticonpicker.coral.less │ │ │ ├── search-based-path-browser │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ │ └── search-based-pathbrowser.js │ │ │ └── showhidedialogfields │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── source │ │ │ │ ├── requiredvalidation.js │ │ │ │ ├── showhidedialogfields.js │ │ │ │ └── showhidedialogfieldstabs.js │ │ └── widgets │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ ├── resources │ │ │ └── images │ │ │ │ └── placeholders │ │ │ │ ├── cq-ad-placeholder.png │ │ │ │ ├── cq-audio-placeholder.png │ │ │ │ ├── cq-dl-placeholder.png │ │ │ │ ├── cq-textlines-placeholder.png │ │ │ │ └── cq-ul-placeholder.png │ │ │ ├── source │ │ │ └── css │ │ │ │ └── cq-placeholders.less │ │ │ └── themes │ │ │ └── default │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ ├── resources │ │ │ └── audio.png │ │ │ └── source │ │ │ └── audio.css │ │ ├── cq │ │ └── core │ │ │ └── content │ │ │ ├── .content.xml │ │ │ └── nav │ │ │ ├── .content.xml │ │ │ └── tools │ │ │ ├── .content.xml │ │ │ ├── acs-commons │ │ │ ├── .content.xml │ │ │ ├── audit-log-search │ │ │ │ └── .content.xml │ │ │ ├── automatic-package-replication │ │ │ │ └── .content.xml │ │ │ ├── bulk-workflow-manager │ │ │ │ └── .content.xml │ │ │ ├── content-packagers │ │ │ │ └── .content.xml │ │ │ ├── contentsync │ │ │ │ └── .content.xml │ │ │ ├── dispatcher-flush │ │ │ │ └── .content.xml │ │ │ ├── dynamic-deck-dynamo │ │ │ │ └── .content.xml │ │ │ ├── exporters │ │ │ │ └── .content.xml │ │ │ ├── generic-lists │ │ │ │ └── .content.xml │ │ │ ├── jcr-compare │ │ │ │ └── .content.xml │ │ │ ├── manage-controlled-processes │ │ │ │ └── .content.xml │ │ │ ├── page-compare │ │ │ │ └── .content.xml │ │ │ ├── qr-code │ │ │ │ └── .content.xml │ │ │ ├── redirect-manager │ │ │ │ └── .content.xml │ │ │ ├── redirect-maps │ │ │ │ └── .content.xml │ │ │ ├── reports │ │ │ │ └── .content.xml │ │ │ ├── sort-nodes │ │ │ │ └── .content.xml │ │ │ ├── system-notifications │ │ │ │ └── .content.xml │ │ │ ├── version-compare │ │ │ │ └── .content.xml │ │ │ └── version-replicator │ │ │ │ └── .content.xml │ │ │ └── cloudservices │ │ │ ├── .content.xml │ │ │ └── marketo │ │ │ └── .content.xml │ │ ├── dam │ │ └── gui │ │ │ └── content │ │ │ ├── .content.xml │ │ │ └── assets │ │ │ ├── .content.xml │ │ │ └── metadataeditor │ │ │ └── .content.xml │ │ ├── settings │ │ └── dam │ │ │ └── indesign │ │ │ └── scripts │ │ │ └── dynamic-deck.jsx │ │ └── wcm │ │ ├── .content.xml │ │ └── core │ │ ├── .content.xml │ │ └── content │ │ ├── .content.xml │ │ └── editor │ │ ├── .content.xml │ │ └── _jcr_content │ │ ├── .content.xml │ │ └── content │ │ ├── .content.xml │ │ └── items │ │ ├── .content.xml │ │ └── content │ │ ├── .content.xml │ │ └── header │ │ ├── .content.xml │ │ └── items │ │ ├── .content.xml │ │ ├── acs-commons_copy-publish-url-dialog │ │ └── .content.xml │ │ └── headerbar │ │ ├── .content.xml │ │ └── items │ │ ├── .content.xml │ │ └── pageinfopopover │ │ ├── .content.xml │ │ └── items │ │ ├── .content.xml │ │ └── list │ │ ├── .content.xml │ │ └── items │ │ ├── .content.xml │ │ └── acs-commons_copy-publish-url │ │ └── .content.xml │ └── resources │ ├── META-INF │ ├── COPYRIGHT │ ├── LICENSE │ └── NOTICE │ └── thumbnail.png ├── ui.config ├── .gitignore ├── pom.xml └── src │ └── main │ ├── content │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ └── jcr_root │ │ └── apps │ │ └── acs-commons │ │ ├── config.author │ │ ├── com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleAuthoringUIModeFilter.cfg.json │ │ ├── com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleEditorFilter.cfg.json │ │ ├── com.adobe.acs.commons.wcm.impl.QrCodeServlet.xml │ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-author.config │ │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-acs-commons-author.config │ │ ├── config.publish │ │ └── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-publish.config │ │ └── config │ │ ├── org.apache.sling.event.jobs.QueueConfiguration~package-garbage-collection.config │ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-all.config │ │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-acs-commons-all.config │ └── resources │ ├── META-INF │ ├── COPYRIGHT │ ├── LICENSE │ └── NOTICE │ └── thumbnail.png └── ui.content ├── .gitignore ├── pom.xml └── src └── main ├── content ├── META-INF │ └── vault │ │ └── filter.xml └── jcr_root │ ├── conf │ └── global │ │ └── settings │ │ ├── .content.xml │ │ └── redirects │ │ └── .content.xml │ ├── etc │ ├── acs-commons │ │ ├── .content.xml │ │ ├── automatic-package-replication │ │ │ └── .content.xml │ │ ├── bulk-workflow-manager │ │ │ └── .content.xml │ │ ├── dispatcher-flush │ │ │ └── .content.xml │ │ ├── exporters │ │ │ ├── .content.xml │ │ │ └── tag-to-csv-exporter │ │ │ │ └── .content.xml │ │ ├── instant-package │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ ├── clientlib-authoring │ │ │ │ ├── .content.xml │ │ │ │ └── js.txt │ │ │ │ └── instant-package-image.png │ │ ├── lists │ │ │ ├── .content.xml │ │ │ ├── dynamic-deck-query-list │ │ │ │ └── .content.xml │ │ │ ├── font-awesome-icons │ │ │ │ └── .content.xml │ │ │ └── report-parameter-components │ │ │ │ └── .content.xml │ │ ├── notifications │ │ │ └── .content.xml │ │ ├── packagers │ │ │ └── .content.xml │ │ ├── qr-code │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ ├── clientlib-authoring │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ │ └── qr-code-image.png │ │ ├── redirect-maps │ │ │ └── .content.xml │ │ └── twitter-rate-limit-checker │ │ │ └── .content.xml │ ├── dam │ │ ├── .content.xml │ │ └── video │ │ │ ├── .content.xml │ │ │ ├── flacmono │ │ │ └── .content.xml │ │ │ ├── mp3hq │ │ │ └── .content.xml │ │ │ └── ogghq │ │ │ └── .content.xml │ ├── designs │ │ └── acs-commons │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ └── notification │ │ └── email │ │ └── acs-commons │ │ ├── .content.xml │ │ └── health-check-status-email.txt │ └── var │ └── acs-commons │ ├── httpcache │ ├── .content.xml │ └── root │ │ └── .content.xml │ ├── on-deploy-scripts-status │ ├── .content.xml │ └── README.txt │ └── reports │ ├── sample-component-instances │ └── .content.xml │ ├── sample-components-report │ └── .content.xml │ ├── sample-page-report │ └── .content.xml │ └── sample-references-report │ └── .content.xml └── resources ├── META-INF ├── COPYRIGHT ├── LICENSE └── NOTICE └── thumbnail.png /.codeclimate/header.txt: -------------------------------------------------------------------------------- 1 | /\* 2 | ?\* #%L 3 | ?\* ACS AEM Commons[A-Za-z ]* Bundle 4 | ?\* %% 5 | ?\* Copyright \(C\) \d\d\d\d(( -)|( - \d\d\d\d))? Adobe 6 | ?\* %% 7 | ?\* Licensed under the Apache License, Version 2.0 \(the "License"\); 8 | ?\* you may not use this file except in compliance with the License. 9 | ?\* You may obtain a copy of the License at 10 | ?\*\w* 11 | ?\* http://www.apache.org/licenses/LICENSE-2.0 12 | ?\*\w* 13 | ?\* Unless required by applicable law or agreed to in writing, software 14 | ?\* distributed under the License is distributed on an "AS IS" BASIS, 15 | ?\* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | ?\* See the License for the specific language governing permissions and 17 | ?\* limitations under the License. 18 | ?\* #L% 19 | ?\*/ -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | # https://docs.codecov.com/docs/codecovyml-reference 2 | coverage: 3 | status: 4 | # https://docs.codecov.com/docs/commit-status 5 | project: 6 | default: 7 | # basic 8 | target: auto 9 | # each PR must not lower the coverage by more than the given percentage 10 | threshold: 0.1% 11 | patch: off -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- 1 | --exclude-exts=.min.css 2 | --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to automatically normalize line endings. 2 | * text=auto -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Required Information 2 | 3 | * [ ] AEM Version, including Service Packs, Cumulative Fix Packs, etc: _______ 4 | * [ ] ACS AEM Commons Version: _____ 5 | * [ ] Reproducible on Latest? yes/no 6 | 7 | 8 | ### Expected Behavior 9 | 10 | _Please describe briefly the expected behavior, i.e. when I do X, Y should happen._ 11 | 12 | ### Actual Behavior 13 | 14 | _Please describe briefly the actual behavior, i.e. when I do X, Z happens._ 15 | 16 | ### Steps to Reproduce 17 | 18 | _Starting from a vanilla instance of AEM at the above version, describe in explicit steps how to reproduce. Link to 19 | any supporting assets, e.g. content packages, below_ 20 | 21 | 22 | ### Links 23 | 24 | _Links to related assets, e.g. content packages containing test components_ 25 | 26 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | updateChangelogComment: > 2 | Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update the CHANGELOG.md file with this pull request. 3 | updateChangelogWhiteList: 4 | - task -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | # Label to use when marking an issue as stale 10 | staleLabel: wontfix 11 | # Comment to post when marking an issue as stale. Set to `false` to disable 12 | markComment: > 13 | This issue has been automatically marked as stale because it has not had 14 | recent activity. It will be closed if no further activity occurs. Thank you 15 | for your contributions. 16 | # Comment to post when closing a stale issue. Set to `false` to disable 17 | closeComment: false 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .repo 2 | .vlt 3 | .classpath 4 | .project 5 | .settings/ 6 | target/ 7 | .DS_Store 8 | lib/ 9 | 10 | #Intellij 11 | .idea/ 12 | *.iml 13 | generated/ 14 | 15 | #Netbeans 16 | nb-configuration.xml 17 | /bundle/nbproject/ 18 | 19 | #vlt directories 20 | content/src/main/content/jcr_root/.content.xml 21 | content/src/main/content/jcr_root/apps/.content.xml 22 | content/src/main/content/jcr_root/etc/.content.xml 23 | content/src/main/content/jcr_root/etc/designs/.content.xml 24 | content/src/main/content/jcr_root/etc/clientlibs/.content.xml 25 | .pmd 26 | .metadata 27 | 28 | node_modules 29 | bundle/mockserver.log 30 | 31 | #VS Code 32 | .vscode 33 | .history 34 | 35 | #Jenv 36 | .java-version 37 | 38 | # Maven versions plugin 39 | pom.xml.versionsBackup 40 | 41 | # Qlty plugin folder 42 | /.qlty/ 43 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /all/.gitignore: -------------------------------------------------------------------------------- 1 | /nbactions-autoInstallPackage.xml 2 | -------------------------------------------------------------------------------- /all/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /all/src/main/resources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/all/src/main/resources/thumbnail.png -------------------------------------------------------------------------------- /bundle-onprem/.gitignore: -------------------------------------------------------------------------------- 1 | /nb-configuration.xml 2 | *.factorypath 3 | /dependency-reduced-pom.xml 4 | /nbactions-autoInstallBundle.xml 5 | -------------------------------------------------------------------------------- /bundle-onprem/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /bundle/.gitignore: -------------------------------------------------------------------------------- 1 | /nb-configuration.xml 2 | *.factorypath 3 | /dependency-reduced-pom.xml 4 | /nbactions-autoInstallBundle.xml 5 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/analysis/jcrchecksum/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("2.2.0") 20 | package com.adobe.acs.commons.analysis.jcrchecksum; 21 | 22 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/assets/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("4.3.4") 19 | package com.adobe.acs.commons.assets; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/audit_log_search/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("3.7.0") 19 | package com.adobe.acs.commons.audit_log_search; 20 | 21 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/ccvar/filter/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("5.0.14") 20 | package com.adobe.acs.commons.ccvar.filter; 21 | 22 | import org.osgi.annotation.versioning.Version; 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/ccvar/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("5.0.14") 20 | package com.adobe.acs.commons.ccvar; 21 | 22 | import org.osgi.annotation.versioning.Version; 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/ccvar/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("5.0.14") 20 | package com.adobe.acs.commons.ccvar.util; 21 | 22 | import org.osgi.annotation.versioning.Version; 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/cloudconfig/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Adobe I/O services. 20 | */ 21 | @org.osgi.annotation.versioning.Version("4.4.0") 22 | package com.adobe.acs.commons.cloudconfig; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/contentsync/package-info.java: -------------------------------------------------------------------------------- 1 | /*- 2 | * #%L 3 | * ACS AEM Commons Bundle 4 | * %% 5 | * Copyright (C) 2013 - 2022 Adobe 6 | * %% 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * #L% 19 | */ 20 | @org.osgi.annotation.versioning.Version("6.12.0") 21 | package com.adobe.acs.commons.contentsync; 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/dam/audio/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Audio JSP Functions. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.0.2") 22 | package com.adobe.acs.commons.dam.audio; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/email/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Email Service. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.3.0") 22 | package com.adobe.acs.commons.email; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/fam/actions/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.1.1") 19 | package com.adobe.acs.commons.fam.actions; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/fam/mbean/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.1.1") 19 | package com.adobe.acs.commons.fam.mbean; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/fam/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("3.0.0") 19 | package com.adobe.acs.commons.fam; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/filefetch/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * File Fetcher 20 | */ 21 | @org.osgi.annotation.versioning.Version("4.4.1") 22 | package com.adobe.acs.commons.filefetch; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/functions/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("2.0.0") 19 | package com.adobe.acs.commons.functions; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/granite/ui/components/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.1.1") 19 | package com.adobe.acs.commons.granite.ui.components; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/http/injectors/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Http Injectors. 20 | */ 21 | @org.osgi.annotation.versioning.Version("2.1.2") 22 | package com.adobe.acs.commons.http.injectors; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/http/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Http Injectors. 20 | */ 21 | @org.osgi.annotation.versioning.Version("2.1.0") 22 | package com.adobe.acs.commons.http; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/config/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("2.4.0") 20 | package com.adobe.acs.commons.httpcache.config; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/engine/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("3.4.0") 20 | package com.adobe.acs.commons.httpcache.engine; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/exception/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("1.0.0") 20 | package com.adobe.acs.commons.httpcache.exception; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/invalidator/event/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("1.1.0") 20 | package com.adobe.acs.commons.httpcache.invalidator.event; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/keys/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("3.15.0") 20 | package com.adobe.acs.commons.httpcache.keys; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/rule/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("1.0.0") 20 | package com.adobe.acs.commons.httpcache.rule; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/store/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("2.0.0") 20 | package com.adobe.acs.commons.httpcache.store; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/httpcache/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @org.osgi.annotation.versioning.Version("1.1.0") 20 | package com.adobe.acs.commons.httpcache.util; 21 | 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/i18n/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Http Injectors. 20 | */ 21 | @org.osgi.annotation.versioning.Version("4.1.0") 22 | package com.adobe.acs.commons.i18n; 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/images/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Image utilities. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.3.1") 22 | package com.adobe.acs.commons.images; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/json/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * JSON Utilities 20 | */ 21 | @org.osgi.annotation.versioning.Version("2.0.0") 22 | package com.adobe.acs.commons.json; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/marketo/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Adobe I/O services. 20 | */ 21 | @org.osgi.annotation.versioning.Version("4.4.0") 22 | package com.adobe.acs.commons.marketo; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/mcp/mbean/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("3.10.1") 19 | package com.adobe.acs.commons.mcp.mbean; 20 | 21 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/mcp/model/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("4.3.0") 19 | package com.adobe.acs.commons.mcp.model; 20 | 21 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/mcp/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("4.3.0") 19 | package com.adobe.acs.commons.mcp.util; 20 | 21 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/notifications/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("3.1.1") 19 | package com.adobe.acs.commons.notifications; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/oak/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Oak utilities. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.0.0") 22 | package com.adobe.acs.commons.oak; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/ondeploy/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * On-Deploy Scripts Framework. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.1.0") 22 | package com.adobe.acs.commons.ondeploy; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirectmaps/models/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("6.0.0") 19 | package com.adobe.acs.commons.redirectmaps.models; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirectmaps/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("3.1.0") 19 | package com.adobe.acs.commons.redirectmaps; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirects/filter/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("6.0.4") 19 | package com.adobe.acs.commons.redirects.filter; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirects/models/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("6.12.0") 19 | package com.adobe.acs.commons.redirects.models; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirects/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.0.0") 19 | package com.adobe.acs.commons.redirects; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/redirects/servlets/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.2.0") 19 | package com.adobe.acs.commons.redirects.servlets; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/remoteassets/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("2.0.0") 19 | package com.adobe.acs.commons.remoteassets; 20 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/reports/api/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("2.0.0") 19 | package com.adobe.acs.commons.reports.api; 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/reports/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("1.0.1") 19 | package com.adobe.acs.commons.reports.internal; 20 | 21 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/reports/models/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @org.osgi.annotation.versioning.Version("1.2.1") 19 | package com.adobe.acs.commons.reports.models; 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/rewriter/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Rewriter Utilities. 20 | */ 21 | @org.osgi.annotation.versioning.Version("2.0.0") 22 | package com.adobe.acs.commons.rewriter; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/synth/WrappedRequestPathInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.adobe.acs.commons.synth; 20 | 21 | public interface WrappedRequestPathInfo { 22 | } 23 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/synth/children/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @Version("2.0.0") 19 | 20 | package com.adobe.acs.commons.synth.children; 21 | 22 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/synth/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("2.3.0") 20 | package com.adobe.acs.commons.synth; 21 | 22 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/twitter/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Twitter Client. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.0.1") 22 | package com.adobe.acs.commons.twitter; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/users/impl/Operation.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.adobe.acs.commons.users.impl; 20 | 21 | public enum Operation { 22 | ADD, REMOVE 23 | } 24 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/wcm/notifications/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | @Version("2.1.3") 20 | package com.adobe.acs.commons.wcm.notifications; 21 | 22 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/wcm/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Miscellaneous WCM Utilities. 20 | */ 21 | @org.osgi.annotation.versioning.Version("4.0.0") 22 | package com.adobe.acs.commons.wcm; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/wcm/vanity/WrappedRequestPathInfoWrapper.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package com.adobe.acs.commons.wcm.vanity; 19 | 20 | public interface WrappedRequestPathInfoWrapper { 21 | } 22 | -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/wcm/vanity/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Vanity WCM Utilities. 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.2.0") 22 | package com.adobe.acs.commons.wcm.vanity; -------------------------------------------------------------------------------- /bundle/src/main/java/com/adobe/acs/commons/workflow/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS AEM Commons 3 | * 4 | * Copyright (C) 2013 - 2023 Adobe 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * AEM Workflow APIs 20 | */ 21 | @org.osgi.annotation.versioning.Version("1.1.1") 22 | package com.adobe.acs.commons.workflow; -------------------------------------------------------------------------------- /bundle/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/CoatedFOGRA27.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/CoatedFOGRA27.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/CoatedFOGRA39.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/CoatedFOGRA39.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/JapanColor2001Coated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2001Coated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/JapanColor2001Uncoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2001Uncoated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/JapanColor2002Newspaper.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2002Newspaper.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/JapanWebCoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanWebCoated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/USSheetfedCoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USSheetfedCoated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/USSheetfedUncoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USSheetfedUncoated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/USWebCoatedSWOP.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USWebCoatedSWOP.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/USWebUncoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USWebUncoated.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/UncoatedFOGRA29.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/UncoatedFOGRA29.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/cmyk/WebCoatedFOGRA28.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/WebCoatedFOGRA28.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/rgb/AdobeRGB1998.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/AdobeRGB1998.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/rgb/AppleRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/AppleRGB.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/icc/rgb/ColorMatchRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/ColorMatchRGB.icc -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.3g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.3g2 -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.3gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.3gp -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.aac -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ai -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.aiff -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.avi -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.bmp -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* CSS Document */ 3 | 4 | /* REMOTE ASSET, FILETYPE: CSS */ 5 | 6 | h1 { 7 | font-weight:bold; 8 | font-size:36px; 9 | } -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.doc -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.docx -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.eps -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.epub -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.f4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.f4v -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.flv -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.gif -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.indd -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jar -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jpeg -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jpg -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.m2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.m2v -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.m4v -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.midi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.midi -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mov -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mp3 -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mp4 -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mpeg -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mpg -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ogg -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ogv -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.pdf -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.png -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ppt -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.pptx -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.psd -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.rar -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf820 2 | {\fonttbl\f0\fswiss\fcharset0 Helvetica;} 3 | {\colortbl;\red255\green255\blue255;} 4 | {\*\expandedcolortbl;;} 5 | \margl1440\margr1440\vieww10800\viewh8400\viewkind0 6 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 7 | 8 | \f0\fs24 \cf0 remote_asset: rtf} -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.swf -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tar -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tgz -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tif -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tiff -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.txt: -------------------------------------------------------------------------------- 1 | REMOTE ASSET, FILETYPE: TXT -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wav -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.webm -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wma -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wmv -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.xls -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.xlsx -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | REMOTE ASSET, FILETYPE: XML -------------------------------------------------------------------------------- /bundle/src/main/resources/remoteassets/remote_asset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.zip -------------------------------------------------------------------------------- /bundle/src/test/resources/ch/randelshofer/media/jpeg/Generic CMYK Profile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/ch/randelshofer/media/jpeg/Generic CMYK Profile.icc -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/audit_log_search/impl/AuditLogSearchServletTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType" : "sling:Folder", 3 | "1" : { 4 | "jcr:primaryType" : "cq:AuditEvent", 5 | "cq:path" : "/content/geometrixx" 6 | }, 7 | "2" : { 8 | "jcr:primaryType" : "cq:AuditEvent", 9 | "cq:path" : "/content/geometrixx/en" 10 | }, 11 | "3" : { 12 | "jcr:primaryType" : "cq:AuditEvent", 13 | "cq:path" : "/content/we-media/en", 14 | "cq:time" : "2017-11-01T15:01:43.751+00:00" 15 | }, 16 | "4" : { 17 | "jcr:primaryType" : "cq:AuditEvent", 18 | "cq:path" : "/content/we-media/en", 19 | "cq:time" : "2017-11-01T16:01:43.751+00:00" 20 | } 21 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/audit_log_search/impl/audit.cnd: -------------------------------------------------------------------------------- 1 | <'cq'='http://www.day.com/jcr/cq/1.0'> 2 | 3 | [cq:AuditEvent] 4 | - cq:userid (string) 5 | - cq:category (string) 6 | - cq:properties (binary) 7 | - * (undefined) multiple 8 | - * (undefined) 9 | - cq:time (date) 10 | - cq:type (string) 11 | - cq:path (string) 12 | + * (nt:base) = nt:base multiple version -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/cloudconfig/cloudconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "cq:PageContent", 5 | "jcr:title": "Test Cloud Config", 6 | "cq:template": "/apps/core/wcm/templates/marketocloudconfig", 7 | "sling:resourceType": "page", 8 | "endpointHost": "test.mktorest.com", 9 | "serverInstance": "//test.marketo.com", 10 | "munchkinId": "123-456-789", 11 | "clientId": "123", 12 | "clientSecret": "456" 13 | } 14 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/data/spreadsheet-data-types.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/com/adobe/acs/commons/data/spreadsheet-data-types.xlsx -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/email/impl/emailTemplate.txt: -------------------------------------------------------------------------------- 1 | Subject: Greetings 2 | 3 | 4 |
5 | 6 | Hello, 7 | 8 | Find your message here : ${message} 9 | 10 | 11 | From, 12 | ACS AEM Commons Team 13 | 14 | ------------------------------------------------------- 15 | This is an automatic generated message. Please do not reply. 16 | 17 |
18 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/errorpagehandler/impl/ErrorPageHandlerImplTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "cq:PageContent", 5 | "jcr:title": "Application", 6 | "errorPages": "/content/project/test/error-pages" 7 | }, 8 | "test": { 9 | "jcr:primaryType": "cq:Page", 10 | "jcr:content": { 11 | "jcr:primaryType": "cq:PageContent", 12 | "jcr:title": "Test" 13 | }, 14 | "page-without-content": { 15 | "jcr:primaryType": "cq:Page" 16 | }, 17 | "page-with-config": { 18 | "jcr:primaryType": "cq:Page", 19 | "errorPages": "/content/project/test/error-pages2" 20 | }, 21 | "error-pages": {}, 22 | "error-pages2": {} 23 | } 24 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/httpcache/engine/impl/cachecontent.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 | Some awesome cached content! 21 |
-------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/httpcache/store/caffeine/impl/cachecontent.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 | Some awesome cached content! 21 |
-------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/httpcache/store/jcr/impl/visitor/mock/cachecontent.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 | Some awesome cached content! 21 |
-------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/httpcache/store/jcr/impl/writer/cachecontent.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 | Some awesome cached content! 21 |
-------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/httpcache/store/mem/impl/cachecontent.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 | Some awesome cached content! 21 |
-------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/field-response.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": true, 3 | "errors": [], 4 | "requestId": "123", 5 | "warnings": [], 6 | "result": [ 7 | { 8 | "id": "Address", 9 | "isRequired": false, 10 | "dataType": "textarea", 11 | "maxLength": 2000, 12 | "visibleRows": 2 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/formvalue.json: -------------------------------------------------------------------------------- 1 | { 2 | "formvalue": { 3 | "jcr:primaryType": "cq:Page", 4 | "jcr:content": { 5 | "jcr:primaryType": "cq:PageContent", 6 | "jcr:title": "Form Value Test", 7 | "sling:resourceType": "core/wcm/components/page/v2/page", 8 | "root": { 9 | "jcr:primaryType": "nt:unstructured", 10 | "valid": { 11 | "jcr:primaryType": "nt:unstructured", 12 | "name": "Test", 13 | "source": "static", 14 | "value": "Value" 15 | }, 16 | "invalid": { 17 | "jcr:primaryType": "nt:unstructured", 18 | "name": "Test", 19 | "source": "static" 20 | } 21 | } 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/response-error.json: -------------------------------------------------------------------------------- 1 | { 2 | "requestId": "1234", 3 | "success": false, 4 | "warnings": [], 5 | "errors": [ 6 | { 7 | "code": "601", 8 | "message": "Access token invalid" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/response-noassets.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": true, 3 | "errors": [], 4 | "requestId": "2134", 5 | "warnings": [ 6 | "No assets found for the given search criteria." 7 | ] 8 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/response-notsuccess.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": false, 3 | "errors": [], 4 | "requestId": "123", 5 | "warnings": [] 6 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/marketo/token-response.json: -------------------------------------------------------------------------------- 1 | { 2 | "access_token": "TOKEN", 3 | "token_type": "bearer", 4 | "expires_in": 1, 5 | "scope": "api-full-access@adobe.com" 6 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/BulkWorkflowTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "test-1.png": { 3 | "jcr:primaryType": "dam:Asset", 4 | "jcr:content": { 5 | "jcr:primaryType": "dam:AssetContent", 6 | "metadata": { 7 | "jcr:primaryType": "nt:unstructured" 8 | } 9 | } 10 | }, 11 | "test-2.png": { 12 | "jcr:primaryType": "dam:Asset", 13 | "jcr:content": { 14 | "jcr:primaryType": "dam:AssetContent", 15 | "metadata": { 16 | "jcr:primaryType": "nt:unstructured" 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/asset-folder-creator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/asset-folder-creator.xlsx -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/asset-ingestor.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:Folder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Wed Aug 05 2020 14:22:27 GMT+0100", 5 | "jcr:content": { 6 | "jcr:primaryType": "nt:unstructured", 7 | "jcr:title": "Test Folder", 8 | "sourcing": "false" 9 | } 10 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/bulkPageTagger.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/bulkPageTagger.xlsx -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/data-importer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/data-importer.xlsx -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/tag-creator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/com/adobe/acs/commons/mcp/impl/processes/tag-creator.xlsx -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/packaging/impl/AssetPackagerServletPackagesContent.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:Folder" 3 | } 4 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/replication/status/impl/ReplicationStatusManagerImplTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "page" : { 3 | "jcr:primaryType" : "cq:Page", 4 | "jcr:content" : { 5 | "jcr:primaryType" : "nt:unstructured" 6 | } 7 | }, 8 | "asset" : { 9 | "jcr:primaryType" : "dam:Asset", 10 | "jcr:content" : { 11 | "jcr:primaryType" : "nt:unstructured" 12 | } 13 | }, 14 | "unreplicated" : { 15 | "jcr:primaryType" : "nt:unstructured" 16 | }, 17 | "replicated" : { 18 | "jcr:primaryType" : "nt:unstructured", 19 | "jcr:mixinTypes" : [ 20 | "cq:ReplicationStatus" 21 | ], 22 | "cq:lastReplicationAction" : "ACTIVATE", 23 | "cq:lastReplicatedBy" : "old value", 24 | "cq:lastReplicated" : "Thu Aug 07 2014 16:32:59 GMT+0200" 25 | } 26 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/replication/status/impl/replication.cnd: -------------------------------------------------------------------------------- 1 | <'cq'='http://www.day.com/jcr/cq/1.0'> 2 | 3 | [cq:Page] > nt:unstructured 4 | [dam:Asset] > nt:unstructured 5 | 6 | [cq:ReplicationStatus] 7 | mixin 8 | - cq:lastPublishedBy (string) ignore 9 | - cq:lastReplicatedBy (string) ignore 10 | - cq:lastReplicationAction (string) ignore 11 | - cq:lastReplicationStatus (string) ignore 12 | - cq:lastPublished (date) ignore 13 | - cq:lastReplicated (date) ignore -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/AemEnvironmentIndicatorFilterTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "test": { 3 | "jcr:primaryType": "cq:Page", 4 | "jcr:content": { 5 | "jcr:primaryType": "cq:PageContent" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/PublishUrlServletResponse.json: -------------------------------------------------------------------------------- 1 | {"Local":"http://localhost:4502/content/we-retail/us/en/experience.html","Author":"https://aem.author.someorganization.com/content/we-retail/us/en/experience.html","Publish":"https://aem.publish.someorganization.com/content/we-retail/us/en/experience.html","Dispatcher":"https://www.someorganization.com/experience"} -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testAllowFolderAndDisallowPage.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: /content/geometrixx/en/allow-folder-but-disallow-page/ 3 | Disallow: /content/geometrixx/en/allow-folder-but-disallow-page.html 4 | Sitemap: https://www.geometrixx.com/content/geometrixx/en.sitemap.xml 5 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testCrawlerDelay.txt: -------------------------------------------------------------------------------- 1 | Crawl-delay: 60 2 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testDisallowFolderAndAllowPage.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: /content/geometrixx/en/allow-page-but-disallow-folder.html 3 | Disallow: /content/geometrixx/en/allow-page-but-disallow-folder/ 4 | Sitemap: https://www.geometrixx.com/content/geometrixx/en.sitemap.xml 5 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testWriteFromAsset.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /we-retail/ 3 | Allow: /geometrixx/ -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testWriteFromOsgiConfig.txt: -------------------------------------------------------------------------------- 1 | # Start Group: one 2 | User-agent: googlebot 3 | Allow: /botsOnly/ 4 | Allow: /onlyGoogle/ 5 | Disallow: /noGoogle/ 6 | Disallow: /stillNoGoogle/ 7 | # End Group: one 8 | # Start Group: two 9 | User-agent: bingbot 10 | User-agent: yahoobot 11 | Disallow: /content/geometrixx/en/no-bots/ 12 | # End Group: two 13 | # Start Group: three 14 | User-agent: * 15 | Allow: /content/geometrixx/en/ 16 | # End Group: three 17 | Sitemap: https://www.geometrixx.com/sitemap.xml 18 | Sitemap: https://www.geometrixx.com/content/geometrixx/en.sitemap.xml 19 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testWriteFromOsgiConfigSimple.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testWriteFromPageProperties.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: /content/geometrixx/en/ 3 | Disallow: /content/geometrixx/en/no-bots/ 4 | User-agent: googlebot 5 | Allow: /content/geometrixx/en/ 6 | Disallow: /content/geometrixx/en/about/ 7 | Sitemap: https://www.geometrixx.com/content/geometrixx/en.sitemap.xml 8 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/RobotsServlet_testWriteFromPageProperty.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/SiteMapServlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "en" : { 3 | "jcr:primaryType" : "cq:Page", 4 | "jcr:content" : { 5 | "jcr:primaryType": "cq:PageContent" 6 | }, 7 | "events" : { 8 | "jcr:primaryType" : "cq:Page", 9 | "jcr:content" : { 10 | "jcr:primaryType": "cq:PageContent" 11 | } 12 | }, 13 | "about" : { 14 | "jcr:primaryType" : "cq:Page", 15 | "jcr:content" : { 16 | "jcr:primaryType": "cq:PageContent" 17 | } 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/wcm/impl/emailTemplate.txt: -------------------------------------------------------------------------------- 1 | Subject: Greetings 2 | 3 | 4 |
5 | 6 | Hello, 7 | 8 | Find your message here : ${message} 9 | 10 | 11 | From, 12 | ACS AEM Commons Team 13 | 14 | ------------------------------------------------------- 15 | This is an automatic generated message. Please do not reply. 16 | 17 |
18 | -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/workflow/bulk/removal/WorkflowInstanceRemoverTest_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:Folder", 3 | "server0": { 4 | "jcr:primaryType": "sling:Folder", 5 | "2021-05-06": { 6 | "jcr:primaryType": "sling:Folder", 7 | "jcr:createdBy": "workflow-service" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/com/adobe/acs/commons/workflow/process/impl/ReplicateWithOptionsWorkflowProcessTest.json: -------------------------------------------------------------------------------- 1 | { 2 | "page" : { 3 | "jcr:primaryType" : "cq:Page", 4 | "jcr:content" : { 5 | "jcr:primaryType" : "nt:unstructured" 6 | }, 7 | "child1" : { 8 | "jcr:primaryType": "cq:Page", 9 | "jcr:content": { 10 | "jcr:primaryType": "nt:unstructured" 11 | } 12 | }, 13 | "child2" : { 14 | "jcr:primaryType": "cq:Page", 15 | "jcr:content": { 16 | "jcr:primaryType": "nt:unstructured" 17 | } 18 | } 19 | }, 20 | "asset" : { 21 | "jcr:primaryType" : "dam:Asset", 22 | "jcr:content" : { 23 | "jcr:primaryType" : "nt:unstructured" 24 | }, 25 | "mpConfig" : "/content/mpConfig" 26 | } 27 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/contentsync/ordered-folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:OrderedFolder", 3 | "jcr:createdBy": "john.doe", 4 | "jcr:title": "Wknd Fragments", 5 | "cq:adobeTargetExportFormat": "html", 6 | "jcr:created": "2021-09-02T15:06:55.647Z", 7 | "cq:allowedTemplates": ["/conf/wknd/settings/wcm/templates/(?!page-).*"] 8 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/img/test.png -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/remoteassetstest/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/remoteassetstest/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/cq5dam.web.1280.1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/remoteassetstest/cq5dam.web.1280.1280.png -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.1280.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "workflow-process-service", 4 | "jcr:mimeType": "image/jpeg", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 6 | ":jcr:data": 1866 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.1280.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/jpeg", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 10 | ":jcr:data": 1866 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.48.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "workflow-process-service", 4 | "jcr:mimeType": "image/png", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 6 | ":jcr:data": 7404 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.48.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/png", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 10 | ":jcr:data": 7404 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:folder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600", 5 | "cq5dam.thumbnail.48.48.png": { 6 | "jcr:primaryType": "nt:file", 7 | "jcr:createdBy": "workflow-process-service", 8 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600" 9 | }, 10 | "cq5dam.web.1280.1280.jpeg": { 11 | "jcr:primaryType": "nt:file", 12 | "jcr:createdBy": "workflow-process-service", 13 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600" 14 | }, 15 | "original": { 16 | "jcr:primaryType": "nt:file", 17 | "jcr:createdBy": "admin", 18 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600" 19 | } 20 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.original.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "admin", 4 | "jcr:mimeType": "image/jpeg", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 6 | ":jcr:data": 2071 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1jpg.content.renditions.original.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:10:50 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "admin", 8 | "jcr:mimeType": "image/jpeg", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:10:50 GMT-0600", 10 | ":jcr:data": 2071 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.1280.content.json: -------------------------------------------------------------------------------- 1 | {"jcr:primaryType":"oak:Resource","jcr:lastModifiedBy":"workflow-process-service","jcr:mimeType":"image/gif","jcr:lastModified":"Mon Jan 14 2019 13:11:47 GMT-0600",":jcr:data":2144} -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.1280.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/gif", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:47 GMT-0600", 10 | ":jcr:data": 2144 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.48.content.json: -------------------------------------------------------------------------------- 1 | {"jcr:primaryType":"oak:Resource","jcr:lastModifiedBy":"workflow-process-service","jcr:mimeType":"image/png","jcr:lastModified":"Mon Jan 14 2019 13:11:47 GMT-0600",":jcr:data":6433} -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.48.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/png", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:47 GMT-0600", 10 | ":jcr:data": 6433 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:folder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 5 | "cq5dam.thumbnail.48.48.png": { 6 | "jcr:primaryType": "nt:file", 7 | "jcr:createdBy": "workflow-process-service", 8 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600" 9 | }, 10 | "cq5dam.web.1280.1280.gif": { 11 | "jcr:primaryType": "nt:file", 12 | "jcr:createdBy": "workflow-process-service", 13 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600" 14 | }, 15 | "original": { 16 | "jcr:primaryType": "nt:file", 17 | "jcr:createdBy": "admin", 18 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600" 19 | } 20 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.original.content.json: -------------------------------------------------------------------------------- 1 | {"jcr:primaryType":"oak:Resource","jcr:lastModifiedBy":"admin","jcr:mimeType":"image/gif","jcr:lastModified":"Mon Jan 14 2019 13:11:47 GMT-0600",":jcr:data":3326} -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.content.renditions.original.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "admin", 8 | "jcr:mimeType": "image/gif", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:47 GMT-0600", 10 | ":jcr:data": 3326 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.a3gif.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "dam:Asset", 3 | "jcr:mixinTypes": [ 4 | "mix:referenceable" 5 | ], 6 | "jcr:createdBy": "admin", 7 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 8 | "jcr:uuid": "cfbb0749-a330-4a4d-85ba-198b6385b5db", 9 | "jcr:content": { 10 | "jcr:primaryType": "dam:AssetContent", 11 | "jcr:lastModifiedBy": "admin", 12 | "dam:assetState": "processed", 13 | "jcr:lastModified": "Mon Jan 14 2019 13:11:47 GMT-0600", 14 | "dam:relativePath": "a/subfolder1/image_a3.gif" 15 | } 16 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "jcr:title": "Sub Folder 1", 4 | "folderThumbnail": { 5 | "jcr:primaryType": "nt:file", 6 | "jcr:createdBy": "idsjobprocessor", 7 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600" 8 | } 9 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a1sub.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:OrderedFolder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:11:30 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "nt:unstructured", 7 | "jcr:title": "Sub Folder 1" 8 | }, 9 | "image_a3.gif": { 10 | "jcr:primaryType": "dam:Asset", 11 | "jcr:mixinTypes": [ 12 | "mix:referenceable" 13 | ], 14 | "jcr:createdBy": "admin", 15 | "jcr:created": "Mon Jan 14 2019 13:11:47 GMT-0600", 16 | "jcr:uuid": "cfbb0749-a330-4a4d-85ba-198b6385b5db" 17 | } 18 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.1280.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "workflow-process-service", 4 | "jcr:mimeType": "image/png", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 6 | ":jcr:data": 7677 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.1280.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/png", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 10 | ":jcr:data": 7677 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.48.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "workflow-process-service", 4 | "jcr:mimeType": "image/png", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 6 | ":jcr:data": 7134 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.48.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "workflow-process-service", 4 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "workflow-process-service", 8 | "jcr:mimeType": "image/png", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 10 | ":jcr:data": 7134 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:folder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600", 5 | "cq5dam.web.1280.1280.png": { 6 | "jcr:primaryType": "nt:file", 7 | "jcr:createdBy": "workflow-process-service", 8 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600" 9 | }, 10 | "cq5dam.thumbnail.48.48.png": { 11 | "jcr:primaryType": "nt:file", 12 | "jcr:createdBy": "workflow-process-service", 13 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600" 14 | }, 15 | "original": { 16 | "jcr:primaryType": "nt:file", 17 | "jcr:createdBy": "admin", 18 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600" 19 | } 20 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.original.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "oak:Resource", 3 | "jcr:lastModifiedBy": "admin", 4 | "jcr:mimeType": "image/png", 5 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 6 | ":jcr:data": 5296 7 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.content.renditions.original.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:file", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "oak:Resource", 7 | "jcr:lastModifiedBy": "admin", 8 | "jcr:mimeType": "image/png", 9 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 10 | ":jcr:data": 5296 11 | } 12 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.a2png.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "dam:Asset", 3 | "jcr:mixinTypes": [ 4 | "mix:referenceable" 5 | ], 6 | "jcr:createdBy": "admin", 7 | "jcr:created": "Mon Jan 14 2019 13:11:37 GMT-0600", 8 | "jcr:uuid": "0f26daa1-12bb-44d7-a9d3-b666792ab3ac", 9 | "jcr:content": { 10 | "jcr:primaryType": "dam:AssetContent", 11 | "jcr:lastModifiedBy": "admin", 12 | "dam:assetState": "processed", 13 | "jcr:lastModified": "Mon Jan 14 2019 13:11:37 GMT-0600", 14 | "dam:relativePath": "a/image_a2.png" 15 | } 16 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.a.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "jcr:title": "A", 4 | "folderThumbnail": { 5 | "jcr:primaryType": "nt:file", 6 | "jcr:createdBy": "idsjobprocessor", 7 | "jcr:created": "Mon Jan 14 2019 13:08:07 GMT-0600" 8 | } 9 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.b.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "jcr:title": "B" 4 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/dam.b.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "sling:OrderedFolder", 3 | "jcr:createdBy": "admin", 4 | "jcr:created": "Mon Jan 14 2019 13:06:11 GMT-0600", 5 | "jcr:content": { 6 | "jcr:primaryType": "nt:unstructured", 7 | "jcr:title": "B" 8 | } 9 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/tags.a.a1.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Tag", 3 | "jcr:createdBy": "admin", 4 | "jcr:title": "Tag A1", 5 | "jcr:created": "Mon Jan 14 2019 09:46:30 GMT-0600", 6 | "jcr:description": "Test Tag #A1", 7 | "sling:resourceType": "cq/tagging/components/tag", 8 | "tag_a1a": { 9 | "some": "data... (this doesnt actually get used b/c each level deeper is re-fetched)" 10 | } 11 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/tags.a.a2.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Tag", 3 | "jcr:createdBy": "admin", 4 | "jcr:title": "Tag A2", 5 | "jcr:created": "Mon Jan 14 2019 09:46:52 GMT-0600", 6 | "jcr:description": "Test Tag #A2", 7 | "sling:resourceType": "cq/tagging/components/tag" 8 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/tags.a.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Tag", 3 | "jcr:createdBy": "admin", 4 | "jcr:title": "A", 5 | "jcr:created": "Mon Jan 14 2019 09:45:50 GMT-0600", 6 | "jcr:description": "", 7 | "sling:resourceType": "cq/tagging/components/tag", 8 | "tag_a1": { 9 | "jcr:primaryType": "cq:Tag", 10 | "jcr:createdBy": "admin", 11 | "jcr:title": "Tag A1", 12 | "jcr:created": "Mon Jan 14 2019 09:46:30 GMT-0600", 13 | "jcr:description": "Test Tag #A1", 14 | "sling:resourceType": "cq/tagging/components/tag" 15 | }, 16 | "tag_a2": { 17 | "jcr:primaryType": "cq:Tag", 18 | "jcr:createdBy": "admin", 19 | "jcr:title": "Tag A2", 20 | "jcr:created": "Mon Jan 14 2019 09:46:52 GMT-0600", 21 | "jcr:description": "Test Tag #A2", 22 | "sling:resourceType": "cq/tagging/components/tag" 23 | } 24 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/tags.b.b1.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Tag", 3 | "jcr:createdBy": "admin", 4 | "jcr:title": "Tag B1", 5 | "jcr:created": "Mon Jan 14 2019 09:48:02 GMT-0600", 6 | "jcr:description": "Test Tag #B1", 7 | "sling:resourceType": "cq/tagging/components/tag" 8 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/nodesync/tags.b.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "cq:Tag", 3 | "jcr:createdBy": "admin", 4 | "jcr:title": "B", 5 | "jcr:created": "Mon Jan 14 2019 09:45:56 GMT-0600", 6 | "jcr:description": "", 7 | "sling:resourceType": "cq/tagging/components/tag", 8 | "tag_b1": { 9 | "jcr:primaryType": "cq:Tag", 10 | "jcr:createdBy": "admin", 11 | "jcr:title": "Tag B1", 12 | "jcr:created": "Mon Jan 14 2019 09:48:02 GMT-0600", 13 | "jcr:description": "Test Tag #B1", 14 | "sling:resourceType": "cq/tagging/components/tag" 15 | } 16 | } -------------------------------------------------------------------------------- /bundle/src/test/resources/remoteassetstest/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/test/resources/remoteassetstest/original.png -------------------------------------------------------------------------------- /oakpal-checks/src/main/resources/OAKPAL-INF/checklist/acs-commons-integrators.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "acs-commons-integrators", 3 | "checks": [ 4 | { 5 | "name": "authorizable-compatibility-check", 6 | "impl": "com.adobe.acs.commons.oakpal.checks.AcsCommonsAuthorizableCompatibilityCheck" 7 | }, 8 | { 9 | "name": "recommend-ensure-authorizable", 10 | "impl": "com.adobe.acs.commons.oakpal.checks.RecommendEnsureAuthorizable" 11 | }, 12 | { 13 | "name": "recommend-ensure-oak-index", 14 | "impl": "com.adobe.acs.commons.oakpal.checks.RecommendEnsureOakIndex" 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /oakpal-checks/src/main/resources/com/adobe/acs/commons/oakpal/checks/AcsCommonsAuthorizableCompatibilityCheck.properties: -------------------------------------------------------------------------------- 1 | # 2 | # ACS AEM Commons 3 | # 4 | # Copyright (C) 2013 - 2023 Adobe 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | {0}\:\ reserved\ ID\ prefix\ [{1}]={0}: reserved ID prefix [{1}] -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/abstract/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/abstract/script.js -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/final/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/final/script.js -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/internal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/internal/script.js -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/content-classifications-filevault/jcr_root/apps/acs/public/script.js -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/nodetypes/content_classifications.cnd: -------------------------------------------------------------------------------- 1 | <'cq'='http://www.day.com/jcr/cq/1.0'> 2 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 3 | <'granite'='http://www.adobe.com/jcr/granite/1.0'> 4 | 5 | [sling:Folder] > nt:folder 6 | - * (undefined) 7 | - * (undefined) multiple 8 | + * (nt:base) = sling:Folder version 9 | 10 | [granite:PublicArea] 11 | mixin 12 | 13 | [granite:FinalArea] 14 | mixin 15 | 16 | [granite:AbstractArea] 17 | mixin 18 | 19 | [granite:InternalArea] 20 | mixin 21 | -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/package-imports-version-mismatch-jar/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/package-imports-version-mismatch-jar/.gitkeep -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/package-imports-version-mismatch-jar/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-SymbolicName: com.adobe.testz.package-imports 3 | Bundle-Version: 1.0.0 4 | Import-Package: com.day.cq.search;version="[2.0.0,3.0.0)" 5 | -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/package-imports/jcr_root/apps/myco/install/testbundle.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/package-imports/jcr_root/apps/myco/install/testbundle.jar -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-content/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/simple-content/.gitkeep -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-content/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | 3 | [sling:Folder] > nt:folder 4 | - * (undefined) 5 | - * (undefined) multiple 6 | + * (nt:base) = sling:Folder version 7 | 8 | -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-libs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/simple-libs/.gitkeep -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-libs/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | 3 | [sling:Folder] > nt:folder 4 | - * (undefined) 5 | - * (undefined) multiple 6 | + * (nt:base) = sling:Folder version 7 | 8 | -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-mixed/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/oakpal-checks/src/test/resources/simple-mixed/.gitkeep -------------------------------------------------------------------------------- /oakpal-checks/src/test/resources/simple-mixed/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | 3 | [sling:Folder] > nt:folder 4 | - * (undefined) 5 | - * (undefined) multiple 6 | + * (nt:base) = sling:Folder version 7 | 8 | -------------------------------------------------------------------------------- /ui.apps/.gitignore: -------------------------------------------------------------------------------- 1 | /nbactions-autoInstallPackage.xml 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/asset-selectors/ms-office/asset-selector/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | styles.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/asset-selectors/ms-office/asset-selector/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | scripts.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/asset-selectors/ms-office/asset-selector/clientlibs/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/asset-selectors/ms-office/asset-selector/clientlibs/resources/icon.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/asset-selectors/ms-office/asset-selector/clientlibs/styles.less: -------------------------------------------------------------------------------- 1 | #acs-commons__asset-selectors__ms-office--container { 2 | overflow: hidden; 3 | padding-top: 56.25%; 4 | } 5 | 6 | #acs-commons__asset-selectors__ms-office--iframe { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | width: 100%; 11 | height: 100%; 12 | border: 0; 13 | } 14 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/audio-asset-finder/js.txt: -------------------------------------------------------------------------------- 1 | audioController.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/dam-copy-publishurl/css.txt: -------------------------------------------------------------------------------- 1 | dam-copy-publish-url.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/dam-copy-publishurl/js.txt: -------------------------------------------------------------------------------- 1 | dam-copy-publish-url.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/dam-location/js.txt: -------------------------------------------------------------------------------- 1 | reformat-degrees.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/editor-styles/css.txt: -------------------------------------------------------------------------------- 1 | audio.css 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/granite-select-filter/js.txt: -------------------------------------------------------------------------------- 1 | granite-select-filter.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/shared-component-properties/classicui/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | shared-component-properties-classic.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/shared-component-properties/touchui/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | shared-component-properties.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/sites-copy-publishurl/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/sites-copy-publishurl/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | sites-copy-publish-url.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/sites-copy-publishurl/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | sites-copy-publish-url.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/switchlayers/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | shortcuts.js 3 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/css.txt: -------------------------------------------------------------------------------- 1 | jquery.fonticonpicker.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.eot -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.ttf -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/iconpicker.woff -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.fonticonpicker/js.txt: -------------------------------------------------------------------------------- 1 | jquery.fonticonpicker.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/jquery.hotkeys/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | jquery.hotkeys.js 3 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | leaflet.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/layers.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | leaflet.js 3 | fix-image-path.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/authoring/vendor/leaflet/js/fix-image-path.js: -------------------------------------------------------------------------------- 1 | L.Icon.Default.imagePath = "/apps/acs-commons/authoring/vendor/leaflet/images/"; -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/angularCoral/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | module.js 4 | alert.js 5 | headings.js 6 | checkbox.js 7 | toolsHeader.js 8 | list.js 9 | table.js 10 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/angularCoral/js/module.js: -------------------------------------------------------------------------------- 1 | /* 2 | * #%L 3 | * ACS AEM Commons Bundle 4 | * %% 5 | * Copyright (C) 2013 Adobe 6 | * %% 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * #L% 19 | */ 20 | /*global angular: false */ 21 | angular.module('acsCoral', []); -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/main/css.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/main/js.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/rte-rtl-switch/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | RightToLeftKeyboardShortcut.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/bindonce/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | bindonce.min.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/all/js.txt: -------------------------------------------------------------------------------- 1 | #base=.. 2 | 3 | angular.min.js 4 | angular-animate.min.js 5 | angular-aria.min.js 6 | angular-cookies.min.js 7 | angular-loader.min.js 8 | angular-messages.min.js 9 | angular-resource.min.js 10 | angular-route.min.js 11 | angular-sanitize.min.js 12 | angular-touch.min.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], 6 | [ng-cloak], 7 | [data-ng-cloak], 8 | [x-ng-cloak], 9 | .ng-cloak, 10 | .x-ng-cloak, 11 | .ng-hide:not(.ng-hide-animate) { 12 | display: none !important; 13 | } 14 | 15 | ng\:form { 16 | display: block; 17 | } 18 | 19 | .ng-animate-shim { 20 | visibility:hidden; 21 | } 22 | 23 | .ng-anchor { 24 | position:absolute; 25 | } 26 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/core/js.txt: -------------------------------------------------------------------------------- 1 | #base=.. 2 | 3 | angular.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/modules/ng-storage/js.txt: -------------------------------------------------------------------------------- 1 | ngStorage.min.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/version.json: -------------------------------------------------------------------------------- 1 | {"raw":"v1.8.2","major":1,"minor":8,"patch":2,"prerelease":[],"build":[],"version":"1.8.2","codeName":"meteoric-mining","full":"1.8.2","branch":"v1.8.x","cdn":{"raw":"v1.8.1","major":1,"minor":8,"patch":1,"prerelease":[],"build":[],"version":"1.8.1","docsUrl":"http://code.angularjs.org/1.8.1/docs"}} -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/angularjs/v1.8/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.2 -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | font-awesome.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/fontawesome/resources/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/json/js.txt: -------------------------------------------------------------------------------- 1 | json2.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/jsondiffpatch/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | html.css 4 | annotated.css 5 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/jsondiffpatch/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | jsondiffpatch.js 4 | jsondiffpatch-formatters.js 5 | diff_match_patch_uncompressed.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/jsplumb/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | jquery.jsPlumb-1.7.2-min.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/lodash/js.txt: -------------------------------------------------------------------------------- 1 | lodash-v4.17.21.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/clientlibs/vendor/qrcode/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | qrcode.min.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/content/named-transform-image/options.json.GET.jsp: -------------------------------------------------------------------------------- 1 | <%@include file="/libs/foundation/global.jsp"%><% 2 | %><%@page session="false" 3 | contentType="application/json; charset=UTF-8" 4 | pageEncoding="utf-8"%><% 5 | %><%@include file="/apps/acs-commons/components/common/datasources/named-transforms/named-transforms.jsp"%><% 6 | try { 7 | // Inherited from named-transforms.jsp 8 | dataSourceBuilder.writeDataSourceOptions(slingRequest, slingResponse); 9 | } catch(Exception e) { 10 | slingResponse.setStatus(500); 11 | } 12 | %> -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/content/twitter-feed/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/content/twitter-feed/icon.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/color-swatches/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | styles.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/color-swatches/clientlib/js.txt: -------------------------------------------------------------------------------- 1 | script.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/custom-component-activator/clientlib/js.txt: -------------------------------------------------------------------------------- 1 | activator.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/fonts/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | styles.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/fonts/clientlib/js.txt: -------------------------------------------------------------------------------- 1 | script.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/dam/history/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | styles.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/app-page/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | page.less 4 | form.less 5 | notifications.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/app-page/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | angularjs/notifications.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/app-page/content.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | ~ #%L 3 | ~ ACS AEM Tools Bundle 4 | ~ %% 5 | ~ Copyright (C) 2015 Adobe 6 | ~ %% 7 | ~ Licensed under the Apache License, Version 2.0 (the "License"); 8 | ~ you may not use this file except in compliance with the License. 9 | ~ You may obtain a copy of the License at 10 | ~ 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 12 | ~ 13 | ~ Unless required by applicable law or agreed to in writing, software 14 | ~ distributed under the License is distributed on an "AS IS" BASIS, 15 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | ~ See the License for the specific language governing permissions and 17 | ~ limitations under the License. 18 | ~ #L% 19 | --%> 20 | 21 | 22 | <%-- App goes here --%> 23 | 24 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/audit-log-search/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/audit-log-search/clientlibs/css/app.css: -------------------------------------------------------------------------------- 1 | .audit-log-search-results{ 2 | overflow: auto; 3 | max-height:500px; 4 | } 5 | .audit-log-search-results thead .coral-Table-row { 6 | background-color: #ccc; 7 | } 8 | 9 | .audit-log-search-results .coral-Table-row { 10 | background-color: #fff; 11 | } 12 | 13 | .form-row{ 14 | padding-bottom: 1em; 15 | clear:both; 16 | } 17 | 18 | .form-row input{ 19 | width: 75%; 20 | } 21 | 22 | .form-row > label { 23 | display:inline; 24 | float:left; 25 | width:100px; 26 | font-weight:bold; 27 | padding: 10px 0; 28 | } 29 | 30 | .form-row > span { 31 | margin-left: 75px; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/audit-log-search/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/automatic-package-replication/clientlibs/app.css: -------------------------------------------------------------------------------- 1 | .coral-Textfield, select { 2 | width: 75% 3 | } 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/automatic-package-replication/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/automatic-package-replication/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/bulk-workflow-manager/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/bulk-workflow-manager/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/bulk-workflow-manager/includes/aem-transient-workflow/status-table.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | ~ #%L 3 | ~ ACS AEM Commons Bundle 4 | ~ %% 5 | ~ Copyright (C) 2016 Adobe 6 | ~ %% 7 | ~ Licensed under the Apache License, Version 2.0 (the "License"); 8 | ~ you may not use this file except in compliance with the License. 9 | ~ You may obtain a copy of the License at 10 | ~ 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 12 | ~ 13 | ~ Unless required by applicable law or agreed to in writing, software 14 | ~ distributed under the License is distributed on an "AS IS" BASIS, 15 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | ~ See the License for the specific language governing permissions and 17 | ~ limitations under the License. 18 | ~ #L% 19 | --%> 20 | 21 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/bulk-workflow-manager/includes/fast-action-manager/status-table.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | ~ #%L 3 | ~ ACS AEM Commons Bundle 4 | ~ %% 5 | ~ Copyright (C) 2016 Adobe 6 | ~ %% 7 | ~ Licensed under the Apache License, Version 2.0 (the "License"); 8 | ~ you may not use this file except in compliance with the License. 9 | ~ You may obtain a copy of the License at 10 | ~ 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 12 | ~ 13 | ~ Unless required by applicable law or agreed to in writing, software 14 | ~ distributed under the License is distributed on an "AS IS" BASIS, 15 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | ~ See the License for the specific language governing permissions and 17 | ~ limitations under the License. 18 | ~ #L% 19 | --%> -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/bulk-workflow-manager/includes/synthetic-workflow/status-table.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | ~ #%L 3 | ~ ACS AEM Commons Bundle 4 | ~ %% 5 | ~ Copyright (C) 2016 Adobe 6 | ~ %% 7 | ~ Licensed under the Apache License, Version 2.0 (the "License"); 8 | ~ you may not use this file except in compliance with the License. 9 | ~ You may obtain a copy of the License at 10 | ~ 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 12 | ~ 13 | ~ Unless required by applicable law or agreed to in writing, software 14 | ~ distributed under the License is distributed on an "AS IS" BASIS, 15 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | ~ See the License for the specific language governing permissions and 17 | ~ limitations under the License. 18 | ~ #L% 19 | --%> -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/cloudconfig/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright 2019 Adobe 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | ############################################################################### 16 | 17 | summary.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/cloudconfig/clientlib/js.txt: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright 2019 Adobe 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | ############################################################################### 16 | 17 | delete.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/cloudconfig/clientlib/summary.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 Adobe 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | .acscommons-cloudconfig-summary { 17 | text-align: center; 18 | padding: 1em 0; 19 | } 20 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/contentsync/clientlibs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/contentsync/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/contentsync/clientlibs/css/app.css: -------------------------------------------------------------------------------- 1 | .diagnosis-panel-with-margin { 2 | margin-top: 1rem; 3 | margin-left: 3rem; 4 | margin-right: 3rem; 5 | } 6 | 7 | .panelWithMarginTop { 8 | margin-top: 1.5rem; 9 | } 10 | 11 | .checkboxes-panel { 12 | column-width: 400px; 13 | } -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/contentsync/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/contentsync/iframe/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/dynamic-deck/clientlib-base/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | dynamic-deck-action.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/errorpagehandler/preview/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | errorpagehandler.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/errorpagehandler/preview/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | errorpagehandler.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/tags-to-csv/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/tags-to-csv/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/tags-to-csv/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/tags-to-csv/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/users-to-csv/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/users-to-csv/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/users-to-csv/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/exporters/users-to-csv/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/generic-list-console/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | generic-list-console.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/generic-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/genericlist/generic-list.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/instant-package/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/instant-package/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/instant-package/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/instant-package/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/instant-package/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/jcr-compare/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | style.less 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/jcr-compare/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/jcr-compare/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/jcr-compare/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/jcr-compare/includes/tab-download-json.jsp: -------------------------------------------------------------------------------- 1 |
2 |

Download the JSON dump from the selected server using the configuration defined on that tab.

3 | 4 | 15 | 16 |
-------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-controlled-processes/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | mcp.css 3 | process-manager.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-controlled-processes/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-controlled-processes/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-controlled-processes/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | nav.js 4 | scriptRunner.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/serverlibs/context.js: -------------------------------------------------------------------------------- 1 | use(function () { 2 | var RedirectFilter = Packages.com.adobe.acs.commons.redirects.filter.RedirectFilter; 3 | var redirectResource = request.getRequestPathInfo().getSuffixResource(); 4 | 5 | var enabled = false; 6 | var filters = sling.getServices(Packages.javax.servlet.Filter, null); 7 | for(var i=0; i < filters.length; i++ ){ 8 | if(filters[i] instanceof RedirectFilter){ 9 | enabled = true; 10 | } 11 | } 12 | 13 | return { 14 | disabled: !enabled, // will trigger an alert on manage-redirects.html 15 | redirectResource: redirectResource 16 | }; 17 | }); -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/acl-packager/definition/package-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/acl-packager/definition/package-thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/asset-packager/definition/package-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/asset-packager/definition/package-thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/authorizable-packager/definition/package-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/authorizable-packager/definition/package-thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | packager.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/definition/package-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/definition/package-thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/query-packager/definition/package-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/packager/query-packager/definition/package-thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/page-compare/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/page-compare/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | vendor/diff.js 5 | details.js 6 | legend.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/page/instructions.html: -------------------------------------------------------------------------------- 1 | 18 | 19 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlib-authoring/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | styles.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlib-authoring/css/styles.css: -------------------------------------------------------------------------------- 1 | #acs-commons__qr-code { 2 | background-color: white; 3 | padding: 10px; 4 | position: absolute; 5 | top: 44px; 6 | left: 100px; 7 | border: 10px solid black; 8 | display: none; 9 | box-shadow: 0px 5px 20px black; 10 | } 11 | 12 | .acs-commons__qr-code--no-config { 13 | color: black; 14 | width: 500px; 15 | } 16 | 17 | #acs-commons__qr-code canvas { 18 | display: block; 19 | } -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlib-authoring/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | authoring.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | styles.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlibs/css/styles.css: -------------------------------------------------------------------------------- 1 | .acs-commons__qr-code__mappings input[type="text"] { 2 | 3 | width: 100%; 4 | 5 | } -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlibs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlibs/images/favicon.ico -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/qr-code/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/redirectmappage/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/redirectmappage/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/columns/predictedTags/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/report-list-page/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/report-list-page/clientlibs/css/app.css: -------------------------------------------------------------------------------- 1 | form .coral-Button { 2 | top: 7px; 3 | position: relative; 4 | } 5 | 6 | form .coral3-Button { 7 | top: 7px; 8 | position: relative; 9 | } -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/report-list-page/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/report-page/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/report-builder/report-page/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/sites-publish-url/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/sort-nodes/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/clientlibs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | page.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | page.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/notification/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/notification/clientlibs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/notification/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | notification.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/system-notifications/notification/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=. 2 | 3 | notification.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/version-compare/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/version-compare/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/version-replicator/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | app.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/version-replicator/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | app.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/content/cloudservice/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/content/cloudservice/thumb.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/gui/components/authoring/dialogshared/README.md: -------------------------------------------------------------------------------- 1 | This is a deprecated sling:resourceType that was required to prevent a NPE in AEM 6.1. Shared and global properties 2 | dialogs on AEM 6.2+ should instead be using the default OOTB dialog type of `cq/gui/components/authoring/dialog`. -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/rte-plugins/accordion/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | accordion.less -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/rte-plugins/accordion/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | accordion.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/rte-plugins/accordion/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | rte-accordion.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/rte-plugins/dialog-plugin/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | dialog-plugin.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/acl-packager/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/acl-packager/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/asset-packager/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/asset-packager/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/authorizable-packager/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/authorizable-packager/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/automatic-package-replication/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/automatic-package-replication/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/bulk-workflow-manager/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/bulk-workflow-manager/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/dispatcher-flush/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/dispatcher-flush/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/exporters/tags-to-csv/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/exporters/tags-to-csv/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/exporters/users-to-csv/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/exporters/users-to-csv/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/genericlist/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/genericlist/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/query-packager/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/query-packager/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/redirectmap/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/redirectmap/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/system-notifications/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/templates/utilities/system-notifications/thumbnail.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/composite-multifield/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | touchui-widgets-init.js 4 | touchui-composite-multifield.js 5 | touchui-composite-multifield-nodestore.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/configure-limit-parsys/js.txt: -------------------------------------------------------------------------------- 1 | touchui-limit-parsys.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/configure-parsys-placeholder/js.txt: -------------------------------------------------------------------------------- 1 | touchui-configure-parsys-placeholder.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/draggable-list/css.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | draggablelist.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/draggable-list/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | draggablelist.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/icon-picker/css.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | jquery.fonticonpicker.coral.less 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/icon-picker/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | icon-picker.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/search-based-path-browser/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | search-based-pathbrowser.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/touchui-widgets/showhidedialogfields/js.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | showhidedialogfields.js 4 | showhidedialogfieldstabs.js 5 | requiredvalidation.js -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/css.txt: -------------------------------------------------------------------------------- 1 | #base=source/css 2 | 3 | cq-placeholders.less 4 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-ad-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-ad-placeholder.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-audio-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-audio-placeholder.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-dl-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-dl-placeholder.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-textlines-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-textlines-placeholder.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-ul-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/resources/images/placeholders/cq-ul-placeholder.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/themes/default/css.txt: -------------------------------------------------------------------------------- 1 | #base=source 2 | 3 | audio.css -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/themes/default/resources/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/themes/default/resources/audio.png -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/acs-commons/widgets/themes/default/source/audio.css: -------------------------------------------------------------------------------- 1 | /* 2 | * #%L 3 | * ACS AEM Commons Package 4 | * %% 5 | * Copyright (C) 2013 Adobe 6 | * %% 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * #L% 19 | */ 20 | #CQ .cq-cft-tab-icon.audio { 21 | background-image:url(../resources/audio.png); 22 | } -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/wcm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /ui.apps/src/main/content/jcr_root/apps/wcm/core/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /ui.apps/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /ui.apps/src/main/resources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.apps/src/main/resources/thumbnail.png -------------------------------------------------------------------------------- /ui.config/.gitignore: -------------------------------------------------------------------------------- 1 | /nbactions-autoInstallPackage.xml 2 | -------------------------------------------------------------------------------- /ui.config/src/main/content/jcr_root/apps/acs-commons/config.author/com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleAuthoringUIModeFilter.cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "README": "This enables the AuthoringUIModeFilter on AEM Author, to allow for TouchUI based editing of HTML content under /etc/acs-commons" 3 | } -------------------------------------------------------------------------------- /ui.config/src/main/content/jcr_root/apps/acs-commons/config.author/com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleEditorFilter.cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "README": "This enables the AuthoringUIModeFilter on AEM Author, to allow for TouchUI based editing of HTML content under /etc/acs-commons" 3 | } -------------------------------------------------------------------------------- /ui.config/src/main/content/jcr_root/apps/acs-commons/config.publish/org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-publish.config: -------------------------------------------------------------------------------- 1 | scripts=[ 2 | "# extend rights for installing the ui.content package containing /var nodes with AEMaaCS (https://helpx.adobe.com/in/experience-manager/kb/cm/cloudmanager-deploy-fails-due-to-sling-distribution-aem.html) 3 | create path /var/acs-commons(nt:folder) 4 | 5 | # AEM classic does not know this system user, but creating it below system/acs-commons shouldn't do any harm 6 | create service user sling-distribution-importer with path system/acs-commons 7 | set ACL for sling-distribution-importer 8 | allow jcr:read, rep:write, jcr:versionManagement, jcr:modifyAccessControl, jcr:readAccessControl, jcr:lockManagement on /var/acs-commons 9 | end 10 | " 11 | ] -------------------------------------------------------------------------------- /ui.config/src/main/content/jcr_root/apps/acs-commons/config/org.apache.sling.event.jobs.QueueConfiguration~package-garbage-collection.config: -------------------------------------------------------------------------------- 1 | queue.maxparallel="1" 2 | queue.name="Package Garbage Collection Queue" 3 | queue.topics="com/adobe/acs/commons/PackageGarbageCollectionJob" 4 | queue.type="ORDERED" 5 | -------------------------------------------------------------------------------- /ui.config/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /ui.config/src/main/resources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.config/src/main/resources/thumbnail.png -------------------------------------------------------------------------------- /ui.content/.gitignore: -------------------------------------------------------------------------------- 1 | /nbactions-autoInstallPackage.xml 2 | -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/acs-commons/instant-package/_jcr_content/clientlib-authoring/js.txt: -------------------------------------------------------------------------------- 1 | /apps/acs-commons/components/utilities/instant-package/clientlib-authoring/instant-package.js -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/acs-commons/instant-package/_jcr_content/instant-package-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.content/src/main/content/jcr_root/etc/acs-commons/instant-package/_jcr_content/instant-package-image.png -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/acs-commons/qr-code/_jcr_content/clientlib-authoring/css.txt: -------------------------------------------------------------------------------- 1 | /apps/acs-commons/components/utilities/qr-code/clientlib-authoring/css/styles.css -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/acs-commons/qr-code/_jcr_content/clientlib-authoring/js.txt: -------------------------------------------------------------------------------- 1 | /apps/acs-commons/components/utilities/qr-code/clientlib-authoring/js/authoring.js 2 | -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/acs-commons/qr-code/_jcr_content/qr-code-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.content/src/main/content/jcr_root/etc/acs-commons/qr-code/_jcr_content/qr-code-image.png -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/etc/notification/email/acs-commons/health-check-status-email.txt: -------------------------------------------------------------------------------- 1 | From: aemdemosmtp@gmail.com 2 | Subject: ${subject} 3 | 4 | This is your automated AEM Health Check report. 5 | 6 | A total of ${totalCount} health checks were executed, with ${failureCount} failing and ${successCount} succeeding. 7 | 8 | ==================================================================================================== 9 | 10 | Hostname: ${hostname} 11 | Product: ${productName} ${productVersion} [ ${mode} ] 12 | Run modes: ${runModes} 13 | Executed at: ${executedAt} 14 | Health checks executed in: ${timeTaken} ms 15 | 16 | ==================================================================================================== 17 | 18 | ${failure} 19 | 20 | ${success} 21 | -------------------------------------------------------------------------------- /ui.content/src/main/content/jcr_root/var/acs-commons/on-deploy-scripts-status/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains the history of on-deploy scripts that have run on this 2 | server, as well as scripts that are currently running. If an on-deploy script 3 | does not have a node here, it has not yet been run on this server. 4 | 5 | Nodes in this folder should never be deleted unless you wish the associated 6 | scripts to be run again on the next deployment of the on-deploy script 7 | framework to this server. 8 | 9 | Any script with a status of "fail" will be attempted again the next time the 10 | on-deploy script framework is deployed to this server. -------------------------------------------------------------------------------- /ui.content/src/main/resources/META-INF/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2013 Adobe 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /ui.content/src/main/resources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/ui.content/src/main/resources/thumbnail.png --------------------------------------------------------------------------------