├── .dockerignore ├── .editorconfig ├── .gitignore ├── .gitmodules ├── Dockerfile ├── README.md ├── docker-compose.yml ├── docker-production.yml ├── docker-tools.yml ├── tools ├── Dockerfile ├── restore-db.sh └── sync-assets.sh └── webroot ├── content ├── index.php ├── plugins │ ├── amazon-s3-and-cloudfront │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── modal.css │ │ │ │ └── styles.css │ │ │ ├── img │ │ │ │ ├── snail-banner.jpg │ │ │ │ └── snail-banner@2x.jpg │ │ │ ├── js │ │ │ │ ├── modal.js │ │ │ │ ├── modal.min.js │ │ │ │ ├── notice.js │ │ │ │ ├── notice.min.js │ │ │ │ ├── script.js │ │ │ │ └── script.min.js │ │ │ └── sass │ │ │ │ ├── modal.scss │ │ │ │ └── styles.scss │ │ ├── classes │ │ │ ├── amazon-s3-and-cloudfront.php │ │ │ ├── as3cf-notices.php │ │ │ ├── as3cf-plugin-compatibility.php │ │ │ ├── as3cf-stream-wrapper.php │ │ │ ├── as3cf-upgrade.php │ │ │ ├── upgrades │ │ │ │ ├── as3cf-file-sizes.php │ │ │ │ ├── as3cf-meta-wp-error.php │ │ │ │ └── as3cf-region-meta.php │ │ │ ├── wp-aws-compatibility-check.php │ │ │ └── wp-aws-uninstall.php │ │ ├── composer.json │ │ ├── include │ │ │ └── functions.php │ │ ├── languages │ │ │ ├── amazon-s3-and-cloudfront-en.pot │ │ │ └── amazon-s3-and-cloudfront-pt-br.mo │ │ ├── readme.txt │ │ ├── uninstall.php │ │ ├── view │ │ │ ├── bucket-select.php │ │ │ ├── bucket-setting.php │ │ │ ├── checkbox.php │ │ │ ├── debug-info.php │ │ │ ├── domain-setting.php │ │ │ ├── error-access.php │ │ │ ├── error-fatal.php │ │ │ ├── notice.php │ │ │ ├── settings-tabs.php │ │ │ ├── settings.php │ │ │ ├── sidebar.php │ │ │ ├── support.php │ │ │ └── wordpress-org-support.php │ │ └── wordpress-s3.php │ ├── amazon-web-services │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── amazon-web-services.php │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── global.css │ │ │ │ └── styles.css │ │ │ ├── fonts │ │ │ │ ├── aws-plugin.eot │ │ │ │ ├── aws-plugin.svg │ │ │ │ ├── aws-plugin.ttf │ │ │ │ └── aws-plugin.woff │ │ │ ├── img │ │ │ │ ├── as3cf-banner.jpg │ │ │ │ ├── as3cf-banner@2x.jpg │ │ │ │ ├── aws-logo.svg │ │ │ │ ├── icon-assets.svg │ │ │ │ ├── icon-edd.svg │ │ │ │ ├── icon-enable-media-replace.svg │ │ │ │ ├── icon-meta-slider.svg │ │ │ │ ├── icon-pro.svg │ │ │ │ ├── icon-woocommerce.svg │ │ │ │ ├── icon-wpml.svg │ │ │ │ └── icon16.png │ │ │ ├── js │ │ │ │ ├── script.js │ │ │ │ └── script.min.js │ │ │ └── sass │ │ │ │ ├── global.scss │ │ │ │ └── styles.scss │ │ ├── classes │ │ │ ├── amazon-web-services.php │ │ │ ├── aws-compatibility-check.php │ │ │ ├── aws-plugin-base.php │ │ │ ├── wp-aws-compatibility-check.php │ │ │ └── wp-aws-uninstall.php │ │ ├── composer.json │ │ ├── languages │ │ │ ├── amazon-web-services-en.pot │ │ │ └── amazon-web-services-pt-br.mo │ │ ├── readme.txt │ │ ├── uninstall.php │ │ ├── vendor │ │ │ └── aws │ │ │ │ ├── Aws │ │ │ │ ├── AutoScaling │ │ │ │ │ ├── AutoScalingClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── LifecycleState.php │ │ │ │ │ │ └── ScalingActivityStatusCode.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AlreadyExistsException.php │ │ │ │ │ │ ├── AutoScalingException.php │ │ │ │ │ │ ├── InvalidNextTokenException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── ResourceInUseException.php │ │ │ │ │ │ └── ScalingActivityInProgressException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── autoscaling-2011-01-01.php │ │ │ │ ├── CloudFormation │ │ │ │ │ ├── CloudFormationClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── Capability.php │ │ │ │ │ │ ├── OnFailure.php │ │ │ │ │ │ ├── ResourceStatus.php │ │ │ │ │ │ └── StackStatus.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AlreadyExistsException.php │ │ │ │ │ │ ├── CloudFormationException.php │ │ │ │ │ │ ├── InsufficientCapabilitiesException.php │ │ │ │ │ │ └── LimitExceededException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudformation-2010-05-15.php │ │ │ │ ├── CloudFront │ │ │ │ │ ├── CloudFrontClient.php │ │ │ │ │ ├── CloudFrontSignature.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── GeoRestrictionType.php │ │ │ │ │ │ ├── ItemSelection.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── OriginProtocolPolicy.php │ │ │ │ │ │ ├── PriceClass.php │ │ │ │ │ │ ├── SSLSupportMethod.php │ │ │ │ │ │ └── ViewerProtocolPolicy.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── BatchTooLargeException.php │ │ │ │ │ │ ├── CNAMEAlreadyExistsException.php │ │ │ │ │ │ ├── CloudFrontException.php │ │ │ │ │ │ ├── CloudFrontOriginAccessIdentityAlreadyExistsException.php │ │ │ │ │ │ ├── CloudFrontOriginAccessIdentityInUseException.php │ │ │ │ │ │ ├── DistributionAlreadyExistsException.php │ │ │ │ │ │ ├── DistributionNotDisabledException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── IllegalUpdateException.php │ │ │ │ │ │ ├── InconsistentQuantitiesException.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── InvalidDefaultRootObjectException.php │ │ │ │ │ │ ├── InvalidErrorCodeException.php │ │ │ │ │ │ ├── InvalidForwardCookiesException.php │ │ │ │ │ │ ├── InvalidGeoRestrictionParameterException.php │ │ │ │ │ │ ├── InvalidIfMatchVersionException.php │ │ │ │ │ │ ├── InvalidLocationCodeException.php │ │ │ │ │ │ ├── InvalidOriginAccessIdentityException.php │ │ │ │ │ │ ├── InvalidOriginException.php │ │ │ │ │ │ ├── InvalidRelativePathException.php │ │ │ │ │ │ ├── InvalidRequiredProtocolException.php │ │ │ │ │ │ ├── InvalidResponseCodeException.php │ │ │ │ │ │ ├── InvalidViewerCertificateException.php │ │ │ │ │ │ ├── MissingBodyException.php │ │ │ │ │ │ ├── NoSuchCloudFrontOriginAccessIdentityException.php │ │ │ │ │ │ ├── NoSuchDistributionException.php │ │ │ │ │ │ ├── NoSuchInvalidationException.php │ │ │ │ │ │ ├── NoSuchOriginException.php │ │ │ │ │ │ ├── NoSuchStreamingDistributionException.php │ │ │ │ │ │ ├── PreconditionFailedException.php │ │ │ │ │ │ ├── StreamingDistributionAlreadyExistsException.php │ │ │ │ │ │ ├── StreamingDistributionNotDisabledException.php │ │ │ │ │ │ ├── TooManyCacheBehaviorsException.php │ │ │ │ │ │ ├── TooManyCertificatesException.php │ │ │ │ │ │ ├── TooManyCloudFrontOriginAccessIdentitiesException.php │ │ │ │ │ │ ├── TooManyCookieNamesInWhiteListException.php │ │ │ │ │ │ ├── TooManyDistributionCNAMEsException.php │ │ │ │ │ │ ├── TooManyDistributionsException.php │ │ │ │ │ │ ├── TooManyInvalidationsInProgressException.php │ │ │ │ │ │ ├── TooManyOriginsException.php │ │ │ │ │ │ ├── TooManyStreamingDistributionCNAMEsException.php │ │ │ │ │ │ ├── TooManyStreamingDistributionsException.php │ │ │ │ │ │ ├── TooManyTrustedSignersException.php │ │ │ │ │ │ └── TrustedSignerDoesNotExistException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── cloudfront-2012-05-05.php │ │ │ │ │ │ └── cloudfront-2015-04-17.php │ │ │ │ ├── CloudHsm │ │ │ │ │ ├── CloudHsmClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CloudHsmException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudhsm-2014-05-30.php │ │ │ │ ├── CloudSearch │ │ │ │ │ ├── CloudSearchClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── IndexFieldType.php │ │ │ │ │ │ ├── OptionState.php │ │ │ │ │ │ ├── SearchInstanceType.php │ │ │ │ │ │ └── SourceDataFunction.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BaseException.php │ │ │ │ │ │ ├── CloudSearchException.php │ │ │ │ │ │ ├── InternalException.php │ │ │ │ │ │ ├── InvalidTypeException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ └── ResourceNotFoundException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── cloudsearch-2011-02-01.php │ │ │ │ │ │ └── cloudsearch-2013-01-01.php │ │ │ │ ├── CloudSearchDomain │ │ │ │ │ ├── CloudSearchDomainClient.php │ │ │ │ │ ├── CloudSearchDomainClientBuilder.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CloudSearchDomainException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudsearchdomain-2013-01-01.php │ │ │ │ ├── CloudTrail │ │ │ │ │ ├── CloudTrailClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CloudTrailException.php │ │ │ │ │ │ ├── InsufficientS3BucketPolicyException.php │ │ │ │ │ │ ├── InsufficientSnsTopicPolicyException.php │ │ │ │ │ │ ├── InternalErrorException.php │ │ │ │ │ │ ├── InvalidS3BucketNameException.php │ │ │ │ │ │ ├── InvalidS3PrefixException.php │ │ │ │ │ │ ├── InvalidSnsTopicNameException.php │ │ │ │ │ │ ├── InvalidTrailNameException.php │ │ │ │ │ │ ├── MaximumNumberOfTrailsExceededException.php │ │ │ │ │ │ ├── S3BucketDoesNotExistException.php │ │ │ │ │ │ ├── TrailAlreadyExistsException.php │ │ │ │ │ │ ├── TrailNotFoundException.php │ │ │ │ │ │ └── TrailNotProvidedException.php │ │ │ │ │ ├── LogFileIterator.php │ │ │ │ │ ├── LogFileReader.php │ │ │ │ │ ├── LogRecordIterator.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudtrail-2013-11-01.php │ │ │ │ ├── CloudWatch │ │ │ │ │ ├── CloudWatchClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ComparisonOperator.php │ │ │ │ │ │ ├── HistoryItemType.php │ │ │ │ │ │ ├── StateValue.php │ │ │ │ │ │ ├── Statistic.php │ │ │ │ │ │ └── Unit.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CloudWatchException.php │ │ │ │ │ │ ├── InternalServiceException.php │ │ │ │ │ │ ├── InvalidFormatException.php │ │ │ │ │ │ ├── InvalidNextTokenException.php │ │ │ │ │ │ ├── InvalidParameterCombinationException.php │ │ │ │ │ │ ├── InvalidParameterValueException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── MissingRequiredParameterException.php │ │ │ │ │ │ └── ResourceNotFoundException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudwatch-2010-08-01.php │ │ │ │ ├── CloudWatchLogs │ │ │ │ │ ├── CloudWatchLogsClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CloudWatchLogsException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cloudwatchlogs-2014-03-28.php │ │ │ │ ├── CodeCommit │ │ │ │ │ ├── CodeCommitClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CodeCommitException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── codecommit-2015-04-13.php │ │ │ │ ├── CodeDeploy │ │ │ │ │ ├── CodeDeployClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CodeDeployException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── codedeploy-2014-10-06.php │ │ │ │ ├── CodePipeline │ │ │ │ │ ├── CodePipelineClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CodePipelineException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── codepipeline-2015-07-09.php │ │ │ │ ├── CognitoIdentity │ │ │ │ │ ├── CognitoIdentityClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CognitoIdentityException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cognitoidentity-2014-06-30.php │ │ │ │ ├── CognitoSync │ │ │ │ │ ├── CognitoSyncClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── CognitoSyncException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── cognitosync-2014-06-30.php │ │ │ │ ├── Common │ │ │ │ │ ├── Aws.php │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── AbstractClient.php │ │ │ │ │ │ ├── AwsClientInterface.php │ │ │ │ │ │ ├── ClientBuilder.php │ │ │ │ │ │ ├── DefaultClient.php │ │ │ │ │ │ ├── ExpiredCredentialsChecker.php │ │ │ │ │ │ ├── ThrottlingErrorChecker.php │ │ │ │ │ │ ├── UploadBodyListener.php │ │ │ │ │ │ └── UserAgentListener.php │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── AwsQueryVisitor.php │ │ │ │ │ │ ├── JsonCommand.php │ │ │ │ │ │ ├── QueryCommand.php │ │ │ │ │ │ └── XmlResponseLocationVisitor.php │ │ │ │ │ ├── Credentials │ │ │ │ │ │ ├── AbstractCredentialsDecorator.php │ │ │ │ │ │ ├── AbstractRefreshableCredentials.php │ │ │ │ │ │ ├── CacheableCredentials.php │ │ │ │ │ │ ├── Credentials.php │ │ │ │ │ │ ├── CredentialsInterface.php │ │ │ │ │ │ ├── NullCredentials.php │ │ │ │ │ │ └── RefreshableInstanceProfileCredentials.php │ │ │ │ │ ├── Enum.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ClientOptions.php │ │ │ │ │ │ ├── DateFormat.php │ │ │ │ │ │ ├── Region.php │ │ │ │ │ │ ├── Size.php │ │ │ │ │ │ ├── Time.php │ │ │ │ │ │ └── UaString.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AwsExceptionInterface.php │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ ├── DomainException.php │ │ │ │ │ │ ├── ExceptionFactoryInterface.php │ │ │ │ │ │ ├── ExceptionListener.php │ │ │ │ │ │ ├── InstanceProfileCredentialsException.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── LogicException.php │ │ │ │ │ │ ├── MultipartUploadException.php │ │ │ │ │ │ ├── NamespaceExceptionFactory.php │ │ │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ │ │ ├── OverflowException.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── AbstractJsonExceptionParser.php │ │ │ │ │ │ │ ├── DefaultXmlExceptionParser.php │ │ │ │ │ │ │ ├── ExceptionParserInterface.php │ │ │ │ │ │ │ ├── JsonQueryExceptionParser.php │ │ │ │ │ │ │ └── JsonRestExceptionParser.php │ │ │ │ │ │ ├── RequiredExtensionNotLoadedException.php │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ ├── ServiceResponseException.php │ │ │ │ │ │ ├── TransferException.php │ │ │ │ │ │ └── UnexpectedValueException.php │ │ │ │ │ ├── Facade │ │ │ │ │ │ ├── Facade.php │ │ │ │ │ │ ├── FacadeInterface.php │ │ │ │ │ │ └── facade-classes.php │ │ │ │ │ ├── Hash │ │ │ │ │ │ ├── ChunkHash.php │ │ │ │ │ │ ├── ChunkHashInterface.php │ │ │ │ │ │ ├── HashUtils.php │ │ │ │ │ │ └── TreeHash.php │ │ │ │ │ ├── HostNameUtils.php │ │ │ │ │ ├── InstanceMetadata │ │ │ │ │ │ ├── InstanceMetadataClient.php │ │ │ │ │ │ └── Waiter │ │ │ │ │ │ │ └── ServiceAvailable.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ ├── AwsResourceIterator.php │ │ │ │ │ │ └── AwsResourceIteratorFactory.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── MultipartUpload │ │ │ │ │ │ │ ├── AbstractTransfer.php │ │ │ │ │ │ │ ├── AbstractTransferState.php │ │ │ │ │ │ │ ├── AbstractUploadBuilder.php │ │ │ │ │ │ │ ├── AbstractUploadId.php │ │ │ │ │ │ │ ├── AbstractUploadPart.php │ │ │ │ │ │ │ ├── TransferInterface.php │ │ │ │ │ │ │ ├── TransferStateInterface.php │ │ │ │ │ │ │ ├── UploadIdInterface.php │ │ │ │ │ │ │ └── UploadPartInterface.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── aws-config.php │ │ │ │ │ │ ├── public-endpoints.php │ │ │ │ │ │ └── sdk1-config.php │ │ │ │ │ ├── RulesEndpointProvider.php │ │ │ │ │ ├── Signature │ │ │ │ │ │ ├── AbstractSignature.php │ │ │ │ │ │ ├── EndpointSignatureInterface.php │ │ │ │ │ │ ├── SignatureInterface.php │ │ │ │ │ │ ├── SignatureListener.php │ │ │ │ │ │ ├── SignatureV2.php │ │ │ │ │ │ ├── SignatureV3Https.php │ │ │ │ │ │ └── SignatureV4.php │ │ │ │ │ └── Waiter │ │ │ │ │ │ ├── AbstractResourceWaiter.php │ │ │ │ │ │ ├── AbstractWaiter.php │ │ │ │ │ │ ├── CallableWaiter.php │ │ │ │ │ │ ├── CompositeWaiterFactory.php │ │ │ │ │ │ ├── ConfigResourceWaiter.php │ │ │ │ │ │ ├── ResourceWaiterInterface.php │ │ │ │ │ │ ├── WaiterClassFactory.php │ │ │ │ │ │ ├── WaiterConfig.php │ │ │ │ │ │ ├── WaiterConfigFactory.php │ │ │ │ │ │ ├── WaiterFactoryInterface.php │ │ │ │ │ │ └── WaiterInterface.php │ │ │ │ ├── ConfigService │ │ │ │ │ ├── ConfigServiceClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ConfigServiceException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── configservice-2014-11-12.php │ │ │ │ ├── DataPipeline │ │ │ │ │ ├── DataPipelineClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ └── WorkStatus.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── DataPipelineException.php │ │ │ │ │ │ ├── InternalServiceErrorException.php │ │ │ │ │ │ ├── InvalidRequestException.php │ │ │ │ │ │ ├── PipelineDeletedException.php │ │ │ │ │ │ ├── PipelineNotFoundException.php │ │ │ │ │ │ └── TaskNotFoundException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── datapipeline-2012-10-29.php │ │ │ │ ├── DeviceFarm │ │ │ │ │ ├── DeviceFarmClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── DeviceFarmException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── devicefarm-2015-06-23.php │ │ │ │ ├── DirectConnect │ │ │ │ │ ├── DirectConnectClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ConnectionState.php │ │ │ │ │ │ ├── InterconnectState.php │ │ │ │ │ │ ├── StepState.php │ │ │ │ │ │ └── VirtualInterfaceState.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── DirectConnectClientException.php │ │ │ │ │ │ ├── DirectConnectException.php │ │ │ │ │ │ └── DirectConnectServerException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── directconnect-2012-10-25.php │ │ │ │ ├── DirectoryService │ │ │ │ │ ├── DirectoryServiceClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── DirectoryServiceException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── directoryservice-2015-04-16.php │ │ │ │ ├── DynamoDb │ │ │ │ │ ├── Crc32ErrorChecker.php │ │ │ │ │ ├── DynamoDbClient.php │ │ │ │ │ ├── DynamoDbCommand.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── AttributeAction.php │ │ │ │ │ │ ├── AttributeType.php │ │ │ │ │ │ ├── ComparisonOperator.php │ │ │ │ │ │ ├── IndexStatus.php │ │ │ │ │ │ ├── KeyType.php │ │ │ │ │ │ ├── ProjectionType.php │ │ │ │ │ │ ├── ReturnConsumedCapacity.php │ │ │ │ │ │ ├── ReturnItemCollectionMetrics.php │ │ │ │ │ │ ├── ReturnValue.php │ │ │ │ │ │ ├── ScalarAttributeType.php │ │ │ │ │ │ ├── Select.php │ │ │ │ │ │ ├── TableStatus.php │ │ │ │ │ │ └── Type.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── ConditionalCheckFailedException.php │ │ │ │ │ │ ├── DynamoDbException.php │ │ │ │ │ │ ├── IncompleteSignatureException.php │ │ │ │ │ │ ├── InternalFailureException.php │ │ │ │ │ │ ├── InternalServerErrorException.php │ │ │ │ │ │ ├── ItemCollectionSizeLimitExceededException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── MissingAuthenticationTokenException.php │ │ │ │ │ │ ├── ProvisionedThroughputExceededException.php │ │ │ │ │ │ ├── ResourceInUseException.php │ │ │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ │ │ ├── ServiceUnavailableException.php │ │ │ │ │ │ ├── ThrottlingException.php │ │ │ │ │ │ ├── UnprocessedWriteRequestsException.php │ │ │ │ │ │ ├── UnrecognizedClientException.php │ │ │ │ │ │ └── ValidationException.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ ├── ItemIterator.php │ │ │ │ │ │ └── ScanIterator.php │ │ │ │ │ ├── Marshaler.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ ├── BatchRequest │ │ │ │ │ │ │ ├── AbstractWriteRequest.php │ │ │ │ │ │ │ ├── DeleteRequest.php │ │ │ │ │ │ │ ├── PutRequest.php │ │ │ │ │ │ │ ├── UnprocessedRequest.php │ │ │ │ │ │ │ ├── WriteRequestBatch.php │ │ │ │ │ │ │ ├── WriteRequestBatchTransfer.php │ │ │ │ │ │ │ └── WriteRequestInterface.php │ │ │ │ │ │ └── Item.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── dynamodb-2011-12-05.php │ │ │ │ │ │ └── dynamodb-2012-08-10.php │ │ │ │ │ └── Session │ │ │ │ │ │ ├── LockingStrategy │ │ │ │ │ │ ├── AbstractLockingStrategy.php │ │ │ │ │ │ ├── LockingStrategyFactory.php │ │ │ │ │ │ ├── LockingStrategyFactoryInterface.php │ │ │ │ │ │ ├── LockingStrategyInterface.php │ │ │ │ │ │ ├── NullLockingStrategy.php │ │ │ │ │ │ └── PessimisticLockingStrategy.php │ │ │ │ │ │ ├── SessionHandler.php │ │ │ │ │ │ ├── SessionHandlerConfig.php │ │ │ │ │ │ └── SessionHandlerInterface.php │ │ │ │ ├── DynamoDbStreams │ │ │ │ │ ├── DynamoDbStreamsClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── DynamoDbStreamsException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── dynamodbstreams-2012-08-10.php │ │ │ │ ├── Ec2 │ │ │ │ │ ├── CopySnapshotListener.php │ │ │ │ │ ├── Ec2Client.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ContainerFormat.php │ │ │ │ │ │ ├── DiskImageFormat.php │ │ │ │ │ │ ├── DomainType.php │ │ │ │ │ │ ├── ExportEnvironment.php │ │ │ │ │ │ ├── HypervisorType.php │ │ │ │ │ │ ├── ImageState.php │ │ │ │ │ │ ├── InstanceAttributeName.php │ │ │ │ │ │ ├── InstanceStateName.php │ │ │ │ │ │ ├── InstanceType.php │ │ │ │ │ │ ├── PlacementGroupState.php │ │ │ │ │ │ ├── PlacementStrategy.php │ │ │ │ │ │ ├── ResourceType.php │ │ │ │ │ │ ├── RouteOrigin.php │ │ │ │ │ │ ├── RuleAction.php │ │ │ │ │ │ ├── SnapshotAttributeName.php │ │ │ │ │ │ ├── SnapshotState.php │ │ │ │ │ │ ├── SpotInstanceType.php │ │ │ │ │ │ ├── VirtualizationType.php │ │ │ │ │ │ ├── VolumeAttachmentState.php │ │ │ │ │ │ ├── VolumeAttributeName.php │ │ │ │ │ │ ├── VolumeState.php │ │ │ │ │ │ ├── VolumeType.php │ │ │ │ │ │ └── VpcAttributeName.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── Ec2Exception.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ └── DescribeInstancesIterator.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ec2-2015-04-15.php │ │ │ │ ├── Ecs │ │ │ │ │ ├── EcsClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── EcsException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ecs-2014-11-13.php │ │ │ │ ├── Efs │ │ │ │ │ ├── EfsClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── EfsException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── elasticfilesystem-2015-02-01.php │ │ │ │ ├── ElastiCache │ │ │ │ │ ├── ElastiCacheClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ └── SourceType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AuthorizationAlreadyExistsException.php │ │ │ │ │ │ ├── AuthorizationNotFoundException.php │ │ │ │ │ │ ├── CacheClusterAlreadyExistsException.php │ │ │ │ │ │ ├── CacheClusterNotFoundException.php │ │ │ │ │ │ ├── CacheParameterGroupAlreadyExistsException.php │ │ │ │ │ │ ├── CacheParameterGroupNotFoundException.php │ │ │ │ │ │ ├── CacheParameterGroupQuotaExceededException.php │ │ │ │ │ │ ├── CacheSecurityGroupAlreadyExistsException.php │ │ │ │ │ │ ├── CacheSecurityGroupNotFoundException.php │ │ │ │ │ │ ├── CacheSecurityGroupQuotaExceededException.php │ │ │ │ │ │ ├── CacheSubnetGroupAlreadyExistsException.php │ │ │ │ │ │ ├── CacheSubnetGroupInUseException.php │ │ │ │ │ │ ├── CacheSubnetGroupNotFoundException.php │ │ │ │ │ │ ├── CacheSubnetGroupQuotaExceededException.php │ │ │ │ │ │ ├── CacheSubnetQuotaExceededException.php │ │ │ │ │ │ ├── ClusterQuotaForCustomerExceededException.php │ │ │ │ │ │ ├── ElastiCacheException.php │ │ │ │ │ │ ├── InsufficientCacheClusterCapacityException.php │ │ │ │ │ │ ├── InvalidCacheClusterStateException.php │ │ │ │ │ │ ├── InvalidCacheParameterGroupStateException.php │ │ │ │ │ │ ├── InvalidCacheSecurityGroupStateException.php │ │ │ │ │ │ ├── InvalidParameterCombinationException.php │ │ │ │ │ │ ├── InvalidParameterValueException.php │ │ │ │ │ │ ├── InvalidReplicationGroupStateException.php │ │ │ │ │ │ ├── InvalidSubnetException.php │ │ │ │ │ │ ├── InvalidVPCNetworkStateException.php │ │ │ │ │ │ ├── NodeQuotaForClusterExceededException.php │ │ │ │ │ │ ├── NodeQuotaForCustomerExceededException.php │ │ │ │ │ │ ├── ReplicationGroupAlreadyExistsException.php │ │ │ │ │ │ ├── ReplicationGroupNotFoundException.php │ │ │ │ │ │ ├── ReservedCacheNodeAlreadyExistsException.php │ │ │ │ │ │ ├── ReservedCacheNodeNotFoundException.php │ │ │ │ │ │ ├── ReservedCacheNodeQuotaExceededException.php │ │ │ │ │ │ ├── ReservedCacheNodesOfferingNotFoundException.php │ │ │ │ │ │ └── SubnetInUseException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── elasticache-2015-02-02.php │ │ │ │ ├── ElasticBeanstalk │ │ │ │ │ ├── ElasticBeanstalkClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ConfigurationDeploymentStatus.php │ │ │ │ │ │ ├── ConfigurationOptionValueType.php │ │ │ │ │ │ ├── EnvironmentHealth.php │ │ │ │ │ │ ├── EnvironmentInfoType.php │ │ │ │ │ │ ├── EnvironmentStatus.php │ │ │ │ │ │ ├── EventSeverity.php │ │ │ │ │ │ └── ValidationSeverity.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ElasticBeanstalkException.php │ │ │ │ │ │ ├── InsufficientPrivilegesException.php │ │ │ │ │ │ ├── OperationInProgressException.php │ │ │ │ │ │ ├── S3LocationNotInServiceRegionException.php │ │ │ │ │ │ ├── S3SubscriptionRequiredException.php │ │ │ │ │ │ ├── SourceBundleDeletionException.php │ │ │ │ │ │ ├── TooManyApplicationVersionsException.php │ │ │ │ │ │ ├── TooManyApplicationsException.php │ │ │ │ │ │ ├── TooManyBucketsException.php │ │ │ │ │ │ ├── TooManyConfigurationTemplatesException.php │ │ │ │ │ │ └── TooManyEnvironmentsException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── elasticbeanstalk-2010-12-01.php │ │ │ │ ├── ElasticLoadBalancing │ │ │ │ │ ├── ElasticLoadBalancingClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessPointNotFoundException.php │ │ │ │ │ │ ├── CertificateNotFoundException.php │ │ │ │ │ │ ├── DuplicateAccessPointNameException.php │ │ │ │ │ │ ├── DuplicateListenerException.php │ │ │ │ │ │ ├── DuplicatePolicyNameException.php │ │ │ │ │ │ ├── ElasticLoadBalancingException.php │ │ │ │ │ │ ├── InvalidConfigurationRequestException.php │ │ │ │ │ │ ├── InvalidEndPointException.php │ │ │ │ │ │ ├── InvalidSchemeException.php │ │ │ │ │ │ ├── InvalidSecurityGroupException.php │ │ │ │ │ │ ├── InvalidSubnetException.php │ │ │ │ │ │ ├── ListenerNotFoundException.php │ │ │ │ │ │ ├── LoadBalancerAttributeNotFoundException.php │ │ │ │ │ │ ├── PolicyNotFoundException.php │ │ │ │ │ │ ├── PolicyTypeNotFoundException.php │ │ │ │ │ │ ├── SubnetNotFoundException.php │ │ │ │ │ │ ├── TooManyAccessPointsException.php │ │ │ │ │ │ └── TooManyPoliciesException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── elasticloadbalancing-2012-06-01.php │ │ │ │ ├── ElasticTranscoder │ │ │ │ │ ├── ElasticTranscoderClient.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── ElasticTranscoderException.php │ │ │ │ │ │ ├── IncompatibleVersionException.php │ │ │ │ │ │ ├── InternalServiceException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── ResourceInUseException.php │ │ │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ │ │ └── ValidationException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── elastictranscoder-2012-09-25.php │ │ │ │ ├── Emr │ │ │ │ │ ├── EmrClient.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ActionOnFailure.php │ │ │ │ │ │ ├── ClusterState.php │ │ │ │ │ │ ├── ClusterStateChangeReasonCode.php │ │ │ │ │ │ ├── InstanceGroupState.php │ │ │ │ │ │ ├── InstanceGroupStateChangeReasonCode.php │ │ │ │ │ │ ├── InstanceGroupType.php │ │ │ │ │ │ ├── InstanceRoleType.php │ │ │ │ │ │ ├── InstanceState.php │ │ │ │ │ │ ├── InstanceStateChangeReasonCode.php │ │ │ │ │ │ ├── JobFlowExecutionState.php │ │ │ │ │ │ ├── MarketType.php │ │ │ │ │ │ ├── StepExecutionState.php │ │ │ │ │ │ ├── StepState.php │ │ │ │ │ │ └── StepStateChangeReasonCode.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── EmrException.php │ │ │ │ │ │ ├── InternalServerErrorException.php │ │ │ │ │ │ ├── InternalServerException.php │ │ │ │ │ │ └── InvalidRequestException.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── emr-2009-03-31.php │ │ │ │ ├── Glacier │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── ActionCode.php │ │ │ │ │ │ └── StatusCode.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── GlacierException.php │ │ │ │ │ │ ├── InvalidParameterValueException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── MissingParameterValueException.php │ │ │ │ │ │ ├── RequestTimeoutException.php │ │ │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ │ │ └── ServiceUnavailableException.php │ │ │ │ │ ├── GlacierClient.php │ │ │ │ │ ├── GlacierUploadListener.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── MultipartUpload │ │ │ │ │ │ │ ├── AbstractTransfer.php │ │ │ │ │ │ │ ├── ParallelTransfer.php │ │ │ │ │ │ │ ├── SerialTransfer.php │ │ │ │ │ │ │ ├── TransferState.php │ │ │ │ │ │ │ ├── UploadBuilder.php │ │ │ │ │ │ │ ├── UploadId.php │ │ │ │ │ │ │ ├── UploadPart.php │ │ │ │ │ │ │ ├── UploadPartContext.php │ │ │ │ │ │ │ └── UploadPartGenerator.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── glacier-2012-06-01.php │ │ │ │ ├── Iam │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── AssignmentStatusType.php │ │ │ │ │ │ └── StatusType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── DeleteConflictException.php │ │ │ │ │ │ ├── DuplicateCertificateException.php │ │ │ │ │ │ ├── EntityAlreadyExistsException.php │ │ │ │ │ │ ├── EntityTemporarilyUnmodifiableException.php │ │ │ │ │ │ ├── IamException.php │ │ │ │ │ │ ├── InvalidAuthenticationCodeException.php │ │ │ │ │ │ ├── InvalidCertificateException.php │ │ │ │ │ │ ├── InvalidInputException.php │ │ │ │ │ │ ├── InvalidUserTypeException.php │ │ │ │ │ │ ├── KeyPairMismatchException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── MalformedCertificateException.php │ │ │ │ │ │ ├── MalformedPolicyDocumentException.php │ │ │ │ │ │ ├── NoSuchEntityException.php │ │ │ │ │ │ └── PasswordPolicyViolationException.php │ │ │ │ │ ├── IamClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── iam-2010-05-08.php │ │ │ │ ├── ImportExport │ │ │ │ │ ├── Enum │ │ │ │ │ │ └── JobType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BucketPermissionException.php │ │ │ │ │ │ ├── CanceledJobIdException.php │ │ │ │ │ │ ├── ExpiredJobIdException.php │ │ │ │ │ │ ├── ImportExportException.php │ │ │ │ │ │ ├── InvalidAccessKeyIdException.php │ │ │ │ │ │ ├── InvalidAddressException.php │ │ │ │ │ │ ├── InvalidCustomsException.php │ │ │ │ │ │ ├── InvalidFileSystemException.php │ │ │ │ │ │ ├── InvalidJobIdException.php │ │ │ │ │ │ ├── InvalidManifestFieldException.php │ │ │ │ │ │ ├── InvalidParameterException.php │ │ │ │ │ │ ├── MalformedManifestException.php │ │ │ │ │ │ ├── MissingCustomsException.php │ │ │ │ │ │ ├── MissingManifestFieldException.php │ │ │ │ │ │ ├── MissingParameterException.php │ │ │ │ │ │ ├── MultipleRegionsException.php │ │ │ │ │ │ ├── NoSuchBucketException.php │ │ │ │ │ │ └── UnableToCancelJobIdException.php │ │ │ │ │ ├── ImportExportClient.php │ │ │ │ │ ├── JobManifestListener.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── importexport-2010-06-01.php │ │ │ │ ├── Kinesis │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ShardIteratorType.php │ │ │ │ │ │ └── StreamStatus.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ExpiredIteratorException.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── KinesisException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── ProvisionedThroughputExceededException.php │ │ │ │ │ │ ├── ResourceInUseException.php │ │ │ │ │ │ └── ResourceNotFoundException.php │ │ │ │ │ ├── KinesisClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── kinesis-2013-12-02.php │ │ │ │ ├── Kms │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── KmsException.php │ │ │ │ │ ├── KmsClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── kms-2014-11-01.php │ │ │ │ ├── Lambda │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── LambdaException.php │ │ │ │ │ ├── LambdaClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── lambda-2014-11-11.php │ │ │ │ │ │ └── lambda-2015-03-31.php │ │ │ │ ├── MachineLearning │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── MachineLearningException.php │ │ │ │ │ ├── MachineLearningClient.php │ │ │ │ │ ├── PredictEndpointListener.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── machinelearning-2014-12-12.php │ │ │ │ ├── OpsWorks │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── AppType.php │ │ │ │ │ │ ├── Architecture.php │ │ │ │ │ │ ├── AutoScalingType.php │ │ │ │ │ │ ├── DeploymentCommandName.php │ │ │ │ │ │ ├── LayerType.php │ │ │ │ │ │ ├── PermissionLevel.php │ │ │ │ │ │ ├── RootDeviceType.php │ │ │ │ │ │ └── SourceType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── OpsWorksException.php │ │ │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ │ │ └── ValidationException.php │ │ │ │ │ ├── OpsWorksClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── opsworks-2013-02-18.php │ │ │ │ ├── Rds │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ApplyMethod.php │ │ │ │ │ │ └── SourceType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AuthorizationAlreadyExistsException.php │ │ │ │ │ │ ├── AuthorizationNotFoundException.php │ │ │ │ │ │ ├── AuthorizationQuotaExceededException.php │ │ │ │ │ │ ├── DBInstanceAlreadyExistsException.php │ │ │ │ │ │ ├── DBInstanceNotFoundException.php │ │ │ │ │ │ ├── DBParameterGroupAlreadyExistsException.php │ │ │ │ │ │ ├── DBParameterGroupNotFoundException.php │ │ │ │ │ │ ├── DBParameterGroupQuotaExceededException.php │ │ │ │ │ │ ├── DBSecurityGroupAlreadyExistsException.php │ │ │ │ │ │ ├── DBSecurityGroupNotFoundException.php │ │ │ │ │ │ ├── DBSecurityGroupNotSupportedException.php │ │ │ │ │ │ ├── DBSecurityGroupQuotaExceededException.php │ │ │ │ │ │ ├── DBSnapshotAlreadyExistsException.php │ │ │ │ │ │ ├── DBSnapshotNotFoundException.php │ │ │ │ │ │ ├── DBSubnetGroupAlreadyExistsException.php │ │ │ │ │ │ ├── DBSubnetGroupDoesNotCoverEnoughAZsException.php │ │ │ │ │ │ ├── DBSubnetGroupNotAllowedException.php │ │ │ │ │ │ ├── DBSubnetGroupNotFoundException.php │ │ │ │ │ │ ├── DBSubnetGroupQuotaExceededException.php │ │ │ │ │ │ ├── DBSubnetQuotaExceededException.php │ │ │ │ │ │ ├── DBUpgradeDependencyFailureException.php │ │ │ │ │ │ ├── EventSubscriptionQuotaExceededException.php │ │ │ │ │ │ ├── InstanceQuotaExceededException.php │ │ │ │ │ │ ├── InsufficientDBInstanceCapacityException.php │ │ │ │ │ │ ├── InvalidDBInstanceStateException.php │ │ │ │ │ │ ├── InvalidDBParameterGroupStateException.php │ │ │ │ │ │ ├── InvalidDBSecurityGroupStateException.php │ │ │ │ │ │ ├── InvalidDBSnapshotStateException.php │ │ │ │ │ │ ├── InvalidDBSubnetGroupException.php │ │ │ │ │ │ ├── InvalidDBSubnetGroupStateException.php │ │ │ │ │ │ ├── InvalidDBSubnetStateException.php │ │ │ │ │ │ ├── InvalidEventSubscriptionStateException.php │ │ │ │ │ │ ├── InvalidOptionGroupStateException.php │ │ │ │ │ │ ├── InvalidRestoreException.php │ │ │ │ │ │ ├── InvalidSubnetException.php │ │ │ │ │ │ ├── InvalidVPCNetworkStateException.php │ │ │ │ │ │ ├── OptionGroupAlreadyExistsException.php │ │ │ │ │ │ ├── OptionGroupNotFoundException.php │ │ │ │ │ │ ├── OptionGroupQuotaExceededException.php │ │ │ │ │ │ ├── PointInTimeRestoreNotEnabledException.php │ │ │ │ │ │ ├── ProvisionedIopsNotAvailableInAZException.php │ │ │ │ │ │ ├── RdsException.php │ │ │ │ │ │ ├── ReservedDBInstanceAlreadyExistsException.php │ │ │ │ │ │ ├── ReservedDBInstanceNotFoundException.php │ │ │ │ │ │ ├── ReservedDBInstanceQuotaExceededException.php │ │ │ │ │ │ ├── ReservedDBInstancesOfferingNotFoundException.php │ │ │ │ │ │ ├── SNSInvalidTopicException.php │ │ │ │ │ │ ├── SNSNoAuthorizationException.php │ │ │ │ │ │ ├── SNSTopicArnNotFoundException.php │ │ │ │ │ │ ├── SnapshotQuotaExceededException.php │ │ │ │ │ │ ├── SourceNotFoundException.php │ │ │ │ │ │ ├── StorageQuotaExceededException.php │ │ │ │ │ │ ├── SubnetAlreadyInUseException.php │ │ │ │ │ │ ├── SubscriptionAlreadyExistException.php │ │ │ │ │ │ ├── SubscriptionCategoryNotFoundException.php │ │ │ │ │ │ └── SubscriptionNotFoundException.php │ │ │ │ │ ├── RdsClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── rds-2014-10-31.php │ │ │ │ ├── Redshift │ │ │ │ │ ├── Enum │ │ │ │ │ │ └── SourceType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessToSnapshotDeniedException.php │ │ │ │ │ │ ├── AuthorizationAlreadyExistsException.php │ │ │ │ │ │ ├── AuthorizationNotFoundException.php │ │ │ │ │ │ ├── AuthorizationQuotaExceededException.php │ │ │ │ │ │ ├── BucketNotFoundException.php │ │ │ │ │ │ ├── ClusterAlreadyExistsException.php │ │ │ │ │ │ ├── ClusterNotFoundException.php │ │ │ │ │ │ ├── ClusterParameterGroupAlreadyExistsException.php │ │ │ │ │ │ ├── ClusterParameterGroupNotFoundException.php │ │ │ │ │ │ ├── ClusterParameterGroupQuotaExceededException.php │ │ │ │ │ │ ├── ClusterQuotaExceededException.php │ │ │ │ │ │ ├── ClusterSecurityGroupAlreadyExistsException.php │ │ │ │ │ │ ├── ClusterSecurityGroupNotFoundException.php │ │ │ │ │ │ ├── ClusterSecurityGroupQuotaExceededException.php │ │ │ │ │ │ ├── ClusterSnapshotAlreadyExistsException.php │ │ │ │ │ │ ├── ClusterSnapshotNotFoundException.php │ │ │ │ │ │ ├── ClusterSnapshotQuotaExceededException.php │ │ │ │ │ │ ├── ClusterSubnetGroupAlreadyExistsException.php │ │ │ │ │ │ ├── ClusterSubnetGroupNotFoundException.php │ │ │ │ │ │ ├── ClusterSubnetGroupQuotaExceededException.php │ │ │ │ │ │ ├── ClusterSubnetQuotaExceededException.php │ │ │ │ │ │ ├── CopyToRegionDisabledException.php │ │ │ │ │ │ ├── EventSubscriptionQuotaExceededException.php │ │ │ │ │ │ ├── HsmClientCertificateAlreadyExistsException.php │ │ │ │ │ │ ├── HsmClientCertificateNotFoundException.php │ │ │ │ │ │ ├── HsmClientCertificateQuotaExceededException.php │ │ │ │ │ │ ├── HsmConfigurationAlreadyExistsException.php │ │ │ │ │ │ ├── HsmConfigurationNotFoundException.php │ │ │ │ │ │ ├── HsmConfigurationQuotaExceededException.php │ │ │ │ │ │ ├── IncompatibleOrderableOptionsException.php │ │ │ │ │ │ ├── InsufficientClusterCapacityException.php │ │ │ │ │ │ ├── InsufficientS3BucketPolicyFaultException.php │ │ │ │ │ │ ├── InvalidClusterParameterGroupStateException.php │ │ │ │ │ │ ├── InvalidClusterSecurityGroupStateException.php │ │ │ │ │ │ ├── InvalidClusterSnapshotStateException.php │ │ │ │ │ │ ├── InvalidClusterStateException.php │ │ │ │ │ │ ├── InvalidClusterSubnetGroupStateException.php │ │ │ │ │ │ ├── InvalidClusterSubnetStateException.php │ │ │ │ │ │ ├── InvalidElasticIpException.php │ │ │ │ │ │ ├── InvalidHsmClientCertificateStateException.php │ │ │ │ │ │ ├── InvalidHsmConfigurationStateException.php │ │ │ │ │ │ ├── InvalidRestoreException.php │ │ │ │ │ │ ├── InvalidS3BucketNameFaultException.php │ │ │ │ │ │ ├── InvalidS3KeyPrefixFaultException.php │ │ │ │ │ │ ├── InvalidSubnetException.php │ │ │ │ │ │ ├── InvalidVPCNetworkStateException.php │ │ │ │ │ │ ├── NumberOfNodesPerClusterLimitExceededException.php │ │ │ │ │ │ ├── NumberOfNodesQuotaExceededException.php │ │ │ │ │ │ ├── RedshiftException.php │ │ │ │ │ │ ├── ReservedNodeAlreadyExistsException.php │ │ │ │ │ │ ├── ReservedNodeNotFoundException.php │ │ │ │ │ │ ├── ReservedNodeOfferingNotFoundException.php │ │ │ │ │ │ ├── ReservedNodeQuotaExceededException.php │ │ │ │ │ │ ├── ResizeNotFoundException.php │ │ │ │ │ │ ├── SNSInvalidTopicException.php │ │ │ │ │ │ ├── SNSNoAuthorizationException.php │ │ │ │ │ │ ├── SNSTopicArnNotFoundException.php │ │ │ │ │ │ ├── SnapshotCopyAlreadyDisabledException.php │ │ │ │ │ │ ├── SnapshotCopyAlreadyEnabledException.php │ │ │ │ │ │ ├── SnapshotCopyDisabledException.php │ │ │ │ │ │ ├── SourceNotFoundException.php │ │ │ │ │ │ ├── SubnetAlreadyInUseException.php │ │ │ │ │ │ ├── SubscriptionAlreadyExistException.php │ │ │ │ │ │ ├── SubscriptionCategoryNotFoundException.php │ │ │ │ │ │ ├── SubscriptionEventIdNotFoundException.php │ │ │ │ │ │ ├── SubscriptionNotFoundException.php │ │ │ │ │ │ ├── SubscriptionSeverityNotFoundException.php │ │ │ │ │ │ ├── UnauthorizedOperationException.php │ │ │ │ │ │ ├── UnknownSnapshotCopyRegionException.php │ │ │ │ │ │ └── UnsupportedOptionException.php │ │ │ │ │ ├── RedshiftClient.php │ │ │ │ │ └── Resources │ │ │ │ │ │ └── redshift-2012-12-01.php │ │ │ │ ├── Route53 │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── HealthCheckType.php │ │ │ │ │ │ ├── RecordType.php │ │ │ │ │ │ ├── ResourceRecordSetFailover.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── DelegationSetNotAvailableException.php │ │ │ │ │ │ ├── HealthCheckAlreadyExistsException.php │ │ │ │ │ │ ├── HealthCheckInUseException.php │ │ │ │ │ │ ├── HostedZoneAlreadyExistsException.php │ │ │ │ │ │ ├── HostedZoneNotEmptyException.php │ │ │ │ │ │ ├── IncompatibleVersionException.php │ │ │ │ │ │ ├── InvalidChangeBatchException.php │ │ │ │ │ │ ├── InvalidDomainNameException.php │ │ │ │ │ │ ├── InvalidInputException.php │ │ │ │ │ │ ├── NoSuchChangeException.php │ │ │ │ │ │ ├── NoSuchHealthCheckException.php │ │ │ │ │ │ ├── NoSuchHostedZoneException.php │ │ │ │ │ │ ├── PriorRequestNotCompleteException.php │ │ │ │ │ │ ├── Route53Exception.php │ │ │ │ │ │ ├── TooManyHealthChecksException.php │ │ │ │ │ │ └── TooManyHostedZonesException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── route53-2013-04-01.php │ │ │ │ │ └── Route53Client.php │ │ │ │ ├── Route53Domains │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── Route53DomainsException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── route53domains-2014-05-15.php │ │ │ │ │ └── Route53DomainsClient.php │ │ │ │ ├── S3 │ │ │ │ │ ├── AcpListener.php │ │ │ │ │ ├── BucketStyleListener.php │ │ │ │ │ ├── Command │ │ │ │ │ │ └── S3Command.php │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── CannedAcl.php │ │ │ │ │ │ ├── EncodingType.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── GranteeType.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── MFADelete.php │ │ │ │ │ │ ├── MetadataDirective.php │ │ │ │ │ │ ├── Payer.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── Protocol.php │ │ │ │ │ │ ├── ServerSideEncryption.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Storage.php │ │ │ │ │ │ └── StorageClass.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── AccountProblemException.php │ │ │ │ │ │ ├── AmbiguousGrantByEmailAddressException.php │ │ │ │ │ │ ├── BadDigestException.php │ │ │ │ │ │ ├── BucketAlreadyExistsException.php │ │ │ │ │ │ ├── BucketAlreadyOwnedByYouException.php │ │ │ │ │ │ ├── BucketNotEmptyException.php │ │ │ │ │ │ ├── CredentialsNotSupportedException.php │ │ │ │ │ │ ├── CrossLocationLoggingProhibitedException.php │ │ │ │ │ │ ├── DeleteMultipleObjectsException.php │ │ │ │ │ │ ├── EntityTooLargeException.php │ │ │ │ │ │ ├── EntityTooSmallException.php │ │ │ │ │ │ ├── ExpiredTokenException.php │ │ │ │ │ │ ├── IllegalVersioningConfigurationException.php │ │ │ │ │ │ ├── IncompleteBodyException.php │ │ │ │ │ │ ├── IncorrectNumberOfFilesInPostRequestException.php │ │ │ │ │ │ ├── InlineDataTooLargeException.php │ │ │ │ │ │ ├── InternalErrorException.php │ │ │ │ │ │ ├── InvalidAccessKeyIdException.php │ │ │ │ │ │ ├── InvalidAddressingHeaderException.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── InvalidBucketNameException.php │ │ │ │ │ │ ├── InvalidBucketStateException.php │ │ │ │ │ │ ├── InvalidDigestException.php │ │ │ │ │ │ ├── InvalidLocationConstraintException.php │ │ │ │ │ │ ├── InvalidPartException.php │ │ │ │ │ │ ├── InvalidPartOrderException.php │ │ │ │ │ │ ├── InvalidPayerException.php │ │ │ │ │ │ ├── InvalidPolicyDocumentException.php │ │ │ │ │ │ ├── InvalidRangeException.php │ │ │ │ │ │ ├── InvalidRequestException.php │ │ │ │ │ │ ├── InvalidSOAPRequestException.php │ │ │ │ │ │ ├── InvalidSecurityException.php │ │ │ │ │ │ ├── InvalidStorageClassException.php │ │ │ │ │ │ ├── InvalidTagErrorException.php │ │ │ │ │ │ ├── InvalidTargetBucketForLoggingException.php │ │ │ │ │ │ ├── InvalidTokenException.php │ │ │ │ │ │ ├── InvalidURIException.php │ │ │ │ │ │ ├── KeyTooLongException.php │ │ │ │ │ │ ├── MalformedACLErrorException.php │ │ │ │ │ │ ├── MalformedPOSTRequestException.php │ │ │ │ │ │ ├── MalformedXMLException.php │ │ │ │ │ │ ├── MaxMessageLengthExceededException.php │ │ │ │ │ │ ├── MaxPostPreDataLengthExceededErrorException.php │ │ │ │ │ │ ├── MetadataTooLargeException.php │ │ │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ │ │ ├── MissingAttachmentException.php │ │ │ │ │ │ ├── MissingContentLengthException.php │ │ │ │ │ │ ├── MissingRequestBodyErrorException.php │ │ │ │ │ │ ├── MissingSecurityElementException.php │ │ │ │ │ │ ├── MissingSecurityHeaderException.php │ │ │ │ │ │ ├── NoLoggingStatusForKeyException.php │ │ │ │ │ │ ├── NoSuchBucketException.php │ │ │ │ │ │ ├── NoSuchBucketPolicyException.php │ │ │ │ │ │ ├── NoSuchCORSConfigurationException.php │ │ │ │ │ │ ├── NoSuchKeyException.php │ │ │ │ │ │ ├── NoSuchLifecycleConfigurationException.php │ │ │ │ │ │ ├── NoSuchTagSetException.php │ │ │ │ │ │ ├── NoSuchUploadException.php │ │ │ │ │ │ ├── NoSuchVersionException.php │ │ │ │ │ │ ├── NoSuchWebsiteConfigurationException.php │ │ │ │ │ │ ├── NotImplementedException.php │ │ │ │ │ │ ├── NotSignedUpException.php │ │ │ │ │ │ ├── NotSuchBucketPolicyException.php │ │ │ │ │ │ ├── ObjectAlreadyInActiveTierErrorException.php │ │ │ │ │ │ ├── ObjectNotInActiveTierErrorException.php │ │ │ │ │ │ ├── OperationAbortedException.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ └── S3ExceptionParser.php │ │ │ │ │ │ ├── PermanentRedirectException.php │ │ │ │ │ │ ├── PreconditionFailedException.php │ │ │ │ │ │ ├── RedirectException.php │ │ │ │ │ │ ├── RequestIsNotMultiPartContentException.php │ │ │ │ │ │ ├── RequestTimeTooSkewedException.php │ │ │ │ │ │ ├── RequestTimeoutException.php │ │ │ │ │ │ ├── RequestTorrentOfBucketErrorException.php │ │ │ │ │ │ ├── S3Exception.php │ │ │ │ │ │ ├── ServiceUnavailableException.php │ │ │ │ │ │ ├── SignatureDoesNotMatchException.php │ │ │ │ │ │ ├── SlowDownException.php │ │ │ │ │ │ ├── TemporaryRedirectException.php │ │ │ │ │ │ ├── TokenRefreshRequiredException.php │ │ │ │ │ │ ├── TooManyBucketsException.php │ │ │ │ │ │ ├── UnexpectedContentException.php │ │ │ │ │ │ ├── UnresolvableGrantByEmailAddressException.php │ │ │ │ │ │ └── UserKeyMustBeSpecifiedException.php │ │ │ │ │ ├── IncompleteMultipartUploadChecker.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ ├── ListBucketsIterator.php │ │ │ │ │ │ ├── ListMultipartUploadsIterator.php │ │ │ │ │ │ ├── ListObjectVersionsIterator.php │ │ │ │ │ │ ├── ListObjectsIterator.php │ │ │ │ │ │ └── OpendirIterator.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Acp.php │ │ │ │ │ │ ├── AcpBuilder.php │ │ │ │ │ │ ├── ClearBucket.php │ │ │ │ │ │ ├── DeleteObjectsBatch.php │ │ │ │ │ │ ├── DeleteObjectsTransfer.php │ │ │ │ │ │ ├── Grant.php │ │ │ │ │ │ ├── Grantee.php │ │ │ │ │ │ ├── MultipartUpload │ │ │ │ │ │ │ ├── AbstractTransfer.php │ │ │ │ │ │ │ ├── ParallelTransfer.php │ │ │ │ │ │ │ ├── SerialTransfer.php │ │ │ │ │ │ │ ├── TransferState.php │ │ │ │ │ │ │ ├── UploadBuilder.php │ │ │ │ │ │ │ ├── UploadId.php │ │ │ │ │ │ │ └── UploadPart.php │ │ │ │ │ │ └── PostObject.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── s3-2006-03-01.php │ │ │ │ │ ├── ResumableDownload.php │ │ │ │ │ ├── S3Client.php │ │ │ │ │ ├── S3Md5Listener.php │ │ │ │ │ ├── S3Signature.php │ │ │ │ │ ├── S3SignatureInterface.php │ │ │ │ │ ├── S3SignatureV4.php │ │ │ │ │ ├── SocketTimeoutChecker.php │ │ │ │ │ ├── SseCpkListener.php │ │ │ │ │ ├── StreamWrapper.php │ │ │ │ │ └── Sync │ │ │ │ │ │ ├── AbstractSync.php │ │ │ │ │ │ ├── AbstractSyncBuilder.php │ │ │ │ │ │ ├── ChangedFilesIterator.php │ │ │ │ │ │ ├── DownloadSync.php │ │ │ │ │ │ ├── DownloadSyncBuilder.php │ │ │ │ │ │ ├── FilenameConverterInterface.php │ │ │ │ │ │ ├── KeyConverter.php │ │ │ │ │ │ ├── UploadSync.php │ │ │ │ │ │ └── UploadSyncBuilder.php │ │ │ │ ├── Ses │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── IdentityType.php │ │ │ │ │ │ ├── MailboxSimulator.php │ │ │ │ │ │ ├── NotificationType.php │ │ │ │ │ │ └── VerificationStatus.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── MessageRejectedException.php │ │ │ │ │ │ └── SesException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── ses-2010-12-01.php │ │ │ │ │ └── SesClient.php │ │ │ │ ├── SimpleDb │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AttributeDoesNotExistException.php │ │ │ │ │ │ ├── DuplicateItemNameException.php │ │ │ │ │ │ ├── InvalidNextTokenException.php │ │ │ │ │ │ ├── InvalidNumberPredicatesException.php │ │ │ │ │ │ ├── InvalidNumberValueTestsException.php │ │ │ │ │ │ ├── InvalidParameterValueException.php │ │ │ │ │ │ ├── InvalidQueryExpressionException.php │ │ │ │ │ │ ├── MissingParameterException.php │ │ │ │ │ │ ├── NoSuchDomainException.php │ │ │ │ │ │ ├── NumberDomainAttributesExceededException.php │ │ │ │ │ │ ├── NumberDomainBytesExceededException.php │ │ │ │ │ │ ├── NumberDomainsExceededException.php │ │ │ │ │ │ ├── NumberItemAttributesExceededException.php │ │ │ │ │ │ ├── NumberSubmittedAttributesExceededException.php │ │ │ │ │ │ ├── NumberSubmittedItemsExceededException.php │ │ │ │ │ │ ├── RequestTimeoutException.php │ │ │ │ │ │ ├── SimpleDbException.php │ │ │ │ │ │ └── TooManyRequestedAttributesException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── simpledb-2009-04-15.php │ │ │ │ │ └── SimpleDbClient.php │ │ │ │ ├── Sns │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AuthorizationErrorException.php │ │ │ │ │ │ ├── EndpointDisabledException.php │ │ │ │ │ │ ├── InternalErrorException.php │ │ │ │ │ │ ├── InvalidParameterException.php │ │ │ │ │ │ ├── NotFoundException.php │ │ │ │ │ │ ├── PlatformApplicationDisabledException.php │ │ │ │ │ │ ├── SnsException.php │ │ │ │ │ │ ├── SubscriptionLimitExceededException.php │ │ │ │ │ │ └── TopicLimitExceededException.php │ │ │ │ │ ├── MessageValidator │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── CannotGetPublicKeyFromCertificateException.php │ │ │ │ │ │ │ ├── CertificateFromUnrecognizedSourceException.php │ │ │ │ │ │ │ ├── InvalidMessageSignatureException.php │ │ │ │ │ │ │ └── SnsMessageValidatorException.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ └── MessageValidator.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── sns-2010-03-31.php │ │ │ │ │ └── SnsClient.php │ │ │ │ ├── Sqs │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── MessageAttribute.php │ │ │ │ │ │ └── QueueAttribute.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── SqsException.php │ │ │ │ │ ├── Md5ValidatorListener.php │ │ │ │ │ ├── QueueUrlListener.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── sqs-2012-11-05.php │ │ │ │ │ └── SqsClient.php │ │ │ │ ├── Ssm │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── SsmException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── ssm-2014-11-06.php │ │ │ │ │ └── SsmClient.php │ │ │ │ ├── StorageGateway │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── BandwidthType.php │ │ │ │ │ │ ├── DiskAllocationType.php │ │ │ │ │ │ ├── ErrorCode.php │ │ │ │ │ │ ├── GatewayState.php │ │ │ │ │ │ ├── GatewayTimezone.php │ │ │ │ │ │ ├── GatewayType.php │ │ │ │ │ │ ├── VolumeStatus.php │ │ │ │ │ │ └── VolumeType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── InternalServerErrorException.php │ │ │ │ │ │ ├── InvalidGatewayRequestException.php │ │ │ │ │ │ └── StorageGatewayException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── storagegateway-2013-06-30.php │ │ │ │ │ └── StorageGatewayClient.php │ │ │ │ ├── Sts │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ExpiredTokenException.php │ │ │ │ │ │ ├── IDPCommunicationErrorException.php │ │ │ │ │ │ ├── IDPRejectedClaimException.php │ │ │ │ │ │ ├── IncompleteSignatureException.php │ │ │ │ │ │ ├── InternalFailureException.php │ │ │ │ │ │ ├── InvalidActionException.php │ │ │ │ │ │ ├── InvalidAuthorizationMessageException.php │ │ │ │ │ │ ├── InvalidClientTokenIdException.php │ │ │ │ │ │ ├── InvalidIdentityTokenException.php │ │ │ │ │ │ ├── InvalidParameterCombinationException.php │ │ │ │ │ │ ├── InvalidParameterValueException.php │ │ │ │ │ │ ├── InvalidQueryParameterException.php │ │ │ │ │ │ ├── MalformedPolicyDocumentException.php │ │ │ │ │ │ ├── MalformedQueryStringException.php │ │ │ │ │ │ ├── MissingActionException.php │ │ │ │ │ │ ├── MissingAuthenticationTokenException.php │ │ │ │ │ │ ├── MissingParameterException.php │ │ │ │ │ │ ├── OptInRequiredException.php │ │ │ │ │ │ ├── PackedPolicyTooLargeException.php │ │ │ │ │ │ ├── RequestExpiredException.php │ │ │ │ │ │ ├── ServiceUnavailableException.php │ │ │ │ │ │ ├── StsException.php │ │ │ │ │ │ └── ThrottlingException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── sts-2011-06-15.php │ │ │ │ │ └── StsClient.php │ │ │ │ ├── Support │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CaseCreationLimitExceededException.php │ │ │ │ │ │ ├── CaseIdNotFoundException.php │ │ │ │ │ │ ├── InternalServerErrorException.php │ │ │ │ │ │ └── SupportException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── support-2013-04-15.php │ │ │ │ │ └── SupportClient.php │ │ │ │ ├── Swf │ │ │ │ │ ├── Enum │ │ │ │ │ │ ├── ActivityTaskTimeoutType.php │ │ │ │ │ │ ├── ChildPolicy.php │ │ │ │ │ │ ├── CloseStatus.php │ │ │ │ │ │ ├── DecisionTaskTimeoutType.php │ │ │ │ │ │ ├── DecisionType.php │ │ │ │ │ │ ├── EventType.php │ │ │ │ │ │ ├── ExecutionStatus.php │ │ │ │ │ │ ├── RegistrationStatus.php │ │ │ │ │ │ └── WorkflowExecutionTimeoutType.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── DefaultUndefinedException.php │ │ │ │ │ │ ├── DomainAlreadyExistsException.php │ │ │ │ │ │ ├── DomainDeprecatedException.php │ │ │ │ │ │ ├── LimitExceededException.php │ │ │ │ │ │ ├── OperationNotPermittedException.php │ │ │ │ │ │ ├── SwfException.php │ │ │ │ │ │ ├── TypeAlreadyExistsException.php │ │ │ │ │ │ ├── TypeDeprecatedException.php │ │ │ │ │ │ ├── UnknownResourceException.php │ │ │ │ │ │ └── WorkflowExecutionAlreadyStartedException.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── swf-2012-01-25.php │ │ │ │ │ └── SwfClient.php │ │ │ │ └── WorkSpaces │ │ │ │ │ ├── Exception │ │ │ │ │ └── WorkSpacesException.php │ │ │ │ │ ├── Resources │ │ │ │ │ └── workspaces-2015-04-08.php │ │ │ │ │ └── WorkSpacesClient.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Doctrine │ │ │ │ └── Common │ │ │ │ │ └── Cache │ │ │ │ │ ├── ApcCache.php │ │ │ │ │ ├── ArrayCache.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── CacheProvider.php │ │ │ │ │ ├── ChainCache.php │ │ │ │ │ ├── ClearableCache.php │ │ │ │ │ ├── CouchbaseCache.php │ │ │ │ │ ├── FileCache.php │ │ │ │ │ ├── FilesystemCache.php │ │ │ │ │ ├── FlushableCache.php │ │ │ │ │ ├── MemcacheCache.php │ │ │ │ │ ├── MemcachedCache.php │ │ │ │ │ ├── MongoDBCache.php │ │ │ │ │ ├── MultiGetCache.php │ │ │ │ │ ├── PhpFileCache.php │ │ │ │ │ ├── PredisCache.php │ │ │ │ │ ├── RedisCache.php │ │ │ │ │ ├── RiakCache.php │ │ │ │ │ ├── SQLite3Cache.php │ │ │ │ │ ├── Version.php │ │ │ │ │ ├── VoidCache.php │ │ │ │ │ ├── WinCacheCache.php │ │ │ │ │ ├── XcacheCache.php │ │ │ │ │ └── ZendDataCache.php │ │ │ │ ├── Guzzle │ │ │ │ ├── Batch │ │ │ │ │ ├── AbstractBatchDecorator.php │ │ │ │ │ ├── Batch.php │ │ │ │ │ ├── BatchBuilder.php │ │ │ │ │ ├── BatchClosureDivisor.php │ │ │ │ │ ├── BatchClosureTransfer.php │ │ │ │ │ ├── BatchCommandTransfer.php │ │ │ │ │ ├── BatchDivisorInterface.php │ │ │ │ │ ├── BatchInterface.php │ │ │ │ │ ├── BatchRequestTransfer.php │ │ │ │ │ ├── BatchSizeDivisor.php │ │ │ │ │ ├── BatchTransferInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── BatchTransferException.php │ │ │ │ │ ├── ExceptionBufferingBatch.php │ │ │ │ │ ├── FlushingBatch.php │ │ │ │ │ ├── HistoryBatch.php │ │ │ │ │ └── NotifyingBatch.php │ │ │ │ ├── Cache │ │ │ │ │ ├── AbstractCacheAdapter.php │ │ │ │ │ ├── CacheAdapterFactory.php │ │ │ │ │ ├── CacheAdapterInterface.php │ │ │ │ │ ├── ClosureCacheAdapter.php │ │ │ │ │ ├── DoctrineCacheAdapter.php │ │ │ │ │ ├── NullCacheAdapter.php │ │ │ │ │ ├── Zf1CacheAdapter.php │ │ │ │ │ └── Zf2CacheAdapter.php │ │ │ │ ├── Common │ │ │ │ │ ├── AbstractHasDispatcher.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ ├── ExceptionCollection.php │ │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ └── UnexpectedValueException.php │ │ │ │ │ ├── FromConfigInterface.php │ │ │ │ │ ├── HasDispatcherInterface.php │ │ │ │ │ ├── ToArrayInterface.php │ │ │ │ │ └── Version.php │ │ │ │ ├── Http │ │ │ │ │ ├── AbstractEntityBodyDecorator.php │ │ │ │ │ ├── CachingEntityBody.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Curl │ │ │ │ │ │ ├── CurlHandle.php │ │ │ │ │ │ ├── CurlMulti.php │ │ │ │ │ │ ├── CurlMultiInterface.php │ │ │ │ │ │ ├── CurlMultiProxy.php │ │ │ │ │ │ ├── CurlVersion.php │ │ │ │ │ │ └── RequestMediator.php │ │ │ │ │ ├── EntityBody.php │ │ │ │ │ ├── EntityBodyInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ │ ├── ClientErrorResponseException.php │ │ │ │ │ │ ├── CouldNotRewindStreamException.php │ │ │ │ │ │ ├── CurlException.php │ │ │ │ │ │ ├── HttpException.php │ │ │ │ │ │ ├── MultiTransferException.php │ │ │ │ │ │ ├── RequestException.php │ │ │ │ │ │ ├── ServerErrorResponseException.php │ │ │ │ │ │ └── TooManyRedirectsException.php │ │ │ │ │ ├── IoEmittingEntityBody.php │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── AbstractMessage.php │ │ │ │ │ │ ├── EntityEnclosingRequest.php │ │ │ │ │ │ ├── EntityEnclosingRequestInterface.php │ │ │ │ │ │ ├── Header.php │ │ │ │ │ │ ├── Header │ │ │ │ │ │ │ ├── CacheControl.php │ │ │ │ │ │ │ ├── HeaderCollection.php │ │ │ │ │ │ │ ├── HeaderFactory.php │ │ │ │ │ │ │ ├── HeaderFactoryInterface.php │ │ │ │ │ │ │ ├── HeaderInterface.php │ │ │ │ │ │ │ └── Link.php │ │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ │ ├── PostFile.php │ │ │ │ │ │ ├── PostFileInterface.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── RequestFactory.php │ │ │ │ │ │ ├── RequestFactoryInterface.php │ │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ ├── Mimetypes.php │ │ │ │ │ ├── QueryAggregator │ │ │ │ │ │ ├── CommaAggregator.php │ │ │ │ │ │ ├── DuplicateAggregator.php │ │ │ │ │ │ ├── PhpAggregator.php │ │ │ │ │ │ └── QueryAggregatorInterface.php │ │ │ │ │ ├── QueryString.php │ │ │ │ │ ├── ReadLimitEntityBody.php │ │ │ │ │ ├── RedirectPlugin.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── cacert.pem │ │ │ │ │ ├── StaticClient.php │ │ │ │ │ └── Url.php │ │ │ │ ├── Inflection │ │ │ │ │ ├── Inflector.php │ │ │ │ │ ├── InflectorInterface.php │ │ │ │ │ ├── MemoizingInflector.php │ │ │ │ │ └── PreComputedInflector.php │ │ │ │ ├── Iterator │ │ │ │ │ ├── AppendIterator.php │ │ │ │ │ ├── ChunkedIterator.php │ │ │ │ │ ├── FilterIterator.php │ │ │ │ │ ├── MapIterator.php │ │ │ │ │ └── MethodProxyIterator.php │ │ │ │ ├── Log │ │ │ │ │ ├── AbstractLogAdapter.php │ │ │ │ │ ├── ArrayLogAdapter.php │ │ │ │ │ ├── ClosureLogAdapter.php │ │ │ │ │ ├── LogAdapterInterface.php │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ ├── MonologLogAdapter.php │ │ │ │ │ ├── PsrLogAdapter.php │ │ │ │ │ ├── Zf1LogAdapter.php │ │ │ │ │ └── Zf2LogAdapter.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Cookie │ │ │ │ │ │ ├── CookieParser.php │ │ │ │ │ │ └── CookieParserInterface.php │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── AbstractMessageParser.php │ │ │ │ │ │ ├── MessageParser.php │ │ │ │ │ │ ├── MessageParserInterface.php │ │ │ │ │ │ └── PeclHttpMessageParser.php │ │ │ │ │ ├── ParserRegistry.php │ │ │ │ │ ├── UriTemplate │ │ │ │ │ │ ├── PeclUriTemplate.php │ │ │ │ │ │ ├── UriTemplate.php │ │ │ │ │ │ └── UriTemplateInterface.php │ │ │ │ │ └── Url │ │ │ │ │ │ ├── UrlParser.php │ │ │ │ │ │ └── UrlParserInterface.php │ │ │ │ ├── Plugin │ │ │ │ │ ├── Async │ │ │ │ │ │ └── AsyncPlugin.php │ │ │ │ │ ├── Backoff │ │ │ │ │ │ ├── AbstractBackoffStrategy.php │ │ │ │ │ │ ├── AbstractErrorCodeBackoffStrategy.php │ │ │ │ │ │ ├── BackoffLogger.php │ │ │ │ │ │ ├── BackoffPlugin.php │ │ │ │ │ │ ├── BackoffStrategyInterface.php │ │ │ │ │ │ ├── CallbackBackoffStrategy.php │ │ │ │ │ │ ├── ConstantBackoffStrategy.php │ │ │ │ │ │ ├── CurlBackoffStrategy.php │ │ │ │ │ │ ├── ExponentialBackoffStrategy.php │ │ │ │ │ │ ├── HttpBackoffStrategy.php │ │ │ │ │ │ ├── LinearBackoffStrategy.php │ │ │ │ │ │ ├── ReasonPhraseBackoffStrategy.php │ │ │ │ │ │ └── TruncatedBackoffStrategy.php │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── CacheKeyProviderInterface.php │ │ │ │ │ │ ├── CachePlugin.php │ │ │ │ │ │ ├── CacheStorageInterface.php │ │ │ │ │ │ ├── CallbackCanCacheStrategy.php │ │ │ │ │ │ ├── CanCacheStrategyInterface.php │ │ │ │ │ │ ├── DefaultCacheKeyProvider.php │ │ │ │ │ │ ├── DefaultCacheStorage.php │ │ │ │ │ │ ├── DefaultCanCacheStrategy.php │ │ │ │ │ │ ├── DefaultRevalidation.php │ │ │ │ │ │ ├── DenyRevalidation.php │ │ │ │ │ │ ├── RevalidationInterface.php │ │ │ │ │ │ └── SkipRevalidation.php │ │ │ │ │ ├── Cookie │ │ │ │ │ │ ├── Cookie.php │ │ │ │ │ │ ├── CookieJar │ │ │ │ │ │ │ ├── ArrayCookieJar.php │ │ │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ │ │ └── FileCookieJar.php │ │ │ │ │ │ ├── CookiePlugin.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── InvalidCookieException.php │ │ │ │ │ ├── CurlAuth │ │ │ │ │ │ └── CurlAuthPlugin.php │ │ │ │ │ ├── ErrorResponse │ │ │ │ │ │ ├── ErrorResponseExceptionInterface.php │ │ │ │ │ │ ├── ErrorResponsePlugin.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ErrorResponseException.php │ │ │ │ │ ├── History │ │ │ │ │ │ └── HistoryPlugin.php │ │ │ │ │ ├── Log │ │ │ │ │ │ └── LogPlugin.php │ │ │ │ │ ├── Md5 │ │ │ │ │ │ ├── CommandContentMd5Plugin.php │ │ │ │ │ │ └── Md5ValidatorPlugin.php │ │ │ │ │ ├── Mock │ │ │ │ │ │ └── MockPlugin.php │ │ │ │ │ └── Oauth │ │ │ │ │ │ └── OauthPlugin.php │ │ │ │ ├── Service │ │ │ │ │ ├── AbstractConfigLoader.php │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── ServiceBuilder.php │ │ │ │ │ │ ├── ServiceBuilderInterface.php │ │ │ │ │ │ └── ServiceBuilderLoader.php │ │ │ │ │ ├── CachingConfigLoader.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ │ ├── ClosureCommand.php │ │ │ │ │ │ ├── CommandInterface.php │ │ │ │ │ │ ├── CreateResponseClassEvent.php │ │ │ │ │ │ ├── DefaultRequestSerializer.php │ │ │ │ │ │ ├── DefaultResponseParser.php │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ ├── AliasFactory.php │ │ │ │ │ │ │ ├── CompositeFactory.php │ │ │ │ │ │ │ ├── ConcreteClassFactory.php │ │ │ │ │ │ │ ├── FactoryInterface.php │ │ │ │ │ │ │ ├── MapFactory.php │ │ │ │ │ │ │ └── ServiceDescriptionFactory.php │ │ │ │ │ │ ├── LocationVisitor │ │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ │ ├── AbstractRequestVisitor.php │ │ │ │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ │ │ │ ├── PostFieldVisitor.php │ │ │ │ │ │ │ │ ├── PostFileVisitor.php │ │ │ │ │ │ │ │ ├── QueryVisitor.php │ │ │ │ │ │ │ │ ├── RequestVisitorInterface.php │ │ │ │ │ │ │ │ ├── ResponseBodyVisitor.php │ │ │ │ │ │ │ │ └── XmlVisitor.php │ │ │ │ │ │ │ ├── Response │ │ │ │ │ │ │ │ ├── AbstractResponseVisitor.php │ │ │ │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ │ │ │ ├── ReasonPhraseVisitor.php │ │ │ │ │ │ │ │ ├── ResponseVisitorInterface.php │ │ │ │ │ │ │ │ ├── StatusCodeVisitor.php │ │ │ │ │ │ │ │ └── XmlVisitor.php │ │ │ │ │ │ │ └── VisitorFlyweight.php │ │ │ │ │ │ ├── OperationCommand.php │ │ │ │ │ │ ├── OperationResponseParser.php │ │ │ │ │ │ ├── RequestSerializerInterface.php │ │ │ │ │ │ ├── ResponseClassInterface.php │ │ │ │ │ │ └── ResponseParserInterface.php │ │ │ │ │ ├── ConfigLoaderInterface.php │ │ │ │ │ ├── Description │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationInterface.php │ │ │ │ │ │ ├── Parameter.php │ │ │ │ │ │ ├── SchemaFormatter.php │ │ │ │ │ │ ├── SchemaValidator.php │ │ │ │ │ │ ├── ServiceDescription.php │ │ │ │ │ │ ├── ServiceDescriptionInterface.php │ │ │ │ │ │ ├── ServiceDescriptionLoader.php │ │ │ │ │ │ └── ValidatorInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CommandException.php │ │ │ │ │ │ ├── CommandTransferException.php │ │ │ │ │ │ ├── DescriptionBuilderException.php │ │ │ │ │ │ ├── InconsistentClientTransferException.php │ │ │ │ │ │ ├── ResponseClassException.php │ │ │ │ │ │ ├── ServiceBuilderException.php │ │ │ │ │ │ ├── ServiceNotFoundException.php │ │ │ │ │ │ └── ValidationException.php │ │ │ │ │ └── Resource │ │ │ │ │ │ ├── AbstractResourceIteratorFactory.php │ │ │ │ │ │ ├── CompositeResourceIteratorFactory.php │ │ │ │ │ │ ├── MapResourceIteratorFactory.php │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ ├── ResourceIterator.php │ │ │ │ │ │ ├── ResourceIteratorApplyBatched.php │ │ │ │ │ │ ├── ResourceIteratorClassFactory.php │ │ │ │ │ │ ├── ResourceIteratorFactoryInterface.php │ │ │ │ │ │ └── ResourceIteratorInterface.php │ │ │ │ └── Stream │ │ │ │ │ ├── PhpStreamRequestFactory.php │ │ │ │ │ ├── Stream.php │ │ │ │ │ ├── StreamInterface.php │ │ │ │ │ └── StreamRequestFactoryInterface.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Monolog │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── ChromePHPFormatter.php │ │ │ │ │ ├── ElasticaFormatter.php │ │ │ │ │ ├── FlowdockFormatter.php │ │ │ │ │ ├── FormatterInterface.php │ │ │ │ │ ├── GelfMessageFormatter.php │ │ │ │ │ ├── HtmlFormatter.php │ │ │ │ │ ├── JsonFormatter.php │ │ │ │ │ ├── LineFormatter.php │ │ │ │ │ ├── LogglyFormatter.php │ │ │ │ │ ├── LogstashFormatter.php │ │ │ │ │ ├── MongoDBFormatter.php │ │ │ │ │ ├── NormalizerFormatter.php │ │ │ │ │ ├── ScalarFormatter.php │ │ │ │ │ └── WildfireFormatter.php │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractHandler.php │ │ │ │ │ ├── AbstractProcessingHandler.php │ │ │ │ │ ├── AbstractSyslogHandler.php │ │ │ │ │ ├── AmqpHandler.php │ │ │ │ │ ├── BrowserConsoleHandler.php │ │ │ │ │ ├── BufferHandler.php │ │ │ │ │ ├── ChromePHPHandler.php │ │ │ │ │ ├── CouchDBHandler.php │ │ │ │ │ ├── CubeHandler.php │ │ │ │ │ ├── Curl │ │ │ │ │ │ └── Util.php │ │ │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ │ │ ├── DynamoDbHandler.php │ │ │ │ │ ├── ElasticSearchHandler.php │ │ │ │ │ ├── ErrorLogHandler.php │ │ │ │ │ ├── FilterHandler.php │ │ │ │ │ ├── FingersCrossed │ │ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ │ │ ├── FingersCrossedHandler.php │ │ │ │ │ ├── FirePHPHandler.php │ │ │ │ │ ├── FleepHookHandler.php │ │ │ │ │ ├── FlowdockHandler.php │ │ │ │ │ ├── GelfHandler.php │ │ │ │ │ ├── GroupHandler.php │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ ├── HipChatHandler.php │ │ │ │ │ ├── IFTTTHandler.php │ │ │ │ │ ├── LogEntriesHandler.php │ │ │ │ │ ├── LogglyHandler.php │ │ │ │ │ ├── MailHandler.php │ │ │ │ │ ├── MandrillHandler.php │ │ │ │ │ ├── MissingExtensionException.php │ │ │ │ │ ├── MongoDBHandler.php │ │ │ │ │ ├── NativeMailerHandler.php │ │ │ │ │ ├── NewRelicHandler.php │ │ │ │ │ ├── NullHandler.php │ │ │ │ │ ├── PHPConsoleHandler.php │ │ │ │ │ ├── PsrHandler.php │ │ │ │ │ ├── PushoverHandler.php │ │ │ │ │ ├── RavenHandler.php │ │ │ │ │ ├── RedisHandler.php │ │ │ │ │ ├── RollbarHandler.php │ │ │ │ │ ├── RotatingFileHandler.php │ │ │ │ │ ├── SamplingHandler.php │ │ │ │ │ ├── SlackHandler.php │ │ │ │ │ ├── SocketHandler.php │ │ │ │ │ ├── StreamHandler.php │ │ │ │ │ ├── SwiftMailerHandler.php │ │ │ │ │ ├── SyslogHandler.php │ │ │ │ │ ├── SyslogUdp │ │ │ │ │ │ └── UdpSocket.php │ │ │ │ │ ├── SyslogUdpHandler.php │ │ │ │ │ ├── TestHandler.php │ │ │ │ │ ├── WhatFailureGroupHandler.php │ │ │ │ │ └── ZendMonitorHandler.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Processor │ │ │ │ │ ├── GitProcessor.php │ │ │ │ │ ├── IntrospectionProcessor.php │ │ │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ │ │ ├── MemoryProcessor.php │ │ │ │ │ ├── MemoryUsageProcessor.php │ │ │ │ │ ├── ProcessIdProcessor.php │ │ │ │ │ ├── PsrLogMessageProcessor.php │ │ │ │ │ ├── TagProcessor.php │ │ │ │ │ ├── UidProcessor.php │ │ │ │ │ └── WebProcessor.php │ │ │ │ └── Registry.php │ │ │ │ ├── NOTICE.md │ │ │ │ ├── Psr │ │ │ │ └── Log │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ ├── NullLogger.php │ │ │ │ │ └── Test │ │ │ │ │ └── LoggerInterfaceTest.php │ │ │ │ ├── README.md │ │ │ │ ├── Symfony │ │ │ │ └── Component │ │ │ │ │ └── EventDispatcher │ │ │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ │ └── WrappedListener.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPass.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventDispatcher.php │ │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ │ ├── EventSubscriberInterface.php │ │ │ │ │ ├── GenericEvent.php │ │ │ │ │ ├── ImmutableEventDispatcher.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── Tests │ │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ │ ├── EventTest.php │ │ │ │ │ ├── GenericEventTest.php │ │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ │ └── aws-autoloader.php │ │ └── view │ │ │ ├── activation-error.php │ │ │ ├── addon.php │ │ │ ├── addons.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ └── settings.php │ ├── index.php │ └── memcached-redux │ │ ├── object-cache.php │ │ └── readme.txt └── themes │ ├── index.php │ ├── twentyeleven │ ├── 404.php │ ├── archive.php │ ├── author.php │ ├── category.php │ ├── colors │ │ └── dark.css │ ├── comments.php │ ├── content-aside.php │ ├── content-featured.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-intro.php │ ├── content-link.php │ ├── content-page.php │ ├── content-quote.php │ ├── content-single.php │ ├── content-status.php │ ├── content.php │ ├── editor-style-rtl.css │ ├── editor-style.css │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── image.php │ ├── images │ │ ├── comment-arrow-bypostauthor-dark-rtl.png │ │ ├── comment-arrow-bypostauthor-dark.png │ │ ├── comment-arrow-bypostauthor-rtl.png │ │ ├── comment-arrow-bypostauthor.png │ │ ├── comment-arrow-dark-rtl.png │ │ ├── comment-arrow-dark.png │ │ ├── comment-arrow-rtl.png │ │ ├── comment-arrow.png │ │ ├── comment-bubble-dark-rtl.png │ │ ├── comment-bubble-dark.png │ │ ├── comment-bubble-rtl.png │ │ ├── comment-bubble.png │ │ ├── headers │ │ │ ├── chessboard-thumbnail.jpg │ │ │ ├── chessboard.jpg │ │ │ ├── hanoi-thumbnail.jpg │ │ │ ├── hanoi.jpg │ │ │ ├── lanterns-thumbnail.jpg │ │ │ ├── lanterns.jpg │ │ │ ├── pine-cone-thumbnail.jpg │ │ │ ├── pine-cone.jpg │ │ │ ├── shore-thumbnail.jpg │ │ │ ├── shore.jpg │ │ │ ├── trolley-thumbnail.jpg │ │ │ ├── trolley.jpg │ │ │ ├── wheel-thumbnail.jpg │ │ │ ├── wheel.jpg │ │ │ ├── willow-thumbnail.jpg │ │ │ └── willow.jpg │ │ ├── search.png │ │ └── wordpress.png │ ├── inc │ │ ├── images │ │ │ ├── content-sidebar.png │ │ │ ├── content.png │ │ │ ├── dark.png │ │ │ ├── light.png │ │ │ └── sidebar-content.png │ │ ├── theme-customizer.js │ │ ├── theme-options.css │ │ ├── theme-options.js │ │ ├── theme-options.php │ │ └── widgets.php │ ├── index.php │ ├── js │ │ ├── html5.js │ │ └── showcase.js │ ├── languages │ │ └── twentyeleven.pot │ ├── license.txt │ ├── page.php │ ├── readme.txt │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── searchform.php │ ├── showcase.php │ ├── sidebar-footer.php │ ├── sidebar-page.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ └── tag.php │ ├── twentyfifteen │ ├── 404.php │ ├── archive.php │ ├── author-bio.php │ ├── comments.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-search.php │ ├── content.php │ ├── css │ │ ├── editor-style.css │ │ ├── ie.css │ │ └── ie7.css │ ├── footer.php │ ├── functions.php │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons.eot │ │ ├── Genericons.svg │ │ ├── Genericons.ttf │ │ ├── Genericons.woff │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── example.html │ │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── inc │ │ ├── back-compat.php │ │ ├── custom-header.php │ │ ├── customizer.php │ │ └── template-tags.php │ ├── index.php │ ├── js │ │ ├── color-scheme-control.js │ │ ├── customize-preview.js │ │ ├── functions.js │ │ ├── html5.js │ │ ├── keyboard-image-navigation.js │ │ └── skip-link-focus-fix.js │ ├── languages │ │ └── twentyfifteen.pot │ ├── page.php │ ├── readme.txt │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar.php │ ├── single.php │ └── style.css │ ├── twentyfourteen │ ├── 404.php │ ├── archive.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── content-aside.php │ ├── content-audio.php │ ├── content-featured-post.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-quote.php │ ├── content-video.php │ ├── content.php │ ├── css │ │ ├── editor-style.css │ │ └── ie.css │ ├── featured-content.php │ ├── footer.php │ ├── functions.php │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons-Regular.otf │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── example.html │ │ ├── font │ │ │ ├── genericons-regular-webfont.eot │ │ │ ├── genericons-regular-webfont.svg │ │ │ ├── genericons-regular-webfont.ttf │ │ │ └── genericons-regular-webfont.woff │ │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── images │ │ ├── pattern-dark.svg │ │ └── pattern-light.svg │ ├── inc │ │ ├── back-compat.php │ │ ├── custom-header.php │ │ ├── customizer.php │ │ ├── featured-content.php │ │ ├── template-tags.php │ │ └── widgets.php │ ├── index.php │ ├── js │ │ ├── customizer.js │ │ ├── featured-content-admin.js │ │ ├── functions.js │ │ ├── html5.js │ │ ├── keyboard-image-navigation.js │ │ └── slider.js │ ├── languages │ │ └── twentyfourteen.pot │ ├── page-templates │ │ ├── contributors.php │ │ └── full-width.php │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-content.php │ ├── sidebar-footer.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── tag.php │ └── taxonomy-post_format.php │ ├── twentyten │ ├── 404.php │ ├── archive.php │ ├── attachment.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── editor-style-rtl.css │ ├── editor-style.css │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── images │ │ ├── headers │ │ │ ├── berries-thumbnail.jpg │ │ │ ├── berries.jpg │ │ │ ├── cherryblossoms-thumbnail.jpg │ │ │ ├── cherryblossoms.jpg │ │ │ ├── concave-thumbnail.jpg │ │ │ ├── concave.jpg │ │ │ ├── fern-thumbnail.jpg │ │ │ ├── fern.jpg │ │ │ ├── forestfloor-thumbnail.jpg │ │ │ ├── forestfloor.jpg │ │ │ ├── inkwell-thumbnail.jpg │ │ │ ├── inkwell.jpg │ │ │ ├── path-thumbnail.jpg │ │ │ ├── path.jpg │ │ │ ├── sunset-thumbnail.jpg │ │ │ └── sunset.jpg │ │ └── wordpress.png │ ├── index.php │ ├── languages │ │ └── twentyten.pot │ ├── license.txt │ ├── loop-attachment.php │ ├── loop-page.php │ ├── loop-single.php │ ├── loop.php │ ├── onecolumn-page.php │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-footer.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ └── tag.php │ ├── twentythirteen │ ├── 404.php │ ├── archive.php │ ├── author-bio.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── content-aside.php │ ├── content-audio.php │ ├── content-chat.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-quote.php │ ├── content-status.php │ ├── content-video.php │ ├── content.php │ ├── css │ │ ├── editor-style.css │ │ └── ie.css │ ├── footer.php │ ├── functions.php │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons-Regular.otf │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── example.html │ │ ├── font │ │ │ ├── genericons-regular-webfont.eot │ │ │ ├── genericons-regular-webfont.svg │ │ │ ├── genericons-regular-webfont.ttf │ │ │ └── genericons-regular-webfont.woff │ │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── images │ │ ├── dotted-line-2x.png │ │ ├── dotted-line-light-2x.png │ │ ├── dotted-line-light.png │ │ ├── dotted-line.png │ │ ├── headers │ │ │ ├── circle-thumbnail.png │ │ │ ├── circle.png │ │ │ ├── diamond-thumbnail.png │ │ │ ├── diamond.png │ │ │ ├── star-thumbnail.png │ │ │ └── star.png │ │ ├── search-icon-2x.png │ │ └── search-icon.png │ ├── inc │ │ ├── back-compat.php │ │ └── custom-header.php │ ├── index.php │ ├── js │ │ ├── functions.js │ │ ├── html5.js │ │ └── theme-customizer.js │ ├── languages │ │ └── twentythirteen.pot │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-main.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── tag.php │ └── taxonomy-post_format.php │ └── twentytwelve │ ├── 404.php │ ├── archive.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── content-aside.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-quote.php │ ├── content-status.php │ ├── content.php │ ├── css │ └── ie.css │ ├── editor-style-rtl.css │ ├── editor-style.css │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── image.php │ ├── inc │ └── custom-header.php │ ├── index.php │ ├── js │ ├── html5.js │ ├── navigation.js │ └── theme-customizer.js │ ├── languages │ └── twentytwelve.pot │ ├── page-templates │ ├── front-page.php │ └── full-width.php │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-front.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ └── tag.php ├── index.php └── wp-config.php /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | uploads 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | # WordPress Coding Standards 5 | # http://make.wordpress.org/core/handbook/coding-standards/ 6 | 7 | root = true 8 | 9 | [*] 10 | charset = utf-8 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | indent_style = tab 15 | 16 | [*.json] 17 | indent_style = space 18 | indent_size = 2 19 | 20 | [*.txt,wp-config-sample.php] 21 | end_of_line = crlf 22 | 23 | # Docker Additions: 24 | [*.yml] 25 | indent_style = space 26 | indent_size = 2 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /webroot/content/upgrade 2 | uploads 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "wp"] 2 | path = webroot/wp 3 | url = git://github.com/WordPress/WordPress.git 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM lewg/hhvm 2 | EXPOSE 80 3 | ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /usr/local/bin/wp 4 | RUN chmod +x /usr/local/bin/wp 5 | ADD webroot /srv/www 6 | CMD supervisord -e debug 7 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | web: 2 | build: . 3 | ports: 4 | - "8000:80" 5 | - "8001:9000" 6 | links: 7 | - db 8 | # - memcache 9 | # - redis 10 | volumes: 11 | - ./webroot:/srv/www 12 | - ./uploads:/srv/www/uploads 13 | - /root/.wp-cli/cache 14 | environment: 15 | SITE_URL: http://localhost:8000 16 | WP_DEBUG: 1 17 | command: supervisord -e debug 18 | db: 19 | image: mysql 20 | ports: 21 | - "8002:3306" 22 | environment: 23 | MYSQL_ROOT_PASSWORD: wordpress 24 | MYSQL_DATABASE: wordpress 25 | MYSQL_USER: wordpress 26 | MYSQL_PASSWORD: wordpress 27 | # Uncomment the appropriate object cache: 28 | # memcache: 29 | # image: memcached 30 | # command: memcached -m 128 -u daemon -l 0.0.0.0 -v 31 | # ports: 32 | # - '8003:11211' 33 | # redis: 34 | # image: redis:2.8.19 35 | # ports: 36 | # - '8004:6379' 37 | -------------------------------------------------------------------------------- /docker-production.yml: -------------------------------------------------------------------------------- 1 | web: 2 | build: . 3 | ports: 4 | - "8000:80" 5 | environment: 6 | DB_1_ENV_MYSQL_DATABASE: replace 7 | DB_1_ENV_MYSQL_USER: replace 8 | DB_1_ENV_MYSQL_PASSWORD: replace 9 | DB_1_PORT_3306_TCP_ADDR: replace 10 | DB_1_PORT_3306_TCP_PORT: replace 11 | # REDIS_1_PORT_6379_TCP_ADDR: replace 12 | # REDIS_1_PORT_6379_TCP_PORT: 6379 13 | # REDIS_DB: 0 14 | # AWS_ACCESS_KEY_ID: replace 15 | # AWS_SECRET_ACCESS_KEY: replace 16 | # MEMCACHE_1_PORT_11211_TCP_ADDR: replace 17 | # MEMCACHE_1_PORT_11211_TCP_PORT: 11211 18 | command: supervisord -e debug 19 | -------------------------------------------------------------------------------- /docker-tools.yml: -------------------------------------------------------------------------------- 1 | tools: 2 | build: tools/. 3 | links: 4 | - db 5 | volumes: 6 | - webroot:/srv/www 7 | - uploads:/srv/www/uploads 8 | db: 9 | image: mysql 10 | ports: 11 | - "8001:3306" 12 | environment: 13 | MYSQL_ROOT_PASSWORD: wordpress 14 | MYSQL_DATABASE: wordpress 15 | MYSQL_USER: wordpress 16 | MYSQL_PASSWORD: wordpress 17 | -------------------------------------------------------------------------------- /tools/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.2 2 | RUN apk add --update mysql-client lftp openssh && rm -rf /var/cache/apk/* 3 | ADD . /opt/ 4 | WORKDIR /opt 5 | CMD sh 6 | -------------------------------------------------------------------------------- /tools/restore-db.sh: -------------------------------------------------------------------------------- 1 | # Wait for DB Server 2 | while ! nc -vz $DB_1_PORT_3306_TCP_ADDR $DB_1_PORT_3306_TCP_PORT; do sleep 1; done 3 | 4 | # Live server read-only account info: 5 | DB_HOST=replace 6 | DB_USER=replace 7 | DB_PASS=replace 8 | DB_NAME=replace 9 | 10 | echo "Restoring Site DB from Production" 11 | mysqldump -C --single-transaction -u $DB_USER -h $DB_HOST -p$DB_PASS $DB_NAME | mysql -C -h $DB_1_PORT_3306_TCP_ADDR -P $DB_1_PORT_3306_TCP_PORT -u $DB_1_ENV_MYSQL_USER -p$DB_1_ENV_MYSQL_PASSWORD $DB_1_ENV_MYSQL_DATABASE 12 | echo "Done Restore" 13 | -------------------------------------------------------------------------------- /tools/sync-assets.sh: -------------------------------------------------------------------------------- 1 | if [ "$#" -ne 1 ]; then 2 | echo "Usage: sync-assets.sh [YOUR SFTP USERNAME]" 3 | exit 1 4 | fi 5 | SFTP_HOST=replace 6 | UPLOAD_PATH=/wp-content/uploads 7 | lftp -c "user sftp://$1@$SFTP_HOST; mirror -n sftp://$1@$SFTP_HOST$UPLOAD_PATH /srv/www/uploads" 8 | -------------------------------------------------------------------------------- /webroot/content/index.php: -------------------------------------------------------------------------------- 1 | get_secure_attachment_url( $post_id, $expires, $size ); 14 | } -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/languages/amazon-s3-and-cloudfront-pt-br.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-s3-and-cloudfront/languages/amazon-s3-and-cloudfront-pt-br.mo -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/checkbox.php: -------------------------------------------------------------------------------- 1 | get_setting( $key ); 3 | $class = ( isset( $class ) ) ? 'class="' . $class . '"' : ''; 4 | $disabled = ( isset( $disabled ) && $disabled ) ? ' disabled' : ''; 5 | ?> 6 |
7 | ON 8 | OFF 9 | 10 | /> 11 |
-------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/debug-info.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | 4 | wp_create_nonce( 'as3cf-download-log' ), 7 | 'as3cf-download-log' => '1', 8 | 'hash' => 'support', 9 | ); 10 | $url = $this->get_plugin_page_url( $args, 'network', false ); ?> 11 | 12 |
-------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/error-access.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | 4 | 5 | — 6 | get_access_denied_notice_message(); ?> 7 |

8 |
-------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/error-fatal.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 |
-------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/notice.php: -------------------------------------------------------------------------------- 1 | 10 |
class="notice as3cf-notice " style=""> 11 | 12 |

13 | 14 | 15 | 16 |

17 | 18 |
-------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/settings-tabs.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-s3-and-cloudfront/view/support.php: -------------------------------------------------------------------------------- 1 |
2 | is_pro() ) { 4 | $this->render_view( 'wordpress-org-support' ); 5 | } 6 | 7 | do_action( 'as3cf_support_pre_debug' ); 8 | 9 | $this->render_view( 'debug-info' ); 10 | 11 | do_action( 'as3cf_support_post_debug' ); 12 | 13 | ?> 14 |
15 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/css/global.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:"aws-plugin";src:url("../fonts/aws-plugin.eot");src:url("../fonts/aws-plugin.eot?#iefix") format("embedded-opentype"),url("../fonts/aws-plugin.woff") format("woff"),url("../fonts/aws-plugin.ttf") format("truetype"),url("../fonts/aws-plugin.svg#aws-plugin") format("svg");font-weight:normal;font-style:normal}#adminmenu .toplevel_page_amazon-web-services div.wp-menu-image:before{content:"b" !important;font-family:"aws-plugin" !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;font-size:18px;line-height:1.3;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} 2 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.eot -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.ttf -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/fonts/aws-plugin.woff -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/img/as3cf-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/img/as3cf-banner.jpg -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/img/as3cf-banner@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/img/as3cf-banner@2x.jpg -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/assets/img/icon16.png -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/js/script.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | $( document ).ready( function() { 4 | 5 | $( '.aws-settings' ).each( function() { 6 | var $container = $( this ); 7 | 8 | $( '.reveal-form a', $container ).click( function() { 9 | var $form = $( 'form', $container ); 10 | if ( 'block' === $form.css( 'display' ) ) { 11 | $form.hide(); 12 | } 13 | else { 14 | $form.show(); 15 | } 16 | return false; 17 | } ); 18 | } ); 19 | 20 | $( '.button.remove-keys' ).click( function() { 21 | $( 'input[name=secret_access_key],input[name=access_key_id]' ).val( '' ); 22 | } ); 23 | 24 | } ); 25 | 26 | })(jQuery); -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/assets/js/script.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a(document).ready(function(){a(".aws-settings").each(function(){var b=a(this);a(".reveal-form a",b).click(function(){var c=a("form",b);return"block"===c.css("display")?c.hide():c.show(),!1})}),a(".button.remove-keys").click(function(){a("input[name=secret_access_key],input[name=access_key_id]").val("")})})}(jQuery); -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deliciousbrains/wp-amazon-web-services", 3 | "type": "wordpress-plugin", 4 | "homepage": "https://github.com/deliciousbrains/wp-amazon-web-services", 5 | "license": "GPLv3", 6 | "description": "Houses the Amazon Web Services (AWS) PHP libraries and manages access keys. Required by other AWS plugins.", 7 | "keywords": ["plugin","amazon-web-services","aws","amazon"], 8 | "require": { 9 | "composer/installers": "~1.0.6" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/languages/amazon-web-services-pt-br.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/plugins/amazon-web-services/languages/amazon-web-services-pt-br.mo -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/uninstall.php: -------------------------------------------------------------------------------- 1 | = 50400) { 6 | /** 7 | * @see http://php.net/manual/en/class.sessionhandlerinterface.php 8 | */ 9 | interface SessionHandlerInterface extends \SessionHandlerInterface {} 10 | } else { 11 | interface SessionHandlerInterface 12 | { 13 | public function close(); 14 | public function destroy($session_id); 15 | public function gc($maxLifetime); 16 | public function open($savePath, $sessionName); 17 | public function read($sessionId); 18 | public function write($sessionId, $sessionData); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Aws/DynamoDbStreams/Exception/DynamoDbStreamsException.php: -------------------------------------------------------------------------------- 1 | cache; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Cache/NullCacheAdapter.php: -------------------------------------------------------------------------------- 1 | 'Guzzle\Http\Message\Header\CacheControl', 15 | 'link' => 'Guzzle\Http\Message\Header\Link', 16 | ); 17 | 18 | public function createHeader($header, $value = null) 19 | { 20 | $lowercase = strtolower($header); 21 | 22 | return isset($this->mapping[$lowercase]) 23 | ? new $this->mapping[$lowercase]($header, $value) 24 | : new Header($header, $value); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Http/Message/Header/HeaderFactoryInterface.php: -------------------------------------------------------------------------------- 1 | isUrlEncoding()) { 15 | return array($query->encodeValue($key) => implode(',', array_map(array($query, 'encodeValue'), $value))); 16 | } else { 17 | return array($key => implode(',', $value)); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Http/QueryAggregator/DuplicateAggregator.php: -------------------------------------------------------------------------------- 1 | isUrlEncoding()) { 17 | return array($query->encodeValue($key) => array_map(array($query, 'encodeValue'), $value)); 18 | } else { 19 | return array($key => $value); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Http/QueryAggregator/PhpAggregator.php: -------------------------------------------------------------------------------- 1 | $v) { 17 | $k = "{$key}[{$k}]"; 18 | if (is_array($v)) { 19 | $ret = array_merge($ret, self::aggregate($k, $v, $query)); 20 | } else { 21 | $ret[$query->encodeValue($k)] = $query->encodeValue($v); 22 | } 23 | } 24 | 25 | return $ret; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php: -------------------------------------------------------------------------------- 1 | getArrayIterator()->append($iterator); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Iterator/MethodProxyIterator.php: -------------------------------------------------------------------------------- 1 | getInnerIterator(); 21 | while ($i instanceof \OuterIterator) { 22 | $i = $i->getInnerIterator(); 23 | } 24 | 25 | return call_user_func_array(array($i, $name), $args); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Log/AbstractLogAdapter.php: -------------------------------------------------------------------------------- 1 | log; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Log/ArrayLogAdapter.php: -------------------------------------------------------------------------------- 1 | logs[] = array('message' => $message, 'priority' => $priority, 'extras' => $extras); 15 | } 16 | 17 | /** 18 | * Get logged entries 19 | * 20 | * @return array 21 | */ 22 | public function getLogs() 23 | { 24 | return $this->logs; 25 | } 26 | 27 | /** 28 | * Clears logged entries 29 | */ 30 | public function clearLogs() 31 | { 32 | $this->logs = array(); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Log/ClosureLogAdapter.php: -------------------------------------------------------------------------------- 1 | log = $logObject; 17 | } 18 | 19 | public function log($message, $priority = LOG_INFO, $extras = array()) 20 | { 21 | call_user_func($this->log, $message, $priority, $extras); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Log/LogAdapterInterface.php: -------------------------------------------------------------------------------- 1 | log = $logObject; 17 | Version::warn(__CLASS__ . ' is deprecated'); 18 | } 19 | 20 | public function log($message, $priority = LOG_INFO, $extras = array()) 21 | { 22 | $this->log->log($message, $priority, $extras); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Log/Zf2LogAdapter.php: -------------------------------------------------------------------------------- 1 | log = $logObject; 15 | } 16 | 17 | public function log($message, $priority = LOG_INFO, $extras = array()) 18 | { 19 | $this->log->log($priority, $message, $extras); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Parser/Message/MessageParserInterface.php: -------------------------------------------------------------------------------- 1 | errorCodes[$response->getReasonPhrase()]) ? true : null; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php: -------------------------------------------------------------------------------- 1 | stopPropagation(); 21 | } 22 | 23 | /** 24 | * Get the created object 25 | * 26 | * @return mixed 27 | */ 28 | public function getResult() 29 | { 30 | return $this['result']; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- 1 | map = $map; 17 | } 18 | 19 | public function factory($name, array $args = array()) 20 | { 21 | if (isset($this->map[$name])) { 22 | $class = $this->map[$name]; 23 | 24 | return new $class($args); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php: -------------------------------------------------------------------------------- 1 | setPostField($param->getWireName(), $this->prepareValue($value, $param)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php: -------------------------------------------------------------------------------- 1 | filter($value); 18 | if ($value instanceof PostFileInterface) { 19 | $request->addPostFile($value); 20 | } else { 21 | $request->addPostFile($param->getWireName(), $value); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php: -------------------------------------------------------------------------------- 1 | getQuery()->set($param->getWireName(), $this->prepareValue($value, $param)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php: -------------------------------------------------------------------------------- 1 | setResponseBody($value); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php: -------------------------------------------------------------------------------- 1 | getName()] = $param->filter($response->getBody()); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php: -------------------------------------------------------------------------------- 1 | getName()] = $response->getReasonPhrase(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php: -------------------------------------------------------------------------------- 1 | getName()] = $response->getStatusCode(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Guzzle/Service/Command/RequestSerializerInterface.php: -------------------------------------------------------------------------------- 1 | errors = $errors; 19 | } 20 | 21 | /** 22 | * Get any validation errors 23 | * 24 | * @return array 25 | */ 26 | public function getErrors() 27 | { 28 | return $this->errors; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler\FingersCrossed; 13 | 14 | /** 15 | * Interface for activation strategies for the FingersCrossedHandler. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | interface ActivationStrategyInterface 20 | { 21 | /** 22 | * Returns whether the given record activates the handler. 23 | * 24 | * @param array $record 25 | * @return Boolean 26 | */ 27 | public function isHandlerActivated(array $record); 28 | } 29 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Monolog/Handler/MissingExtensionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | /** 15 | * Exception can be thrown if an extension for an handler is missing 16 | * 17 | * @author Christian Bergau 18 | */ 19 | class MissingExtensionException extends \Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Monolog/Processor/ProcessIdProcessor.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | /** 15 | * Adds value of getmypid into records 16 | * 17 | * @author Andreas Hörnicke 18 | */ 19 | class ProcessIdProcessor 20 | { 21 | /** 22 | * @param array $record 23 | * @return array 24 | */ 25 | public function __invoke(array $record) 26 | { 27 | $record['extra']['process_id'] = getmypid(); 28 | 29 | return $record; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * @return null 22 | */ 23 | public function log($level, $message, array $context = array()) 24 | { 25 | // noop 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/vendor/aws/Symfony/Component/EventDispatcher/Tests/EventDispatcherTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\EventDispatcher\Tests; 13 | 14 | use Symfony\Component\EventDispatcher\EventDispatcher; 15 | 16 | class EventDispatcherTest extends AbstractEventDispatcherTest 17 | { 18 | protected function createEventDispatcher() 19 | { 20 | return new EventDispatcher(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/view/activation-error.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 | 4 | 5 | <?php _e( 'Activation Error', 'amazon-web-services' ); ?> 6 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/view/addon.php: -------------------------------------------------------------------------------- 1 |
  • 2 |
    3 |
    4 |

    5 | 6 |

    7 | 8 |
      9 | get_addon_details_link( $slug, $addon ); ?> 10 | get_addon_install_link( $slug, $addon ); ?> 11 |
    12 |
    13 | 14 | 15 | 16 |
    17 | 18 | 19 |
      20 | render_addons( $addon['addons'] ); ?> 21 |
    22 | 23 |
  • -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/view/addons.php: -------------------------------------------------------------------------------- 1 |
    2 |
      3 | render_addons(); ?> 4 |
    5 |
    -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/view/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/content/plugins/amazon-web-services/view/header.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    -------------------------------------------------------------------------------- /webroot/content/plugins/index.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
    > 12 |
    13 |

    14 |
    15 | 16 |
    17 | 18 | '' ) ); ?> 19 | ', '' ); ?> 20 |
    21 |
    22 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/content-page.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
    > 12 |
    13 |

    14 |
    15 | 16 |
    17 | 18 | '' ) ); ?> 19 |
    20 |
    21 | ', '' ); ?> 22 |
    23 |
    24 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/editor-style-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Eleven 3 | */ 4 | /* 5 | Used to style the TinyMCE editor. 6 | */ 7 | html .mceContentBody { 8 | direction: rtl; 9 | unicode-bidi: embed; 10 | float: right; 11 | width: 584px; 12 | } 13 | * { 14 | font-family: Arial, Tahoma, sans-serif; 15 | } 16 | ul, ol { 17 | margin: 0 2.5em 1.625em 0; 18 | } 19 | blockquote { 20 | font-style: normal; 21 | } 22 | table { 23 | text-align: right; 24 | } -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-bypostauthor.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-dark-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-dark-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-dark.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-arrow.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-bubble-dark-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-bubble-dark-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-bubble-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-bubble-dark.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-bubble-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-bubble-rtl.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/comment-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/comment-bubble.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/chessboard-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/chessboard-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/chessboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/chessboard.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/hanoi-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/hanoi-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/hanoi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/hanoi.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/lanterns-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/lanterns-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/lanterns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/lanterns.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/pine-cone-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/pine-cone-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/pine-cone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/pine-cone.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/shore-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/shore-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/shore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/shore.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/trolley-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/trolley-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/trolley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/trolley.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/wheel-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/wheel-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/wheel.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/willow-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/willow-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/headers/willow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/headers/willow.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/search.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/images/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/images/wordpress.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/images/content-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/inc/images/content-sidebar.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/images/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/inc/images/content.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/inc/images/dark.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/inc/images/light.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/images/sidebar-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/inc/images/sidebar-content.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/theme-customizer.js: -------------------------------------------------------------------------------- 1 | ( function( $ ){ 2 | wp.customize( 'blogname', function( value ) { 3 | value.bind( function( to ) { 4 | $( '#site-title a' ).text( to ); 5 | } ); 6 | } ); 7 | wp.customize( 'blogdescription', function( value ) { 8 | value.bind( function( to ) { 9 | $( '#site-description' ).text( to ); 10 | } ); 11 | } ); 12 | } )( jQuery ); -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/inc/theme-options.css: -------------------------------------------------------------------------------- 1 | #wpcontent select option { 2 | padding-right: 5px; 3 | } 4 | .image-radio-option td { 5 | padding-top: 15px; 6 | } 7 | .image-radio-option label { 8 | display: block; 9 | float: left; 10 | margin: 0 30px 20px 2px; 11 | position: relative; 12 | } 13 | .image-radio-option input { 14 | margin: 0 0 10px; 15 | } 16 | .image-radio-option span { 17 | display: block; 18 | width: 136px; 19 | } 20 | .image-radio-option img { 21 | margin: 0 0 0 -2px; 22 | } 23 | #link-color-example { 24 | -moz-border-radius: 4px; 25 | -webkit-border-radius: 4px; 26 | border-radius: 4px; 27 | border: 1px solid #dfdfdf; 28 | margin: 0 7px 0 3px; 29 | padding: 4px 14px; 30 | } 31 | 32 | body.rtl .image-radio-option label { 33 | float: right; 34 | margin: 0 2px 20px 30px; 35 | } 36 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/js/showcase.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | $(document).ready( function() { 3 | $('.feature-slider a').click(function(e) { 4 | $('.featured-posts section.featured-post').css({ 5 | opacity: 0, 6 | visibility: 'hidden' 7 | }); 8 | $(this.hash).css({ 9 | opacity: 1, 10 | visibility: 'visible' 11 | }); 12 | $('.feature-slider a').removeClass('active'); 13 | $(this).addClass('active'); 14 | e.preventDefault(); 15 | }); 16 | }); 17 | })(jQuery); -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/page.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
    18 |
    19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
    29 |
    30 | 31 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/readme.txt: -------------------------------------------------------------------------------- 1 | = TWENTY ELEVEN = 2 | 3 | * by the WordPress team, http://wordpress.org/ 4 | 5 | == ABOUT TWENTY ELEVEN == -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyeleven/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/searchform.php: -------------------------------------------------------------------------------- 1 | 10 |
    11 | 12 | 13 | 14 |
    15 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyeleven/sidebar-page.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
    15 |
    16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
    26 |
    27 | 28 | 29 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/genericons/Genericons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfifteen/genericons/Genericons.eot -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/genericons/Genericons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfifteen/genericons/Genericons.ttf -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/genericons/Genericons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfifteen/genericons/Genericons.woff -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Twenty Fifteen keyboard support for image navigation. 3 | */ 4 | 5 | ( function( $ ) { 6 | $( document ).on( 'keydown.twentyfifteen', function( e ) { 7 | var url = false; 8 | 9 | // Left arrow key code. 10 | if ( e.which === 37 ) { 11 | url = $( '.nav-previous a' ).attr( 'href' ); 12 | 13 | // Right arrow key code. 14 | } else if ( e.which === 39 ) { 15 | url = $( '.nav-next a' ).attr( 'href' ); 16 | } 17 | 18 | if ( url && ( ! $( 'textarea, input' ).is( ':focus' ) ) ) { 19 | window.location = url; 20 | } 21 | } ); 22 | } )( jQuery ); 23 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Makes "skip to content" link work correctly in IE9, Chrome, and Opera 3 | * for better accessibility. 4 | * 5 | * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/ 6 | */ 7 | 8 | ( function() { 9 | var ua = navigator.userAgent.toLowerCase(); 10 | 11 | if ( ( ua.indexOf( 'webkit' ) > -1 || ua.indexOf( 'opera' ) > -1 || ua.indexOf( 'msie' ) > -1 ) && 12 | document.getElementById && window.addEventListener ) { 13 | 14 | window.addEventListener( 'hashchange', function() { 15 | var element = document.getElementById( location.hash.substring( 1 ) ); 16 | 17 | if ( element ) { 18 | if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.nodeName ) ) { 19 | element.tabIndex = -1; 20 | } 21 | 22 | element.focus(); 23 | } 24 | }, false ); 25 | } 26 | } )(); 27 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfifteen/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfifteen/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
    14 |
    15 | 16 | 19 | 20 |
    21 |

    22 | 23 | 24 |
    25 | 26 |
    27 |
    28 | 29 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 | 19 |
    20 | 21 | 22 |
    23 |
    24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/genericons/Genericons-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfourteen/genericons/Genericons-Regular.otf -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/images/pattern-light.svg: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/js/featured-content-admin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Twenty Fourteen Featured Content admin behavior: add a tag suggestion 3 | * when changing the tag. 4 | */ 5 | /* global ajaxurl:true */ 6 | 7 | jQuery( document ).ready( function( $ ) { 8 | $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } ); 9 | }); 10 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Twenty Fourteen keyboard support for image navigation. 3 | */ 4 | ( function( $ ) { 5 | $( document ).on( 'keydown.twentyfourteen', function( e ) { 6 | var url = false; 7 | 8 | // Left arrow key code. 9 | if ( e.which === 37 ) { 10 | url = $( '.previous-image a' ).attr( 'href' ); 11 | 12 | // Right arrow key code. 13 | } else if ( e.which === 39 ) { 14 | url = $( '.entry-attachment a' ).attr( 'href' ); 15 | } 16 | 17 | if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) { 18 | window.location = url; 19 | } 20 | } ); 21 | } )( jQuery ); -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyfourteen/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/sidebar-content.php: -------------------------------------------------------------------------------- 1 | 14 | 17 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyfourteen/sidebar-footer.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
    16 | 19 |
    20 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/attachment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 | 23 | 24 |
    25 |
    26 | 27 | 28 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/editor-style-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Ten 3 | */ 4 | /* 5 | Used to style the TinyMCE editor. 6 | */ 7 | html .mceContentBody{ 8 | direction: rtl; 9 | unicode-bidi: embed; 10 | float: right; 11 | width: 640px; 12 | } 13 | * { 14 | font-family: Arial, Tahoma, sans-serif; 15 | } 16 | /* Text elements */ 17 | ul, ol { 18 | margin: 0 -18px 18px 0; 19 | } 20 | dd { 21 | margin-right: 0; 22 | } 23 | blockquote { 24 | font-style: normal; 25 | } 26 | table { 27 | text-align: right; 28 | margin: 0 0 24px -1px; 29 | } 30 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/berries-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/berries-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/berries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/berries.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/cherryblossoms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/cherryblossoms.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/concave-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/concave-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/concave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/concave.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/fern-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/fern-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/fern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/fern.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/forestfloor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/forestfloor.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/inkwell-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/inkwell-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/inkwell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/inkwell.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/path-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/path-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/path.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/sunset-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/sunset-thumbnail.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/headers/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/headers/sunset.jpg -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/images/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/images/wordpress.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/onecolumn-page.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
    18 |
    19 | 20 | 28 | 29 |
    30 |
    31 | 32 | 33 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentyten/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/single.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 | 23 | 24 |
    25 |
    26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /webroot/content/themes/twentyten/tag.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 |

    ' . single_tag_title( '', false ) . '' ); 17 | ?>

    18 | 19 | 27 |
    28 |
    29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/genericons/Genericons-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/genericons/Genericons-Regular.otf -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.eot -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.ttf -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/genericons/font/genericons-regular-webfont.woff -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/dotted-line-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/dotted-line-2x.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/dotted-line-light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/dotted-line-light-2x.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/dotted-line-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/dotted-line-light.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/dotted-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/dotted-line.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/circle-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/circle-thumbnail.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/circle.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/diamond-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/diamond-thumbnail.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/diamond.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/star-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/star-thumbnail.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/headers/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/headers/star.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/search-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/search-icon-2x.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/images/search-icon.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentythirteen/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/sidebar-main.php: -------------------------------------------------------------------------------- 1 | 13 | 18 | -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/sidebar.php: -------------------------------------------------------------------------------- 1 | 15 | 22 | -------------------------------------------------------------------------------- /webroot/content/themes/twentythirteen/single.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
    25 |
    26 | 27 | 28 | -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/content-none.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
    12 |
    13 |

    14 |
    15 | 16 |
    17 |

    18 | 19 |
    20 |
    21 | -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/editor-style-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Twelve 3 | Description: Used to style the TinyMCE editor for RTL languages. 4 | See also rtl.css file. 5 | */ 6 | 7 | html .mceContentBody { 8 | direction: rtl; 9 | unicode-bidi: embed; 10 | } 11 | li { 12 | margin: 0 24px 0 0; 13 | margin: 0 1.714285714rem 0 0; 14 | } 15 | dl { 16 | margin: 0 24px; 17 | margin: 0 1.714285714rem; 18 | } 19 | tr th { 20 | text-align: right; 21 | } 22 | td { 23 | padding: 6px 0 6px 10px; 24 | text-align: right; 25 | } 26 | .wp-caption { 27 | text-align: right; 28 | } -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/footer.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
    14 |
    15 | 16 | 17 |
    18 |
    19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/page.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
    18 |
    19 | 20 | 21 | 22 | 23 | 24 | 25 |
    26 |
    27 | 28 | 29 | -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewg/wordpress-docker/61821fb3b1c6e6ff2ea50ce7cd5557287acbca9e/webroot/content/themes/twentytwelve/screenshot.png -------------------------------------------------------------------------------- /webroot/content/themes/twentytwelve/sidebar.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 17 | -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- 1 |