├── Api ├── Core │ ├── Config │ │ ├── ApiConfig.php │ │ └── slim.php │ ├── Loader │ │ ├── ContainerLoader.php │ │ ├── CustomLoader.php │ │ └── RouteLoader.php │ ├── Resolver │ │ └── ConfigResolver.php │ └── app.php ├── V8 │ ├── BeanDecorator │ │ ├── BeanListRequest.php │ │ ├── BeanListResponse.php │ │ └── BeanManager.php │ ├── Config │ │ ├── routes.php │ │ ├── services.php │ │ └── services │ │ │ ├── beanAliases.php │ │ │ ├── controllers.php │ │ │ ├── factories.php │ │ │ ├── globals.php │ │ │ ├── helpers.php │ │ │ ├── middlewares.php │ │ │ ├── params.php │ │ │ ├── services.php │ │ │ └── validators.php │ ├── Controller │ │ ├── BaseController.php │ │ ├── InvocationStrategy │ │ │ └── SuiteInvocationStrategy.php │ │ ├── ListViewController.php │ │ ├── ListViewSearchController.php │ │ ├── LogoutController.php │ │ ├── MetaController.php │ │ ├── ModuleController.php │ │ ├── RelationshipController.php │ │ ├── UserController.php │ │ └── UserPreferencesController.php │ ├── Factory │ │ ├── ParamsMiddlewareFactory.php │ │ └── ValidatorFactory.php │ ├── Helper │ │ ├── ModuleListProvider.php │ │ └── VarDefHelper.php │ ├── JsonApi │ │ ├── Helper │ │ │ ├── AttributeObjectHelper.php │ │ │ ├── PaginationObjectHelper.php │ │ │ └── RelationshipObjectHelper.php │ │ ├── Repository │ │ │ ├── Filter.php │ │ │ └── Sort.php │ │ └── Response │ │ │ ├── AttributeResponse.php │ │ │ ├── DataResponse.php │ │ │ ├── DocumentResponse.php │ │ │ ├── ErrorResponse.php │ │ │ ├── LinksResponse.php │ │ │ ├── MetaResponse.php │ │ │ ├── PaginationResponse.php │ │ │ └── RelationshipResponse.php │ ├── Middleware │ │ └── ParamsMiddleware.php │ ├── OAuth2 │ │ ├── .gitignore │ │ ├── Entity │ │ │ ├── AccessTokenEntity.php │ │ │ ├── ClientEntity.php │ │ │ ├── RefreshTokenEntity.php │ │ │ └── UserEntity.php │ │ └── Repository │ │ │ ├── AccessTokenRepository.php │ │ │ ├── ClientRepository.php │ │ │ ├── RefreshTokenRepository.php │ │ │ ├── ScopeRepository.php │ │ │ └── UserRepository.php │ ├── Param │ │ ├── BaseParam.php │ │ ├── CreateModuleDataParams.php │ │ ├── CreateModuleParams.php │ │ ├── CreateRelationshipByLinkParams.php │ │ ├── CreateRelationshipParams.php │ │ ├── DeleteModuleParams.php │ │ ├── DeleteRelationshipParams.php │ │ ├── GetFieldListParams.php │ │ ├── GetModuleParams.php │ │ ├── GetModulesParams.php │ │ ├── GetRelationshipDataParams.php │ │ ├── GetRelationshipParams.php │ │ ├── GetUserPreferencesParams.php │ │ ├── ListViewColumnsParams.php │ │ ├── ListViewSearchParams.php │ │ ├── Options │ │ │ ├── Attributes.php │ │ │ ├── BaseOption.php │ │ │ ├── Fields.php │ │ │ ├── Filter.php │ │ │ ├── Id.php │ │ │ ├── LinkFieldName.php │ │ │ ├── ModuleName.php │ │ │ ├── Page.php │ │ │ ├── Sort.php │ │ │ └── Type.php │ │ ├── PageParams.php │ │ ├── UpdateModuleDataParams.php │ │ └── UpdateModuleParams.php │ └── Service │ │ ├── ListViewSearchService.php │ │ ├── ListViewService.php │ │ ├── LogoutService.php │ │ ├── MetaService.php │ │ ├── ModuleService.php │ │ ├── RelationshipService.php │ │ ├── UserPreferencesService.php │ │ └── UserService.php ├── docs │ ├── postman │ │ └── SalesAgility.postman_collection.json │ └── swagger │ │ └── swagger.json └── index.php ├── BuildPackege.php ├── HandleAjaxCall.php ├── LICENSE.txt ├── ModuleInstall ├── ModuleInstaller.php ├── ModuleScanner.php ├── PackageManager │ ├── ListViewPackages.php │ ├── PackageController.php │ ├── PackageManager.php │ ├── PackageManagerComm.php │ ├── PackageManagerDisplay.php │ ├── PackageManagerDownloader.php │ ├── metadata │ │ └── listviewdefs.php │ └── tpls │ │ ├── ModuleLoaderListView.tpl │ │ ├── PackageForm.tpl │ │ ├── PackageManagerLicense.tpl │ │ └── PackageManagerScripts.tpl └── extensions.php ├── README.md ├── RoboFile.php ├── SugarSecurity.php ├── TreeData.php ├── XTemplate ├── LICENSE └── xtpl.php ├── Zend ├── Exception.php ├── Gdata.php ├── Gdata │ ├── App.php │ ├── App │ │ ├── AuthException.php │ │ ├── BadMethodCallException.php │ │ ├── Base.php │ │ ├── BaseMediaSource.php │ │ ├── CaptchaRequiredException.php │ │ ├── Entry.php │ │ ├── Exception.php │ │ ├── Extension.php │ │ ├── Extension │ │ │ ├── Author.php │ │ │ ├── Category.php │ │ │ ├── Content.php │ │ │ ├── Contributor.php │ │ │ ├── Control.php │ │ │ ├── Draft.php │ │ │ ├── Edited.php │ │ │ ├── Element.php │ │ │ ├── Email.php │ │ │ ├── Generator.php │ │ │ ├── Icon.php │ │ │ ├── Id.php │ │ │ ├── Link.php │ │ │ ├── Logo.php │ │ │ ├── Name.php │ │ │ ├── Person.php │ │ │ ├── Published.php │ │ │ ├── Rights.php │ │ │ ├── Source.php │ │ │ ├── Subtitle.php │ │ │ ├── Summary.php │ │ │ ├── Text.php │ │ │ ├── Title.php │ │ │ ├── Updated.php │ │ │ └── Uri.php │ │ ├── Feed.php │ │ ├── FeedEntryParent.php │ │ ├── FeedSourceParent.php │ │ ├── HttpException.php │ │ ├── IOException.php │ │ ├── InvalidArgumentException.php │ │ ├── LoggingHttpClientAdapterSocket.php │ │ ├── MediaEntry.php │ │ ├── MediaFileSource.php │ │ ├── MediaSource.php │ │ ├── Util.php │ │ └── VersionException.php │ ├── AuthSub.php │ ├── Books.php │ ├── Books │ │ ├── CollectionEntry.php │ │ ├── CollectionFeed.php │ │ ├── Extension │ │ │ ├── AnnotationLink.php │ │ │ ├── BooksCategory.php │ │ │ ├── BooksLink.php │ │ │ ├── Embeddability.php │ │ │ ├── InfoLink.php │ │ │ ├── PreviewLink.php │ │ │ ├── Review.php │ │ │ ├── ThumbnailLink.php │ │ │ └── Viewability.php │ │ ├── VolumeEntry.php │ │ ├── VolumeFeed.php │ │ └── VolumeQuery.php │ ├── Calendar.php │ ├── Calendar │ │ ├── EventEntry.php │ │ ├── EventFeed.php │ │ ├── EventQuery.php │ │ ├── Extension │ │ │ ├── AccessLevel.php │ │ │ ├── Color.php │ │ │ ├── Hidden.php │ │ │ ├── Link.php │ │ │ ├── QuickAdd.php │ │ │ ├── Selected.php │ │ │ ├── SendEventNotifications.php │ │ │ ├── Timezone.php │ │ │ └── WebContent.php │ │ ├── ListEntry.php │ │ └── ListFeed.php │ ├── ClientLogin.php │ ├── Contacts.php │ ├── Contacts │ │ ├── Extension │ │ │ ├── Address.php │ │ │ ├── Birthday.php │ │ │ ├── Email.php │ │ │ ├── Name.php │ │ │ ├── Organization.php │ │ │ └── PhoneNumber.php │ │ ├── ListEntry.php │ │ └── ListFeed.php │ ├── Docs.php │ ├── Docs │ │ ├── DocumentListEntry.php │ │ ├── DocumentListFeed.php │ │ └── Query.php │ ├── DublinCore.php │ ├── DublinCore │ │ └── Extension │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── Description.php │ │ │ ├── Format.php │ │ │ ├── Identifier.php │ │ │ ├── Language.php │ │ │ ├── Publisher.php │ │ │ ├── Rights.php │ │ │ ├── Subject.php │ │ │ └── Title.php │ ├── Entry.php │ ├── Exif.php │ ├── Exif │ │ ├── Entry.php │ │ ├── Extension │ │ │ ├── Distance.php │ │ │ ├── Exposure.php │ │ │ ├── FStop.php │ │ │ ├── Flash.php │ │ │ ├── FocalLength.php │ │ │ ├── ImageUniqueId.php │ │ │ ├── Iso.php │ │ │ ├── Make.php │ │ │ ├── Model.php │ │ │ ├── Tags.php │ │ │ └── Time.php │ │ └── Feed.php │ ├── Extension.php │ ├── Extension │ │ ├── AttendeeStatus.php │ │ ├── AttendeeType.php │ │ ├── Comments.php │ │ ├── EntryLink.php │ │ ├── EventStatus.php │ │ ├── ExtendedProperty.php │ │ ├── FeedLink.php │ │ ├── OpenSearchItemsPerPage.php │ │ ├── OpenSearchStartIndex.php │ │ ├── OpenSearchTotalResults.php │ │ ├── OriginalEvent.php │ │ ├── Rating.php │ │ ├── Recurrence.php │ │ ├── RecurrenceException.php │ │ ├── Reminder.php │ │ ├── Transparency.php │ │ ├── Visibility.php │ │ ├── When.php │ │ ├── Where.php │ │ └── Who.php │ ├── Feed.php │ ├── Gapps.php │ ├── Gapps │ │ ├── EmailListEntry.php │ │ ├── EmailListFeed.php │ │ ├── EmailListQuery.php │ │ ├── EmailListRecipientEntry.php │ │ ├── EmailListRecipientFeed.php │ │ ├── EmailListRecipientQuery.php │ │ ├── Error.php │ │ ├── Extension │ │ │ ├── EmailList.php │ │ │ ├── Login.php │ │ │ ├── Name.php │ │ │ ├── Nickname.php │ │ │ ├── Property.php │ │ │ └── Quota.php │ │ ├── GroupEntry.php │ │ ├── GroupFeed.php │ │ ├── GroupQuery.php │ │ ├── MemberEntry.php │ │ ├── MemberFeed.php │ │ ├── MemberQuery.php │ │ ├── NicknameEntry.php │ │ ├── NicknameFeed.php │ │ ├── NicknameQuery.php │ │ ├── OwnerEntry.php │ │ ├── OwnerFeed.php │ │ ├── OwnerQuery.php │ │ ├── Query.php │ │ ├── ServiceException.php │ │ ├── UserEntry.php │ │ ├── UserFeed.php │ │ └── UserQuery.php │ ├── Gbase.php │ ├── Gbase │ │ ├── Entry.php │ │ ├── Extension │ │ │ └── BaseAttribute.php │ │ ├── Feed.php │ │ ├── ItemEntry.php │ │ ├── ItemFeed.php │ │ ├── ItemQuery.php │ │ ├── Query.php │ │ ├── SnippetEntry.php │ │ ├── SnippetFeed.php │ │ └── SnippetQuery.php │ ├── Geo.php │ ├── Geo │ │ ├── Entry.php │ │ ├── Extension │ │ │ ├── GeoRssWhere.php │ │ │ ├── GmlPoint.php │ │ │ └── GmlPos.php │ │ └── Feed.php │ ├── Health.php │ ├── Health │ │ ├── Extension │ │ │ └── Ccr.php │ │ ├── ProfileEntry.php │ │ ├── ProfileFeed.php │ │ ├── ProfileListEntry.php │ │ ├── ProfileListFeed.php │ │ └── Query.php │ ├── HttpAdapterStreamingProxy.php │ ├── HttpAdapterStreamingSocket.php │ ├── HttpClient.php │ ├── Kind │ │ └── EventEntry.php │ ├── Media.php │ ├── Media │ │ ├── Entry.php │ │ ├── Extension │ │ │ ├── MediaCategory.php │ │ │ ├── MediaContent.php │ │ │ ├── MediaCopyright.php │ │ │ ├── MediaCredit.php │ │ │ ├── MediaDescription.php │ │ │ ├── MediaGroup.php │ │ │ ├── MediaHash.php │ │ │ ├── MediaKeywords.php │ │ │ ├── MediaPlayer.php │ │ │ ├── MediaRating.php │ │ │ ├── MediaRestriction.php │ │ │ ├── MediaText.php │ │ │ ├── MediaThumbnail.php │ │ │ └── MediaTitle.php │ │ └── Feed.php │ ├── MediaMimeStream.php │ ├── MimeBodyString.php │ ├── MimeFile.php │ ├── Photos.php │ ├── Photos │ │ ├── AlbumEntry.php │ │ ├── AlbumFeed.php │ │ ├── AlbumQuery.php │ │ ├── CommentEntry.php │ │ ├── Extension │ │ │ ├── Access.php │ │ │ ├── AlbumId.php │ │ │ ├── BytesUsed.php │ │ │ ├── Checksum.php │ │ │ ├── Client.php │ │ │ ├── CommentCount.php │ │ │ ├── CommentingEnabled.php │ │ │ ├── Height.php │ │ │ ├── Id.php │ │ │ ├── Location.php │ │ │ ├── MaxPhotosPerAlbum.php │ │ │ ├── Name.php │ │ │ ├── Nickname.php │ │ │ ├── NumPhotos.php │ │ │ ├── NumPhotosRemaining.php │ │ │ ├── PhotoId.php │ │ │ ├── Position.php │ │ │ ├── QuotaCurrent.php │ │ │ ├── QuotaLimit.php │ │ │ ├── Rotation.php │ │ │ ├── Size.php │ │ │ ├── Thumbnail.php │ │ │ ├── Timestamp.php │ │ │ ├── User.php │ │ │ ├── Version.php │ │ │ ├── Weight.php │ │ │ └── Width.php │ │ ├── PhotoEntry.php │ │ ├── PhotoFeed.php │ │ ├── PhotoQuery.php │ │ ├── TagEntry.php │ │ ├── UserEntry.php │ │ ├── UserFeed.php │ │ └── UserQuery.php │ ├── Query.php │ ├── Spreadsheets.php │ ├── Spreadsheets │ │ ├── CellEntry.php │ │ ├── CellFeed.php │ │ ├── CellQuery.php │ │ ├── DocumentQuery.php │ │ ├── Extension │ │ │ ├── Cell.php │ │ │ ├── ColCount.php │ │ │ ├── Custom.php │ │ │ └── RowCount.php │ │ ├── ListEntry.php │ │ ├── ListFeed.php │ │ ├── ListQuery.php │ │ ├── SpreadsheetEntry.php │ │ ├── SpreadsheetFeed.php │ │ ├── WorksheetEntry.php │ │ └── WorksheetFeed.php │ ├── YouTube.php │ └── YouTube │ │ ├── ActivityEntry.php │ │ ├── ActivityFeed.php │ │ ├── CommentEntry.php │ │ ├── CommentFeed.php │ │ ├── ContactEntry.php │ │ ├── ContactFeed.php │ │ ├── Extension │ │ ├── AboutMe.php │ │ ├── Age.php │ │ ├── Books.php │ │ ├── Company.php │ │ ├── Control.php │ │ ├── CountHint.php │ │ ├── Description.php │ │ ├── Duration.php │ │ ├── FirstName.php │ │ ├── Gender.php │ │ ├── Hobbies.php │ │ ├── Hometown.php │ │ ├── LastName.php │ │ ├── Link.php │ │ ├── Location.php │ │ ├── MediaContent.php │ │ ├── MediaCredit.php │ │ ├── MediaGroup.php │ │ ├── MediaRating.php │ │ ├── Movies.php │ │ ├── Music.php │ │ ├── NoEmbed.php │ │ ├── Occupation.php │ │ ├── PlaylistId.php │ │ ├── PlaylistTitle.php │ │ ├── Position.php │ │ ├── Private.php │ │ ├── QueryString.php │ │ ├── Racy.php │ │ ├── Recorded.php │ │ ├── Relationship.php │ │ ├── ReleaseDate.php │ │ ├── School.php │ │ ├── State.php │ │ ├── Statistics.php │ │ ├── Status.php │ │ ├── Token.php │ │ ├── Uploaded.php │ │ ├── Username.php │ │ └── VideoId.php │ │ ├── InboxEntry.php │ │ ├── InboxFeed.php │ │ ├── MediaEntry.php │ │ ├── PlaylistListEntry.php │ │ ├── PlaylistListFeed.php │ │ ├── PlaylistVideoEntry.php │ │ ├── PlaylistVideoFeed.php │ │ ├── SubscriptionEntry.php │ │ ├── SubscriptionFeed.php │ │ ├── UserProfileEntry.php │ │ ├── VideoEntry.php │ │ ├── VideoFeed.php │ │ └── VideoQuery.php ├── Http │ ├── Client.php │ ├── Client │ │ ├── Adapter │ │ │ ├── Curl.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Proxy.php │ │ │ ├── Socket.php │ │ │ ├── Stream.php │ │ │ └── Test.php │ │ └── Exception.php │ ├── Exception.php │ ├── Response.php │ └── Response │ │ └── Stream.php ├── Loader.php ├── Oauth.php ├── Oauth │ ├── Client.php │ ├── Config.php │ ├── Config │ │ └── ConfigInterface.php │ ├── Consumer.php │ ├── Exception.php │ ├── Http.php │ ├── Http │ │ ├── AccessToken.php │ │ ├── RequestToken.php │ │ ├── UserAuthorization.php │ │ └── Utility.php │ ├── Provider.php │ ├── Signature │ │ ├── Hmac.php │ │ ├── Plaintext.php │ │ ├── Rsa.php │ │ └── SignatureAbstract.php │ ├── Token.php │ └── Token │ │ ├── Access.php │ │ ├── AuthorizedRequest.php │ │ └── Request.php ├── Registry.php ├── Uri.php ├── Uri │ ├── Exception.php │ └── Http.php ├── Validate │ ├── Abstract.php │ ├── Hostname.php │ ├── Hostname │ │ ├── Biz.php │ │ ├── Cn.php │ │ ├── Com.php │ │ └── Jp.php │ ├── Interface.php │ └── Ip.php └── Version.php ├── adminer.php ├── campaign_tracker.php ├── composer.json ├── composer.lock ├── cron.php ├── crossdomain.xml ├── custom ├── Extension │ ├── application │ │ └── Ext │ │ │ ├── Include │ │ │ └── BOARD.php │ │ │ ├── Language │ │ │ └── en_us.BORD.php │ │ │ └── LogicHooks │ │ │ ├── AOW_WorkFlow_Hook.php │ │ │ └── BOARD_Kanban_Board_JS_UI_HOOK.php │ └── modules │ │ ├── Accounts │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Administration │ │ └── Ext │ │ │ ├── Administration │ │ │ └── KanbanSettings.php │ │ │ └── Language │ │ │ └── en_us.Kanban.php │ │ ├── Cases │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Contacts │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Leads │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Meetings │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Opportunities │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ ├── Project │ │ └── Ext │ │ │ └── Vardefs │ │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ │ └── _override_sugarfield_jjwg_maps_lng_c.php │ │ └── Prospects │ │ └── Ext │ │ └── Vardefs │ │ ├── _override_sugarfield_jjwg_maps_address_c.php │ │ ├── _override_sugarfield_jjwg_maps_geocode_status_c.php │ │ ├── _override_sugarfield_jjwg_maps_lat_c.php │ │ └── _override_sugarfield_jjwg_maps_lng_c.php ├── include │ ├── language │ │ └── en_us.lang.php │ ├── lib │ │ ├── bootstrap_select │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ └── bootstrap-select.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-select.js │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ ├── bootstrap-select.min.js.map │ │ │ │ └── i18n │ │ │ │ ├── defaults-am_ET.js │ │ │ │ ├── defaults-am_ET.js.map │ │ │ │ ├── defaults-am_ET.min.js │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-ar_AR.js.map │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-bg_BG.js.map │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-cs_CZ.js.map │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-da_DK.js.map │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-de_DE.js.map │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-en_US.js.map │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_CL.js.map │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-es_ES.js.map │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-et_EE.js.map │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-eu.js.map │ │ │ │ ├── defaults-eu.min.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fa_IR.js.map │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fi_FI.js.map │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-fr_FR.js.map │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ ├── defaults-hr_HR.js.map │ │ │ │ ├── defaults-hr_HR.min.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-hu_HU.js.map │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-id_ID.js.map │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-it_IT.js.map │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-ja_JP.js.map │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-kh_KM.js.map │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-ko_KR.js.map │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lt_LT.js.map │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ ├── defaults-lv_LV.js.map │ │ │ │ ├── defaults-lv_LV.min.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nb_NO.js.map │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-nl_NL.js.map │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pl_PL.js.map │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_BR.js.map │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-pt_PT.js.map │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ro_RO.js.map │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-ru_RU.js.map │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sk_SK.js.map │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sl_SI.js.map │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ ├── defaults-sr_SP.js │ │ │ │ ├── defaults-sr_SP.js.map │ │ │ │ ├── defaults-sr_SP.min.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-sv_SE.js.map │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ ├── defaults-th_TH.js │ │ │ │ ├── defaults-th_TH.js.map │ │ │ │ ├── defaults-th_TH.min.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-tr_TR.js.map │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-ua_UA.js.map │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-vi_VN.js.map │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ ├── defaults-zh_CN.js.map │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ ├── defaults-zh_TW.js.map │ │ │ │ └── defaults-zh_TW.min.js │ │ └── jkanban │ │ │ ├── jkanban.min.css │ │ │ └── jkanban.min.js │ └── tabConfig.php ├── index.html ├── modules │ ├── Accounts │ │ ├── Run.php │ │ └── logic_hooks.php │ ├── Calls │ │ └── logic_hooks.php │ ├── Cases │ │ └── logic_hooks.php │ ├── Contacts │ │ └── logic_hooks.php │ ├── Emails │ │ └── logic_hooks.php │ ├── Home │ │ └── dashlets.php │ ├── Leads │ │ └── logic_hooks.php │ ├── Meetings │ │ └── logic_hooks.php │ ├── Opportunities │ │ └── logic_hooks.php │ ├── Project │ │ └── logic_hooks.php │ ├── ProjectTask │ │ └── logic_hooks.php │ ├── Projects │ │ └── logic_hooks.php │ ├── Prospects │ │ └── logic_hooks.php │ ├── Users │ │ └── logic_hooks.php │ └── logic_hooks.php └── themes │ ├── SuiteP │ ├── css │ │ ├── Dawn │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Day │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Dusk │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Night │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── bootstrap.min.css │ │ ├── bootstrap │ │ │ ├── alerts.scss │ │ │ ├── badges.scss │ │ │ ├── breadcrumbs.scss │ │ │ ├── button-groups.scss │ │ │ ├── buttons.scss │ │ │ ├── carousel.scss │ │ │ ├── close.scss │ │ │ ├── code.scss │ │ │ ├── component-animations.scss │ │ │ ├── dropdowns.scss │ │ │ ├── forms.scss │ │ │ ├── glyphicons.scss │ │ │ ├── grid.scss │ │ │ ├── input-groups.scss │ │ │ ├── jumbotron.scss │ │ │ ├── labels.scss │ │ │ ├── list-group.scss │ │ │ ├── media.scss │ │ │ ├── mixins.scss │ │ │ ├── mixins │ │ │ │ ├── alerts.scss │ │ │ │ ├── background-variant.scss │ │ │ │ ├── border-radius.scss │ │ │ │ ├── buttons.scss │ │ │ │ ├── center-block.scss │ │ │ │ ├── clearfix.scss │ │ │ │ ├── forms.scss │ │ │ │ ├── gradients.scss │ │ │ │ ├── grid-framework.scss │ │ │ │ ├── grid.scss │ │ │ │ ├── hide-text.scss │ │ │ │ ├── image.scss │ │ │ │ ├── labels.scss │ │ │ │ ├── list-group.scss │ │ │ │ ├── nav-divider.scss │ │ │ │ ├── nav-vertical-align.scss │ │ │ │ ├── opacity.scss │ │ │ │ ├── pagination.scss │ │ │ │ ├── panels.scss │ │ │ │ ├── progress-bar.scss │ │ │ │ ├── reset-filter.scss │ │ │ │ ├── reset-text.scss │ │ │ │ ├── resize.scss │ │ │ │ ├── responsive-visibility.scss │ │ │ │ ├── size.scss │ │ │ │ ├── tab-focus.scss │ │ │ │ ├── table-row.scss │ │ │ │ ├── text-emphasis.scss │ │ │ │ ├── text-overflow.scss │ │ │ │ └── vendor-prefixes.scss │ │ │ ├── modals.scss │ │ │ ├── navbar.scss │ │ │ ├── navs.scss │ │ │ ├── normalize.scss │ │ │ ├── pager.scss │ │ │ ├── pagination.scss │ │ │ ├── panels.scss │ │ │ ├── popovers.scss │ │ │ ├── print.scss │ │ │ ├── progress-bars.scss │ │ │ ├── responsive-embed.scss │ │ │ ├── responsive-utilities.scss │ │ │ ├── scaffolding.scss │ │ │ ├── tables.scss │ │ │ ├── theme.scss │ │ │ ├── thumbnails.scss │ │ │ ├── tooltip.scss │ │ │ ├── type.scss │ │ │ ├── utilities.scss │ │ │ └── wells.scss │ │ ├── bubbles.css │ │ ├── chart.css │ │ ├── colourSelector.php │ │ ├── dashboardstyle.css │ │ ├── deprecated.css │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── footable.eot │ │ │ ├── footable.svg │ │ │ ├── footable.ttf │ │ │ └── footable.woff │ │ ├── footable.core.css │ │ ├── grid.css │ │ ├── normalize.css │ │ ├── print.css │ │ ├── studio.css │ │ ├── suitep-base │ │ │ ├── admin.scss │ │ │ ├── aor.scss │ │ │ ├── aow.scss │ │ │ ├── calendar.scss │ │ │ ├── campaigns.scss │ │ │ ├── cases.scss │ │ │ ├── dashboard.scss │ │ │ ├── detailview.scss │ │ │ ├── editview.scss │ │ │ ├── email.scss │ │ │ ├── forms.scss │ │ │ ├── jstree.scss │ │ │ ├── listview.scss │ │ │ ├── login.scss │ │ │ ├── main.scss │ │ │ ├── mixins.scss │ │ │ ├── modal.scss │ │ │ ├── navbar.scss │ │ │ ├── panels.scss │ │ │ ├── popup.scss │ │ │ ├── projects.scss │ │ │ ├── search.scss │ │ │ ├── sidebar.scss │ │ │ ├── studio.scss │ │ │ ├── suitepicon-glyphs.scss │ │ │ ├── suitepicon.eot │ │ │ ├── suitepicon.html │ │ │ ├── suitepicon.json │ │ │ ├── suitepicon.scss │ │ │ ├── suitepicon.svg │ │ │ ├── suitepicon.ttf │ │ │ ├── suitepicon.woff │ │ │ ├── tabs.scss │ │ │ ├── tinemce.scss │ │ │ └── yui.scss │ │ └── wizard.css │ └── tpls │ │ └── _headerModuleList.tpl │ └── default │ └── images │ ├── BORD_OPPORTUNITIES.gif │ ├── BORD_OPPORTUNITIES.svg │ ├── BORD_Opportunities.gif │ ├── BORD_Opportunities.svg │ ├── CreateBORD_OPPORTUNITIES.gif │ ├── CreateBORD_OPPORTUNITIES.svg │ ├── CreateBORD_Opportunities.gif │ ├── CreateBORD_Opportunities.svg │ ├── icon_BORD_OPPORTUNITIES.gif │ ├── icon_BORD_OPPORTUNITIES_32.gif │ ├── icon_BORD_OPPORTUNITIES_32.svg │ ├── icon_BORD_Opportunities.gif │ ├── icon_BORD_Opportunities_32.gif │ ├── icon_BORD_Opportunities_32.svg │ ├── sidebar │ └── modules │ │ ├── BORD_OPPORTUNITIES.svg │ │ └── BORD_Opportunities.svg │ └── sub_panel │ ├── BORD_OPPORTUNITIES.svg │ ├── BORD_Opportunities.svg │ └── modules │ ├── BORD_OPPORTUNITIES.svg │ └── BORD_Opportunities.svg ├── data ├── BeanFactory.php ├── Link.php ├── Link2.php ├── Relationships │ ├── EmailAddressRelationship.php │ ├── M2MRelationship.php │ ├── One2MBeanRelationship.php │ ├── One2MRelationship.php │ ├── One2OneBeanRelationship.php │ ├── One2OneRelationship.php │ ├── RelationshipFactory.php │ └── SugarRelationship.php └── SugarBean.php ├── deprecated.php ├── dictionary.php ├── download.php ├── emailmandelivery.php ├── export.php ├── files.md5 ├── git.php ├── ical_server.php ├── include ├── Dashlets │ ├── Dashlet.php │ ├── DashletCacheBuilder.php │ ├── DashletFooter.tpl │ ├── DashletGeneric.php │ ├── DashletGenericAutoRefresh.tpl │ ├── DashletGenericAutoRefreshDynamic.tpl │ ├── DashletGenericChart.php │ ├── DashletGenericChartConfigure.tpl │ ├── DashletGenericConfigure.tpl │ ├── DashletGenericDisplay.tpl │ ├── DashletHeader.tpl │ └── DashletRssFeedTitle.php ├── DatabaseTransactions.php ├── DetailView │ ├── DetailView.php │ ├── DetailView.tpl │ ├── DetailView2.php │ ├── footer.tpl │ └── header.tpl ├── EditView │ ├── EditView.php │ ├── EditView.tpl │ ├── EditView2.php │ ├── Panels.js │ ├── PopupQuickCreate.php │ ├── QuickCreate.php │ ├── QuickCreate.tpl │ ├── SecurityGroups.tpl │ ├── SubpanelQuickCreate.php │ ├── SubpanelQuickEdit.php │ ├── SugarVCR.php │ ├── SugarVCR.tpl │ ├── footer.tpl │ └── header.tpl ├── EmailInterface.php ├── EntryPointConfirmOptIn.tpl ├── EntryPointConfirmOptInHandler.php ├── ErrorMessage.php ├── ErrorMessageException.php ├── Exceptions │ ├── SugarControllerException.php │ └── SuiteException.php ├── GoogleSync │ ├── GoogleSync.php │ ├── GoogleSyncBase.php │ ├── GoogleSyncExceptions.php │ └── GoogleSyncHelper.php ├── GroupedTabs │ └── GroupedTabStructure.php ├── HTMLPurifier │ ├── CREDITS │ ├── HTMLPurifier.autoload.php │ ├── HTMLPurifier.standalone.php │ ├── LICENSE │ ├── VERSION │ └── standalone │ │ └── HTMLPurifier │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ └── info.ini │ │ ├── DefinitionCache │ │ └── Serializer │ │ │ └── .gitkeep │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── Lexer │ │ ├── PEARSax3.php │ │ └── PH5P.php │ │ ├── Printer.php │ │ └── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php ├── HTMLPurifierFilterXmp.php ├── HTMLPurifierURISchemeCid.php ├── HTTP_WebDAV_Server │ ├── README │ ├── Server.php │ ├── Tools │ │ ├── _parse_lockinfo.php │ │ ├── _parse_propfind.php │ │ └── _parse_proppatch.php │ ├── dav.txt │ └── license.txt ├── HtmlSanitizer.php ├── Imap.php ├── Imap │ ├── ImapHandler.php │ ├── ImapHandlerException.php │ ├── ImapHandlerFactory.php │ ├── ImapHandlerFake.php │ ├── ImapHandlerFakeCalls.php │ ├── ImapHandlerFakeData.php │ ├── ImapHandlerInterface.php │ ├── ImapTestSettingsEntry.php │ └── ImapTestSettingsEntryHandler.php ├── ImapInterface.php ├── InlineEditing │ ├── InlineEditing.php │ └── inlineEditing.js ├── JSON.php ├── JsonApiErrorObject.php ├── LangException.php ├── LangExceptionInterface.php ├── LangText.php ├── ListView │ ├── ListView.php │ ├── ListViewBulkActionSendOptInLink.tpl │ ├── ListViewButtons.tpl │ ├── ListViewColumnsFilterDialog.tpl │ ├── ListViewColumnsFilterLink.tpl │ ├── ListViewDCMenu.tpl │ ├── ListViewData.php │ ├── ListViewDisplay.php │ ├── ListViewEval.tpl │ ├── ListViewFacade.php │ ├── ListViewGeneric.tpl │ ├── ListViewNoMassUpdate.tpl │ ├── ListViewPagination.tpl │ ├── ListViewSearchLink.tpl │ ├── ListViewSelectObjects.tpl │ ├── ListViewSmarty.php │ ├── ListViewSubPanel.php │ └── ListViewXTPL.php ├── Localization │ └── Localization.php ├── MVC │ ├── Controller │ │ ├── ControllerFactory.php │ │ ├── SugarController.php │ │ ├── action_file_map.php │ │ ├── action_view_map.php │ │ ├── entry_point_registry.php │ │ └── file_access_control_map.php │ ├── SugarApplication.php │ ├── SugarModule.php │ ├── View │ │ ├── SugarView.php │ │ ├── ViewFactory.php │ │ ├── tpls │ │ │ ├── Importvcard.tpl │ │ │ ├── displayLoginJS.tpl │ │ │ ├── favorites.tpl │ │ │ ├── modulelistmenu.tpl │ │ │ └── xsrf.tpl │ │ └── views │ │ │ ├── view.ajax.php │ │ │ ├── view.ajaxui.php │ │ │ ├── view.classic.config.php │ │ │ ├── view.classic.php │ │ │ ├── view.config.php │ │ │ ├── view.detail.config.php │ │ │ ├── view.detail.php │ │ │ ├── view.edit.php │ │ │ ├── view.favorites.php │ │ │ ├── view.html.php │ │ │ ├── view.importvcard.php │ │ │ ├── view.importvcardsave.php │ │ │ ├── view.json.php │ │ │ ├── view.list.php │ │ │ ├── view.metadata.php │ │ │ ├── view.modulelistmenu.php │ │ │ ├── view.multiedit.php │ │ │ ├── view.noaccess.php │ │ │ ├── view.popup.php │ │ │ ├── view.quick.php │ │ │ ├── view.quickcreate.php │ │ │ ├── view.quickedit.php │ │ │ ├── view.serialized.php │ │ │ ├── view.sugarpdf.config.php │ │ │ ├── view.sugarpdf.php │ │ │ ├── view.vcard.php │ │ │ └── view.xml.php │ └── preDispatch.php ├── MassUpdate.php ├── MySugar │ ├── DashletsDialog │ │ └── DashletsDialog.php │ ├── MySugar.php │ ├── dashboardstyle.css │ ├── javascript │ │ ├── AddRemoveDashboardPages.js │ │ ├── MySugar.js │ │ └── retrievePage.js │ ├── retrieve_dash_page.php │ └── tpls │ │ ├── MySugar.tpl │ │ ├── MySugar2.tpl │ │ ├── addDashletsDialog.tpl │ │ ├── chartDashletsSearchResults.tpl │ │ ├── dashletsSearchResults.tpl │ │ ├── retrievePage.tpl │ │ └── retrieveReportCharts.tpl ├── OutboundEmail │ └── OutboundEmail.php ├── Pear │ ├── Crypt_Blowfish │ │ ├── Blowfish.php │ │ ├── Blowfish │ │ │ └── DefaultKey.php │ │ └── license.txt │ └── XML_HTMLSax3 │ │ ├── HTMLSax3.php │ │ ├── HTMLSax3 │ │ ├── Decorators.php │ │ └── States.php │ │ └── LICENSE ├── Popups │ ├── PopupSmarty.php │ ├── Popup_picker.php │ └── tpls │ │ ├── PopupGeneric.tpl │ │ ├── footer.tpl │ │ └── header.tpl ├── QuickSearchDefaults.php ├── RefreshDatabase.php ├── SearchForm │ ├── SearchForm.php │ ├── SearchForm2.php │ ├── SugarSpot.php │ └── tpls │ │ ├── SearchFormGeneric.tpl │ │ ├── SearchFormGenericAdvanced.tpl │ │ ├── SubpanelSearchFormGeneric.tpl │ │ ├── SugarSpot.tpl │ │ ├── footer.tpl │ │ ├── footerPopup.tpl │ │ ├── header.tpl │ │ └── headerPopup.tpl ├── Smarty │ ├── Config_File.class.php │ ├── Smarty.class.php │ ├── Smarty_Compiler.class.php │ ├── internals │ │ ├── core.assemble_plugin_filepath.php │ │ ├── core.assign_smarty_interface.php │ │ ├── core.create_dir_structure.php │ │ ├── core.display_debug_console.php │ │ ├── core.get_include_path.php │ │ ├── core.get_microtime.php │ │ ├── core.get_php_resource.php │ │ ├── core.is_secure.php │ │ ├── core.is_trusted.php │ │ ├── core.load_plugins.php │ │ ├── core.load_resource_plugin.php │ │ ├── core.process_cached_inserts.php │ │ ├── core.process_compiled_include.php │ │ ├── core.read_cache_file.php │ │ ├── core.rm_auto.php │ │ ├── core.rmdir.php │ │ ├── core.run_insert_handler.php │ │ ├── core.smarty_include_php.php │ │ ├── core.write_cache_file.php │ │ ├── core.write_compiled_include.php │ │ ├── core.write_compiled_resource.php │ │ └── core.write_file.php │ └── plugins │ │ ├── block.minify.php │ │ ├── block.nocache.php │ │ ├── block.textformat.php │ │ ├── compiler.append.php │ │ ├── compiler.assign.php │ │ ├── function.assign_debug_info.php │ │ ├── function.config_load.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.debug.php │ │ ├── function.diff_for_humans.php │ │ ├── function.eval.php │ │ ├── function.ext_includes.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.log.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── function.modules_selector.php │ │ ├── function.multienum_to_array.php │ │ ├── function.popup.php │ │ ├── function.popup_init.php │ │ ├── function.search_controller.php │ │ ├── function.sugar_action_menu.php │ │ ├── function.sugar_actions_link.php │ │ ├── function.sugar_ajax_url.php │ │ ├── function.sugar_button.php │ │ ├── function.sugar_button_slider.php │ │ ├── function.sugar_connector_display.php │ │ ├── function.sugar_currency_format.php │ │ ├── function.sugar_email_btn.php │ │ ├── function.sugar_evalcolumn.php │ │ ├── function.sugar_evalcolumn_old.php │ │ ├── function.sugar_fetch.php │ │ ├── function.sugar_field.php │ │ ├── function.sugar_getimage.php │ │ ├── function.sugar_getimagepath.php │ │ ├── function.sugar_getjspath.php │ │ ├── function.sugar_getlink.php │ │ ├── function.sugar_getscript.php │ │ ├── function.sugar_getwebpath.php │ │ ├── function.sugar_help.php │ │ ├── function.sugar_image.php │ │ ├── function.sugar_include.php │ │ ├── function.sugar_link.php │ │ ├── function.sugar_literal.php │ │ ├── function.sugar_menu.php │ │ ├── function.sugar_number_format.php │ │ ├── function.sugar_phone.php │ │ ├── function.sugar_replace_vars.php │ │ ├── function.sugar_run_helper.php │ │ ├── function.sugar_translate.php │ │ ├── function.sugar_variable_constructor.php │ │ ├── function.sugar_varname.php │ │ ├── function.sugarvar.php │ │ ├── function.sugarvar_connector.php │ │ ├── function.suite_check_access.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.cat.php │ │ ├── modifier.count_characters.php │ │ ├── modifier.count_paragraphs.php │ │ ├── modifier.count_sentences.php │ │ ├── modifier.count_words.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.default.php │ │ ├── modifier.default_date_value.php │ │ ├── modifier.escape.php │ │ ├── modifier.htmlparser.php │ │ ├── modifier.in_array.php │ │ ├── modifier.indent.php │ │ ├── modifier.json.php │ │ ├── modifier.lookup.php │ │ ├── modifier.lower.php │ │ ├── modifier.multienum_to_ac.php │ │ ├── modifier.nl2br.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.string_format.php │ │ ├── modifier.strip.php │ │ ├── modifier.strip_semicolon.php │ │ ├── modifier.strip_tags.php │ │ ├── modifier.to_url.php │ │ ├── modifier.truncate.php │ │ ├── modifier.upper.php │ │ ├── modifier.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ └── shared.make_timestamp.php ├── StateCheckerDirectoryIterator.php ├── SubPanel │ ├── SubPanel.js │ ├── SubPanel.php │ ├── SubPanelDefinitions.php │ ├── SubPanelDynamic.html │ ├── SubPanelRowCounter.php │ ├── SubPanelSearchDisplay.php │ ├── SubPanelSearchForm.php │ ├── SubPanelTiles.js │ ├── SubPanelTiles.php │ ├── SubPanelTilesTabs.php │ ├── SubPanelViewer.php │ ├── SugarTab.php │ ├── registered_layout_defs.php │ ├── subpanels.txt │ └── tpls │ │ ├── SubPanelDynamic.tpl │ │ ├── SubPanelTiles.tpl │ │ └── singletabmenu.tpl ├── SugarCache │ ├── SugarCache.php │ ├── SugarCacheAPC.php │ ├── SugarCacheAbstract.php │ ├── SugarCacheFile.php │ ├── SugarCacheMemcache.php │ ├── SugarCacheMemcached.php │ ├── SugarCacheMemory.php │ ├── SugarCacheRedis.php │ ├── SugarCacheWincache.php │ ├── SugarCacheZend.php │ └── SugarCachesMash.php ├── SugarCharts │ ├── Jit │ │ ├── Jit.php │ │ ├── JitReports.php │ │ ├── css │ │ │ └── base.css │ │ ├── js │ │ │ ├── Jit │ │ │ │ └── jit.js │ │ │ ├── mySugarCharts.js │ │ │ └── sugarCharts.js │ │ └── tpls │ │ │ ├── DashletGenericChartScript.tpl │ │ │ └── chart.tpl │ ├── JsChart.php │ ├── SugarChart.php │ ├── SugarChartFactory.php │ └── swf │ │ ├── barChart.swf │ │ ├── chart.swf │ │ ├── groupByChart.swf │ │ ├── horizontalBarChart.swf │ │ ├── horizontalGroupByChart.swf │ │ ├── lineChart.swf │ │ ├── pieChart.swf │ │ └── stackedGroupByChart.swf ├── SugarDateTime.php ├── SugarDependentDropdown │ ├── SugarDependentDropdown.php │ ├── javascript │ │ └── SugarDependentDropdown.js │ └── metadata │ │ └── dependentDropdown.php ├── SugarEmailAddress │ ├── SugarEmailAddress.js │ ├── SugarEmailAddress.php │ ├── getEmailAddressWidget.php │ └── templates │ │ ├── forDetailView.tpl │ │ ├── forDuplicatesView.tpl │ │ ├── forEditView.tpl │ │ ├── forWideFormBodyView.tpl │ │ └── optInStatusTick.tpl ├── SugarFields │ ├── Fields │ │ ├── Address │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── SugarFieldAddress.js │ │ │ ├── SugarFieldAddress.php │ │ │ ├── en_us.DetailView.tpl │ │ │ └── en_us.EditView.tpl │ │ ├── Assigned_user_name │ │ │ ├── EditViewFunction.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldAssigned_user_name.php │ │ ├── Base │ │ │ ├── DetailView.tpl │ │ │ ├── DetailViewFunction.tpl │ │ │ ├── EditView.tpl │ │ │ ├── EditViewFunction.tpl │ │ │ ├── ImportViewFunction.tpl │ │ │ ├── InlineEdit.tpl │ │ │ ├── InlineEditView.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SearchForm.tpl │ │ │ └── SugarFieldBase.php │ │ ├── Bool │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── InlineEdit.tpl │ │ │ ├── InlineEditView.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldBool.php │ │ ├── Collection │ │ │ ├── CollectionDetailView.tpl │ │ │ ├── CollectionEditView.tpl │ │ │ ├── CollectionEditViewRow.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── SugarFieldCollection.js │ │ │ ├── SugarFieldCollection.php │ │ │ ├── ViewSugarFieldCollection.php │ │ │ └── view.sugarfieldcollection.php │ │ ├── CronSchedule │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── SugarFieldCronSchedule.js │ │ │ └── SugarFieldCronSchedule.php │ │ ├── Currency │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListView.tpl │ │ │ └── SugarFieldCurrency.php │ │ ├── Datetime │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldDatetime.php │ │ ├── Datetimecombo │ │ │ ├── Datetimecombo.js │ │ │ ├── EditView.tpl │ │ │ ├── RangeSearchForm.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldDatetimecombo.php │ │ ├── Download │ │ │ ├── DetailView.tpl │ │ │ └── SugarFieldDownload.php │ │ ├── Dynamicenum │ │ │ ├── EditView.tpl │ │ │ ├── SugarFieldDynamicenum.js │ │ │ └── SugarFieldDynamicenum.php │ │ ├── EmailBody │ │ │ ├── DetailView.tpl │ │ │ └── SugarFieldEmailBody.php │ │ ├── Enum │ │ │ ├── DetailView.tpl │ │ │ ├── DetailViewFunction.tpl │ │ │ ├── EditView.tpl │ │ │ ├── EditViewFunction.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldEnum.php │ │ ├── File │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SearchView.tpl │ │ │ ├── SugarFieldFile.js │ │ │ └── SugarFieldFile.php │ │ ├── Float │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldFloat.php │ │ ├── Fullname │ │ │ ├── DetailView.tpl │ │ │ └── SugarFieldFullname.php │ │ ├── Html │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldHtml.php │ │ ├── Id │ │ │ └── SugarFieldId.php │ │ ├── Iframe │ │ │ ├── DetailView.tpl │ │ │ └── EditView.tpl │ │ ├── Image │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SugarFieldFile.js │ │ │ ├── SugarFieldImage.php │ │ │ ├── deleteAttachment.php │ │ │ └── no_image.png │ │ ├── Int │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── RangeSearchForm.tpl │ │ │ ├── SearchForm.tpl │ │ │ └── SugarFieldInt.php │ │ ├── Link │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── ListView.tpl │ │ ├── Multienum │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── EditViewFunction.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldMultienum.php │ │ ├── Parent │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldParent.php │ │ ├── Password │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldPassword.php │ │ ├── Phone │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListView.tpl │ │ │ └── SugarFieldPhone.php │ │ ├── Radioenum │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldRadioenum.php │ │ ├── Readonly │ │ │ └── SugarFieldReadonly.php │ │ ├── Relate │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── SearchView.tpl │ │ │ └── SugarFieldRelate.php │ │ ├── Text │ │ │ ├── ClassicEditView.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── SugarFieldText.php │ │ ├── Time │ │ │ ├── EditView.tpl │ │ │ ├── SugarFieldTime.php │ │ │ └── Time.js │ │ ├── URL │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── ListView.tpl │ │ ├── Username │ │ │ ├── DetailView.tpl │ │ │ └── SugarFieldUsername.php │ │ └── Wysiwyg │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListView.tpl │ │ │ ├── SugarFieldWysiwyg.php │ │ │ └── css │ │ │ └── wysiwyg-editview.css │ ├── Parsers │ │ ├── DetailViewMetaParser.php │ │ ├── EditViewMetaParser.php │ │ ├── MetaParser.php │ │ ├── QuickCreateMetaParser.php │ │ ├── Rules │ │ │ ├── AccountsParseRule.php │ │ │ ├── ActivitiesParseRule.php │ │ │ ├── AddressRule.php │ │ │ ├── BaseRule.php │ │ │ ├── BugsParseRule.php │ │ │ ├── CallsParseRule.php │ │ │ ├── CampaignsParseRule.php │ │ │ ├── ContactsParseRule.php │ │ │ ├── ContractsParseRule.php │ │ │ ├── DocumentsParseRule.php │ │ │ ├── EmailAddressRule.php │ │ │ ├── EmptyRowRule.php │ │ │ ├── LeadsParseRule.php │ │ │ ├── MeetingsParseRule.php │ │ │ ├── NotesParseRule.php │ │ │ ├── OpportunitiesParseRule.php │ │ │ ├── ParseRules.php │ │ │ ├── ProductsParseRule.php │ │ │ ├── QuotesParseRule.php │ │ │ ├── UndefinedVardefRule.php │ │ │ ├── VariableCleanupRule.php │ │ │ └── VariableSubstitutionRule.php │ │ └── SearchFormMetaParser.php │ └── SugarFieldHandler.php ├── SugarFolders │ ├── SugarFolderEmptyException.php │ └── SugarFolders.php ├── SugarHtml │ └── SugarHtml.php ├── SugarHttpClient.php ├── SugarLogger │ ├── LoggerManager.php │ ├── LoggerTemplate.php │ └── SugarLogger.php ├── SugarOAuthServer.php ├── SugarOauth.php ├── SugarObjects │ ├── LanguageManager.php │ ├── SugarConfig.php │ ├── SugarRegistry.php │ ├── SugarSession.php │ ├── VardefManager.php │ ├── forms │ │ ├── FormBase.php │ │ └── PersonFormBase.php │ ├── implements │ │ ├── assignable │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ └── vardefs.php │ │ ├── security_groups │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ └── vardefs.php │ │ └── team_security │ │ │ ├── language │ │ │ └── en_us.lang.php │ │ │ └── vardefs.php │ ├── templates │ │ ├── basic │ │ │ ├── Basic.php │ │ │ ├── Dashlets │ │ │ │ └── Dashlet │ │ │ │ │ ├── m-n-Dashlet.meta.php │ │ │ │ │ └── m-n-Dashlet.php │ │ │ ├── icons │ │ │ │ ├── Createbasic.gif │ │ │ │ ├── Createbasic.svg │ │ │ │ ├── basic.gif │ │ │ │ ├── basic.svg │ │ │ │ ├── basic_32.gif │ │ │ │ ├── basic_32.svg │ │ │ │ ├── sidebar │ │ │ │ │ └── modules │ │ │ │ │ │ └── basic.svg │ │ │ │ └── sub_panel │ │ │ │ │ ├── basic.svg │ │ │ │ │ └── modules │ │ │ │ │ └── basic.svg │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ │ ├── SearchFields.php │ │ │ │ ├── dashletviewdefs.php │ │ │ │ ├── detailviewdefs.php │ │ │ │ ├── editviewdefs.php │ │ │ │ ├── listviewdefs.php │ │ │ │ ├── metafiles.php │ │ │ │ ├── popupdefs.php │ │ │ │ ├── quickcreatedefs.php │ │ │ │ ├── searchdefs.php │ │ │ │ └── subpanels │ │ │ │ │ └── default.php │ │ │ └── vardefs.php │ │ ├── company │ │ │ ├── Company.php │ │ │ ├── icons │ │ │ │ ├── Createcompany.gif │ │ │ │ ├── company.gif │ │ │ │ ├── company.svg │ │ │ │ ├── company_32.gif │ │ │ │ ├── company_32.svg │ │ │ │ ├── sidebar │ │ │ │ │ └── modules │ │ │ │ │ │ └── company.svg │ │ │ │ └── sub_panel │ │ │ │ │ ├── company.svg │ │ │ │ │ └── modules │ │ │ │ │ └── company.svg │ │ │ ├── language │ │ │ │ ├── application │ │ │ │ │ └── en_us.lang.php │ │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ │ ├── SearchFields.php │ │ │ │ ├── dashletviewdefs.php │ │ │ │ ├── detailviewdefs.php │ │ │ │ ├── editviewdefs.php │ │ │ │ ├── listviewdefs.php │ │ │ │ ├── metafiles.php │ │ │ │ ├── popupdefs.php │ │ │ │ ├── quickcreatedefs.php │ │ │ │ ├── searchdefs.php │ │ │ │ └── subpanels │ │ │ │ │ └── default.php │ │ │ └── vardefs.php │ │ ├── file │ │ │ ├── File.php │ │ │ ├── controller.php │ │ │ ├── icons │ │ │ │ ├── Createfile.gif │ │ │ │ ├── Createfile.svg │ │ │ │ ├── file.gif │ │ │ │ ├── file.svg │ │ │ │ ├── file_32.gif │ │ │ │ ├── file_32.svg │ │ │ │ ├── sidebar │ │ │ │ │ └── modules │ │ │ │ │ │ └── file.svg │ │ │ │ └── sub_panel │ │ │ │ │ ├── file.svg │ │ │ │ │ └── modules │ │ │ │ │ └── file.svg │ │ │ ├── language │ │ │ │ ├── application │ │ │ │ │ └── en_us.lang.php │ │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ │ ├── SearchFields.php │ │ │ │ ├── dashletviewdefs.php │ │ │ │ ├── detailviewdefs.php │ │ │ │ ├── editviewdefs.php │ │ │ │ ├── listviewdefs.php │ │ │ │ ├── metafiles.php │ │ │ │ ├── quickcreatedefs.php │ │ │ │ ├── searchdefs.php │ │ │ │ └── subpanels │ │ │ │ │ └── default.php │ │ │ ├── vardefs.php │ │ │ └── views │ │ │ │ └── view.edit.php │ │ ├── issue │ │ │ ├── Issue.php │ │ │ ├── config.php │ │ │ ├── icons │ │ │ │ ├── Createissue.gif │ │ │ │ ├── Createissue.svg │ │ │ │ ├── issue.gif │ │ │ │ ├── issue.svg │ │ │ │ ├── issue_32.gif │ │ │ │ ├── issue_32.svg │ │ │ │ ├── sidebar │ │ │ │ │ └── modules │ │ │ │ │ │ └── issue.svg │ │ │ │ └── sub_panel │ │ │ │ │ ├── issue.svg │ │ │ │ │ └── modules │ │ │ │ │ └── issue.svg │ │ │ ├── language │ │ │ │ ├── application │ │ │ │ │ └── en_us.lang.php │ │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ │ ├── SearchFields.php │ │ │ │ ├── dashletviewdefs.php │ │ │ │ ├── detailviewdefs.php │ │ │ │ ├── editviewdefs.php │ │ │ │ ├── listviewdefs.php │ │ │ │ ├── metafiles.php │ │ │ │ ├── popupdefs.php │ │ │ │ ├── quickcreatedefs.php │ │ │ │ ├── searchdefs.php │ │ │ │ └── subpanels │ │ │ │ │ └── default.php │ │ │ └── vardefs.php │ │ ├── person │ │ │ ├── Person.php │ │ │ ├── config.php │ │ │ ├── icons │ │ │ │ ├── Createperson.gif │ │ │ │ ├── Createperson.svg │ │ │ │ ├── person.gif │ │ │ │ ├── person.svg │ │ │ │ ├── person_32.gif │ │ │ │ ├── person_32.svg │ │ │ │ ├── sidebar │ │ │ │ │ └── modules │ │ │ │ │ │ └── person.svg │ │ │ │ └── sub_panel │ │ │ │ │ ├── modules │ │ │ │ │ └── person.svg │ │ │ │ │ └── person.svg │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ │ ├── SearchFields.php │ │ │ │ ├── dashletviewdefs.php │ │ │ │ ├── detailviewdefs.php │ │ │ │ ├── editviewdefs.php │ │ │ │ ├── listviewdefs.php │ │ │ │ ├── metafiles.php │ │ │ │ ├── popupdefs.php │ │ │ │ ├── quickcreatedefs.php │ │ │ │ ├── searchdefs.php │ │ │ │ └── subpanels │ │ │ │ │ └── default.php │ │ │ └── vardefs.php │ │ └── sale │ │ │ ├── Chance.php │ │ │ ├── Sale.php │ │ │ ├── icons │ │ │ ├── Createchance.gif │ │ │ ├── Createsale.gif │ │ │ ├── Createsale.svg │ │ │ ├── chance.gif │ │ │ ├── chance_32.gif │ │ │ ├── sale.gif │ │ │ ├── sale.svg │ │ │ ├── sale_32.gif │ │ │ ├── sale_32.svg │ │ │ ├── sidebar │ │ │ │ └── modules │ │ │ │ │ └── sale.svg │ │ │ └── sub_panel │ │ │ │ ├── modules │ │ │ │ └── sale.svg │ │ │ │ └── sale.svg │ │ │ ├── language │ │ │ ├── application │ │ │ │ └── en_us.lang.php │ │ │ └── en_us.lang.php │ │ │ ├── metadata │ │ │ ├── SearchFields.php │ │ │ ├── dashletviewdefs.php │ │ │ ├── detailviewdefs.php │ │ │ ├── editviewdefs.php │ │ │ ├── listviewdefs.php │ │ │ ├── metafiles.php │ │ │ ├── popupdefs.php │ │ │ ├── quickcreatedefs.php │ │ │ ├── searchdefs.php │ │ │ └── subpanels │ │ │ │ └── default.php │ │ │ └── vardefs.php │ └── translated_prefix.php ├── SugarPHPMailer.php ├── SugarQueue │ ├── SugarCronJobs.php │ ├── SugarCronRemoteJobs.php │ └── SugarJobQueue.php ├── SugarSQLValidate.php ├── SugarTheme │ ├── SugarSprites.php │ ├── SugarTheme.php │ ├── SugarThemeRegistry.php │ ├── cssmin.php │ └── getImage.php ├── SugarTinyMCE.php ├── SugarXHprof │ ├── SugarXHprof.php │ └── xhprof_lib │ │ ├── display │ │ ├── typeahead_common.php │ │ └── xhprof.php │ │ └── utils │ │ ├── callgraph_utils.php │ │ ├── xhprof_lib.php │ │ └── xhprof_runs.php ├── Sugar_Smarty.php ├── Sugarpdf │ ├── FontManager.php │ ├── Sugarpdf.php │ ├── SugarpdfFactory.php │ ├── SugarpdfHelper.php │ ├── sugarpdf │ │ └── sugarpdf.smarty.php │ ├── sugarpdf_config.php │ └── sugarpdf_default.php ├── SuiteEditor │ ├── SuiteEditorConnector.php │ ├── SuiteEditorDirectHTML.php │ ├── SuiteEditorInterface.php │ ├── SuiteEditorMozaik.php │ ├── SuiteEditorSettings.php │ ├── SuiteEditorSettingsForDirectHTML.php │ ├── SuiteEditorSettingsForMozaik.php │ ├── SuiteEditorSettingsForTinyMCE.php │ ├── SuiteEditorTinyMCE.php │ └── tpls │ │ ├── SuiteEditorConnector.tpl │ │ ├── SuiteEditorDirectHTML.tpl │ │ ├── SuiteEditorMozaik.tpl │ │ └── SuiteEditorTinyMCE.tpl ├── SuiteGraphs │ ├── RGraphIncludes.php │ └── rgraph │ │ ├── css │ │ ├── ModalDialog.css │ │ ├── animations.css │ │ └── website.css │ │ ├── default.html │ │ ├── images │ │ ├── bg.png │ │ ├── bullet.png │ │ ├── facebook-large.png │ │ ├── google-plus-large.png │ │ ├── logo.png │ │ ├── meter-image-sd-needle.png │ │ ├── meter-image-sd.png │ │ ├── meter-sketch-needle.png │ │ ├── meter-sketch.png │ │ ├── odometer-background.png │ │ ├── rgraph.jpg │ │ ├── title.png │ │ └── twitter-large.png │ │ ├── libraries │ │ ├── RGraph.bar.js │ │ ├── RGraph.bipolar.js │ │ ├── RGraph.common.annotate.js │ │ ├── RGraph.common.context.js │ │ ├── RGraph.common.core.js │ │ ├── RGraph.common.csv.js │ │ ├── RGraph.common.deprecated.js │ │ ├── RGraph.common.dynamic.js │ │ ├── RGraph.common.effects.js │ │ ├── RGraph.common.key.js │ │ ├── RGraph.common.resizing.js │ │ ├── RGraph.common.tooltips.js │ │ ├── RGraph.common.zoom.js │ │ ├── RGraph.drawing.background.js │ │ ├── RGraph.drawing.circle.js │ │ ├── RGraph.drawing.image.js │ │ ├── RGraph.drawing.marker1.js │ │ ├── RGraph.drawing.marker2.js │ │ ├── RGraph.drawing.marker3.js │ │ ├── RGraph.drawing.poly.js │ │ ├── RGraph.drawing.rect.js │ │ ├── RGraph.drawing.text.js │ │ ├── RGraph.drawing.xaxis.js │ │ ├── RGraph.drawing.yaxis.js │ │ ├── RGraph.fuel.js │ │ ├── RGraph.funnel.js │ │ ├── RGraph.gantt.js │ │ ├── RGraph.gauge.js │ │ ├── RGraph.hbar.js │ │ ├── RGraph.hprogress.js │ │ ├── RGraph.line.js │ │ ├── RGraph.meter.js │ │ ├── RGraph.modaldialog.js │ │ ├── RGraph.odo.js │ │ ├── RGraph.pie.js │ │ ├── RGraph.radar.js │ │ ├── RGraph.rose.js │ │ ├── RGraph.rscatter.js │ │ ├── RGraph.scatter.js │ │ ├── RGraph.thermometer.js │ │ ├── RGraph.vprogress.js │ │ ├── RGraph.waterfall.js │ │ └── financial-data.js │ │ ├── license.txt │ │ └── scripts │ │ ├── jsmin │ │ └── jsmin.txt ├── SuiteMozaik.php ├── TemplateHandler │ └── TemplateHandler.php ├── TestCaseAbstract.php ├── TimeDate.php ├── URIFilter.php ├── UploadFile.php ├── UploadMultipleFiles.php ├── UploadStream.php ├── VarDefHandler │ ├── VarDefHandler.php │ ├── listvardefoverride.php │ └── vardef_meta_arrays.php ├── Zend_Oauth_Provider.php ├── clean.php ├── connectors │ ├── ConnectorFactory.php │ ├── component.php │ ├── filters │ │ ├── FilterFactory.php │ │ └── default │ │ │ └── filter.php │ ├── formatters │ │ ├── FormatterFactory.php │ │ ├── default │ │ │ ├── company_detail.js │ │ │ └── formatter.php │ │ └── ext │ │ │ ├── rest │ │ │ └── tpls │ │ │ │ └── default.tpl │ │ │ └── soap │ │ │ └── tpls │ │ │ └── default.tpl │ ├── sources │ │ ├── SourceFactory.php │ │ ├── default │ │ │ └── source.php │ │ ├── ext │ │ │ ├── eapm │ │ │ │ └── eapm.php │ │ │ ├── rest │ │ │ │ └── rest.php │ │ │ └── soap │ │ │ │ └── soap.php │ │ └── loc │ │ │ └── xml.php │ └── utils │ │ ├── ConnectorHtmlHelper.php │ │ ├── ConnectorHtmlHelperFactory.php │ │ └── ConnectorUtils.php ├── contextMenus │ ├── contextMenu.php │ └── menuDefs │ │ ├── sugarAccount.php │ │ ├── sugarObject.php │ │ └── sugarPerson.php ├── controller │ └── Controller.php ├── database │ ├── DBHelper.php │ ├── DBManager.php │ ├── DBManagerFactory.php │ ├── FreeTDSHelper.php │ ├── FreeTDSManager.php │ ├── MssqlHelper.php │ ├── MssqlManager.php │ ├── MysqlHelper.php │ ├── MysqlManager.php │ ├── MysqliManager.php │ └── SqlsrvManager.php ├── dir_inc.php ├── entryPoint.php ├── entryPointConfirmOptInConnector.php ├── export_utils.php ├── externalAPI │ ├── Base │ │ ├── ExternalAPIBase.php │ │ ├── ExternalAPIPlugin.php │ │ ├── ExternalOAuthAPIPlugin.php │ │ ├── OAuthPluginBase.php │ │ ├── WebDocument.php │ │ ├── WebFeed.php │ │ └── WebMeeting.php │ ├── ExternalAPIFactory.php │ └── cmis_repository_wrapper.php ├── fonts │ ├── Courier-Bold.afm │ ├── Courier-BoldOblique.afm │ ├── Courier-Oblique.afm │ ├── Courier.afm │ ├── Helvetica-Bold.afm │ ├── Helvetica-BoldOblique.afm │ ├── Helvetica-Oblique.afm │ ├── Helvetica.afm │ ├── License.html │ ├── Times-Bold.afm │ ├── Times-BoldItalic.afm │ ├── Times-Italic.afm │ └── Times-Roman.afm ├── formbase.php ├── generic │ ├── DeleteRelationship.php │ ├── LayoutManager.php │ ├── Save2.php │ └── SugarWidgets │ │ ├── SugarWidget.php │ │ ├── SugarWidgetField.php │ │ ├── SugarWidgetFieldCronSchedule.php │ │ ├── SugarWidgetFieldbool.php │ │ ├── SugarWidgetFieldchar.php │ │ ├── SugarWidgetFieldcurrency.php │ │ ├── SugarWidgetFieldcurrency_id.php │ │ ├── SugarWidgetFielddate.php │ │ ├── SugarWidgetFielddatepicker.php │ │ ├── SugarWidgetFielddatetime.php │ │ ├── SugarWidgetFielddatetimecombo.php │ │ ├── SugarWidgetFielddecimal.php │ │ ├── SugarWidgetFielddouble.php │ │ ├── SugarWidgetFielddynamicenum.php │ │ ├── SugarWidgetFieldemail.php │ │ ├── SugarWidgetFieldenum.php │ │ ├── SugarWidgetFieldfile.php │ │ ├── SugarWidgetFieldfloat.php │ │ ├── SugarWidgetFieldfullname.php │ │ ├── SugarWidgetFieldid.php │ │ ├── SugarWidgetFieldimage.php │ │ ├── SugarWidgetFieldint.php │ │ ├── SugarWidgetFieldlong.php │ │ ├── SugarWidgetFieldlongtext.php │ │ ├── SugarWidgetFieldmultienum.php │ │ ├── SugarWidgetFieldname.php │ │ ├── SugarWidgetFieldnum.php │ │ ├── SugarWidgetFieldparent_type.php │ │ ├── SugarWidgetFieldphone.php │ │ ├── SugarWidgetFieldradioenum.php │ │ ├── SugarWidgetFieldrelate.php │ │ ├── SugarWidgetFieldsingleenum.php │ │ ├── SugarWidgetFieldtext.php │ │ ├── SugarWidgetFieldtime.php │ │ ├── SugarWidgetFieldurl.php │ │ ├── SugarWidgetFielduser_name.php │ │ ├── SugarWidgetFieldvarchar.php │ │ ├── SugarWidgetFieldwysiwyg.php │ │ ├── SugarWidgetReportField.php │ │ ├── SugarWidgetSubPanelActivitiesStatusField.php │ │ ├── SugarWidgetSubPanelCheck.php │ │ ├── SugarWidgetSubPanelCloseButton.php │ │ ├── SugarWidgetSubPanelConcat.php │ │ ├── SugarWidgetSubPanelDelegatesSelectButton.php │ │ ├── SugarWidgetSubPanelDeleteButton.php │ │ ├── SugarWidgetSubPanelDetailViewLink.php │ │ ├── SugarWidgetSubPanelEditButton.php │ │ ├── SugarWidgetSubPanelEditRoleButton.php │ │ ├── SugarWidgetSubPanelEditSecurityGroupUserButton.php │ │ ├── SugarWidgetSubPanelEmailLink.php │ │ ├── SugarWidgetSubPanelGetLatestButton.php │ │ ├── SugarWidgetSubPanelIcon.php │ │ ├── SugarWidgetSubPanelLoadSignedButton.php │ │ ├── SugarWidgetSubPanelManageAcceptancesButton.php │ │ ├── SugarWidgetSubPanelManageDelegatesButton.php │ │ ├── SugarWidgetSubPanelRelFieldEditButton.php │ │ ├── SugarWidgetSubPanelRemoveButton.php │ │ ├── SugarWidgetSubPanelRemoveButtonAccount.php │ │ ├── SugarWidgetSubPanelRemoveButtonMeetings.php │ │ ├── SugarWidgetSubPanelRemoveButtonProjects.php │ │ ├── SugarWidgetSubPanelSelectAllButton.php │ │ ├── SugarWidgetSubPanelSendInvitesButton.php │ │ ├── SugarWidgetSubPanelTopArchiveEmailButton.php │ │ ├── SugarWidgetSubPanelTopButton.php │ │ ├── SugarWidgetSubPanelTopButtonQuickCreate.php │ │ ├── SugarWidgetSubPanelTopButton_c.php │ │ ├── SugarWidgetSubPanelTopComposeEmailButton.php │ │ ├── SugarWidgetSubPanelTopCreateAccountNameButton.php │ │ ├── SugarWidgetSubPanelTopCreateCampaignLogEntryButton.php │ │ ├── SugarWidgetSubPanelTopCreateCampaignMarketingEmailButton.php │ │ ├── SugarWidgetSubPanelTopCreateLeadNameButton.php │ │ ├── SugarWidgetSubPanelTopCreateNoteButton.php │ │ ├── SugarWidgetSubPanelTopCreateTaskButton.php │ │ ├── SugarWidgetSubPanelTopFilterButton.php │ │ ├── SugarWidgetSubPanelTopMessage.php │ │ ├── SugarWidgetSubPanelTopScheduleCallButton.php │ │ ├── SugarWidgetSubPanelTopScheduleMeetingButton.php │ │ ├── SugarWidgetSubPanelTopSelectAccountButton.php │ │ ├── SugarWidgetSubPanelTopSelectButton.php │ │ ├── SugarWidgetSubPanelTopSelectContactsButton.php │ │ ├── SugarWidgetSubPanelTopSelectUsersButton.php │ │ └── SugarWidgetSubPanelTopSummaryButton.php ├── get_form_header.tpl ├── globalControlLinks.php ├── images │ ├── SugarPlanet.swf │ ├── blank.gif │ ├── cog.png │ ├── configure.png │ ├── create_users.png │ ├── cube_bg.gif │ ├── default-profile.png │ ├── default_user_feed_picture.png │ ├── docs.png │ ├── forums.png │ ├── import.png │ ├── install_themes.jpg │ ├── iphone-listArrow.png │ ├── iphone-toolbar.png │ ├── kb.png │ ├── options.gif │ ├── options_up.gif │ ├── powered_by_sugarcrm.gif │ ├── poweredby_sugarcrm.png │ ├── poweredby_sugarcrm_65.png │ ├── rss_xml.gif │ ├── seed_chris_id.gif │ ├── seed_jim_id.gif │ ├── seed_max_id.gif │ ├── seed_sally_id.gif │ ├── seed_sarah_id.gif │ ├── seed_will_id.gif │ ├── settings.png │ ├── spacer.png │ ├── start.png │ ├── sugar_icon.ico │ ├── sugar_md_open.png │ ├── sugar_wizard_welcome.jpg │ ├── sugarcrm_about_logo.gif │ ├── sugarcrm_copyright_logo.jpg │ ├── sugarsales_myarea.png │ ├── suite_logo.png │ ├── suitecrm_login.png │ ├── tour │ │ ├── FirstFrame.png │ │ ├── arrow.png │ │ ├── arrow_ie.png │ │ └── profile_link.png │ ├── university.png │ └── university2.png ├── javascript │ ├── EmailsComposeViewModal.js │ ├── ajaxUI.js │ ├── alerts.js │ ├── bindWithDelay.js │ ├── c3 │ │ └── c3.min.css │ ├── calendar.js │ ├── checkbox.js │ ├── cookie.js │ ├── dashlets.js │ ├── getYUIComboFile.php │ ├── importWizard.js │ ├── include.js │ ├── iscroll.js │ ├── javascript.php │ ├── jquery.js │ ├── jquery │ │ ├── bootstrap.min.js │ │ ├── footable.js │ │ ├── html5shiv.min.js │ │ ├── jquery-min.js │ │ ├── jquery-ui-min.js │ │ ├── jquery.browser.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dialogTitle.js │ │ ├── jquery.effects.custombounce.js │ │ ├── jquery.elementReady.js │ │ ├── jquery.highLight.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.hoverIntent.js │ │ ├── jquery.hoverscroll.js │ │ ├── jquery.js │ │ ├── jquery.json-2.3.js │ │ ├── jquery.popoverext.js │ │ ├── jquery.showLoading.js │ │ ├── jquery.sugarMenu.js │ │ ├── jquery.superfish.js │ │ ├── jquery.tipTip.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── markitup │ │ │ ├── jquery.markitup.js │ │ │ ├── sets │ │ │ │ └── default │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ ├── skins │ │ │ │ └── simple │ │ │ │ │ ├── images │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ └── submenu.png │ │ │ │ │ └── style.css │ │ │ └── templates │ │ │ │ ├── preview.css │ │ │ │ └── preview.html │ │ ├── respond.min.js │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ └── jquery.ui.all.css │ ├── jsAlerts.php │ ├── jsclass_async.js │ ├── jsclass_base.js │ ├── jstree │ │ ├── .gitignore │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── demo │ │ │ ├── README.md │ │ │ └── basic │ │ │ │ ├── index.html │ │ │ │ └── root.json │ │ ├── dist │ │ │ ├── jstree.js │ │ │ ├── jstree.min.js │ │ │ └── themes │ │ │ │ ├── default-dark │ │ │ │ ├── 32px.png │ │ │ │ ├── 40px.png │ │ │ │ ├── style.css │ │ │ │ ├── style.min.css │ │ │ │ └── throbber.gif │ │ │ │ └── default │ │ │ │ ├── 32px.png │ │ │ │ ├── 40px.png │ │ │ │ ├── style.css │ │ │ │ ├── style.min.css │ │ │ │ └── throbber.gif │ │ ├── gruntfile.js │ │ ├── jstree.jquery.json │ │ ├── package.json │ │ ├── src │ │ │ ├── intro.js │ │ │ ├── jstree.changed.js │ │ │ ├── jstree.checkbox.js │ │ │ ├── jstree.conditionalselect.js │ │ │ ├── jstree.contextmenu.js │ │ │ ├── jstree.dnd.js │ │ │ ├── jstree.js │ │ │ ├── jstree.massload.js │ │ │ ├── jstree.search.js │ │ │ ├── jstree.sort.js │ │ │ ├── jstree.state.js │ │ │ ├── jstree.types.js │ │ │ ├── jstree.unique.js │ │ │ ├── jstree.wholerow.js │ │ │ ├── misc.js │ │ │ ├── outro.js │ │ │ ├── sample.js │ │ │ ├── themes │ │ │ │ ├── base.less │ │ │ │ ├── default-dark │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.less │ │ │ │ │ └── throbber.gif │ │ │ │ ├── default │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.less │ │ │ │ │ └── throbber.gif │ │ │ │ ├── main.less │ │ │ │ ├── mixins.less │ │ │ │ └── responsive.less │ │ │ └── vakata-jstree.js │ │ └── test │ │ │ ├── unit │ │ │ ├── index.html │ │ │ ├── libs │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ └── test.js │ │ │ └── visual │ │ │ ├── desktop │ │ │ └── index.html │ │ │ ├── mobile │ │ │ └── index.html │ │ │ └── screenshots │ │ │ ├── desktop │ │ │ ├── .png │ │ │ ├── desktop.png │ │ │ └── home.png │ │ │ └── mobile │ │ │ ├── .png │ │ │ ├── home.png │ │ │ └── mobile.png │ ├── menu.js │ ├── message-box.js │ ├── moment.min.js │ ├── mozaik │ │ ├── README.md │ │ ├── colorpicker │ │ │ ├── css │ │ │ │ ├── colorpicker.css │ │ │ │ └── layout.css │ │ │ ├── images │ │ │ │ ├── blank.gif │ │ │ │ ├── colorpicker_background.png │ │ │ │ ├── colorpicker_hex.png │ │ │ │ ├── colorpicker_hsb_b.png │ │ │ │ ├── colorpicker_hsb_h.png │ │ │ │ ├── colorpicker_hsb_s.png │ │ │ │ ├── colorpicker_indic.gif │ │ │ │ ├── colorpicker_overlay.png │ │ │ │ ├── colorpicker_rgb_b.png │ │ │ │ ├── colorpicker_rgb_g.png │ │ │ │ ├── colorpicker_rgb_r.png │ │ │ │ ├── colorpicker_select.gif │ │ │ │ ├── colorpicker_submit.png │ │ │ │ ├── custom_background.png │ │ │ │ ├── custom_hex.png │ │ │ │ ├── custom_hsb_b.png │ │ │ │ ├── custom_hsb_h.png │ │ │ │ ├── custom_hsb_s.png │ │ │ │ ├── custom_indic.gif │ │ │ │ ├── custom_rgb_b.png │ │ │ │ ├── custom_rgb_g.png │ │ │ │ ├── custom_rgb_r.png │ │ │ │ ├── custom_submit.png │ │ │ │ ├── select.png │ │ │ │ ├── select2.png │ │ │ │ └── slider.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── eye.js │ │ │ │ ├── jquery.js │ │ │ │ ├── layout.js │ │ │ │ └── utils.js │ │ ├── img │ │ │ ├── 725.gif │ │ │ ├── archive46.png │ │ │ ├── back57.png │ │ │ ├── check30.png │ │ │ ├── cogwheel.png │ │ │ ├── computing10.png │ │ │ ├── delete81.png │ │ │ ├── direction401.png │ │ │ ├── paint.png │ │ │ └── pinch.png │ │ ├── jquery.mozaik.css │ │ ├── jquery.mozaik.js │ │ ├── template.html │ │ ├── tpls │ │ │ └── default │ │ │ │ ├── content1.html │ │ │ │ ├── content2.html │ │ │ │ ├── content3.html │ │ │ │ ├── footer.html │ │ │ │ ├── headline.html │ │ │ │ ├── image1left.html │ │ │ │ ├── image1right.html │ │ │ │ ├── image2.html │ │ │ │ ├── image3.html │ │ │ │ ├── images │ │ │ │ ├── sample.jpg │ │ │ │ └── sample1.png │ │ │ │ ├── styles │ │ │ │ └── default.css │ │ │ │ └── thumbs │ │ │ │ ├── content1.jpg │ │ │ │ ├── content1.png │ │ │ │ ├── content2.jpg │ │ │ │ ├── content2.png │ │ │ │ ├── content3.jpg │ │ │ │ ├── content3.png │ │ │ │ ├── footer.jpg │ │ │ │ ├── footer.png │ │ │ │ ├── headline.jpg │ │ │ │ ├── headline.png │ │ │ │ ├── image1left.jpg │ │ │ │ ├── image1left.png │ │ │ │ ├── image1right.jpg │ │ │ │ ├── image1right.png │ │ │ │ ├── image2.jpg │ │ │ │ ├── image2.png │ │ │ │ ├── image3.jpg │ │ │ │ └── image3.png │ │ └── vendor │ │ │ ├── gymadarasz │ │ │ └── imagesloaded │ │ │ │ ├── .gitignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── composer.json │ │ │ │ ├── contributing.md │ │ │ │ ├── gulpfile.js │ │ │ │ ├── imagesloaded.js │ │ │ │ ├── imagesloaded.pkgd.js │ │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ │ ├── package.json │ │ │ │ ├── sandbox │ │ │ │ ├── background │ │ │ │ │ ├── css │ │ │ │ │ │ └── background.css │ │ │ │ │ └── index.html │ │ │ │ └── progress │ │ │ │ │ ├── index.html │ │ │ │ │ └── progress.js │ │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── tests.css │ │ │ │ ├── img │ │ │ │ ├── blue-shell.jpg │ │ │ │ ├── bowser-jr.jpg │ │ │ │ └── thunder-cloud.jpg │ │ │ │ ├── index.html │ │ │ │ └── unit │ │ │ │ ├── append.js │ │ │ │ ├── background.js │ │ │ │ ├── basics.js │ │ │ │ ├── data-uri.js │ │ │ │ ├── jquery-fail.js │ │ │ │ ├── jquery-success.js │ │ │ │ ├── local-files.js │ │ │ │ ├── no-images.js │ │ │ │ ├── non-element.js │ │ │ │ ├── selector-string.js │ │ │ │ └── single-element.js │ │ │ └── tinymce │ │ │ └── tinymce │ │ │ ├── .npmignore │ │ │ ├── bower.json │ │ │ ├── changelog.txt │ │ │ ├── composer.json │ │ │ ├── jquery.tinymce.min.js │ │ │ ├── license.txt │ │ │ ├── package.json │ │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── layer │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── moxieplayer.swf │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── readme.md │ │ │ ├── skins │ │ │ └── lightgray │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ └── skin.min.css │ │ │ ├── themes │ │ │ └── modern │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ │ ├── tinymce.jquery.js │ │ │ ├── tinymce.jquery.min.js │ │ │ ├── tinymce.js │ │ │ └── tinymce.min.js │ ├── phpjs │ │ ├── get_html_translation_table.js │ │ ├── html_entity_decode.js │ │ ├── htmlentities.js │ │ └── license.js │ ├── pivottable │ │ └── pivot.css │ ├── popup_helper.js │ ├── popup_parent_helper.js │ ├── qtip │ │ ├── imagesloaded.pkg.min.js │ │ ├── imagesloaded.pkg.min.js.map │ │ ├── jquery.qtip.min.css │ │ ├── jquery.qtip.min.js │ │ ├── jquery.qtip.min.js.map │ │ └── jquery.qtip.min.map │ ├── quickCompose.js │ ├── quicksearch.js │ ├── report_additionals.js │ ├── sugar_3.js │ ├── sugar_connection_event_listener.js │ ├── sugar_yui_overrides.js │ ├── sugarwidgets │ │ ├── SugarYUILoader.js │ │ └── SugarYUIWidgets.js │ ├── suitespots │ │ └── suitespots.js │ ├── tiny_mce │ │ ├── langs │ │ │ └── en.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── advhr │ │ │ │ ├── css │ │ │ │ │ └── advhr.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── rule.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── rule.htm │ │ │ ├── advimage │ │ │ │ ├── css │ │ │ │ │ └── advimage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ └── sample.gif │ │ │ │ ├── js │ │ │ │ │ └── image.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── advlink │ │ │ │ ├── css │ │ │ │ │ └── advlink.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── advlink.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── link.htm │ │ │ ├── advlist │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autolink │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autoresize │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autosave │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── bbcode │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── directionality │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── emotions │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── emotions.htm │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── js │ │ │ │ │ └── emotions.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── example │ │ │ │ ├── dialog.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ └── example.gif │ │ │ │ ├── js │ │ │ │ │ └── dialog.js │ │ │ │ └── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ ├── example_dependency │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── fullpage │ │ │ │ ├── css │ │ │ │ │ └── fullpage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── fullpage.htm │ │ │ │ ├── js │ │ │ │ │ └── fullpage.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── fullscreen │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── fullscreen.htm │ │ │ ├── iespell │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── inlinepopups │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── skins │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ │ └── vertical.gif │ │ │ │ │ │ └── window.css │ │ │ │ └── template.htm │ │ │ ├── insertdatetime │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── layer │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── legacyoutput │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── lists │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── media.htm │ │ │ │ └── moxieplayer.swf │ │ │ ├── nonbreaking │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── noneditable │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── pagebreak │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── paste │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── preview │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── example.html │ │ │ │ ├── jscripts │ │ │ │ │ └── embed.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── save │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── searchreplace │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── spellchecker │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ └── wline.gif │ │ │ ├── style │ │ │ │ ├── css │ │ │ │ │ └── props.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── props.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── props.htm │ │ │ │ └── readme.txt │ │ │ ├── tabfocus │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── table │ │ │ │ ├── cell.htm │ │ │ │ ├── css │ │ │ │ │ ├── cell.css │ │ │ │ │ ├── row.css │ │ │ │ │ └── table.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── cell.js │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ ├── row.js │ │ │ │ │ └── table.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── merge_cells.htm │ │ │ │ ├── row.htm │ │ │ │ └── table.htm │ │ │ ├── template │ │ │ │ ├── blank.htm │ │ │ │ ├── css │ │ │ │ │ └── template.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── template.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── template.htm │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── visualchars │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── wordcount │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ └── xhtmlxtras │ │ │ │ ├── abbr.htm │ │ │ │ ├── acronym.htm │ │ │ │ ├── attributes.htm │ │ │ │ ├── cite.htm │ │ │ │ ├── css │ │ │ │ ├── attributes.css │ │ │ │ └── popup.css │ │ │ │ ├── del.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── ins.htm │ │ │ │ ├── js │ │ │ │ ├── abbr.js │ │ │ │ ├── acronym.js │ │ │ │ ├── attributes.js │ │ │ │ ├── cite.js │ │ │ │ ├── del.js │ │ │ │ ├── element_common.js │ │ │ │ └── ins.js │ │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── themes │ │ │ ├── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── iframe.gif │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── video.gif │ │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── charmap.js │ │ │ │ │ ├── color_picker.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── link.js │ │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── link.htm │ │ │ │ ├── shortcuts.htm │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ └── ui.css │ │ │ │ │ ├── highcontrast │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ │ └── ui.css │ │ ├── tiny_mce.js │ │ ├── tiny_mce_popup.js │ │ ├── tiny_mce_src.js │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ ├── touchPunch │ │ └── jquery.ui.touch-punch.min.js │ ├── tour.js │ ├── yui │ │ ├── LICENSE.txt │ │ ├── README │ │ ├── build │ │ │ ├── animation │ │ │ │ ├── animation-min.js │ │ │ │ └── animation.js │ │ │ ├── assets │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── asc.gif │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ ├── back-h.png │ │ │ │ │ ├── back-v.png │ │ │ │ │ ├── bar-h.png │ │ │ │ │ ├── bar-v.png │ │ │ │ │ ├── bg-h.gif │ │ │ │ │ ├── bg-v.gif │ │ │ │ │ ├── blankimage.png │ │ │ │ │ ├── button.css │ │ │ │ │ ├── calendar.css │ │ │ │ │ ├── carousel.css │ │ │ │ │ ├── check0.gif │ │ │ │ │ ├── check1.gif │ │ │ │ │ ├── check2.gif │ │ │ │ │ ├── colorpicker.css │ │ │ │ │ ├── container.css │ │ │ │ │ ├── datatable.css │ │ │ │ │ ├── desc.gif │ │ │ │ │ ├── dt-arrow-dn.png │ │ │ │ │ ├── dt-arrow-up.png │ │ │ │ │ ├── editor-knob.gif │ │ │ │ │ ├── editor-sprite-active.gif │ │ │ │ │ ├── editor-sprite.gif │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── header_background.png │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── imagecropper.css │ │ │ │ │ ├── layout.css │ │ │ │ │ ├── layout_sprite.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── logger.css │ │ │ │ │ ├── menu-button-arrow-disabled.png │ │ │ │ │ ├── menu-button-arrow.png │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── menubaritem_submenuindicator.png │ │ │ │ │ ├── menubaritem_submenuindicator_disabled.png │ │ │ │ │ ├── menuitem_checkbox.png │ │ │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ │ │ ├── menuitem_submenuindicator.png │ │ │ │ │ ├── menuitem_submenuindicator_disabled.png │ │ │ │ │ ├── paginator.css │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── profilerviewer.css │ │ │ │ │ ├── progressbar.css │ │ │ │ │ ├── resize.css │ │ │ │ │ ├── simpleeditor.css │ │ │ │ │ ├── skin.css │ │ │ │ │ ├── slider.css │ │ │ │ │ ├── split-button-arrow-active.png │ │ │ │ │ ├── split-button-arrow-disabled.png │ │ │ │ │ ├── split-button-arrow-focus.png │ │ │ │ │ ├── split-button-arrow-hover.png │ │ │ │ │ ├── split-button-arrow.png │ │ │ │ │ ├── sprite.png │ │ │ │ │ ├── sprite.psd │ │ │ │ │ ├── tabview.css │ │ │ │ │ ├── treeview-loading.gif │ │ │ │ │ ├── treeview-sprite.gif │ │ │ │ │ ├── treeview.css │ │ │ │ │ ├── wait.gif │ │ │ │ │ └── yuitest.css │ │ │ ├── autocomplete │ │ │ │ ├── assets │ │ │ │ │ ├── autocomplete-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── autocomplete-skin.css │ │ │ │ │ │ └── autocomplete.css │ │ │ │ ├── autocomplete-min.js │ │ │ │ └── autocomplete.js │ │ │ ├── base │ │ │ │ ├── base-min.css │ │ │ │ └── base.css │ │ │ ├── button │ │ │ │ ├── assets │ │ │ │ │ ├── button-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── button-skin.css │ │ │ │ │ │ ├── button.css │ │ │ │ │ │ ├── menu-button-arrow-disabled.png │ │ │ │ │ │ ├── menu-button-arrow.png │ │ │ │ │ │ ├── split-button-arrow-active.png │ │ │ │ │ │ ├── split-button-arrow-disabled.png │ │ │ │ │ │ ├── split-button-arrow-focus.png │ │ │ │ │ │ ├── split-button-arrow-hover.png │ │ │ │ │ │ └── split-button-arrow.png │ │ │ │ ├── button-min.js │ │ │ │ └── button.js │ │ │ ├── calendar │ │ │ │ ├── assets │ │ │ │ │ ├── calendar-core.css │ │ │ │ │ ├── calendar.css │ │ │ │ │ ├── calgrad.png │ │ │ │ │ ├── callt.gif │ │ │ │ │ ├── calrt.gif │ │ │ │ │ ├── calx.gif │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── calendar-skin.css │ │ │ │ │ │ └── calendar.css │ │ │ │ ├── blank │ │ │ │ │ └── calendar.css │ │ │ │ ├── calendar-min.js │ │ │ │ └── calendar.js │ │ │ ├── carousel │ │ │ │ ├── assets │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── carousel-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ │ ├── carousel-skin.css │ │ │ │ │ │ └── carousel.css │ │ │ │ ├── carousel-min.js │ │ │ │ └── carousel.js │ │ │ ├── colorpicker │ │ │ │ ├── assets │ │ │ │ │ ├── colorpicker-core.css │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── colorpicker-skin.css │ │ │ │ │ │ ├── colorpicker.css │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ └── picker_mask.png │ │ │ │ ├── colorpicker-min.js │ │ │ │ └── colorpicker.js │ │ │ ├── connection │ │ │ │ ├── connection-min.js │ │ │ │ ├── connection.js │ │ │ │ ├── connection.swf │ │ │ │ ├── connection_core-min.js │ │ │ │ └── connection_core.js │ │ │ ├── container │ │ │ │ ├── assets │ │ │ │ │ ├── alrt16_1.gif │ │ │ │ │ ├── blck16_1.gif │ │ │ │ │ ├── close12_1.gif │ │ │ │ │ ├── container-core.css │ │ │ │ │ ├── container.css │ │ │ │ │ ├── hlp16_1.gif │ │ │ │ │ ├── info16_1.gif │ │ │ │ │ ├── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ │ ├── container-skin.css │ │ │ │ │ │ │ └── container.css │ │ │ │ │ ├── tip16_1.gif │ │ │ │ │ └── warn16_1.gif │ │ │ │ ├── container-min.js │ │ │ │ ├── container.js │ │ │ │ ├── container_core-min.js │ │ │ │ └── container_core.js │ │ │ ├── cookie │ │ │ │ ├── cookie-min.js │ │ │ │ └── cookie.js │ │ │ ├── datasource │ │ │ │ ├── datasource-min.js │ │ │ │ └── datasource.js │ │ │ ├── datatable │ │ │ │ ├── assets │ │ │ │ │ ├── datatable-core.css │ │ │ │ │ ├── datatable.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── datatable-skin.css │ │ │ │ │ │ ├── datatable.css │ │ │ │ │ │ ├── dt-arrow-dn.png │ │ │ │ │ │ └── dt-arrow-up.png │ │ │ │ ├── blank │ │ │ │ │ └── datatable.css │ │ │ │ ├── datatable-min.js │ │ │ │ └── datatable.js │ │ │ ├── datemath │ │ │ │ ├── datemath-min.js │ │ │ │ └── datemath.js │ │ │ ├── dom │ │ │ │ ├── dom-min.js │ │ │ │ └── dom.js │ │ │ ├── dragdrop │ │ │ │ ├── dragdrop-min.js │ │ │ │ └── dragdrop.js │ │ │ ├── editor │ │ │ │ ├── assets │ │ │ │ │ ├── editor-core.css │ │ │ │ │ ├── simpleeditor-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── blankimage.png │ │ │ │ │ │ ├── editor-knob.gif │ │ │ │ │ │ ├── editor-skin.css │ │ │ │ │ │ ├── editor-sprite-active.gif │ │ │ │ │ │ ├── editor-sprite.gif │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── simpleeditor-skin.css │ │ │ │ │ │ └── simpleeditor.css │ │ │ │ ├── editor-min.js │ │ │ │ ├── editor.js │ │ │ │ ├── simpleeditor-min.js │ │ │ │ └── simpleeditor.js │ │ │ ├── element-delegate │ │ │ │ ├── element-delegate-min.js │ │ │ │ └── element-delegate.js │ │ │ ├── element │ │ │ │ ├── element-min.js │ │ │ │ └── element.js │ │ │ ├── event-delegate │ │ │ │ ├── event-delegate-min.js │ │ │ │ └── event-delegate.js │ │ │ ├── event-mouseenter │ │ │ │ ├── event-mouseenter-min.js │ │ │ │ └── event-mouseenter.js │ │ │ ├── event-simulate │ │ │ │ ├── event-simulate-min.js │ │ │ │ └── event-simulate.js │ │ │ ├── event │ │ │ │ ├── event-min.js │ │ │ │ └── event.js │ │ │ ├── fonts │ │ │ │ ├── fonts-min.css │ │ │ │ └── fonts.css │ │ │ ├── get │ │ │ │ ├── get-min.js │ │ │ │ └── get.js │ │ │ ├── grids │ │ │ │ ├── grids-min.css │ │ │ │ └── grids.css │ │ │ ├── history │ │ │ │ ├── assets │ │ │ │ │ └── blank.html │ │ │ │ ├── history-min.js │ │ │ │ └── history.js │ │ │ ├── imagecropper │ │ │ │ ├── assets │ │ │ │ │ ├── imagecropper-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── imagecropper-skin.css │ │ │ │ │ │ └── imagecropper.css │ │ │ │ ├── imagecropper-min.js │ │ │ │ └── imagecropper.js │ │ │ ├── imageloader │ │ │ │ ├── imageloader-min.js │ │ │ │ └── imageloader.js │ │ │ ├── json │ │ │ │ ├── json-min.js │ │ │ │ └── json.js │ │ │ ├── layout │ │ │ │ ├── assets │ │ │ │ │ ├── layout-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── layout-skin.css │ │ │ │ │ │ ├── layout.css │ │ │ │ │ │ └── layout_sprite.png │ │ │ │ ├── blank │ │ │ │ │ └── layout.css │ │ │ │ ├── layout-min.js │ │ │ │ └── layout.js │ │ │ ├── logger │ │ │ │ ├── assets │ │ │ │ │ ├── logger-core.css │ │ │ │ │ ├── logger.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── logger-skin.css │ │ │ │ │ │ └── logger.css │ │ │ │ ├── logger-min.js │ │ │ │ └── logger.js │ │ │ ├── menu │ │ │ │ ├── assets │ │ │ │ │ ├── menu-core.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── menu_down_arrow.png │ │ │ │ │ ├── menu_down_arrow_disabled.png │ │ │ │ │ ├── menu_up_arrow.png │ │ │ │ │ ├── menu_up_arrow_disabled.png │ │ │ │ │ ├── menubaritem_submenuindicator.png │ │ │ │ │ ├── menubaritem_submenuindicator_disabled.png │ │ │ │ │ ├── menubaritem_submenuindicator_selected.png │ │ │ │ │ ├── menuitem_checkbox.png │ │ │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ │ │ ├── menuitem_checkbox_selected.png │ │ │ │ │ ├── menuitem_submenuindicator.png │ │ │ │ │ ├── menuitem_submenuindicator_disabled.png │ │ │ │ │ ├── menuitem_submenuindicator_selected.png │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── menu-skin.css │ │ │ │ │ │ ├── menu.css │ │ │ │ │ │ ├── menubaritem_submenuindicator.png │ │ │ │ │ │ ├── menubaritem_submenuindicator_disabled.png │ │ │ │ │ │ ├── menuitem_checkbox.png │ │ │ │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ │ │ │ ├── menuitem_submenuindicator.png │ │ │ │ │ │ └── menuitem_submenuindicator_disabled.png │ │ │ │ ├── blank │ │ │ │ │ └── menu.css │ │ │ │ ├── menu-min.js │ │ │ │ └── menu.js │ │ │ ├── paginator │ │ │ │ ├── assets │ │ │ │ │ ├── paginator-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── paginator-skin.css │ │ │ │ │ │ └── paginator.css │ │ │ │ ├── blank │ │ │ │ │ └── paginator.css │ │ │ │ ├── paginator-min.js │ │ │ │ └── paginator.js │ │ │ ├── profiler │ │ │ │ ├── profiler-min.js │ │ │ │ └── profiler.js │ │ │ ├── profilerviewer │ │ │ │ ├── assets │ │ │ │ │ ├── profilerviewer-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── asc.gif │ │ │ │ │ │ ├── desc.gif │ │ │ │ │ │ ├── header_background.png │ │ │ │ │ │ ├── profilerviewer-skin.css │ │ │ │ │ │ ├── profilerviewer.css │ │ │ │ │ │ └── wait.gif │ │ │ │ ├── profilerviewer-min.js │ │ │ │ └── profilerviewer.js │ │ │ ├── progressbar │ │ │ │ ├── assets │ │ │ │ │ ├── progressbar-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── back-h.png │ │ │ │ │ │ ├── back-v.png │ │ │ │ │ │ ├── bar-h.png │ │ │ │ │ │ ├── bar-v.png │ │ │ │ │ │ ├── progressbar-skin.css │ │ │ │ │ │ └── progressbar.css │ │ │ │ ├── progressbar-min.js │ │ │ │ └── progressbar.js │ │ │ ├── reset-fonts-grids │ │ │ │ └── reset-fonts-grids.css │ │ │ ├── reset-fonts │ │ │ │ └── reset-fonts.css │ │ │ ├── reset │ │ │ │ ├── reset-min.css │ │ │ │ └── reset.css │ │ │ ├── resize │ │ │ │ ├── assets │ │ │ │ │ ├── resize-core.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ ├── layout_sprite.png │ │ │ │ │ │ ├── resize-skin.css │ │ │ │ │ │ └── resize.css │ │ │ │ ├── blank │ │ │ │ │ └── resize.css │ │ │ │ ├── resize-min.js │ │ │ │ └── resize.js │ │ │ ├── selector │ │ │ │ ├── selector-min.js │ │ │ │ └── selector.js │ │ │ ├── slider │ │ │ │ ├── assets │ │ │ │ │ ├── bg-fader.gif │ │ │ │ │ ├── bg-h.gif │ │ │ │ │ ├── bg-v-e.gif │ │ │ │ │ ├── bg-v.gif │ │ │ │ │ ├── left-thumb.png │ │ │ │ │ ├── right-thumb.png │ │ │ │ │ ├── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ │ ├── bg-h.gif │ │ │ │ │ │ │ ├── bg-v.gif │ │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ │ └── slider.css │ │ │ │ │ ├── slider-core.css │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ ├── thumb-bar.gif │ │ │ │ │ ├── thumb-e.gif │ │ │ │ │ ├── thumb-fader.gif │ │ │ │ │ ├── thumb-n.gif │ │ │ │ │ ├── thumb-s.gif │ │ │ │ │ └── thumb-w.gif │ │ │ │ ├── slider-min.js │ │ │ │ └── slider.js │ │ │ ├── storage │ │ │ │ ├── storage-min.js │ │ │ │ └── storage.js │ │ │ ├── stylesheet │ │ │ │ ├── stylesheet-min.js │ │ │ │ └── stylesheet.js │ │ │ ├── swf │ │ │ │ ├── swf-min.js │ │ │ │ └── swf.js │ │ │ ├── swfdetect │ │ │ │ ├── swfdetect-min.js │ │ │ │ └── swfdetect.js │ │ │ ├── tabview │ │ │ │ ├── assets │ │ │ │ │ ├── border_tabs.css │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── skin-sam.css │ │ │ │ │ ├── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ │ ├── tabview-skin.css │ │ │ │ │ │ │ └── tabview.css │ │ │ │ │ ├── tabview-core.css │ │ │ │ │ └── tabview.css │ │ │ │ ├── blank │ │ │ │ │ └── tabview.css │ │ │ │ ├── tabview-min.js │ │ │ │ └── tabview.js │ │ │ ├── treeview │ │ │ │ ├── assets │ │ │ │ │ ├── skins │ │ │ │ │ │ └── sam │ │ │ │ │ │ │ ├── check0.gif │ │ │ │ │ │ │ ├── check1.gif │ │ │ │ │ │ │ ├── check2.gif │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── treeview-loading.gif │ │ │ │ │ │ │ ├── treeview-skin.css │ │ │ │ │ │ │ ├── treeview-sprite.gif │ │ │ │ │ │ │ └── treeview.css │ │ │ │ │ └── treeview-core.css │ │ │ │ ├── blank │ │ │ │ │ └── treeview.css │ │ │ │ ├── treeview-min.js │ │ │ │ └── treeview.js │ │ │ ├── utilities │ │ │ │ └── utilities.js │ │ │ ├── yahoo-dom-event │ │ │ │ └── yahoo-dom-event.js │ │ │ ├── yahoo │ │ │ │ ├── yahoo-min.js │ │ │ │ └── yahoo.js │ │ │ ├── yuiloader-dom-event │ │ │ │ └── yuiloader-dom-event.js │ │ │ ├── yuiloader │ │ │ │ └── yuiloader-min.js │ │ │ └── yuitest │ │ │ │ ├── assets │ │ │ │ ├── skins │ │ │ │ │ └── sam │ │ │ │ │ │ ├── yuitest-skin.css │ │ │ │ │ │ └── yuitest.css │ │ │ │ ├── testlogger.css │ │ │ │ └── yuitest-core.css │ │ │ │ ├── yuitest-min.js │ │ │ │ ├── yuitest.js │ │ │ │ ├── yuitest_core-min.js │ │ │ │ └── yuitest_core.js │ │ ├── index.html │ │ └── ygDDList.js │ └── yui3 │ │ ├── README │ │ ├── assets │ │ ├── bg_hd.gif │ │ ├── bullet-box6x6.gif │ │ ├── bullet4x4.png │ │ ├── cheatsheet-shadow.jpg │ │ ├── cheatsheet-thumbnail.png │ │ ├── download-arrow.png │ │ ├── dpSyntaxHighlighter.css │ │ ├── dpSyntaxHighlighter.js │ │ ├── example-hd-bg.gif │ │ ├── gradient-ex-box.png │ │ ├── gradient-mod.png │ │ ├── gradient-promo.png │ │ ├── logo.gif │ │ ├── syntax.js │ │ ├── title_h_bg.gif │ │ ├── yui-candy.jpg │ │ ├── yui.css │ │ ├── yui.gif │ │ └── yuiDistribution.css │ │ ├── build │ │ ├── anim │ │ │ ├── anim-base-min.js │ │ │ ├── anim-base.js │ │ │ ├── anim-color-min.js │ │ │ ├── anim-color.js │ │ │ ├── anim-curve-min.js │ │ │ ├── anim-curve.js │ │ │ ├── anim-easing-min.js │ │ │ ├── anim-easing.js │ │ │ ├── anim-min.js │ │ │ ├── anim-node-plugin-min.js │ │ │ ├── anim-node-plugin.js │ │ │ ├── anim-scroll-min.js │ │ │ ├── anim-scroll.js │ │ │ ├── anim-xy-min.js │ │ │ ├── anim-xy.js │ │ │ └── anim.js │ │ ├── arraysort │ │ │ ├── arraysort-min.js │ │ │ └── arraysort.js │ │ ├── assets │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── arrows.png │ │ │ │ ├── autocomplete-list.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── bg.png │ │ │ │ ├── console-filters.css │ │ │ │ ├── console.css │ │ │ │ ├── datatable-base.css │ │ │ │ ├── datatable.css │ │ │ │ ├── dial.css │ │ │ │ ├── dt-arrow-dn.png │ │ │ │ ├── dt-arrow-up.png │ │ │ │ ├── horizontal-menu-submenu-indicator.png │ │ │ │ ├── horizontal-menu-submenu-toggle.png │ │ │ │ ├── node-flick.css │ │ │ │ ├── node-menunav.css │ │ │ │ ├── overlay.css │ │ │ │ ├── rail-classic-x.png │ │ │ │ ├── rail-classic-y.png │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── resize-base.css │ │ │ │ ├── resize.css │ │ │ │ ├── scrollview-base.css │ │ │ │ ├── scrollview-paginator.css │ │ │ │ ├── scrollview-scrollbars.css │ │ │ │ ├── skin.css │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider.css │ │ │ │ ├── sprite.png │ │ │ │ ├── tabview.css │ │ │ │ ├── test.css │ │ │ │ ├── thumb-classic-x.png │ │ │ │ ├── thumb-classic-y.png │ │ │ │ ├── thumb-x.png │ │ │ │ ├── thumb-y.png │ │ │ │ ├── tmp.txt │ │ │ │ ├── vertical-menu-submenu-indicator.png │ │ │ │ ├── warn_error.png │ │ │ │ ├── widget-base.css │ │ │ │ ├── widget-stack.css │ │ │ │ └── widget.css │ │ ├── async-queue │ │ │ ├── async-queue-min.js │ │ │ └── async-queue.js │ │ ├── attribute │ │ │ ├── attribute-base-min.js │ │ │ ├── attribute-base.js │ │ │ ├── attribute-complex-min.js │ │ │ ├── attribute-complex.js │ │ │ ├── attribute-min.js │ │ │ └── attribute.js │ │ ├── autocomplete │ │ │ ├── assets │ │ │ │ ├── autocomplete-list-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── autocomplete-list-skin.css │ │ │ │ │ ├── autocomplete-list.css │ │ │ │ │ └── autocomplete.css │ │ │ ├── autocomplete-base-min.js │ │ │ ├── autocomplete-base.js │ │ │ ├── autocomplete-filters-accentfold-min.js │ │ │ ├── autocomplete-filters-accentfold.js │ │ │ ├── autocomplete-filters-min.js │ │ │ ├── autocomplete-filters.js │ │ │ ├── autocomplete-highlighters-accentfold-min.js │ │ │ ├── autocomplete-highlighters-accentfold.js │ │ │ ├── autocomplete-highlighters-min.js │ │ │ ├── autocomplete-highlighters.js │ │ │ ├── autocomplete-list-keys-min.js │ │ │ ├── autocomplete-list-keys.js │ │ │ ├── autocomplete-list-min.js │ │ │ ├── autocomplete-list.js │ │ │ ├── autocomplete-min.js │ │ │ ├── autocomplete-plugin-min.js │ │ │ ├── autocomplete-plugin.js │ │ │ ├── autocomplete-sources-min.js │ │ │ ├── autocomplete-sources.js │ │ │ ├── autocomplete.js │ │ │ └── lang │ │ │ │ ├── autocomplete-list.js │ │ │ │ ├── autocomplete-list_en.js │ │ │ │ ├── autocomplete.js │ │ │ │ └── autocomplete_en.js │ │ ├── base │ │ │ ├── base-base-min.js │ │ │ ├── base-base.js │ │ │ ├── base-build-min.js │ │ │ ├── base-build.js │ │ │ ├── base-min.js │ │ │ ├── base-pluginhost-min.js │ │ │ ├── base-pluginhost.js │ │ │ └── base.js │ │ ├── cache │ │ │ ├── cache-base-min.js │ │ │ ├── cache-base.js │ │ │ ├── cache-min.js │ │ │ ├── cache-offline-min.js │ │ │ ├── cache-offline.js │ │ │ ├── cache-plugin-min.js │ │ │ ├── cache-plugin.js │ │ │ └── cache.js │ │ ├── charts │ │ │ ├── charts-min.js │ │ │ └── charts.js │ │ ├── classnamemanager │ │ │ ├── classnamemanager-min.js │ │ │ └── classnamemanager.js │ │ ├── collection │ │ │ ├── array-extras-min.js │ │ │ ├── array-extras.js │ │ │ ├── array-invoke-min.js │ │ │ ├── array-invoke.js │ │ │ ├── arraylist-add-min.js │ │ │ ├── arraylist-add.js │ │ │ ├── arraylist-filter-min.js │ │ │ ├── arraylist-filter.js │ │ │ ├── arraylist-min.js │ │ │ ├── arraylist.js │ │ │ ├── collection-min.js │ │ │ └── collection.js │ │ ├── compat │ │ │ ├── compat-min.js │ │ │ └── compat.js │ │ ├── console │ │ │ ├── assets │ │ │ │ ├── console-core.css │ │ │ │ ├── console-filters-core.css │ │ │ │ ├── skins │ │ │ │ │ └── sam │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── console-filters-skin.css │ │ │ │ │ │ ├── console-filters.css │ │ │ │ │ │ ├── console-skin.css │ │ │ │ │ │ ├── console.css │ │ │ │ │ │ └── warn_error.png │ │ │ │ └── warn_error.png │ │ │ ├── console-filters-min.js │ │ │ ├── console-filters.js │ │ │ ├── console-min.js │ │ │ ├── console.js │ │ │ └── lang │ │ │ │ ├── console.js │ │ │ │ ├── console_en.js │ │ │ │ └── console_es.js │ │ ├── cookie │ │ │ ├── cookie-min.js │ │ │ └── cookie.js │ │ ├── cssbase │ │ │ ├── base-context-min.css │ │ │ ├── base-context.css │ │ │ ├── base-min.css │ │ │ └── base.css │ │ ├── cssfonts │ │ │ ├── fonts-context-min.css │ │ │ ├── fonts-context.css │ │ │ ├── fonts-min.css │ │ │ └── fonts.css │ │ ├── cssgrids-deprecated │ │ │ ├── grids-context-min.css │ │ │ ├── grids-context.css │ │ │ ├── grids-min.css │ │ │ └── grids.css │ │ ├── cssgrids │ │ │ ├── grids-min.css │ │ │ └── grids.css │ │ ├── cssreset │ │ │ ├── reset-context-min.css │ │ │ ├── reset-context.css │ │ │ ├── reset-min.css │ │ │ └── reset.css │ │ ├── dataschema │ │ │ ├── dataschema-array-min.js │ │ │ ├── dataschema-array.js │ │ │ ├── dataschema-base-min.js │ │ │ ├── dataschema-base.js │ │ │ ├── dataschema-json-min.js │ │ │ ├── dataschema-json.js │ │ │ ├── dataschema-min.js │ │ │ ├── dataschema-text-min.js │ │ │ ├── dataschema-text.js │ │ │ ├── dataschema-xml-min.js │ │ │ ├── dataschema-xml.js │ │ │ └── dataschema.js │ │ ├── datasource │ │ │ ├── datasource-arrayschema-min.js │ │ │ ├── datasource-arrayschema.js │ │ │ ├── datasource-cache-min.js │ │ │ ├── datasource-cache.js │ │ │ ├── datasource-function-min.js │ │ │ ├── datasource-function.js │ │ │ ├── datasource-get-min.js │ │ │ ├── datasource-get.js │ │ │ ├── datasource-io-min.js │ │ │ ├── datasource-io.js │ │ │ ├── datasource-jsonschema-min.js │ │ │ ├── datasource-jsonschema.js │ │ │ ├── datasource-local-min.js │ │ │ ├── datasource-local.js │ │ │ ├── datasource-min.js │ │ │ ├── datasource-polling-min.js │ │ │ ├── datasource-polling.js │ │ │ ├── datasource-textschema-min.js │ │ │ ├── datasource-textschema.js │ │ │ ├── datasource-xmlschema-min.js │ │ │ ├── datasource-xmlschema.js │ │ │ └── datasource.js │ │ ├── datatable │ │ │ ├── assets │ │ │ │ ├── datatable-base-core.css │ │ │ │ ├── datatable-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── datatable-base-skin.css │ │ │ │ │ ├── datatable-base.css │ │ │ │ │ ├── datatable.css │ │ │ │ │ ├── dt-arrow-dn.png │ │ │ │ │ ├── dt-arrow-up.png │ │ │ │ │ └── tmp.txt │ │ │ ├── datatable-base-min.js │ │ │ ├── datatable-base.js │ │ │ ├── datatable-datasource-min.js │ │ │ ├── datatable-datasource.js │ │ │ ├── datatable-min.js │ │ │ ├── datatable-scroll-min.js │ │ │ ├── datatable-scroll.js │ │ │ ├── datatable-sort-min.js │ │ │ ├── datatable-sort.js │ │ │ ├── datatable.js │ │ │ └── lang │ │ │ │ ├── datatable-base.js │ │ │ │ ├── datatable-base_en.js │ │ │ │ ├── datatable-sort.js │ │ │ │ ├── datatable-sort_en.js │ │ │ │ ├── datatable.js │ │ │ │ └── datatable_en.js │ │ ├── datatype │ │ │ ├── datatype-date-format-min.js │ │ │ ├── datatype-date-format.js │ │ │ ├── datatype-date-min.js │ │ │ ├── datatype-date-parse-min.js │ │ │ ├── datatype-date-parse.js │ │ │ ├── datatype-date.js │ │ │ ├── datatype-min.js │ │ │ ├── datatype-number-format-min.js │ │ │ ├── datatype-number-format.js │ │ │ ├── datatype-number-min.js │ │ │ ├── datatype-number-parse-min.js │ │ │ ├── datatype-number-parse.js │ │ │ ├── datatype-number.js │ │ │ ├── datatype-xml-format-min.js │ │ │ ├── datatype-xml-format.js │ │ │ ├── datatype-xml-min.js │ │ │ ├── datatype-xml-parse-min.js │ │ │ ├── datatype-xml-parse.js │ │ │ ├── datatype-xml.js │ │ │ ├── datatype.js │ │ │ └── lang │ │ │ │ ├── datatype-date-format.js │ │ │ │ ├── datatype-date-format_ar-JO.js │ │ │ │ ├── datatype-date-format_ar.js │ │ │ │ ├── datatype-date-format_ca-ES.js │ │ │ │ ├── datatype-date-format_ca.js │ │ │ │ ├── datatype-date-format_da-DK.js │ │ │ │ ├── datatype-date-format_da.js │ │ │ │ ├── datatype-date-format_de-AT.js │ │ │ │ ├── datatype-date-format_de-DE.js │ │ │ │ ├── datatype-date-format_de.js │ │ │ │ ├── datatype-date-format_el-GR.js │ │ │ │ ├── datatype-date-format_el.js │ │ │ │ ├── datatype-date-format_en-AU.js │ │ │ │ ├── datatype-date-format_en-CA.js │ │ │ │ ├── datatype-date-format_en-GB.js │ │ │ │ ├── datatype-date-format_en-IE.js │ │ │ │ ├── datatype-date-format_en-IN.js │ │ │ │ ├── datatype-date-format_en-JO.js │ │ │ │ ├── datatype-date-format_en-MY.js │ │ │ │ ├── datatype-date-format_en-NZ.js │ │ │ │ ├── datatype-date-format_en-PH.js │ │ │ │ ├── datatype-date-format_en-SG.js │ │ │ │ ├── datatype-date-format_en-US.js │ │ │ │ ├── datatype-date-format_en.js │ │ │ │ ├── datatype-date-format_es-AR.js │ │ │ │ ├── datatype-date-format_es-BO.js │ │ │ │ ├── datatype-date-format_es-CL.js │ │ │ │ ├── datatype-date-format_es-CO.js │ │ │ │ ├── datatype-date-format_es-EC.js │ │ │ │ ├── datatype-date-format_es-ES.js │ │ │ │ ├── datatype-date-format_es-MX.js │ │ │ │ ├── datatype-date-format_es-PE.js │ │ │ │ ├── datatype-date-format_es-PY.js │ │ │ │ ├── datatype-date-format_es-US.js │ │ │ │ ├── datatype-date-format_es-UY.js │ │ │ │ ├── datatype-date-format_es-VE.js │ │ │ │ ├── datatype-date-format_es.js │ │ │ │ ├── datatype-date-format_fi-FI.js │ │ │ │ ├── datatype-date-format_fi.js │ │ │ │ ├── datatype-date-format_fr-BE.js │ │ │ │ ├── datatype-date-format_fr-CA.js │ │ │ │ ├── datatype-date-format_fr-FR.js │ │ │ │ ├── datatype-date-format_fr.js │ │ │ │ ├── datatype-date-format_hi-IN.js │ │ │ │ ├── datatype-date-format_hi.js │ │ │ │ ├── datatype-date-format_id-ID.js │ │ │ │ ├── datatype-date-format_id.js │ │ │ │ ├── datatype-date-format_it-IT.js │ │ │ │ ├── datatype-date-format_it.js │ │ │ │ ├── datatype-date-format_ja-JP.js │ │ │ │ ├── datatype-date-format_ja.js │ │ │ │ ├── datatype-date-format_ko-KR.js │ │ │ │ ├── datatype-date-format_ko.js │ │ │ │ ├── datatype-date-format_ms-MY.js │ │ │ │ ├── datatype-date-format_ms.js │ │ │ │ ├── datatype-date-format_nb-NO.js │ │ │ │ ├── datatype-date-format_nb.js │ │ │ │ ├── datatype-date-format_nl-BE.js │ │ │ │ ├── datatype-date-format_nl-NL.js │ │ │ │ ├── datatype-date-format_nl.js │ │ │ │ ├── datatype-date-format_pl-PL.js │ │ │ │ ├── datatype-date-format_pl.js │ │ │ │ ├── datatype-date-format_pt-BR.js │ │ │ │ ├── datatype-date-format_pt.js │ │ │ │ ├── datatype-date-format_ro-RO.js │ │ │ │ ├── datatype-date-format_ro.js │ │ │ │ ├── datatype-date-format_ru-RU.js │ │ │ │ ├── datatype-date-format_ru.js │ │ │ │ ├── datatype-date-format_sv-SE.js │ │ │ │ ├── datatype-date-format_sv.js │ │ │ │ ├── datatype-date-format_th-TH.js │ │ │ │ ├── datatype-date-format_th.js │ │ │ │ ├── datatype-date-format_tr-TR.js │ │ │ │ ├── datatype-date-format_tr.js │ │ │ │ ├── datatype-date-format_vi-VN.js │ │ │ │ ├── datatype-date-format_vi.js │ │ │ │ ├── datatype-date-format_zh-Hans-CN.js │ │ │ │ ├── datatype-date-format_zh-Hans.js │ │ │ │ ├── datatype-date-format_zh-Hant-HK.js │ │ │ │ ├── datatype-date-format_zh-Hant-TW.js │ │ │ │ ├── datatype-date-format_zh-Hant.js │ │ │ │ ├── datatype-date.js │ │ │ │ ├── datatype-date_ar-JO.js │ │ │ │ ├── datatype-date_ar.js │ │ │ │ ├── datatype-date_ca-ES.js │ │ │ │ ├── datatype-date_ca.js │ │ │ │ ├── datatype-date_da-DK.js │ │ │ │ ├── datatype-date_da.js │ │ │ │ ├── datatype-date_de-AT.js │ │ │ │ ├── datatype-date_de-DE.js │ │ │ │ ├── datatype-date_de.js │ │ │ │ ├── datatype-date_el-GR.js │ │ │ │ ├── datatype-date_el.js │ │ │ │ ├── datatype-date_en-AU.js │ │ │ │ ├── datatype-date_en-CA.js │ │ │ │ ├── datatype-date_en-GB.js │ │ │ │ ├── datatype-date_en-IE.js │ │ │ │ ├── datatype-date_en-IN.js │ │ │ │ ├── datatype-date_en-JO.js │ │ │ │ ├── datatype-date_en-MY.js │ │ │ │ ├── datatype-date_en-NZ.js │ │ │ │ ├── datatype-date_en-PH.js │ │ │ │ ├── datatype-date_en-SG.js │ │ │ │ ├── datatype-date_en-US.js │ │ │ │ ├── datatype-date_en.js │ │ │ │ ├── datatype-date_es-AR.js │ │ │ │ ├── datatype-date_es-BO.js │ │ │ │ ├── datatype-date_es-CL.js │ │ │ │ ├── datatype-date_es-CO.js │ │ │ │ ├── datatype-date_es-EC.js │ │ │ │ ├── datatype-date_es-ES.js │ │ │ │ ├── datatype-date_es-MX.js │ │ │ │ ├── datatype-date_es-PE.js │ │ │ │ ├── datatype-date_es-PY.js │ │ │ │ ├── datatype-date_es-US.js │ │ │ │ ├── datatype-date_es-UY.js │ │ │ │ ├── datatype-date_es-VE.js │ │ │ │ ├── datatype-date_es.js │ │ │ │ ├── datatype-date_fi-FI.js │ │ │ │ ├── datatype-date_fi.js │ │ │ │ ├── datatype-date_fr-BE.js │ │ │ │ ├── datatype-date_fr-CA.js │ │ │ │ ├── datatype-date_fr-FR.js │ │ │ │ ├── datatype-date_fr.js │ │ │ │ ├── datatype-date_hi-IN.js │ │ │ │ ├── datatype-date_hi.js │ │ │ │ ├── datatype-date_id-ID.js │ │ │ │ ├── datatype-date_id.js │ │ │ │ ├── datatype-date_it-IT.js │ │ │ │ ├── datatype-date_it.js │ │ │ │ ├── datatype-date_ja-JP.js │ │ │ │ ├── datatype-date_ja.js │ │ │ │ ├── datatype-date_ko-KR.js │ │ │ │ ├── datatype-date_ko.js │ │ │ │ ├── datatype-date_ms-MY.js │ │ │ │ ├── datatype-date_ms.js │ │ │ │ ├── datatype-date_nb-NO.js │ │ │ │ ├── datatype-date_nb.js │ │ │ │ ├── datatype-date_nl-BE.js │ │ │ │ ├── datatype-date_nl-NL.js │ │ │ │ ├── datatype-date_nl.js │ │ │ │ ├── datatype-date_pl-PL.js │ │ │ │ ├── datatype-date_pl.js │ │ │ │ ├── datatype-date_pt-BR.js │ │ │ │ ├── datatype-date_pt.js │ │ │ │ ├── datatype-date_ro-RO.js │ │ │ │ ├── datatype-date_ro.js │ │ │ │ ├── datatype-date_ru-RU.js │ │ │ │ ├── datatype-date_ru.js │ │ │ │ ├── datatype-date_sv-SE.js │ │ │ │ ├── datatype-date_sv.js │ │ │ │ ├── datatype-date_th-TH.js │ │ │ │ ├── datatype-date_th.js │ │ │ │ ├── datatype-date_tr-TR.js │ │ │ │ ├── datatype-date_tr.js │ │ │ │ ├── datatype-date_vi-VN.js │ │ │ │ ├── datatype-date_vi.js │ │ │ │ ├── datatype-date_zh-Hans-CN.js │ │ │ │ ├── datatype-date_zh-Hans.js │ │ │ │ ├── datatype-date_zh-Hant-HK.js │ │ │ │ ├── datatype-date_zh-Hant-TW.js │ │ │ │ ├── datatype-date_zh-Hant.js │ │ │ │ ├── datatype.js │ │ │ │ ├── datatype_ar-JO.js │ │ │ │ ├── datatype_ar.js │ │ │ │ ├── datatype_ca-ES.js │ │ │ │ ├── datatype_ca.js │ │ │ │ ├── datatype_da-DK.js │ │ │ │ ├── datatype_da.js │ │ │ │ ├── datatype_de-AT.js │ │ │ │ ├── datatype_de-DE.js │ │ │ │ ├── datatype_de.js │ │ │ │ ├── datatype_el-GR.js │ │ │ │ ├── datatype_el.js │ │ │ │ ├── datatype_en-AU.js │ │ │ │ ├── datatype_en-CA.js │ │ │ │ ├── datatype_en-GB.js │ │ │ │ ├── datatype_en-IE.js │ │ │ │ ├── datatype_en-IN.js │ │ │ │ ├── datatype_en-JO.js │ │ │ │ ├── datatype_en-MY.js │ │ │ │ ├── datatype_en-NZ.js │ │ │ │ ├── datatype_en-PH.js │ │ │ │ ├── datatype_en-SG.js │ │ │ │ ├── datatype_en-US.js │ │ │ │ ├── datatype_en.js │ │ │ │ ├── datatype_es-AR.js │ │ │ │ ├── datatype_es-BO.js │ │ │ │ ├── datatype_es-CL.js │ │ │ │ ├── datatype_es-CO.js │ │ │ │ ├── datatype_es-EC.js │ │ │ │ ├── datatype_es-ES.js │ │ │ │ ├── datatype_es-MX.js │ │ │ │ ├── datatype_es-PE.js │ │ │ │ ├── datatype_es-PY.js │ │ │ │ ├── datatype_es-US.js │ │ │ │ ├── datatype_es-UY.js │ │ │ │ ├── datatype_es-VE.js │ │ │ │ ├── datatype_es.js │ │ │ │ ├── datatype_fi-FI.js │ │ │ │ ├── datatype_fi.js │ │ │ │ ├── datatype_fr-BE.js │ │ │ │ ├── datatype_fr-CA.js │ │ │ │ ├── datatype_fr-FR.js │ │ │ │ ├── datatype_fr.js │ │ │ │ ├── datatype_hi-IN.js │ │ │ │ ├── datatype_hi.js │ │ │ │ ├── datatype_id-ID.js │ │ │ │ ├── datatype_id.js │ │ │ │ ├── datatype_it-IT.js │ │ │ │ ├── datatype_it.js │ │ │ │ ├── datatype_ja-JP.js │ │ │ │ ├── datatype_ja.js │ │ │ │ ├── datatype_ko-KR.js │ │ │ │ ├── datatype_ko.js │ │ │ │ ├── datatype_ms-MY.js │ │ │ │ ├── datatype_ms.js │ │ │ │ ├── datatype_nb-NO.js │ │ │ │ ├── datatype_nb.js │ │ │ │ ├── datatype_nl-BE.js │ │ │ │ ├── datatype_nl-NL.js │ │ │ │ ├── datatype_nl.js │ │ │ │ ├── datatype_pl-PL.js │ │ │ │ ├── datatype_pl.js │ │ │ │ ├── datatype_pt-BR.js │ │ │ │ ├── datatype_pt.js │ │ │ │ ├── datatype_ro-RO.js │ │ │ │ ├── datatype_ro.js │ │ │ │ ├── datatype_ru-RU.js │ │ │ │ ├── datatype_ru.js │ │ │ │ ├── datatype_sv-SE.js │ │ │ │ ├── datatype_sv.js │ │ │ │ ├── datatype_th-TH.js │ │ │ │ ├── datatype_th.js │ │ │ │ ├── datatype_tr-TR.js │ │ │ │ ├── datatype_tr.js │ │ │ │ ├── datatype_vi-VN.js │ │ │ │ ├── datatype_vi.js │ │ │ │ ├── datatype_zh-Hans-CN.js │ │ │ │ ├── datatype_zh-Hans.js │ │ │ │ ├── datatype_zh-Hant-HK.js │ │ │ │ ├── datatype_zh-Hant-TW.js │ │ │ │ └── datatype_zh-Hant.js │ │ ├── dd │ │ │ ├── dd-constrain-min.js │ │ │ ├── dd-constrain.js │ │ │ ├── dd-ddm-base-min.js │ │ │ ├── dd-ddm-base.js │ │ │ ├── dd-ddm-drop-min.js │ │ │ ├── dd-ddm-drop.js │ │ │ ├── dd-ddm-min.js │ │ │ ├── dd-ddm.js │ │ │ ├── dd-delegate-min.js │ │ │ ├── dd-delegate.js │ │ │ ├── dd-drag-min.js │ │ │ ├── dd-drag.js │ │ │ ├── dd-drop-min.js │ │ │ ├── dd-drop-plugin-min.js │ │ │ ├── dd-drop-plugin.js │ │ │ ├── dd-drop.js │ │ │ ├── dd-gestures-min.js │ │ │ ├── dd-gestures.js │ │ │ ├── dd-min.js │ │ │ ├── dd-plugin-min.js │ │ │ ├── dd-plugin.js │ │ │ ├── dd-proxy-min.js │ │ │ ├── dd-proxy.js │ │ │ ├── dd-scroll-min.js │ │ │ ├── dd-scroll.js │ │ │ └── dd.js │ │ ├── dial │ │ │ ├── assets │ │ │ │ ├── dial-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── dial-skin.css │ │ │ │ │ └── dial.css │ │ │ ├── dial-min.js │ │ │ ├── dial.js │ │ │ └── lang │ │ │ │ ├── dial.js │ │ │ │ ├── dial_en.js │ │ │ │ └── dial_es.js │ │ ├── dom │ │ │ ├── dom-base-min.js │ │ │ ├── dom-base.js │ │ │ ├── dom-deprecated-min.js │ │ │ ├── dom-deprecated.js │ │ │ ├── dom-min.js │ │ │ ├── dom-screen-min.js │ │ │ ├── dom-screen.js │ │ │ ├── dom-style-ie-min.js │ │ │ ├── dom-style-ie.js │ │ │ ├── dom-style-min.js │ │ │ ├── dom-style.js │ │ │ ├── dom.js │ │ │ ├── selector-css2-min.js │ │ │ ├── selector-css2.js │ │ │ ├── selector-css3-min.js │ │ │ ├── selector-css3.js │ │ │ ├── selector-min.js │ │ │ ├── selector-native-min.js │ │ │ ├── selector-native.js │ │ │ └── selector.js │ │ ├── dump │ │ │ ├── dump-min.js │ │ │ └── dump.js │ │ ├── editor │ │ │ ├── createlink-base-min.js │ │ │ ├── createlink-base.js │ │ │ ├── editor-base-min.js │ │ │ ├── editor-base.js │ │ │ ├── editor-bidi-min.js │ │ │ ├── editor-bidi.js │ │ │ ├── editor-br-min.js │ │ │ ├── editor-br.js │ │ │ ├── editor-lists-min.js │ │ │ ├── editor-lists.js │ │ │ ├── editor-min.js │ │ │ ├── editor-para-min.js │ │ │ ├── editor-para.js │ │ │ ├── editor-tab-min.js │ │ │ ├── editor-tab.js │ │ │ ├── editor.js │ │ │ ├── exec-command-min.js │ │ │ ├── exec-command.js │ │ │ ├── frame-min.js │ │ │ ├── frame.js │ │ │ ├── selection-min.js │ │ │ └── selection.js │ │ ├── escape │ │ │ ├── escape-min.js │ │ │ └── escape.js │ │ ├── event-custom │ │ │ ├── event-custom-base-min.js │ │ │ ├── event-custom-base.js │ │ │ ├── event-custom-complex-min.js │ │ │ ├── event-custom-complex.js │ │ │ ├── event-custom-min.js │ │ │ └── event-custom.js │ │ ├── event-gestures │ │ │ ├── event-flick-min.js │ │ │ ├── event-flick.js │ │ │ ├── event-gestures-min.js │ │ │ ├── event-gestures.js │ │ │ ├── event-move-min.js │ │ │ └── event-move.js │ │ ├── event-simulate │ │ │ ├── event-simulate-min.js │ │ │ └── event-simulate.js │ │ ├── event-valuechange │ │ │ ├── event-valuechange-min.js │ │ │ └── event-valuechange.js │ │ ├── event │ │ │ ├── event-base-ie-min.js │ │ │ ├── event-base-ie.js │ │ │ ├── event-base-min.js │ │ │ ├── event-base.js │ │ │ ├── event-delegate-min.js │ │ │ ├── event-delegate.js │ │ │ ├── event-focus-min.js │ │ │ ├── event-focus.js │ │ │ ├── event-hover-min.js │ │ │ ├── event-hover.js │ │ │ ├── event-key-min.js │ │ │ ├── event-key.js │ │ │ ├── event-min.js │ │ │ ├── event-mouseenter-min.js │ │ │ ├── event-mouseenter.js │ │ │ ├── event-mousewheel-min.js │ │ │ ├── event-mousewheel.js │ │ │ ├── event-resize-min.js │ │ │ ├── event-resize.js │ │ │ ├── event-synthetic-min.js │ │ │ ├── event-synthetic.js │ │ │ ├── event-touch-min.js │ │ │ ├── event-touch.js │ │ │ └── event.js │ │ ├── highlight │ │ │ ├── highlight-accentfold-min.js │ │ │ ├── highlight-accentfold.js │ │ │ ├── highlight-base-min.js │ │ │ ├── highlight-base.js │ │ │ ├── highlight-min.js │ │ │ └── highlight.js │ │ ├── history-deprecated │ │ │ ├── history-deprecated-min.js │ │ │ └── history-deprecated.js │ │ ├── history │ │ │ ├── history-base-min.js │ │ │ ├── history-base.js │ │ │ ├── history-hash-ie-min.js │ │ │ ├── history-hash-ie.js │ │ │ ├── history-hash-min.js │ │ │ ├── history-hash.js │ │ │ ├── history-html5-min.js │ │ │ ├── history-html5.js │ │ │ ├── history-min.js │ │ │ └── history.js │ │ ├── imageloader │ │ │ ├── imageloader-min.js │ │ │ └── imageloader.js │ │ ├── intl │ │ │ ├── intl-min.js │ │ │ └── intl.js │ │ ├── io │ │ │ ├── io-base-min.js │ │ │ ├── io-base.js │ │ │ ├── io-form-min.js │ │ │ ├── io-form.js │ │ │ ├── io-min.js │ │ │ ├── io-queue-min.js │ │ │ ├── io-queue.js │ │ │ ├── io-upload-iframe-min.js │ │ │ ├── io-upload-iframe.js │ │ │ ├── io-xdr-min.js │ │ │ ├── io-xdr.js │ │ │ ├── io.js │ │ │ └── io.swf │ │ ├── json │ │ │ ├── json-min.js │ │ │ ├── json-parse-min.js │ │ │ ├── json-parse.js │ │ │ ├── json-stringify-min.js │ │ │ ├── json-stringify.js │ │ │ └── json.js │ │ ├── jsonp │ │ │ ├── jsonp-min.js │ │ │ ├── jsonp-url-min.js │ │ │ ├── jsonp-url.js │ │ │ └── jsonp.js │ │ ├── loader │ │ │ ├── loader-base-min.js │ │ │ ├── loader-base.js │ │ │ ├── loader-min.js │ │ │ ├── loader-rollup-min.js │ │ │ ├── loader-rollup.js │ │ │ ├── loader-yui3-min.js │ │ │ ├── loader-yui3.js │ │ │ └── loader.js │ │ ├── node-flick │ │ │ ├── assets │ │ │ │ ├── node-flick-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── node-flick-skin.css │ │ │ │ │ └── node-flick.css │ │ │ ├── node-flick-min.js │ │ │ └── node-flick.js │ │ ├── node-focusmanager │ │ │ ├── node-focusmanager-min.js │ │ │ └── node-focusmanager.js │ │ ├── node-menunav │ │ │ ├── assets │ │ │ │ ├── node-menunav-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── horizontal-menu-submenu-indicator.png │ │ │ │ │ ├── horizontal-menu-submenu-toggle.png │ │ │ │ │ ├── node-menunav-skin.css │ │ │ │ │ ├── node-menunav.css │ │ │ │ │ └── vertical-menu-submenu-indicator.png │ │ │ ├── node-menunav-min.js │ │ │ └── node-menunav.js │ │ ├── node │ │ │ ├── align-plugin-min.js │ │ │ ├── align-plugin.js │ │ │ ├── node-base-min.js │ │ │ ├── node-base.js │ │ │ ├── node-deprecated-min.js │ │ │ ├── node-deprecated.js │ │ │ ├── node-event-delegate-min.js │ │ │ ├── node-event-delegate.js │ │ │ ├── node-event-html5-min.js │ │ │ ├── node-event-html5.js │ │ │ ├── node-event-simulate-min.js │ │ │ ├── node-event-simulate.js │ │ │ ├── node-load-min.js │ │ │ ├── node-load.js │ │ │ ├── node-min.js │ │ │ ├── node-pluginhost-min.js │ │ │ ├── node-pluginhost.js │ │ │ ├── node-screen-min.js │ │ │ ├── node-screen.js │ │ │ ├── node-style-min.js │ │ │ ├── node-style.js │ │ │ ├── node.js │ │ │ ├── shim-plugin-min.js │ │ │ └── shim-plugin.js │ │ ├── oop │ │ │ ├── oop-min.js │ │ │ └── oop.js │ │ ├── overlay │ │ │ ├── assets │ │ │ │ ├── overlay-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── overlay-skin.css │ │ │ │ │ └── overlay.css │ │ │ ├── overlay-min.js │ │ │ └── overlay.js │ │ ├── plugin │ │ │ ├── plugin-min.js │ │ │ └── plugin.js │ │ ├── pluginhost │ │ │ ├── pluginhost-base-min.js │ │ │ ├── pluginhost-base.js │ │ │ ├── pluginhost-config-min.js │ │ │ ├── pluginhost-config.js │ │ │ ├── pluginhost-min.js │ │ │ └── pluginhost.js │ │ ├── profiler │ │ │ ├── profiler-min.js │ │ │ └── profiler.js │ │ ├── querystring │ │ │ ├── querystring-min.js │ │ │ ├── querystring-parse-min.js │ │ │ ├── querystring-parse-simple-min.js │ │ │ ├── querystring-parse-simple.js │ │ │ ├── querystring-parse.js │ │ │ ├── querystring-stringify-min.js │ │ │ ├── querystring-stringify-simple-min.js │ │ │ ├── querystring-stringify-simple.js │ │ │ ├── querystring-stringify.js │ │ │ └── querystring.js │ │ ├── queue-promote │ │ │ ├── queue-promote-min.js │ │ │ └── queue-promote.js │ │ ├── recordset │ │ │ ├── recordset-base-min.js │ │ │ ├── recordset-base.js │ │ │ ├── recordset-filter-min.js │ │ │ ├── recordset-filter.js │ │ │ ├── recordset-indexer-min.js │ │ │ ├── recordset-indexer.js │ │ │ ├── recordset-min.js │ │ │ ├── recordset-sort-min.js │ │ │ ├── recordset-sort.js │ │ │ └── recordset.js │ │ ├── resize │ │ │ ├── assets │ │ │ │ ├── resize-base-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── arrows.png │ │ │ │ │ ├── resize-base-skin.css │ │ │ │ │ ├── resize-base.css │ │ │ │ │ └── resize.css │ │ │ ├── resize-base-min.js │ │ │ ├── resize-base.js │ │ │ ├── resize-constrain-min.js │ │ │ ├── resize-constrain.js │ │ │ ├── resize-min.js │ │ │ ├── resize-proxy-min.js │ │ │ ├── resize-proxy.js │ │ │ └── resize.js │ │ ├── scrollview │ │ │ ├── assets │ │ │ │ ├── scrollview-base-core.css │ │ │ │ ├── scrollview-paginator-core.css │ │ │ │ ├── scrollview-scrollbars-core.css │ │ │ │ └── skins │ │ │ │ │ └── sam │ │ │ │ │ ├── scrollview-base-skin.css │ │ │ │ │ ├── scrollview-base.css │ │ │ │ │ ├── scrollview-paginator-skin.css │ │ │ │ │ ├── scrollview-paginator.css │ │ │ │ │ ├── scrollview-scrollbars-skin.css │ │ │ │ │ └── scrollview-scrollbars.css │ │ │ ├── scrollview-base-ie-min.js │ │ │ ├── scrollview-base-ie.js │ │ │ ├── scrollview-base-min.js │ │ │ ├── scrollview-base.js │ │ │ ├── scrollview-min.js │ │ │ ├── scrollview-paginator-min.js │ │ │ ├── scrollview-paginator.js │ │ │ ├── scrollview-scrollbars-min.js │ │ │ ├── scrollview-scrollbars.js │ │ │ └── scrollview.js │ │ ├── simpleyui │ │ │ ├── simpleyui-min.js │ │ │ └── simpleyui.js │ │ ├── slider │ │ │ ├── assets │ │ │ │ ├── skins │ │ │ │ │ ├── audio-light │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── capsule-dark │ │ │ │ │ │ ├── rail-x-dots.png │ │ │ │ │ │ ├── rail-x-lines.png │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y-dots.png │ │ │ │ │ │ ├── rail-y-lines.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x-line.png │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ ├── thumb-y-line.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── capsule │ │ │ │ │ │ ├── rail-x-dots.png │ │ │ │ │ │ ├── rail-x-lines.png │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y-dots.png │ │ │ │ │ │ ├── rail-y-lines.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x-line.png │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ ├── thumb-y-line.png │ │ │ │ │ │ ├── thumb-y-lines.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── round-dark │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x-grip.png │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ ├── thumb-y-grip.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── round │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x-grip.png │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ ├── thumb-y-grip.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ ├── sam-dark │ │ │ │ │ │ ├── rail-x-lines.png │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y-lines.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ │ └── sam │ │ │ │ │ │ ├── rail-classic-x.png │ │ │ │ │ │ ├── rail-classic-y.png │ │ │ │ │ │ ├── rail-x-lines.png │ │ │ │ │ │ ├── rail-x.png │ │ │ │ │ │ ├── rail-y-lines.png │ │ │ │ │ │ ├── rail-y.png │ │ │ │ │ │ ├── slider-base-skin.css │ │ │ │ │ │ ├── slider-base.css │ │ │ │ │ │ ├── slider-skin.css │ │ │ │ │ │ ├── slider.css │ │ │ │ │ │ ├── thumb-classic-x.png │ │ │ │ │ │ ├── thumb-classic-y.png │ │ │ │ │ │ ├── thumb-x.png │ │ │ │ │ │ └── thumb-y.png │ │ │ │ ├── slider-base-core.css │ │ │ │ └── slider-core.css │ │ │ ├── clickable-rail-min.js │ │ │ ├── clickable-rail.js │ │ │ ├── range-slider-min.js │ │ │ ├── range-slider.js │ │ │ ├── slider-base-min.js │ │ │ ├── slider-base.js │ │ │ ├── slider-min.js │ │ │ ├── slider-value-range-min.js │ │ │ ├── slider-value-range.js │ │ │ └── slider.js │ │ ├── sortable │ │ │ ├── sortable-min.js │ │ │ ├── sortable-scroll-min.js │ │ │ ├── sortable-scroll.js │ │ │ └── sortable.js │ │ ├── stylesheet │ │ │ ├── stylesheet-min.js │ │ │ └── stylesheet.js │ │ ├── substitute │ │ │ ├── substitute-min.js │ │ │ └── substitute.js │ │ ├── swf │ │ │ ├── swf-min.js │ │ │ └── swf.js │ │ ├── swfdetect │ │ │ ├── swfdetect-min.js │ │ │ └── swfdetect.js │ │ ├── tabview │ │ │ ├── assets │ │ │ │ ├── skins │ │ │ │ │ └── sam │ │ │ │ │ │ ├── tabview-skin.css │ │ │ │ │ │ └── tabview.css │ │ │ │ ├── tabview-core.css │ │ │ │ └── tabview.css │ │ │ ├── tabview-base-min.js │ │ │ ├── tabview-base.js │ │ │ ├── tabview-min.js │ │ │ ├── tabview-plugin-min.js │ │ │ ├── tabview-plugin.js │ │ │ └── tabview.js │ │ ├── test │ │ │ ├── assets │ │ │ │ ├── skins │ │ │ │ │ └── sam │ │ │ │ │ │ ├── test-skin.css │ │ │ │ │ │ └── test.css │ │ │ │ └── test-console.css │ │ │ ├── test-min.js │ │ │ └── test.js │ │ ├── text │ │ │ ├── text-accentfold-min.js │ │ │ ├── text-accentfold.js │ │ │ ├── text-data-accentfold-min.js │ │ │ ├── text-data-accentfold.js │ │ │ ├── text-data-wordbreak-min.js │ │ │ ├── text-data-wordbreak.js │ │ │ ├── text-min.js │ │ │ ├── text-wordbreak-min.js │ │ │ ├── text-wordbreak.js │ │ │ └── text.js │ │ ├── transition │ │ │ ├── transition-min.js │ │ │ ├── transition-native-min.js │ │ │ ├── transition-native.js │ │ │ ├── transition-timer-min.js │ │ │ ├── transition-timer.js │ │ │ └── transition.js │ │ ├── uploader │ │ │ ├── assets │ │ │ │ └── uploader.swf │ │ │ ├── uploader-min.js │ │ │ └── uploader.js │ │ ├── widget-anim │ │ │ ├── widget-anim-min.js │ │ │ └── widget-anim.js │ │ ├── widget │ │ │ ├── assets │ │ │ │ ├── skins │ │ │ │ │ └── sam │ │ │ │ │ │ ├── widget-base-skin.css │ │ │ │ │ │ ├── widget-base.css │ │ │ │ │ │ ├── widget-stack-skin.css │ │ │ │ │ │ ├── widget-stack.css │ │ │ │ │ │ └── widget.css │ │ │ │ ├── widget-base-core.css │ │ │ │ └── widget-stack-core.css │ │ │ ├── widget-base-ie-min.js │ │ │ ├── widget-base-ie.js │ │ │ ├── widget-base-min.js │ │ │ ├── widget-base.js │ │ │ ├── widget-child-min.js │ │ │ ├── widget-child.js │ │ │ ├── widget-htmlparser-min.js │ │ │ ├── widget-htmlparser.js │ │ │ ├── widget-locale-min.js │ │ │ ├── widget-locale.js │ │ │ ├── widget-min.js │ │ │ ├── widget-parent-min.js │ │ │ ├── widget-parent.js │ │ │ ├── widget-position-align-min.js │ │ │ ├── widget-position-align.js │ │ │ ├── widget-position-constrain-min.js │ │ │ ├── widget-position-constrain.js │ │ │ ├── widget-position-min.js │ │ │ ├── widget-position.js │ │ │ ├── widget-skin-min.js │ │ │ ├── widget-skin.js │ │ │ ├── widget-stack-min.js │ │ │ ├── widget-stack.js │ │ │ ├── widget-stdmod-min.js │ │ │ ├── widget-stdmod.js │ │ │ ├── widget-uievents-min.js │ │ │ ├── widget-uievents.js │ │ │ └── widget.js │ │ ├── yql │ │ │ ├── yql-min.js │ │ │ └── yql.js │ │ └── yui │ │ │ ├── features-min.js │ │ │ ├── features.js │ │ │ ├── get-min.js │ │ │ ├── get.js │ │ │ ├── intl-base-min.js │ │ │ ├── intl-base.js │ │ │ ├── rls-min.js │ │ │ ├── rls.js │ │ │ ├── yui-base-min.js │ │ │ ├── yui-base.js │ │ │ ├── yui-later-min.js │ │ │ ├── yui-later.js │ │ │ ├── yui-log-min.js │ │ │ ├── yui-log.js │ │ │ ├── yui-min.js │ │ │ ├── yui-throttle-min.js │ │ │ ├── yui-throttle.js │ │ │ └── yui.js │ │ └── index.html ├── json_config.php ├── language │ ├── en_us.lang.php │ ├── en_us.notify_template.html │ ├── getJSLanguage.php │ └── jsLanguage.php ├── modules.php ├── nusoap │ ├── changelog │ ├── class.nusoap_base.php │ ├── class.soap_fault.php │ ├── class.soap_parser.php │ ├── class.soap_server.php │ ├── class.soap_transport_http.php │ ├── class.soap_val.php │ ├── class.soapclient.php │ ├── class.wsdl.php │ ├── class.wsdlcache.php │ ├── class.xmlschema.php │ ├── license.txt │ ├── nusoap.php │ └── nusoapmime.php ├── parsecsv.lib.php ├── pclzip │ ├── gnu-lgpl.txt │ ├── pclzip.lib.php │ └── readme.txt ├── php-sql-parser.php ├── resource │ ├── Observers │ │ ├── ResourceObserver.php │ │ ├── SoapResourceObserver.php │ │ └── WebResourceObserver.php │ └── ResourceManager.php ├── social │ ├── facebook │ │ ├── facebook.class.php │ │ ├── facebook.js │ │ ├── facebook_sdk │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── changelog.md │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ │ ├── example.php │ │ │ │ └── with_js_sdk.php │ │ │ ├── readme.md │ │ │ ├── src │ │ │ │ ├── base_facebook.php │ │ │ │ ├── facebook.php │ │ │ │ └── fb_ca_chain_bundle.crt │ │ │ └── tests │ │ │ │ ├── bootstrap.php │ │ │ │ └── tests.php │ │ ├── facebook_subpanel.js │ │ └── facebookapi.php │ ├── get_data.php │ ├── get_feed_data.php │ ├── hooks.php │ └── twitter │ │ ├── twitter.css │ │ ├── twitter.js │ │ ├── twitter_auth │ │ ├── callback.php │ │ ├── images │ │ │ ├── darker.png │ │ │ └── lighter.png │ │ └── twitteroauth │ │ │ ├── OAuth.php │ │ │ └── twitteroauth.php │ │ ├── twitter_feed.js │ │ ├── twitter_helper.php │ │ └── twitterapi.php ├── tabConfig.php ├── tabs.php ├── tabs.tpl ├── tcpdf │ ├── 2dbarcodes.php │ ├── CHANGELOG.TXT │ ├── LICENSE.TXT │ ├── README.TXT │ ├── barcodes.php │ ├── config │ │ ├── lang │ │ │ ├── eng.php │ │ │ └── ita.php │ │ ├── tcpdf_config.php │ │ └── tcpdf_config_alt.php │ ├── fonts │ │ ├── uni2cid_ac15.php │ │ ├── uni2cid_ag15.php │ │ ├── uni2cid_aj16.php │ │ ├── uni2cid_ak12.php │ │ └── utils │ │ │ ├── enc │ │ │ ├── cp1250.map │ │ │ ├── cp1251.map │ │ │ ├── cp1252.map │ │ │ ├── cp1253.map │ │ │ ├── cp1254.map │ │ │ ├── cp1255.map │ │ │ ├── cp1257.map │ │ │ ├── cp1258.map │ │ │ ├── cp874.map │ │ │ ├── iso-8859-1.map │ │ │ ├── iso-8859-11.map │ │ │ ├── iso-8859-15.map │ │ │ ├── iso-8859-16.map │ │ │ ├── iso-8859-2.map │ │ │ ├── iso-8859-4.map │ │ │ ├── iso-8859-5.map │ │ │ ├── iso-8859-7.map │ │ │ ├── iso-8859-9.map │ │ │ ├── koi8-r.map │ │ │ └── koi8-u.map │ │ │ └── makefont.php │ ├── htmlcolors.php │ ├── tcpdf.php │ └── unicode_data.php ├── templates │ ├── Template.php │ ├── TemplateDragDropChooser.php │ └── TemplateGroupChooser.php ├── upload_file.php ├── utils.php ├── utils │ ├── BaseHandler.php │ ├── LogicHook.php │ ├── activity_utils.php │ ├── additional_details.php │ ├── array_utils.php │ ├── autoloader.php │ ├── db_utils.php │ ├── encryption_utils.php │ ├── external_cache.php │ ├── file_utils.php │ ├── layout_utils.php │ ├── logic_utils.php │ ├── mvc_utils.php │ ├── php_zip_utils.php │ ├── progress_bar_utils.php │ ├── recaptcha_disabled.tpl │ ├── recaptcha_enabled.tpl │ ├── recaptcha_utils.php │ ├── security_utils.php │ ├── sugar_file_utils.php │ └── zip_utils.php ├── vCard.php └── ytree │ ├── ExtNode.php │ ├── JQueryTree.php │ ├── Node.php │ ├── Tree.php │ ├── TreeView │ ├── HTMLNode.js │ ├── MenuNode.js │ ├── Node.js │ ├── RootNode.js │ ├── TaskNode.js │ ├── TextNode.js │ ├── TreeView.js │ ├── anim │ │ ├── TVAnim.js │ │ ├── TVFadeIn.js │ │ └── TVFadeOut.js │ ├── css │ │ ├── check │ │ │ └── tree.css │ │ ├── default │ │ │ └── tree.css │ │ ├── folders │ │ │ └── tree.css │ │ └── forecasts │ │ │ └── tree.css │ ├── img │ │ ├── bullet.gif │ │ ├── check │ │ │ ├── check0.gif │ │ │ ├── check1.gif │ │ │ ├── check2.gif │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── loading.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ └── vline.gif │ │ ├── default │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── loading.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ └── vline.gif │ │ ├── folders │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── loading.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ └── vline.gif │ │ ├── greybg.png │ │ ├── header.gif │ │ ├── logo.gif │ │ ├── navHover2.png │ │ ├── qbottom.png │ │ ├── qmiddle.png │ │ └── qtop.png │ └── license.txt │ └── treeutil.js ├── index.php ├── install.php ├── install ├── TeamDemoData.php ├── UploadLangFileCheck.php ├── UserDemoData.php ├── checkDBSettings.php ├── complete_install.php ├── data │ └── disc_client.php ├── dbConfig.js ├── dbConfig_a.php ├── demoData.en_us.php ├── download_modules.php ├── install.css ├── install2.css ├── installCommon.js ├── installConfig.php ├── installDisabled.php ├── installHelp.php ├── installSystemCheck.php ├── installType.php ├── install_defaults.php ├── install_utils.php ├── lang.config.php ├── language │ └── en_us.lang.php ├── license.js ├── license.php ├── licensePrint.php ├── oc_convert.js ├── oc_install.js ├── old_php.js ├── old_php.php ├── performSetup.php ├── populateSeedData.php ├── processing.gif ├── ready.css ├── ready.php ├── register.js ├── register.php ├── seed_data │ ├── Advanced_Password_SeedData.php │ └── quotes_SeedData.php ├── siteConfig.js ├── siteConfig_a.php ├── siteConfig_b.php ├── status.json ├── suite_install │ ├── AdvancedOpenDiscovery.php │ ├── AdvancedOpenEvents.php │ ├── AdvancedOpenPortal.php │ ├── AdvancedOpenSales.php │ ├── GoogleMaps.php │ ├── Projects.php │ ├── Reschedule.php │ ├── Search.php │ ├── SecurityGroups.php │ ├── Social.php │ ├── SystemEmailTemplates.php │ ├── collations.php │ ├── enabledTabs.php │ ├── scenarios.php │ └── suite_install.php └── welcome.php ├── json_server.php ├── jssource ├── JSGroupings.php ├── Minifier.php ├── jsmin.php ├── minify.php ├── minify_utils.php └── src_files │ ├── include │ ├── EditView │ │ └── Panels.js │ ├── HTMLPurifier │ │ └── standalone │ │ │ └── HTMLPurifier │ │ │ └── Printer │ │ │ └── ConfigForm.js │ ├── MySugar │ │ └── javascript │ │ │ └── MySugar.js │ ├── SubPanel │ │ └── SubPanelTiles.js │ ├── SugarCharts │ │ └── Jit │ │ │ ├── FlashCanvas │ │ │ ├── canvas2png.js │ │ │ └── flashcanvas.js │ │ │ └── js │ │ │ ├── Jit │ │ │ └── jit.js │ │ │ └── mySugarCharts.js │ ├── SugarDependentDropdown │ │ └── javascript │ │ │ └── SugarDependentDropdown.js │ ├── SugarEmailAddress │ │ └── SugarEmailAddress.js │ ├── SugarFields │ │ └── Fields │ │ │ ├── Address │ │ │ └── SugarFieldAddress.js │ │ │ ├── Collection │ │ │ └── SugarFieldCollection.js │ │ │ ├── Datetimecombo │ │ │ └── Datetimecombo.js │ │ │ ├── File │ │ │ └── SugarFieldFile.js │ │ │ └── Time │ │ │ └── Time.js │ ├── connectors │ │ └── formatters │ │ │ └── default │ │ │ └── company_detail.js │ ├── javascript │ │ ├── EmailsComposeViewModal.js │ │ ├── ajaxUI.js │ │ ├── alerts.js │ │ ├── calendar.js │ │ ├── cookie.js │ │ ├── dashlets.js │ │ ├── importWizard.js │ │ ├── include.js │ │ ├── iscroll.js │ │ ├── jquery.js │ │ ├── jsclass_async.js │ │ ├── jsclass_base.js │ │ ├── menu.js │ │ ├── message-box.js │ │ ├── phpjs │ │ │ ├── get_html_translation_table.js │ │ │ ├── html_entity_decode.js │ │ │ ├── htmlentities.js │ │ │ └── license.js │ │ ├── popup_helper.js │ │ ├── popup_parent_helper.js │ │ ├── quickCompose.js │ │ ├── quicksearch.js │ │ ├── report_additionals.js │ │ ├── sugar_3.js │ │ ├── sugar_connection_event_listener.js │ │ ├── sugar_yui_overrides.js │ │ ├── sugarwidgets │ │ │ ├── SugarYUILoader.js │ │ │ └── SugarYUIWidgets.js │ │ ├── tour.js │ │ └── yui3 │ │ │ ├── assets │ │ │ ├── dpSyntaxHighlighter.js │ │ │ └── syntax.js │ │ │ └── build │ │ │ ├── anim │ │ │ ├── anim-base-min.js │ │ │ ├── anim-base.js │ │ │ ├── anim-color-min.js │ │ │ ├── anim-color.js │ │ │ ├── anim-curve-min.js │ │ │ ├── anim-curve.js │ │ │ ├── anim-easing-min.js │ │ │ ├── anim-easing.js │ │ │ ├── anim-min.js │ │ │ ├── anim-node-plugin-min.js │ │ │ ├── anim-node-plugin.js │ │ │ ├── anim-scroll-min.js │ │ │ ├── anim-scroll.js │ │ │ ├── anim-xy-min.js │ │ │ ├── anim-xy.js │ │ │ └── anim.js │ │ │ ├── arraysort │ │ │ ├── arraysort-min.js │ │ │ └── arraysort.js │ │ │ ├── async-queue │ │ │ ├── async-queue-min.js │ │ │ └── async-queue.js │ │ │ ├── attribute │ │ │ ├── attribute-base-min.js │ │ │ ├── attribute-base.js │ │ │ ├── attribute-complex-min.js │ │ │ ├── attribute-complex.js │ │ │ ├── attribute-min.js │ │ │ └── attribute.js │ │ │ ├── autocomplete │ │ │ ├── autocomplete-base-min.js │ │ │ ├── autocomplete-base.js │ │ │ ├── autocomplete-filters-accentfold-min.js │ │ │ ├── autocomplete-filters-accentfold.js │ │ │ ├── autocomplete-filters-min.js │ │ │ ├── autocomplete-filters.js │ │ │ ├── autocomplete-highlighters-accentfold-min.js │ │ │ ├── autocomplete-highlighters-accentfold.js │ │ │ ├── autocomplete-highlighters-min.js │ │ │ ├── autocomplete-highlighters.js │ │ │ ├── autocomplete-list-keys-min.js │ │ │ ├── autocomplete-list-keys.js │ │ │ ├── autocomplete-list-min.js │ │ │ ├── autocomplete-list.js │ │ │ ├── autocomplete-min.js │ │ │ ├── autocomplete-plugin-min.js │ │ │ ├── autocomplete-plugin.js │ │ │ ├── autocomplete-sources-min.js │ │ │ ├── autocomplete-sources.js │ │ │ ├── autocomplete.js │ │ │ └── lang │ │ │ │ ├── autocomplete-list.js │ │ │ │ ├── autocomplete-list_en.js │ │ │ │ ├── autocomplete.js │ │ │ │ └── autocomplete_en.js │ │ │ ├── base │ │ │ ├── base-base-min.js │ │ │ ├── base-base.js │ │ │ ├── base-build-min.js │ │ │ ├── base-build.js │ │ │ ├── base-min.js │ │ │ ├── base-pluginhost-min.js │ │ │ ├── base-pluginhost.js │ │ │ └── base.js │ │ │ ├── cache │ │ │ ├── cache-base-min.js │ │ │ ├── cache-base.js │ │ │ ├── cache-min.js │ │ │ ├── cache-offline-min.js │ │ │ ├── cache-offline.js │ │ │ ├── cache-plugin-min.js │ │ │ ├── cache-plugin.js │ │ │ └── cache.js │ │ │ ├── charts │ │ │ ├── charts-min.js │ │ │ └── charts.js │ │ │ ├── classnamemanager │ │ │ ├── classnamemanager-min.js │ │ │ └── classnamemanager.js │ │ │ ├── collection │ │ │ ├── array-extras-min.js │ │ │ ├── array-extras.js │ │ │ ├── array-invoke-min.js │ │ │ ├── array-invoke.js │ │ │ ├── arraylist-add-min.js │ │ │ ├── arraylist-add.js │ │ │ ├── arraylist-filter-min.js │ │ │ ├── arraylist-filter.js │ │ │ ├── arraylist-min.js │ │ │ ├── arraylist.js │ │ │ ├── collection-min.js │ │ │ └── collection.js │ │ │ ├── compat │ │ │ ├── compat-min.js │ │ │ └── compat.js │ │ │ ├── console │ │ │ ├── console-filters-min.js │ │ │ ├── console-filters.js │ │ │ ├── console-min.js │ │ │ ├── console.js │ │ │ └── lang │ │ │ │ ├── console.js │ │ │ │ ├── console_en.js │ │ │ │ └── console_es.js │ │ │ ├── cookie │ │ │ ├── cookie-min.js │ │ │ └── cookie.js │ │ │ ├── dataschema │ │ │ ├── dataschema-array-min.js │ │ │ ├── dataschema-array.js │ │ │ ├── dataschema-base-min.js │ │ │ ├── dataschema-base.js │ │ │ ├── dataschema-json-min.js │ │ │ ├── dataschema-json.js │ │ │ ├── dataschema-min.js │ │ │ ├── dataschema-text-min.js │ │ │ ├── dataschema-text.js │ │ │ ├── dataschema-xml-min.js │ │ │ ├── dataschema-xml.js │ │ │ └── dataschema.js │ │ │ ├── datasource │ │ │ ├── datasource-arrayschema-min.js │ │ │ ├── datasource-arrayschema.js │ │ │ ├── datasource-cache-min.js │ │ │ ├── datasource-cache.js │ │ │ ├── datasource-function-min.js │ │ │ ├── datasource-function.js │ │ │ ├── datasource-get-min.js │ │ │ ├── datasource-get.js │ │ │ ├── datasource-io-min.js │ │ │ ├── datasource-io.js │ │ │ ├── datasource-jsonschema-min.js │ │ │ ├── datasource-jsonschema.js │ │ │ ├── datasource-local-min.js │ │ │ ├── datasource-local.js │ │ │ ├── datasource-min.js │ │ │ ├── datasource-polling-min.js │ │ │ ├── datasource-polling.js │ │ │ ├── datasource-textschema-min.js │ │ │ ├── datasource-textschema.js │ │ │ ├── datasource-xmlschema-min.js │ │ │ ├── datasource-xmlschema.js │ │ │ └── datasource.js │ │ │ ├── datatable │ │ │ ├── datatable-base-min.js │ │ │ ├── datatable-base.js │ │ │ ├── datatable-datasource-min.js │ │ │ ├── datatable-datasource.js │ │ │ ├── datatable-min.js │ │ │ ├── datatable-scroll-min.js │ │ │ ├── datatable-scroll.js │ │ │ ├── datatable-sort-min.js │ │ │ ├── datatable-sort.js │ │ │ ├── datatable.js │ │ │ └── lang │ │ │ │ ├── datatable-base.js │ │ │ │ ├── datatable-base_en.js │ │ │ │ ├── datatable-sort.js │ │ │ │ ├── datatable-sort_en.js │ │ │ │ ├── datatable.js │ │ │ │ └── datatable_en.js │ │ │ ├── datatype │ │ │ ├── datatype-date-format-min.js │ │ │ ├── datatype-date-format.js │ │ │ ├── datatype-date-min.js │ │ │ ├── datatype-date-parse-min.js │ │ │ ├── datatype-date-parse.js │ │ │ ├── datatype-date.js │ │ │ ├── datatype-min.js │ │ │ ├── datatype-number-format-min.js │ │ │ ├── datatype-number-format.js │ │ │ ├── datatype-number-min.js │ │ │ ├── datatype-number-parse-min.js │ │ │ ├── datatype-number-parse.js │ │ │ ├── datatype-number.js │ │ │ ├── datatype-xml-format-min.js │ │ │ ├── datatype-xml-format.js │ │ │ ├── datatype-xml-min.js │ │ │ ├── datatype-xml-parse-min.js │ │ │ ├── datatype-xml-parse.js │ │ │ ├── datatype-xml.js │ │ │ ├── datatype.js │ │ │ └── lang │ │ │ │ ├── datatype-date-format.js │ │ │ │ ├── datatype-date-format_ar-JO.js │ │ │ │ ├── datatype-date-format_ar.js │ │ │ │ ├── datatype-date-format_ca-ES.js │ │ │ │ ├── datatype-date-format_ca.js │ │ │ │ ├── datatype-date-format_da-DK.js │ │ │ │ ├── datatype-date-format_da.js │ │ │ │ ├── datatype-date-format_de-AT.js │ │ │ │ ├── datatype-date-format_de-DE.js │ │ │ │ ├── datatype-date-format_de.js │ │ │ │ ├── datatype-date-format_el-GR.js │ │ │ │ ├── datatype-date-format_el.js │ │ │ │ ├── datatype-date-format_en-AU.js │ │ │ │ ├── datatype-date-format_en-CA.js │ │ │ │ ├── datatype-date-format_en-GB.js │ │ │ │ ├── datatype-date-format_en-IE.js │ │ │ │ ├── datatype-date-format_en-IN.js │ │ │ │ ├── datatype-date-format_en-JO.js │ │ │ │ ├── datatype-date-format_en-MY.js │ │ │ │ ├── datatype-date-format_en-NZ.js │ │ │ │ ├── datatype-date-format_en-PH.js │ │ │ │ ├── datatype-date-format_en-SG.js │ │ │ │ ├── datatype-date-format_en-US.js │ │ │ │ ├── datatype-date-format_en.js │ │ │ │ ├── datatype-date-format_es-AR.js │ │ │ │ ├── datatype-date-format_es-BO.js │ │ │ │ ├── datatype-date-format_es-CL.js │ │ │ │ ├── datatype-date-format_es-CO.js │ │ │ │ ├── datatype-date-format_es-EC.js │ │ │ │ ├── datatype-date-format_es-ES.js │ │ │ │ ├── datatype-date-format_es-MX.js │ │ │ │ ├── datatype-date-format_es-PE.js │ │ │ │ ├── datatype-date-format_es-PY.js │ │ │ │ ├── datatype-date-format_es-US.js │ │ │ │ ├── datatype-date-format_es-UY.js │ │ │ │ ├── datatype-date-format_es-VE.js │ │ │ │ ├── datatype-date-format_es.js │ │ │ │ ├── datatype-date-format_fi-FI.js │ │ │ │ ├── datatype-date-format_fi.js │ │ │ │ ├── datatype-date-format_fr-BE.js │ │ │ │ ├── datatype-date-format_fr-CA.js │ │ │ │ ├── datatype-date-format_fr-FR.js │ │ │ │ ├── datatype-date-format_fr.js │ │ │ │ ├── datatype-date-format_hi-IN.js │ │ │ │ ├── datatype-date-format_hi.js │ │ │ │ ├── datatype-date-format_id-ID.js │ │ │ │ ├── datatype-date-format_id.js │ │ │ │ ├── datatype-date-format_it-IT.js │ │ │ │ ├── datatype-date-format_it.js │ │ │ │ ├── datatype-date-format_ja-JP.js │ │ │ │ ├── datatype-date-format_ja.js │ │ │ │ ├── datatype-date-format_ko-KR.js │ │ │ │ ├── datatype-date-format_ko.js │ │ │ │ ├── datatype-date-format_ms-MY.js │ │ │ │ ├── datatype-date-format_ms.js │ │ │ │ ├── datatype-date-format_nb-NO.js │ │ │ │ ├── datatype-date-format_nb.js │ │ │ │ ├── datatype-date-format_nl-BE.js │ │ │ │ ├── datatype-date-format_nl-NL.js │ │ │ │ ├── datatype-date-format_nl.js │ │ │ │ ├── datatype-date-format_pl-PL.js │ │ │ │ ├── datatype-date-format_pl.js │ │ │ │ ├── datatype-date-format_pt-BR.js │ │ │ │ ├── datatype-date-format_pt.js │ │ │ │ ├── datatype-date-format_ro-RO.js │ │ │ │ ├── datatype-date-format_ro.js │ │ │ │ ├── datatype-date-format_ru-RU.js │ │ │ │ ├── datatype-date-format_ru.js │ │ │ │ ├── datatype-date-format_sv-SE.js │ │ │ │ ├── datatype-date-format_sv.js │ │ │ │ ├── datatype-date-format_th-TH.js │ │ │ │ ├── datatype-date-format_th.js │ │ │ │ ├── datatype-date-format_tr-TR.js │ │ │ │ ├── datatype-date-format_tr.js │ │ │ │ ├── datatype-date-format_vi-VN.js │ │ │ │ ├── datatype-date-format_vi.js │ │ │ │ ├── datatype-date-format_zh-Hans-CN.js │ │ │ │ ├── datatype-date-format_zh-Hans.js │ │ │ │ ├── datatype-date-format_zh-Hant-HK.js │ │ │ │ ├── datatype-date-format_zh-Hant-TW.js │ │ │ │ ├── datatype-date-format_zh-Hant.js │ │ │ │ ├── datatype-date.js │ │ │ │ ├── datatype-date_ar-JO.js │ │ │ │ ├── datatype-date_ar.js │ │ │ │ ├── datatype-date_ca-ES.js │ │ │ │ ├── datatype-date_ca.js │ │ │ │ ├── datatype-date_da-DK.js │ │ │ │ ├── datatype-date_da.js │ │ │ │ ├── datatype-date_de-AT.js │ │ │ │ ├── datatype-date_de-DE.js │ │ │ │ ├── datatype-date_de.js │ │ │ │ ├── datatype-date_el-GR.js │ │ │ │ ├── datatype-date_el.js │ │ │ │ ├── datatype-date_en-AU.js │ │ │ │ ├── datatype-date_en-CA.js │ │ │ │ ├── datatype-date_en-GB.js │ │ │ │ ├── datatype-date_en-IE.js │ │ │ │ ├── datatype-date_en-IN.js │ │ │ │ ├── datatype-date_en-JO.js │ │ │ │ ├── datatype-date_en-MY.js │ │ │ │ ├── datatype-date_en-NZ.js │ │ │ │ ├── datatype-date_en-PH.js │ │ │ │ ├── datatype-date_en-SG.js │ │ │ │ ├── datatype-date_en-US.js │ │ │ │ ├── datatype-date_en.js │ │ │ │ ├── datatype-date_es-AR.js │ │ │ │ ├── datatype-date_es-BO.js │ │ │ │ ├── datatype-date_es-CL.js │ │ │ │ ├── datatype-date_es-CO.js │ │ │ │ ├── datatype-date_es-EC.js │ │ │ │ ├── datatype-date_es-ES.js │ │ │ │ ├── datatype-date_es-MX.js │ │ │ │ ├── datatype-date_es-PE.js │ │ │ │ ├── datatype-date_es-PY.js │ │ │ │ ├── datatype-date_es-US.js │ │ │ │ ├── datatype-date_es-UY.js │ │ │ │ ├── datatype-date_es-VE.js │ │ │ │ ├── datatype-date_es.js │ │ │ │ ├── datatype-date_fi-FI.js │ │ │ │ ├── datatype-date_fi.js │ │ │ │ ├── datatype-date_fr-BE.js │ │ │ │ ├── datatype-date_fr-CA.js │ │ │ │ ├── datatype-date_fr-FR.js │ │ │ │ ├── datatype-date_fr.js │ │ │ │ ├── datatype-date_hi-IN.js │ │ │ │ ├── datatype-date_hi.js │ │ │ │ ├── datatype-date_id-ID.js │ │ │ │ ├── datatype-date_id.js │ │ │ │ ├── datatype-date_it-IT.js │ │ │ │ ├── datatype-date_it.js │ │ │ │ ├── datatype-date_ja-JP.js │ │ │ │ ├── datatype-date_ja.js │ │ │ │ ├── datatype-date_ko-KR.js │ │ │ │ ├── datatype-date_ko.js │ │ │ │ ├── datatype-date_ms-MY.js │ │ │ │ ├── datatype-date_ms.js │ │ │ │ ├── datatype-date_nb-NO.js │ │ │ │ ├── datatype-date_nb.js │ │ │ │ ├── datatype-date_nl-BE.js │ │ │ │ ├── datatype-date_nl-NL.js │ │ │ │ ├── datatype-date_nl.js │ │ │ │ ├── datatype-date_pl-PL.js │ │ │ │ ├── datatype-date_pl.js │ │ │ │ ├── datatype-date_pt-BR.js │ │ │ │ ├── datatype-date_pt.js │ │ │ │ ├── datatype-date_ro-RO.js │ │ │ │ ├── datatype-date_ro.js │ │ │ │ ├── datatype-date_ru-RU.js │ │ │ │ ├── datatype-date_ru.js │ │ │ │ ├── datatype-date_sv-SE.js │ │ │ │ ├── datatype-date_sv.js │ │ │ │ ├── datatype-date_th-TH.js │ │ │ │ ├── datatype-date_th.js │ │ │ │ ├── datatype-date_tr-TR.js │ │ │ │ ├── datatype-date_tr.js │ │ │ │ ├── datatype-date_vi-VN.js │ │ │ │ ├── datatype-date_vi.js │ │ │ │ ├── datatype-date_zh-Hans-CN.js │ │ │ │ ├── datatype-date_zh-Hans.js │ │ │ │ ├── datatype-date_zh-Hant-HK.js │ │ │ │ ├── datatype-date_zh-Hant-TW.js │ │ │ │ ├── datatype-date_zh-Hant.js │ │ │ │ ├── datatype.js │ │ │ │ ├── datatype_ar-JO.js │ │ │ │ ├── datatype_ar.js │ │ │ │ ├── datatype_ca-ES.js │ │ │ │ ├── datatype_ca.js │ │ │ │ ├── datatype_da-DK.js │ │ │ │ ├── datatype_da.js │ │ │ │ ├── datatype_de-AT.js │ │ │ │ ├── datatype_de-DE.js │ │ │ │ ├── datatype_de.js │ │ │ │ ├── datatype_el-GR.js │ │ │ │ ├── datatype_el.js │ │ │ │ ├── datatype_en-AU.js │ │ │ │ ├── datatype_en-CA.js │ │ │ │ ├── datatype_en-GB.js │ │ │ │ ├── datatype_en-IE.js │ │ │ │ ├── datatype_en-IN.js │ │ │ │ ├── datatype_en-JO.js │ │ │ │ ├── datatype_en-MY.js │ │ │ │ ├── datatype_en-NZ.js │ │ │ │ ├── datatype_en-PH.js │ │ │ │ ├── datatype_en-SG.js │ │ │ │ ├── datatype_en-US.js │ │ │ │ ├── datatype_en.js │ │ │ │ ├── datatype_es-AR.js │ │ │ │ ├── datatype_es-BO.js │ │ │ │ ├── datatype_es-CL.js │ │ │ │ ├── datatype_es-CO.js │ │ │ │ ├── datatype_es-EC.js │ │ │ │ ├── datatype_es-ES.js │ │ │ │ ├── datatype_es-MX.js │ │ │ │ ├── datatype_es-PE.js │ │ │ │ ├── datatype_es-PY.js │ │ │ │ ├── datatype_es-US.js │ │ │ │ ├── datatype_es-UY.js │ │ │ │ ├── datatype_es-VE.js │ │ │ │ ├── datatype_es.js │ │ │ │ ├── datatype_fi-FI.js │ │ │ │ ├── datatype_fi.js │ │ │ │ ├── datatype_fr-BE.js │ │ │ │ ├── datatype_fr-CA.js │ │ │ │ ├── datatype_fr-FR.js │ │ │ │ ├── datatype_fr.js │ │ │ │ ├── datatype_hi-IN.js │ │ │ │ ├── datatype_hi.js │ │ │ │ ├── datatype_id-ID.js │ │ │ │ ├── datatype_id.js │ │ │ │ ├── datatype_it-IT.js │ │ │ │ ├── datatype_it.js │ │ │ │ ├── datatype_ja-JP.js │ │ │ │ ├── datatype_ja.js │ │ │ │ ├── datatype_ko-KR.js │ │ │ │ ├── datatype_ko.js │ │ │ │ ├── datatype_ms-MY.js │ │ │ │ ├── datatype_ms.js │ │ │ │ ├── datatype_nb-NO.js │ │ │ │ ├── datatype_nb.js │ │ │ │ ├── datatype_nl-BE.js │ │ │ │ ├── datatype_nl-NL.js │ │ │ │ ├── datatype_nl.js │ │ │ │ ├── datatype_pl-PL.js │ │ │ │ ├── datatype_pl.js │ │ │ │ ├── datatype_pt-BR.js │ │ │ │ ├── datatype_pt.js │ │ │ │ ├── datatype_ro-RO.js │ │ │ │ ├── datatype_ro.js │ │ │ │ ├── datatype_ru-RU.js │ │ │ │ ├── datatype_ru.js │ │ │ │ ├── datatype_sv-SE.js │ │ │ │ ├── datatype_sv.js │ │ │ │ ├── datatype_th-TH.js │ │ │ │ ├── datatype_th.js │ │ │ │ ├── datatype_tr-TR.js │ │ │ │ ├── datatype_tr.js │ │ │ │ ├── datatype_vi-VN.js │ │ │ │ ├── datatype_vi.js │ │ │ │ ├── datatype_zh-Hans-CN.js │ │ │ │ ├── datatype_zh-Hans.js │ │ │ │ ├── datatype_zh-Hant-HK.js │ │ │ │ ├── datatype_zh-Hant-TW.js │ │ │ │ └── datatype_zh-Hant.js │ │ │ ├── dd │ │ │ ├── dd-constrain-min.js │ │ │ ├── dd-constrain.js │ │ │ ├── dd-ddm-base-min.js │ │ │ ├── dd-ddm-base.js │ │ │ ├── dd-ddm-drop-min.js │ │ │ ├── dd-ddm-drop.js │ │ │ ├── dd-ddm-min.js │ │ │ ├── dd-ddm.js │ │ │ ├── dd-delegate-min.js │ │ │ ├── dd-delegate.js │ │ │ ├── dd-drag-min.js │ │ │ ├── dd-drag.js │ │ │ ├── dd-drop-min.js │ │ │ ├── dd-drop-plugin-min.js │ │ │ ├── dd-drop-plugin.js │ │ │ ├── dd-drop.js │ │ │ ├── dd-gestures-min.js │ │ │ ├── dd-gestures.js │ │ │ ├── dd-min.js │ │ │ ├── dd-plugin-min.js │ │ │ ├── dd-plugin.js │ │ │ ├── dd-proxy-min.js │ │ │ ├── dd-proxy.js │ │ │ ├── dd-scroll-min.js │ │ │ ├── dd-scroll.js │ │ │ └── dd.js │ │ │ ├── dial │ │ │ ├── dial-min.js │ │ │ ├── dial.js │ │ │ └── lang │ │ │ │ ├── dial.js │ │ │ │ ├── dial_en.js │ │ │ │ └── dial_es.js │ │ │ ├── dom │ │ │ ├── dom-base-min.js │ │ │ ├── dom-base.js │ │ │ ├── dom-deprecated-min.js │ │ │ ├── dom-deprecated.js │ │ │ ├── dom-min.js │ │ │ ├── dom-screen-min.js │ │ │ ├── dom-screen.js │ │ │ ├── dom-style-ie-min.js │ │ │ ├── dom-style-ie.js │ │ │ ├── dom-style-min.js │ │ │ ├── dom-style.js │ │ │ ├── dom.js │ │ │ ├── selector-css2-min.js │ │ │ ├── selector-css2.js │ │ │ ├── selector-css3-min.js │ │ │ ├── selector-css3.js │ │ │ ├── selector-min.js │ │ │ ├── selector-native-min.js │ │ │ ├── selector-native.js │ │ │ └── selector.js │ │ │ ├── dump │ │ │ ├── dump-min.js │ │ │ └── dump.js │ │ │ ├── editor │ │ │ ├── createlink-base-min.js │ │ │ ├── createlink-base.js │ │ │ ├── editor-base-min.js │ │ │ ├── editor-base.js │ │ │ ├── editor-bidi-min.js │ │ │ ├── editor-bidi.js │ │ │ ├── editor-br-min.js │ │ │ ├── editor-br.js │ │ │ ├── editor-lists-min.js │ │ │ ├── editor-lists.js │ │ │ ├── editor-min.js │ │ │ ├── editor-para-min.js │ │ │ ├── editor-para.js │ │ │ ├── editor-tab-min.js │ │ │ ├── editor-tab.js │ │ │ ├── editor.js │ │ │ ├── exec-command-min.js │ │ │ ├── exec-command.js │ │ │ ├── frame-min.js │ │ │ ├── frame.js │ │ │ ├── selection-min.js │ │ │ └── selection.js │ │ │ ├── escape │ │ │ ├── escape-min.js │ │ │ └── escape.js │ │ │ ├── event-custom │ │ │ ├── event-custom-base-min.js │ │ │ ├── event-custom-base.js │ │ │ ├── event-custom-complex-min.js │ │ │ ├── event-custom-complex.js │ │ │ ├── event-custom-min.js │ │ │ └── event-custom.js │ │ │ ├── event-gestures │ │ │ ├── event-flick-min.js │ │ │ ├── event-flick.js │ │ │ ├── event-gestures-min.js │ │ │ ├── event-gestures.js │ │ │ ├── event-move-min.js │ │ │ └── event-move.js │ │ │ ├── event-simulate │ │ │ ├── event-simulate-min.js │ │ │ └── event-simulate.js │ │ │ ├── event-valuechange │ │ │ ├── event-valuechange-min.js │ │ │ └── event-valuechange.js │ │ │ ├── event │ │ │ ├── event-base-ie-min.js │ │ │ ├── event-base-ie.js │ │ │ ├── event-base-min.js │ │ │ ├── event-base.js │ │ │ ├── event-delegate-min.js │ │ │ ├── event-delegate.js │ │ │ ├── event-focus-min.js │ │ │ ├── event-focus.js │ │ │ ├── event-hover-min.js │ │ │ ├── event-hover.js │ │ │ ├── event-key-min.js │ │ │ ├── event-key.js │ │ │ ├── event-min.js │ │ │ ├── event-mouseenter-min.js │ │ │ ├── event-mouseenter.js │ │ │ ├── event-mousewheel-min.js │ │ │ ├── event-mousewheel.js │ │ │ ├── event-resize-min.js │ │ │ ├── event-resize.js │ │ │ ├── event-synthetic-min.js │ │ │ ├── event-synthetic.js │ │ │ ├── event-touch-min.js │ │ │ ├── event-touch.js │ │ │ └── event.js │ │ │ ├── highlight │ │ │ ├── highlight-accentfold-min.js │ │ │ ├── highlight-accentfold.js │ │ │ ├── highlight-base-min.js │ │ │ ├── highlight-base.js │ │ │ ├── highlight-min.js │ │ │ └── highlight.js │ │ │ ├── history-deprecated │ │ │ ├── history-deprecated-min.js │ │ │ └── history-deprecated.js │ │ │ ├── history │ │ │ ├── history-base-min.js │ │ │ ├── history-base.js │ │ │ ├── history-hash-ie-min.js │ │ │ ├── history-hash-ie.js │ │ │ ├── history-hash-min.js │ │ │ ├── history-hash.js │ │ │ ├── history-html5-min.js │ │ │ ├── history-html5.js │ │ │ ├── history-min.js │ │ │ └── history.js │ │ │ ├── imageloader │ │ │ ├── imageloader-min.js │ │ │ └── imageloader.js │ │ │ ├── intl │ │ │ ├── intl-min.js │ │ │ └── intl.js │ │ │ ├── io │ │ │ ├── io-base-min.js │ │ │ ├── io-base.js │ │ │ ├── io-form-min.js │ │ │ ├── io-form.js │ │ │ ├── io-min.js │ │ │ ├── io-queue-min.js │ │ │ ├── io-queue.js │ │ │ ├── io-upload-iframe-min.js │ │ │ ├── io-upload-iframe.js │ │ │ ├── io-xdr-min.js │ │ │ ├── io-xdr.js │ │ │ └── io.js │ │ │ ├── json │ │ │ ├── json-min.js │ │ │ ├── json-parse-min.js │ │ │ ├── json-parse.js │ │ │ ├── json-stringify-min.js │ │ │ ├── json-stringify.js │ │ │ └── json.js │ │ │ ├── jsonp │ │ │ ├── jsonp-min.js │ │ │ ├── jsonp-url-min.js │ │ │ ├── jsonp-url.js │ │ │ └── jsonp.js │ │ │ ├── loader │ │ │ ├── loader-base-min.js │ │ │ ├── loader-base.js │ │ │ ├── loader-min.js │ │ │ ├── loader-rollup-min.js │ │ │ ├── loader-rollup.js │ │ │ ├── loader-yui3-min.js │ │ │ ├── loader-yui3.js │ │ │ └── loader.js │ │ │ ├── node-flick │ │ │ ├── node-flick-min.js │ │ │ └── node-flick.js │ │ │ ├── node-focusmanager │ │ │ ├── node-focusmanager-min.js │ │ │ └── node-focusmanager.js │ │ │ ├── node-menunav │ │ │ ├── node-menunav-min.js │ │ │ └── node-menunav.js │ │ │ ├── node │ │ │ ├── align-plugin-min.js │ │ │ ├── align-plugin.js │ │ │ ├── node-base-min.js │ │ │ ├── node-base.js │ │ │ ├── node-deprecated-min.js │ │ │ ├── node-deprecated.js │ │ │ ├── node-event-delegate-min.js │ │ │ ├── node-event-delegate.js │ │ │ ├── node-event-html5-min.js │ │ │ ├── node-event-html5.js │ │ │ ├── node-event-simulate-min.js │ │ │ ├── node-event-simulate.js │ │ │ ├── node-load-min.js │ │ │ ├── node-load.js │ │ │ ├── node-min.js │ │ │ ├── node-pluginhost-min.js │ │ │ ├── node-pluginhost.js │ │ │ ├── node-screen-min.js │ │ │ ├── node-screen.js │ │ │ ├── node-style-min.js │ │ │ ├── node-style.js │ │ │ ├── node.js │ │ │ ├── shim-plugin-min.js │ │ │ └── shim-plugin.js │ │ │ ├── oop │ │ │ ├── oop-min.js │ │ │ └── oop.js │ │ │ ├── overlay │ │ │ ├── overlay-min.js │ │ │ └── overlay.js │ │ │ ├── plugin │ │ │ ├── plugin-min.js │ │ │ └── plugin.js │ │ │ ├── pluginhost │ │ │ ├── pluginhost-base-min.js │ │ │ ├── pluginhost-base.js │ │ │ ├── pluginhost-config-min.js │ │ │ ├── pluginhost-config.js │ │ │ ├── pluginhost-min.js │ │ │ └── pluginhost.js │ │ │ ├── profiler │ │ │ ├── profiler-min.js │ │ │ └── profiler.js │ │ │ ├── querystring │ │ │ ├── querystring-min.js │ │ │ ├── querystring-parse-min.js │ │ │ ├── querystring-parse-simple-min.js │ │ │ ├── querystring-parse-simple.js │ │ │ ├── querystring-parse.js │ │ │ ├── querystring-stringify-min.js │ │ │ ├── querystring-stringify-simple-min.js │ │ │ ├── querystring-stringify-simple.js │ │ │ ├── querystring-stringify.js │ │ │ └── querystring.js │ │ │ ├── queue-promote │ │ │ ├── queue-promote-min.js │ │ │ └── queue-promote.js │ │ │ ├── recordset │ │ │ ├── recordset-base-min.js │ │ │ ├── recordset-base.js │ │ │ ├── recordset-filter-min.js │ │ │ ├── recordset-filter.js │ │ │ ├── recordset-indexer-min.js │ │ │ ├── recordset-indexer.js │ │ │ ├── recordset-min.js │ │ │ ├── recordset-sort-min.js │ │ │ ├── recordset-sort.js │ │ │ └── recordset.js │ │ │ ├── resize │ │ │ ├── resize-base-min.js │ │ │ ├── resize-base.js │ │ │ ├── resize-constrain-min.js │ │ │ ├── resize-constrain.js │ │ │ ├── resize-min.js │ │ │ ├── resize-proxy-min.js │ │ │ ├── resize-proxy.js │ │ │ └── resize.js │ │ │ ├── scrollview │ │ │ ├── scrollview-base-ie-min.js │ │ │ ├── scrollview-base-ie.js │ │ │ ├── scrollview-base-min.js │ │ │ ├── scrollview-base.js │ │ │ ├── scrollview-min.js │ │ │ ├── scrollview-paginator-min.js │ │ │ ├── scrollview-paginator.js │ │ │ ├── scrollview-scrollbars-min.js │ │ │ ├── scrollview-scrollbars.js │ │ │ └── scrollview.js │ │ │ ├── simpleyui │ │ │ ├── simpleyui-min.js │ │ │ └── simpleyui.js │ │ │ ├── slider │ │ │ ├── clickable-rail-min.js │ │ │ ├── clickable-rail.js │ │ │ ├── range-slider-min.js │ │ │ ├── range-slider.js │ │ │ ├── slider-base-min.js │ │ │ ├── slider-base.js │ │ │ ├── slider-min.js │ │ │ ├── slider-value-range-min.js │ │ │ ├── slider-value-range.js │ │ │ └── slider.js │ │ │ ├── sortable │ │ │ ├── sortable-min.js │ │ │ ├── sortable-scroll-min.js │ │ │ ├── sortable-scroll.js │ │ │ └── sortable.js │ │ │ ├── stylesheet │ │ │ ├── stylesheet-min.js │ │ │ └── stylesheet.js │ │ │ ├── substitute │ │ │ ├── substitute-min.js │ │ │ └── substitute.js │ │ │ ├── swf │ │ │ ├── swf-min.js │ │ │ └── swf.js │ │ │ ├── swfdetect │ │ │ ├── swfdetect-min.js │ │ │ └── swfdetect.js │ │ │ ├── tabview │ │ │ ├── tabview-base-min.js │ │ │ ├── tabview-base.js │ │ │ ├── tabview-min.js │ │ │ ├── tabview-plugin-min.js │ │ │ ├── tabview-plugin.js │ │ │ └── tabview.js │ │ │ ├── test │ │ │ ├── test-min.js │ │ │ └── test.js │ │ │ ├── text │ │ │ ├── text-accentfold-min.js │ │ │ ├── text-accentfold.js │ │ │ ├── text-data-accentfold-min.js │ │ │ ├── text-data-accentfold.js │ │ │ ├── text-data-wordbreak-min.js │ │ │ ├── text-data-wordbreak.js │ │ │ ├── text-min.js │ │ │ ├── text-wordbreak-min.js │ │ │ ├── text-wordbreak.js │ │ │ └── text.js │ │ │ ├── transition │ │ │ ├── transition-min.js │ │ │ ├── transition-native-min.js │ │ │ ├── transition-native.js │ │ │ ├── transition-timer-min.js │ │ │ ├── transition-timer.js │ │ │ └── transition.js │ │ │ ├── uploader │ │ │ ├── uploader-min.js │ │ │ └── uploader.js │ │ │ ├── widget-anim │ │ │ ├── widget-anim-min.js │ │ │ └── widget-anim.js │ │ │ ├── widget │ │ │ ├── widget-base-ie-min.js │ │ │ ├── widget-base-ie.js │ │ │ ├── widget-base-min.js │ │ │ ├── widget-base.js │ │ │ ├── widget-child-min.js │ │ │ ├── widget-child.js │ │ │ ├── widget-htmlparser-min.js │ │ │ ├── widget-htmlparser.js │ │ │ ├── widget-locale-min.js │ │ │ ├── widget-locale.js │ │ │ ├── widget-min.js │ │ │ ├── widget-parent-min.js │ │ │ ├── widget-parent.js │ │ │ ├── widget-position-align-min.js │ │ │ ├── widget-position-align.js │ │ │ ├── widget-position-constrain-min.js │ │ │ ├── widget-position-constrain.js │ │ │ ├── widget-position-min.js │ │ │ ├── widget-position.js │ │ │ ├── widget-skin-min.js │ │ │ ├── widget-skin.js │ │ │ ├── widget-stack-min.js │ │ │ ├── widget-stack.js │ │ │ ├── widget-stdmod-min.js │ │ │ ├── widget-stdmod.js │ │ │ ├── widget-uievents-min.js │ │ │ ├── widget-uievents.js │ │ │ └── widget.js │ │ │ ├── yql │ │ │ ├── yql-min.js │ │ │ └── yql.js │ │ │ └── yui │ │ │ ├── features-min.js │ │ │ ├── features.js │ │ │ ├── get-min.js │ │ │ ├── get.js │ │ │ ├── intl-base-min.js │ │ │ ├── intl-base.js │ │ │ ├── rls-min.js │ │ │ ├── rls.js │ │ │ ├── yui-base-min.js │ │ │ ├── yui-base.js │ │ │ ├── yui-later-min.js │ │ │ ├── yui-later.js │ │ │ ├── yui-log-min.js │ │ │ ├── yui-log.js │ │ │ ├── yui-min.js │ │ │ ├── yui-throttle-min.js │ │ │ ├── yui-throttle.js │ │ │ └── yui.js │ └── ytree │ │ ├── TreeView │ │ ├── HTMLNode.js │ │ ├── MenuNode.js │ │ ├── Node.js │ │ ├── RootNode.js │ │ ├── TaskNode.js │ │ ├── TextNode.js │ │ ├── TreeView.js │ │ └── anim │ │ │ ├── TVAnim.js │ │ │ ├── TVFadeIn.js │ │ │ └── TVFadeOut.js │ │ └── treeutil.js │ ├── install │ ├── dbConfig.js │ ├── installCommon.js │ ├── license.js │ ├── oc_convert.js │ ├── oc_install.js │ ├── register.js │ └── siteConfig.js │ ├── modules │ ├── ACLRoles │ │ └── ACLRoles.js │ ├── AM_ProjectTemplates │ │ └── jsclass_scheduler.js │ ├── Accounts │ │ └── Account.js │ ├── Administration │ │ └── javascript │ │ │ ├── Administration.js │ │ │ └── Async.js │ ├── Calendar │ │ └── Cal.js │ ├── Campaigns │ │ ├── DetailView.js │ │ ├── WebToLead.js │ │ └── wizard.js │ ├── Connectors │ │ └── Connector.js │ ├── Contacts │ │ └── Contact.js │ ├── Currencies │ │ └── EditView.js │ ├── Documents │ │ └── documents.js │ ├── EAPM │ │ └── EAPMEdit.js │ ├── EmailTemplates │ │ └── EmailTemplate.js │ ├── Home │ │ └── tour.js │ ├── InboundEmail │ │ └── InboundEmail.js │ ├── Leads │ │ └── Lead.js │ ├── Meetings │ │ ├── duration_dependency.js │ │ └── jsclass_scheduler.js │ ├── MergeRecords │ │ └── Merge.js │ ├── Project │ │ ├── Project.js │ │ └── jsclass_scheduler.js │ ├── ProjectTask │ │ └── ProjectTask.js │ ├── Schedulers │ │ └── Schedulers.js │ ├── Studio │ │ ├── JSTransaction.js │ │ ├── studio.js │ │ ├── studiodd.js │ │ ├── studiotabgroups.js │ │ └── ygDDListStudio.js │ ├── UpgradeWizard │ │ └── upgradeWizard.js │ └── Users │ │ ├── DetailView.js │ │ ├── PasswordRequirementBox.js │ │ ├── User.js │ │ ├── UserEditView.js │ │ └── login.js │ ├── service │ └── utils │ │ └── SugarRest.js │ └── themes │ ├── Sugar5 │ └── js │ │ └── style.js │ └── default │ └── js │ └── style.js ├── lib ├── API │ ├── JsonApi │ │ └── v1 │ │ │ ├── Enumerator │ │ │ ├── LinksMessage.php │ │ │ ├── RelationshipType.php │ │ │ ├── ResourceEnum.php │ │ │ └── SugarBeanRelationshipType.php │ │ │ ├── Filters │ │ │ ├── Interfaces │ │ │ │ ├── ByIdFilterInterpreter.php │ │ │ │ ├── ByPreMadeFilterInterpreter.php │ │ │ │ ├── HasParserInterface.php │ │ │ │ ├── OperatorInterface.php │ │ │ │ ├── ParserInterface.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Interpreters │ │ │ │ ├── ByIdFilters │ │ │ │ │ └── ByIdFilter.php │ │ │ │ ├── ByPreMadeFilters │ │ │ │ │ └── Today.php │ │ │ │ └── FilterInterpreter.php │ │ │ ├── Operators │ │ │ │ ├── Comparators │ │ │ │ │ ├── EqualsOperator.php │ │ │ │ │ ├── GreaterThanOperator.php │ │ │ │ │ ├── GreaterThanOrEqualsOperator.php │ │ │ │ │ ├── InOperator.php │ │ │ │ │ ├── LessThanOperator.php │ │ │ │ │ ├── LessThanOrEqualsOperator.php │ │ │ │ │ ├── NotEqualsOperator.php │ │ │ │ │ └── NotInOperator.php │ │ │ │ ├── FieldOperator.php │ │ │ │ ├── Operator.php │ │ │ │ ├── SpecialOperator.php │ │ │ │ └── Strings │ │ │ │ │ ├── LikeOperator.php │ │ │ │ │ └── NotLikeOperator.php │ │ │ ├── Parsers │ │ │ │ └── FilterParser.php │ │ │ └── Validators │ │ │ │ ├── FieldValidator.php │ │ │ │ ├── FilterValidator.php │ │ │ │ ├── OperatorValidator.php │ │ │ │ ├── SpecialOperatorValidator.php │ │ │ │ └── ValueValidator.php │ │ │ ├── Interfaces │ │ │ ├── JsonApiResourceIdentifier.php │ │ │ └── JsonApiResponseInterface.php │ │ │ ├── JsonApi.php │ │ │ ├── Links.php │ │ │ ├── Repositories │ │ │ ├── FilterRepository.php │ │ │ └── RelationshipRepository.php │ │ │ ├── Resource │ │ │ ├── Relationship.php │ │ │ ├── Resource.php │ │ │ ├── ResourceIdentifier.php │ │ │ └── SuiteBeanResource.php │ │ │ └── schema.json │ ├── OAuth2 │ │ ├── .gitignore │ │ ├── Entities │ │ │ ├── AccessTokenEntity.php │ │ │ ├── AuthCodeEntity.php │ │ │ ├── ClientEntity.php │ │ │ ├── RefreshTokenEntity.php │ │ │ ├── ScopeEntity.php │ │ │ └── UserEntity.php │ │ ├── Exception │ │ │ ├── GrantTypeNotAllowedForClient.php │ │ │ └── OAuth2.php │ │ ├── Keys.php │ │ ├── Middleware │ │ │ ├── AuthorizationServer.php │ │ │ └── ResourceServer.php │ │ ├── README.md │ │ └── Repositories │ │ │ ├── AccessTokenRepository.php │ │ │ ├── AuthCodeRepository.php │ │ │ ├── ClientRepository.php │ │ │ ├── RefreshTokenRepository.php │ │ │ ├── ScopeRepository.php │ │ │ └── UserRepository.php │ ├── core │ │ ├── app.php │ │ └── containers.php │ ├── public │ │ └── index.php │ └── v8 │ │ ├── Controller │ │ ├── ApiController.php │ │ ├── ModuleController.php │ │ ├── OAuth2Controller.php │ │ └── SchemaController.php │ │ ├── Exception │ │ ├── ApiException.php │ │ ├── BadRequestException.php │ │ ├── ConflictException.php │ │ ├── EmptyBodyException.php │ │ ├── ForbiddenException.php │ │ ├── IdAlreadyExistsException.php │ │ ├── InvalidJsonApiRequestException.php │ │ ├── InvalidJsonApiResponseException.php │ │ ├── ModuleNotFoundException.php │ │ ├── NotAcceptableException.php │ │ ├── NotAllowedException.php │ │ ├── NotFoundException.php │ │ ├── NotImplementedException.php │ │ ├── ReservedKeywordNotAllowedException.php │ │ └── UnsupportedMediaTypeException.php │ │ ├── Library │ │ ├── ModulesLib.php │ │ └── UtilityLib.php │ │ ├── callable │ │ ├── README.md │ │ └── oauth2.php │ │ ├── container │ │ ├── ApiController.php │ │ ├── ApplicationLanguage.php │ │ ├── AuthenticationController.php │ │ ├── AuthorizationServer.php │ │ ├── ByAttributesFilterInterpreters.php │ │ ├── ByIdFilterInterpreters.php │ │ ├── ByPreMadeFilterInterpreters.php │ │ ├── ConfigurationManager.php │ │ ├── CurrentLanguage.php │ │ ├── DatabaseManager.php │ │ ├── DateTimeConverter.php │ │ ├── FilterFieldOperators.php │ │ ├── FilterInterpreter.php │ │ ├── FilterOperators.php │ │ ├── FilterRepository.php │ │ ├── FilterSpecialOperators.php │ │ ├── JsonApi.php │ │ ├── Links.php │ │ ├── LoggerInterface.php │ │ ├── ModuleController.php │ │ ├── ModuleLanguage.php │ │ ├── ModulesLib.php │ │ ├── OAuth2Controller.php │ │ ├── Relationship.php │ │ ├── RelationshipRepository.php │ │ ├── Resource.php │ │ ├── ResourceIdentifier.php │ │ ├── ResourceServer.php │ │ ├── ResponseInterface.php │ │ ├── SchemaController.php │ │ ├── ServerRequestInterface.php │ │ ├── SuiteBeanResource.php │ │ ├── cookie.php │ │ └── current_user.php │ │ ├── route │ │ ├── moduleRoutes.php │ │ ├── oauth2Routes.php │ │ └── schemaRoutes.php │ │ └── swagger.json ├── Enumerator │ └── ExceptionCode.php ├── Exception │ ├── AccessDeniedException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── NotAllowedException.php │ └── NotFoundException.php ├── Log │ ├── CliLoggerFormatter.php │ ├── CliLoggerHandler.php │ └── SugarLoggerHandler.php ├── Robo │ ├── Plugin │ │ └── Commands │ │ │ ├── ApiCommands.php │ │ │ ├── BuildCommands.php │ │ │ ├── CleanCacheCommands.php │ │ │ ├── CodeCoverageCommands.php │ │ │ ├── CodingStandardCommands.php │ │ │ ├── ElasticSearchCommands.php │ │ │ ├── RepairCommands.php │ │ │ ├── TestEnvironmentCommands.php │ │ │ ├── TestRunCommands.php │ │ │ └── UpgradeCommands.php │ ├── Traits │ │ ├── CliRunnerTrait.php │ │ └── RoboTrait.php │ └── config.php ├── Search │ ├── ElasticSearch │ │ ├── ElasticSearchClientBuilder.php │ │ ├── ElasticSearchEngine.php │ │ ├── ElasticSearchHooks.php │ │ ├── ElasticSearchIndexer.php │ │ ├── ElasticSearchModuleDataPuller.php │ │ ├── defaultParams.yml │ │ └── elasticsearch.example.json │ ├── Exceptions │ │ ├── SearchEngineNotFoundException.php │ │ ├── SearchException.php │ │ ├── SearchInvalidRequestException.php │ │ └── SearchUserFriendlyException.php │ ├── Index │ │ ├── AbstractIndexer.php │ │ ├── Documentify │ │ │ ├── AbstractDocumentifier.php │ │ │ ├── JsonSerializerDocumentifier.php │ │ │ ├── SearchDefsDocumentifier.php │ │ │ └── SearchDefsDocumentifier.yml │ │ ├── IndexingLockFileTrait.php │ │ ├── IndexingSchedulerTrait.php │ │ └── IndexingStatisticsTrait.php │ ├── SearchConfigurator.php │ ├── SearchEngine.php │ ├── SearchModules.php │ ├── SearchQuery.php │ ├── SearchResults.php │ ├── SearchWrapper.php │ ├── SqlSearch │ │ └── SimpleSqlSearchEngine.php │ └── UI │ │ ├── MVC │ │ ├── Controller.php │ │ └── View.php │ │ ├── SearchFormController.php │ │ ├── SearchFormView.php │ │ ├── SearchResultsController.php │ │ ├── SearchResultsView.php │ │ ├── SearchThrowableHandler.php │ │ └── templates │ │ ├── search.form.tpl │ │ └── search.results.tpl └── Utility │ ├── ApplicationLanguage.php │ ├── ArrayMapper.php │ ├── BeanJsonSerializer.php │ ├── BeanJsonSerializer.yml │ ├── CurrentLanguage.php │ ├── ModuleLanguage.php │ ├── OperatingSystem.php │ ├── Paths.php │ ├── StringUtils.php │ ├── StringValidator.php │ ├── SuiteLogger.php │ └── SuiteValidator.php ├── log_file_restricted.html ├── maintenance.php ├── manifest.php ├── metadata ├── accounts_bugsMetaData.php ├── accounts_casesMetaData.php ├── accounts_contactsMetaData.php ├── accounts_opportunitiesMetaData.php ├── acl_roles_actionsMetaData.php ├── acl_roles_usersMetaData.php ├── addressBookMetaData.php ├── am_projecttemplates_contacts_1MetaData.php ├── am_projecttemplates_project_1MetaData.php ├── am_projecttemplates_users_1MetaData.php ├── am_tasktemplates_am_projecttemplatesMetaData.php ├── aok_knowledgebase_categoriesMetaData.php ├── aos_contracts_documentsMetaData.php ├── aos_quotes_aos_contractsMetaData.php ├── aos_quotes_aos_invoicesMetaData.php ├── aos_quotes_projectMetaData.php ├── aow_processed_aow_actionsMetaData.php ├── audit_templateMetaData.php ├── calls_contactsMetaData.php ├── calls_leadsMetaData.php ├── calls_usersMetaData.php ├── cases_bugsMetaData.php ├── configMetaData.php ├── contacts_bugsMetaData.php ├── contacts_casesMetaData.php ├── contacts_usersMetaData.php ├── cron_remove_documentsMetaData.php ├── custom_fieldsMetaData.php ├── documents_accountsMetaData.php ├── documents_bugsMetaData.php ├── documents_casesMetaData.php ├── documents_contactsMetaData.php ├── documents_opportunitiesMetaData.php ├── email_addressesMetaData.php ├── email_cacheMetaData.php ├── email_marketing_prospect_listsMetaData.php ├── emails_beansMetaData.php ├── emails_email_templatesMetaData.php ├── fields_meta_dataMetaData.php ├── foldersMetaData.php ├── fp_event_locations_fp_events_1MetaData.php ├── fp_events_contactsMetaData.php ├── fp_events_fp_event_delegates_1MetaData.php ├── fp_events_fp_event_locations_1MetaData.php ├── fp_events_leads_1MetaData.php ├── fp_events_prospects_1MetaData.php ├── import_mapsMetaData.php ├── inboundEmail_autoreplyMetaData.php ├── inboundEmail_cacheTimestampMetaData.php ├── jjwg_maps_jjwg_areasMetaData.php ├── jjwg_maps_jjwg_markersMetaData.php ├── kbdocuments_views_ratingsMetaData.php ├── linked_documentsMetaData.php ├── meetings_contactsMetaData.php ├── meetings_leadsMetaData.php ├── meetings_usersMetaData.php ├── oauth_nonce.php ├── opportunities_contactsMetaData.php ├── outboundEmailMetaData.php ├── project_bugsMetaData.php ├── project_casesMetaData.php ├── project_contacts_1MetaData.php ├── project_productsMetaData.php ├── project_relationMetaData.php ├── project_task_project_tasksMetaData.php ├── project_users_1MetaData.php ├── projects_accountsMetaData.php ├── projects_contactsMetaData.php ├── projects_opportunitiesMetaData.php ├── projects_quotesMetaData.php ├── prospect_list_campaignsMetaData.php ├── prospect_lists_prospectsMetaData.php ├── queues_beansMetaData.php ├── queues_queueMetaData.php ├── roles_modulesMetaData.php ├── roles_usersMetaData.php ├── schedulers_timesMetaData.php ├── securitygroups_acl_rolesMetaData.php ├── securitygroups_defaultsMetaData.php ├── securitygroups_recordsMetaData.php ├── securitygroups_usersMetaData.php ├── surveyquestionoptions_surveyquestionresponsesMetaData.php ├── user_feedsMetaData.php ├── usersMetaData.php ├── users_last_importMetaData.php ├── users_passwordLinkMetaData.php └── users_signaturesMetaData.php ├── modules ├── ACL │ ├── ACLController.php │ ├── ACLJSController.php │ ├── Forms.php │ ├── List.php │ ├── Menu.php │ ├── Save.php │ ├── install_actions.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpaneldefs.php │ ├── remove_actions.php │ └── vardefs.php ├── ACLActions │ ├── ACLAction.php │ ├── Forms.php │ ├── Menu.php │ ├── actiondefs.override.php │ ├── actiondefs.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpaneldefs.php │ └── vardefs.php ├── ACLRoles │ ├── ACLRole.php │ ├── ACLRoles.js │ ├── Delete.php │ ├── DetailUserAccess.php │ ├── DetailUserRole.php │ ├── DetailView.php │ ├── DetailView.tpl │ ├── DetailViewBody.tpl │ ├── DetailViewUser.tpl │ ├── EditAllBody.tpl │ ├── EditRole.php │ ├── EditRole.tpl │ ├── EditView.php │ ├── EditView.tpl │ ├── EditViewBody.tpl │ ├── Forms.php │ ├── ListUsers.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── Save.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── admin.php │ │ │ └── default.php │ ├── popup.tpl │ ├── vardefs.php │ └── views │ │ ├── view.classic.php │ │ └── view.list.php ├── AM_ProjectTemplates │ ├── AM_ProjectTemplates.php │ ├── AM_ProjectTemplatesListViewData.php │ ├── AM_ProjectTemplatesListViewSmarty.php │ ├── AM_ProjectTemplates_sugar.php │ ├── Dashlets │ │ └── AM_ProjectTemplatesDashlet │ │ │ ├── AM_ProjectTemplatesDashlet.meta.php │ │ │ └── AM_ProjectTemplatesDashlet.php │ ├── Menu.php │ ├── Save.php │ ├── controller.php │ ├── create_project.js │ ├── css │ │ └── style.css │ ├── gantt.php │ ├── images │ │ ├── add_milestone.png │ │ ├── bgbak.gif │ │ ├── linkArrow.png │ │ └── vgrabber.gif │ ├── js │ │ ├── custom_project.js │ │ ├── jquery.blockUI.js │ │ ├── jquery.validate.min.js │ │ ├── main_lib.js │ │ └── splitter.js │ ├── jsclass_scheduler.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── project_table.php │ ├── qtip │ │ ├── imagesloaded.pkg.min.js │ │ ├── jquery.qtip.min.css │ │ ├── jquery.qtip.min.js │ │ └── jquery.qtip.min.map │ ├── tpls │ │ ├── ListViewGeneric.tpl │ │ ├── footer.tpl │ │ └── header.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ ├── view.ganttchart.php │ │ └── view.list.php ├── AM_TaskTemplates │ ├── AM_TaskTemplates.php │ ├── AM_TaskTemplates_sugar.php │ ├── Dashlets │ │ └── AM_TaskTemplatesDashlet │ │ │ ├── AM_TaskTemplatesDashlet.meta.php │ │ │ └── AM_TaskTemplatesDashlet.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── AOBH_BusinessHours │ ├── AOBH_BusinessHours.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── AOD_Index │ ├── AOD_Index.php │ ├── AOD_Index_sugar.php │ ├── AOD_LogicHooks.php │ ├── Lib │ │ └── Zend │ │ │ └── Search │ │ │ ├── Exception.php │ │ │ ├── Lucene.php │ │ │ └── Lucene │ │ │ ├── Analysis │ │ │ ├── Analyzer.php │ │ │ ├── Analyzer │ │ │ │ ├── Common.php │ │ │ │ └── Common │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── Text │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── TextNum.php │ │ │ │ │ ├── TextNum │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── Utf8.php │ │ │ │ │ ├── Utf8 │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── Utf8Num.php │ │ │ │ │ └── Utf8Num │ │ │ │ │ └── CaseInsensitive.php │ │ │ ├── Token.php │ │ │ ├── TokenFilter.php │ │ │ └── TokenFilter │ │ │ │ ├── LowerCase.php │ │ │ │ ├── LowerCaseUtf8.php │ │ │ │ ├── ShortWords.php │ │ │ │ └── StopWords.php │ │ │ ├── Document.php │ │ │ ├── Document │ │ │ ├── Docx.php │ │ │ ├── Exception.php │ │ │ ├── Html.php │ │ │ ├── OpenXml.php │ │ │ ├── Pptx.php │ │ │ └── Xlsx.php │ │ │ ├── Exception.php │ │ │ ├── FSM.php │ │ │ ├── FSMAction.php │ │ │ ├── Field.php │ │ │ ├── Index │ │ │ ├── DictionaryLoader.php │ │ │ ├── DocsFilter.php │ │ │ ├── FieldInfo.php │ │ │ ├── SegmentInfo.php │ │ │ ├── SegmentMerger.php │ │ │ ├── SegmentWriter.php │ │ │ ├── SegmentWriter │ │ │ │ ├── DocumentWriter.php │ │ │ │ └── StreamWriter.php │ │ │ ├── Term.php │ │ │ ├── TermInfo.php │ │ │ ├── TermsPriorityQueue.php │ │ │ ├── TermsStream │ │ │ │ └── Interface.php │ │ │ └── Writer.php │ │ │ ├── Interface.php │ │ │ ├── Interface │ │ │ └── MultiSearcher.php │ │ │ ├── LockManager.php │ │ │ ├── MultiSearcher.php │ │ │ ├── PriorityQueue.php │ │ │ ├── Proxy.php │ │ │ ├── Search │ │ │ ├── BooleanExpressionRecognizer.php │ │ │ ├── Highlighter │ │ │ │ ├── Default.php │ │ │ │ └── Interface.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ │ ├── Boolean.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Fuzzy.php │ │ │ │ ├── Insignificant.php │ │ │ │ ├── MultiTerm.php │ │ │ │ ├── Phrase.php │ │ │ │ ├── Preprocessing.php │ │ │ │ ├── Preprocessing │ │ │ │ │ ├── Fuzzy.php │ │ │ │ │ ├── Phrase.php │ │ │ │ │ └── Term.php │ │ │ │ ├── Range.php │ │ │ │ ├── Term.php │ │ │ │ └── Wildcard.php │ │ │ ├── QueryEntry.php │ │ │ ├── QueryEntry │ │ │ │ ├── Phrase.php │ │ │ │ ├── Subquery.php │ │ │ │ └── Term.php │ │ │ ├── QueryHit.php │ │ │ ├── QueryLexer.php │ │ │ ├── QueryParser.php │ │ │ ├── QueryParserContext.php │ │ │ ├── QueryParserException.php │ │ │ ├── QueryToken.php │ │ │ ├── Similarity.php │ │ │ ├── Similarity │ │ │ │ └── Default.php │ │ │ ├── Weight.php │ │ │ └── Weight │ │ │ │ ├── Boolean.php │ │ │ │ ├── Empty.php │ │ │ │ ├── MultiTerm.php │ │ │ │ ├── Phrase.php │ │ │ │ └── Term.php │ │ │ ├── Storage │ │ │ ├── Directory.php │ │ │ ├── Directory │ │ │ │ └── Filesystem.php │ │ │ ├── File.php │ │ │ └── File │ │ │ │ ├── Filesystem.php │ │ │ │ └── Memory.php │ │ │ └── TermStreamsPriorityQueue.php │ ├── LuceneUtils.php │ ├── PdfParser.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ └── indexdata.tpl │ ├── vardefs.php │ └── views │ │ └── view.indexdata.php ├── AOD_IndexEvent │ ├── AOD_IndexEvent.php │ ├── AOD_IndexEvent_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── AOK_KnowledgeBase │ ├── AOK_KnowledgeBase.php │ ├── AOK_KnowledgeBase_SuggestionBox.js │ ├── AOK_KnowledgeBase_sugar.php │ ├── Dashlets │ │ └── AOK_KnowledgeBaseDashlet │ │ │ ├── AOK_KnowledgeBaseDashlet.meta.php │ │ │ └── AOK_KnowledgeBaseDashlet.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── AOK_Knowledge_Base_Categories │ ├── AOK_Knowledge_Base_Categories.php │ ├── AOK_Knowledge_Base_Categories_sugar.php │ ├── Dashlets │ │ └── AOK_Knowledge_Base_CategoriesDashlet │ │ │ ├── AOK_Knowledge_Base_CategoriesDashlet.meta.php │ │ │ └── AOK_Knowledge_Base_CategoriesDashlet.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── AOP_Case_Events │ ├── AOP_Case_Events.php │ ├── CaseEventsHook.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ └── searchdefs.php │ └── vardefs.php ├── AOP_Case_Updates │ ├── AOPAssignManager.php │ ├── AOP_Case_Updates.php │ ├── CaseUpdatesHook.php │ ├── Case_Updates.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ └── searchdefs.php │ ├── tpl │ │ └── caseUpdateForm.tpl │ ├── util.php │ └── vardefs.php ├── AOR_Charts │ ├── AOR_Chart.php │ ├── chartLines.js │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── lib │ │ └── pChart │ │ │ ├── class │ │ │ ├── pBarcode128.class.php │ │ │ ├── pBarcode39.class.php │ │ │ ├── pBubble.class.php │ │ │ ├── pCache.class.php │ │ │ ├── pData.class.php │ │ │ ├── pDraw.class.php │ │ │ ├── pImage.class.php │ │ │ ├── pIndicator.class.php │ │ │ ├── pPie.class.php │ │ │ ├── pRadar.class.php │ │ │ ├── pScatter.class.php │ │ │ ├── pSplit.class.php │ │ │ ├── pSpring.class.php │ │ │ ├── pStock.class.php │ │ │ └── pSurface.class.php │ │ │ ├── fonts │ │ │ ├── Bedizen.ttf │ │ │ ├── Forgotte.ttf │ │ │ ├── GeosansLight.ttf │ │ │ ├── MankSans.ttf │ │ │ ├── Silkscreen.ttf │ │ │ ├── advent_light.ttf │ │ │ ├── calibri.ttf │ │ │ ├── pf_arma_five.ttf │ │ │ └── verdana.ttf │ │ │ ├── imagemap.js │ │ │ ├── pChart.php │ │ │ └── palettes │ │ │ ├── autumn.color │ │ │ ├── blind.color │ │ │ ├── evening.color │ │ │ ├── kitchen.color │ │ │ ├── light.color │ │ │ ├── navy.color │ │ │ ├── shade.color │ │ │ ├── spring.color │ │ │ └── summer.color │ └── vardefs.php ├── AOR_Conditions │ ├── AOR_Condition.php │ ├── conditionLines.js │ ├── conditionLines.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── AOR_Fields │ ├── AOR_Field.php │ ├── fieldLines.js │ ├── fieldLines.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── AOR_Reports │ ├── AOR_Report.js │ ├── AOR_Report.php │ ├── AOR_Report_After.js │ ├── AOR_Report_Before.js │ ├── Dashlets │ │ └── AORReportsDashlet │ │ │ ├── AORReportsDashlet.js │ │ │ ├── AORReportsDashlet.meta.php │ │ │ ├── AORReportsDashlet.php │ │ │ ├── dashlet.tpl │ │ │ └── dashletConfigure.tpl │ ├── Menu.php │ ├── aor_utils.php │ ├── controller.php │ ├── js │ │ ├── Chart.js │ │ └── jqtree │ │ │ ├── jqtree.css │ │ │ └── tree.jquery.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── EditViewFooter.tpl │ │ ├── EditViewHeader.tpl │ │ └── report.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── AOR_Scheduled_Reports │ ├── AOR_Scheduled_Reports.php │ ├── Menu.php │ ├── emailRecipients.js │ ├── emailRecipients.php │ ├── language │ │ └── en_us.lang.php │ ├── lib │ │ └── Cron │ │ │ ├── AbstractField.php │ │ │ ├── CronExpression.php │ │ │ ├── DayOfMonthField.php │ │ │ ├── DayOfWeekField.php │ │ │ ├── FieldFactory.php │ │ │ ├── FieldInterface.php │ │ │ ├── HoursField.php │ │ │ ├── MinutesField.php │ │ │ ├── MonthField.php │ │ │ ├── YearField.php │ │ │ └── includeCron.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── AOS_Contracts │ ├── AOS_Contracts.php │ ├── AOS_Contracts_sugar.php │ ├── Dashlets │ │ └── AOS_ContractsDashlet │ │ │ ├── AOS_ContractsDashlet.meta.php │ │ │ └── AOS_ContractsDashlet.php │ ├── Forms.php │ ├── Menu.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── sidecreateviewdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ └── view.detail.php ├── AOS_Invoices │ ├── AOS_Invoices.php │ ├── AOS_Invoices_sugar.php │ ├── Dashlets │ │ └── AOS_InvoicesDashlet │ │ │ ├── AOS_InvoicesDashlet.meta.php │ │ │ └── AOS_InvoicesDashlet.php │ ├── Forms.php │ ├── Menu.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── sidecreateviewdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── AOS_Line_Item_Groups │ ├── AOS_Line_Item_Groups.php │ ├── AOS_Line_Item_Groups_sugar.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── AOS_PDF_Templates │ ├── AOS_PDF_Templates.js │ ├── AOS_PDF_Templates.php │ ├── AOS_PDF_Templates_sugar.php │ ├── Dashlets │ │ └── AOS_PDF_TemplatesDashlet │ │ │ ├── AOS_PDF_TemplatesDashlet.meta.php │ │ │ └── AOS_PDF_TemplatesDashlet.php │ ├── Forms.php │ ├── Menu.php │ ├── PDF_Lib │ │ ├── CHANGELOG.txt │ │ ├── CREDITS.txt │ │ ├── FONT INFO.txt │ │ ├── LICENSE.txt │ │ ├── classes │ │ │ ├── barcode.php │ │ │ ├── bmp.php │ │ │ ├── cssmgr.php │ │ │ ├── directw.php │ │ │ ├── form.php │ │ │ ├── gif.php │ │ │ ├── grad.php │ │ │ ├── indic.php │ │ │ ├── meter.php │ │ │ ├── svg.php │ │ │ ├── tocontents.php │ │ │ ├── ttfontsuni.php │ │ │ ├── ttfontsuni_analysis.php │ │ │ └── wmf.php │ │ ├── compress.php │ │ ├── config.php │ │ ├── config_cp.php │ │ ├── config_fonts.php │ │ ├── font │ │ │ ├── ccourier.php │ │ │ ├── ccourierb.php │ │ │ ├── ccourierbi.php │ │ │ ├── ccourieri.php │ │ │ ├── chelvetica.php │ │ │ ├── chelveticab.php │ │ │ ├── chelveticabi.php │ │ │ ├── chelveticai.php │ │ │ ├── csymbol.php │ │ │ ├── ctimes.php │ │ │ ├── ctimesb.php │ │ │ ├── ctimesbi.php │ │ │ ├── ctimesi.php │ │ │ └── czapfdingbats.php │ │ ├── graph.php │ │ ├── graph_cache │ │ │ └── dummy.txt │ │ ├── iccprofiles │ │ │ ├── SWOP2006_Coated5v2.icc │ │ │ └── sRGB_IEC61966-2-1.icc │ │ ├── includes │ │ │ ├── CJKdata.php │ │ │ ├── functions.php │ │ │ ├── ind_bn_1_001.volt.php │ │ │ ├── ind_gu_1_001.volt.php │ │ │ ├── ind_hi_1_001.volt.php │ │ │ ├── ind_kn_1_001.volt.php │ │ │ ├── ind_ml_1_001.volt.php │ │ │ ├── ind_or_1_001.volt.php │ │ │ ├── ind_pa_1_001.volt.php │ │ │ ├── ind_ta_1_001.volt.php │ │ │ ├── ind_te_1_001.volt.php │ │ │ ├── no_image.jpg │ │ │ ├── out.php │ │ │ ├── subs_core.php │ │ │ ├── subs_win-1252.php │ │ │ └── upperCase.php │ │ ├── mpdf.css │ │ ├── mpdf.php │ │ ├── mpdfi │ │ │ ├── filters │ │ │ │ ├── FilterASCII85.php │ │ │ │ └── FilterLZW.php │ │ │ ├── fpdi_pdf_parser.php │ │ │ ├── pdf_context.php │ │ │ └── pdf_parser.php │ │ ├── patterns │ │ │ ├── NOTES.txt │ │ │ ├── de.php │ │ │ ├── dictionary.txt │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── it.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ └── sv.php │ │ ├── progbar.css │ │ ├── ttfontdata │ │ │ └── dummy.txt │ │ ├── ttfonts │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ │ ├── DejaVuSansCondensed.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ │ ├── DejaVuSerifCondensed.ttf │ │ │ ├── DejaVuinfo.txt │ │ │ ├── GNUFreeFontinfo.txt │ │ │ ├── Garuda-Bold.ttf │ │ │ ├── Garuda-BoldOblique.ttf │ │ │ ├── Garuda-Oblique.ttf │ │ │ ├── Garuda.ttf │ │ │ ├── Norasi-Bold.ttf │ │ │ ├── Norasi-BoldOblique.ttf │ │ │ ├── Norasi-Oblique.ttf │ │ │ ├── Norasi.ttf │ │ │ ├── Thai Fonts License.txt │ │ │ ├── XB Riyaz.ttf │ │ │ ├── XB RiyazBd.ttf │ │ │ ├── XB RiyazBdIt.ttf │ │ │ ├── XB RiyazIt.ttf │ │ │ ├── XB Zar Bd.ttf │ │ │ ├── XB Zar BdIt.ttf │ │ │ ├── XB Zar It.ttf │ │ │ ├── XB Zar.ttf │ │ │ ├── XW Zar Font Info.txt │ │ │ ├── ind_bn_1_001.ttf │ │ │ ├── ind_gu_1_001.ttf │ │ │ ├── ind_hi_1_001.ttf │ │ │ ├── ind_kn_1_001.ttf │ │ │ ├── ind_ml_1_001.ttf │ │ │ ├── ind_or_1_001.ttf │ │ │ ├── ind_pa_1_001.ttf │ │ │ ├── ind_ta_1_001.ttf │ │ │ ├── ind_te_1_001.ttf │ │ │ ├── ocrb10.ttf │ │ │ └── ocrbinfo.txt │ │ └── utils │ │ │ ├── UnicodeData.txt │ │ │ ├── UnicodeRanges.php │ │ │ ├── font_collections.php │ │ │ ├── font_coverage.php │ │ │ ├── font_dump.php │ │ │ ├── font_names.php │ │ │ └── index.php │ ├── TemplateSampleService.php │ ├── formLetter.php │ ├── formLetterPdf.php │ ├── generatePdf.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── sidecreateviewdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ ├── samples │ │ ├── smpl_Account_Sample.php │ │ ├── smpl_Contact_Sample.php │ │ ├── smpl_Invoice_Group_Sample.php │ │ ├── smpl_Invoice_Sample.php │ │ ├── smpl_Lead_Sample.php │ │ ├── smpl_Quote_Group_Sample.php │ │ └── smpl_Quote_Sample.php │ ├── sendEmail.php │ ├── templateParser.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── AOS_Product_Categories │ ├── AOS_Product_Categories.php │ ├── AOS_Product_Categories_sugar.php │ ├── Dashlets │ │ └── AOS_Product_CategoriesDashlet │ │ │ ├── AOS_Product_CategoriesDashlet.meta.php │ │ │ └── AOS_Product_CategoriesDashlet.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ └── view.edit.php ├── AOS_Products │ ├── AOS_Products.php │ ├── AOS_Products_sugar.php │ ├── Dashlets │ │ └── AOS_ProductsDashlet │ │ │ ├── AOS_ProductsDashlet.meta.php │ │ │ └── AOS_ProductsDashlet.php │ ├── Forms.php │ ├── Menu.php │ ├── controller.php │ ├── js │ │ └── products.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── sidecreateviewdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForCustomersPurchasedProducts.php │ │ │ └── default.php │ ├── tpls │ │ └── EditViewHeader.tpl │ ├── vardefs.php │ └── views │ │ └── view.edit.php ├── AOS_Products_Quotes │ ├── AOS_Products_Quotes.php │ ├── AOS_Products_Quotes_sugar.php │ ├── AOS_Utils.php │ ├── Forms.php │ ├── Line_Items.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── line_items.js │ ├── metadata │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── lineitemeditviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── studio.php │ │ └── subpanels │ │ │ ├── ForAccounts.php │ │ │ └── default.php │ └── vardefs.php ├── AOS_Quotes │ ├── AOS_Quotes.php │ ├── AOS_Quotes_sugar.php │ ├── Dashlets │ │ └── AOS_QuotesDashlet │ │ │ ├── AOS_QuotesDashlet.meta.php │ │ │ └── AOS_QuotesDashlet.php │ ├── Forms.php │ ├── Menu.php │ ├── controller.php │ ├── converToInvoice.php │ ├── createContract.php │ ├── createOpportunity.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── sidecreateviewdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForProductPurchases.php │ │ │ └── default.php │ ├── templates │ │ ├── showPopupWithOutTemplates.tpl │ │ └── showPopupWithTemplates.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── AOW_Actions │ ├── AOW_Action.php │ ├── FormulaCalculator.php │ ├── actionLines.js │ ├── actionLines.php │ ├── actions.php │ ├── actions │ │ ├── actionBase.php │ │ ├── actionComputeField.css │ │ ├── actionComputeField.js │ │ ├── actionComputeField.php │ │ ├── actionCreateRecord.js │ │ ├── actionCreateRecord.php │ │ ├── actionModifyRecord.php │ │ ├── actionSendEmail.js │ │ ├── actionSendEmail.php │ │ └── templateParser.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── AOW_Conditions │ ├── AOW_Condition.php │ ├── conditionLines.js │ ├── conditionLines.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── AOW_Processed │ ├── AOW_Processed.php │ ├── Dashlets │ │ └── AOW_ProcessedDashlet │ │ │ ├── AOW_ProcessedDashlet.meta.php │ │ │ └── AOW_ProcessedDashlet.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ └── view.list.php ├── AOW_WorkFlow │ ├── AOW_WorkFlow.php │ ├── Dashlets │ │ └── AOW_WorkFlowDashlet │ │ │ ├── AOW_WorkFlowDashlet.meta.php │ │ │ └── AOW_WorkFlowDashlet.php │ ├── Menu.php │ ├── aow_utils.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── Accounts │ ├── Account.js │ ├── Account.php │ ├── AccountFormBase.php │ ├── AccountsJjwg_MapsLogicHook.php │ ├── AccountsListViewSmarty.php │ ├── AccountsQuickCreate.php │ ├── Dashlets │ │ └── MyAccountsDashlet │ │ │ ├── MyAccountsDashlet.data.php │ │ │ ├── MyAccountsDashlet.meta.php │ │ │ └── MyAccountsDashlet.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── Save.php │ ├── ShowDuplicates.html │ ├── ShowDuplicates.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── acldefs.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── fieldGroups.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForEmails.php │ │ │ ├── ForProspectLists.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.list.php ├── Activities │ ├── EmailReminder.php │ ├── Forms.php │ ├── Menu.php │ ├── Popup_picker.php │ ├── SetAcceptStatus.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── SubPanelViewContacts.html │ ├── config.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpaneldefs.php │ ├── tpls │ │ ├── PopupBody.tpl │ │ ├── PopupFooter.tpl │ │ └── PopupHeader.tpl │ └── views │ │ ├── view.list.php │ │ └── view.modulelistmenu.php ├── Administration │ ├── AODAdmin.php │ ├── AODAdmin.tpl │ ├── AOPAdmin.php │ ├── AOPAdmin.tpl │ ├── AOSAdmin.php │ ├── AOSAdmin.tpl │ ├── Administration.php │ ├── Async.php │ ├── BusinessHours.php │ ├── BusinessHours.tpl │ ├── Common.php │ ├── CustomizeFields.php │ ├── Development.php │ ├── Diagnostic.php │ ├── Diagnostic.tpl │ ├── DiagnosticDelete.php │ ├── DiagnosticDownload.php │ ├── DiagnosticRun.php │ ├── DisplayWarnings.php │ ├── ElasticSearchSettings.php │ ├── ExportCustomFieldStructure.php │ ├── Forms.php │ ├── GoogleCalendarSettings.php │ ├── GoogleCalendarSettings.tpl │ ├── GoogleCalendarSettingsHandler.php │ ├── ImportCustomFieldStructure.php │ ├── Locale.php │ ├── Locale.tpl │ ├── Menu.php │ ├── PasswordManager.php │ ├── PasswordManager.tpl │ ├── PasswordManagerSecurity.tpl │ ├── QuickRepairAndRebuild.php │ ├── RebuildAudit.php │ ├── RebuildConfig.php │ ├── RebuildDashlets.php │ ├── RebuildExpressionPlugins.php │ ├── RebuildFulltextIndices.php │ ├── RebuildJSLang.php │ ├── RebuildRelationship.php │ ├── RebuildSchedulers.php │ ├── RebuildSprites.php │ ├── RepairActivities.php │ ├── RepairFieldCasing.php │ ├── RepairIE.php │ ├── RepairIndex.php │ ├── RepairJSFile.php │ ├── RepairSeedUsers.php │ ├── RepairUploadFolder.php │ ├── RepairXSS.php │ ├── Save.php │ ├── Search │ │ ├── Controller.php │ │ ├── ElasticSearch │ │ │ ├── Controller.php │ │ │ ├── View.php │ │ │ ├── scripts.js │ │ │ └── view.tpl │ │ ├── MVC │ │ │ ├── Controller.php │ │ │ └── View.php │ │ ├── View.php │ │ ├── ajaxSubmit.js │ │ ├── scripts.js │ │ └── view.tpl │ ├── SearchSettings.php │ ├── SugarSpriteBuilder.php │ ├── SyncInboundEmailAccounts.php │ ├── SyncInboundEmailAccounts │ │ ├── SyncInboundEmailAccountsEmptyException.php │ │ ├── SyncInboundEmailAccountsException.php │ │ ├── SyncInboundEmailAccountsIMapConnectionException.php │ │ ├── SyncInboundEmailAccountsInvalidMethodTypeException.php │ │ ├── SyncInboundEmailAccountsInvalidSubActionArgumentsException.php │ │ ├── SyncInboundEmailAccountsNoMethodException.php │ │ ├── SyncInboundEmailAccountsPage.php │ │ └── SyncInboundEmailAccountsSubActionHandler.php │ ├── Updater.html │ ├── Updater.php │ ├── Upgrade.php │ ├── UpgradeAccess.php │ ├── UpgradeFields.php │ ├── UpgradeHistory.php │ ├── UpgradeIISAccess.php │ ├── UpgradeWizard.php │ ├── UpgradeWizardCommon.php │ ├── UpgradeWizard_commit.php │ ├── UpgradeWizard_prepare.php │ ├── action_view_map.php │ ├── callJSRepair.php │ ├── clear_chart_cache.php │ ├── controller.php │ ├── expandDatabase.php │ ├── index.html │ ├── index.php │ ├── index.tpl │ ├── javascript │ │ ├── Administration.js │ │ └── Async.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ └── adminpaneldefs.php │ ├── ncc_config.php │ ├── repairDatabase.php │ ├── repairSelectModule.php │ ├── repairUniSearch.php │ ├── templates │ │ ├── ConfigureAjaxUI.tpl │ │ ├── ConfigureTabs.tpl │ │ ├── GlobalSearchSettings.tpl │ │ ├── Languages.tpl │ │ ├── QuickRepairAndRebuild.tpl │ │ ├── RebuildConfig.tpl │ │ ├── RebuildSprites.tpl │ │ ├── RepairDatabase.tpl │ │ ├── RepairXSS.tpl │ │ ├── ShortcutBar.tpl │ │ ├── SyncInboundEmailAccounts.tpl │ │ ├── themeConfigSettings.tpl │ │ └── themeSettings.tpl │ ├── undoupdateclass.php │ ├── updateTimezonePrefs.php │ ├── updateclass.php │ ├── updater_utils.php │ ├── upgrade_custom_relationships.php │ ├── vardefs.php │ └── views │ │ ├── view.backups.php │ │ ├── view.configureajaxui.php │ │ ├── view.configuretabs.php │ │ ├── view.globalsearchsettings.php │ │ ├── view.languages.php │ │ ├── view.repair.php │ │ ├── view.themeconfigsettings.php │ │ └── view.themesettings.php ├── Alerts │ ├── Alert.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── defaultviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── templates │ │ ├── default.tpl │ │ └── json.tpl │ ├── vardefs.php │ └── views │ │ ├── view.default.php │ │ └── view.json.php ├── Audit │ ├── Audit.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── field_assoc.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── BOARD │ ├── BOARD.php │ ├── BOARD_CONFIG.php │ ├── BOARD_USER_CONFIG.php │ ├── ConfigTables.php │ ├── Dashlets │ │ └── BOARD_OPPORTUNITIESDashlet │ │ │ ├── BOARD_OPPORTUNITIESDashlet.meta.php │ │ │ └── BOARD_OPPORTUNITIESDashlet.php │ ├── Menu.php │ ├── ModuleConfig.php │ ├── boardSettings.php │ ├── bord-conf.php │ ├── controller.php │ ├── helpers │ │ └── BoardConfModuleToBeanRequest.php │ ├── hooks │ │ └── js_add_hook.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ ├── moduleSettingsViews.php │ ├── src │ │ ├── css │ │ │ └── include.css │ │ └── js │ │ │ └── js_menu_add.js │ ├── tpl │ │ ├── SettingsPage.tpl │ │ ├── moduleSettingsViews.tpl │ │ ├── selectBoard.tpl │ │ └── table.tpl │ ├── vardefs.php │ └── views │ │ ├── view.boardSettingsView.php │ │ ├── view.list.php │ │ └── view.moduleSettings.php ├── BeanDictionary.php ├── Bugs │ ├── Bug.php │ ├── BugsQuickCreate.php │ ├── Dashlets │ │ └── MyBugsDashlet │ │ │ ├── MyBugsDashlet.data.php │ │ │ ├── MyBugsDashlet.meta.php │ │ │ └── MyBugsDashlet.php │ ├── Menu.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForEmails.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── Calendar │ ├── Cal.js │ ├── Calendar.php │ ├── CalendarActivity.php │ ├── CalendarDisplay.php │ ├── CalendarGrid.php │ ├── CalendarUtils.php │ ├── Dashlets │ │ └── CalendarDashlet │ │ │ ├── CalendarDashlet.en_us.lang.php │ │ │ ├── CalendarDashlet.meta.php │ │ │ ├── CalendarDashlet.php │ │ │ └── CalendarDashletOptions.tpl │ ├── Menu.php │ ├── action_view_map.php │ ├── controller.php │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ ├── gcal.js │ │ ├── lang-all.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── lib │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.min.js │ │ │ └── moment.min.js │ │ └── license.txt │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── processScreenSize.php │ ├── tpls │ │ ├── editHeader.tpl │ │ ├── empty.tpl │ │ ├── footer.tpl │ │ ├── form.tpl │ │ ├── header.tpl │ │ ├── main.tpl │ │ ├── repeat.tpl │ │ ├── settings.tpl │ │ └── shared_users.tpl │ └── views │ │ ├── view.createinvitee.php │ │ ├── view.getgr.php │ │ ├── view.getgrusers.php │ │ ├── view.json.php │ │ ├── view.quickedit.php │ │ └── view.savesettings.php ├── Calls │ ├── Call.php │ ├── CallFormBase.php │ ├── CallHelper.php │ ├── CallsQuickCreate.php │ ├── Dashlets │ │ └── MyCallsDashlet │ │ │ ├── MyCallsDashlet.data.php │ │ │ ├── MyCallsDashlet.meta.php │ │ │ └── MyCallsDashlet.php │ ├── Menu.php │ ├── Reschedule.php │ ├── Save.php │ ├── SubPanelViewInvitees.html │ ├── SubPanelViewInvitees.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForActivities.php │ │ │ ├── ForHistory.php │ │ │ └── default.php │ ├── reschedule_history.php │ ├── tpls │ │ ├── QuickCreate.tpl │ │ ├── additionalDetails.body.tpl │ │ ├── additionalDetails.caption.tpl │ │ ├── detailHeader.tpl │ │ ├── footer.tpl │ │ └── header.tpl │ ├── vardefs.php │ └── views │ │ ├── view.edit.php │ │ └── view.list.php ├── Calls_Reschedule │ ├── Calls_Reschedule.php │ ├── Calls_Reschedule_sugar.php │ ├── Menu.php │ ├── Reschedule_popup.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── reschedule_count.php │ ├── reschedule_form.js │ └── vardefs.php ├── CampaignLog │ ├── CampaignLog.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpanels │ │ │ ├── ForTargets.php │ │ │ └── default.php │ └── vardefs.php ├── CampaignTrackers │ ├── CampaignTracker.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── Forms.html │ ├── Forms.php │ ├── Menu.php │ ├── Save.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── Campaigns │ ├── Campaign.php │ ├── CampaignDiagnostic.html │ ├── CampaignDiagnostic.php │ ├── CaptchaValidate.php │ ├── Charts.php │ ├── Charts1.php │ ├── Dashlets │ │ └── TopCampaignsDashlet │ │ │ ├── TopCampaignsDashlet.meta.php │ │ │ ├── TopCampaignsDashlet.php │ │ │ ├── TopCampaignsDashlet.tpl │ │ │ └── TopCampaignsDashletConfigure.tpl │ ├── Delete.php │ ├── DeleteTestCampaigns.php │ ├── DetailView.js │ ├── DotListWizardMenu.php │ ├── EmailQueue.php │ ├── GenerateWebToLeadForm.php │ ├── MailMerge.php │ ├── Menu.php │ ├── PopupCampaignRoi.html │ ├── PopupCampaignRoi.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── ProcessBouncedEmails.php │ ├── ProspectLink.php │ ├── QueueCampaign.php │ ├── RemoveMe.php │ ├── RoiDetailView.php │ ├── RoiDetailView.tpl │ ├── Save.php │ ├── Schedule.html │ ├── Schedule.php │ ├── SearchForm_NewsLetter.html │ ├── SubPanelViewer.php │ ├── Subscriptions.html │ ├── Subscriptions.php │ ├── Subscriptions.tpl │ ├── TrackDetailView.php │ ├── TrackDetailView.tpl │ ├── Tracker.php │ ├── WebToLead.js │ ├── WebToLeadCapture.php │ ├── WebToLeadCreation.html │ ├── WebToLeadCreation.php │ ├── WebToLeadDownloadForm.html │ ├── WebToLeadForm.html │ ├── WebToLeadFormBuilder.php │ ├── WebToLeadFormBuilderOptInCheckbox.tpl │ ├── WebToLeadFormSave.php │ ├── WebToPersonCapture.php │ ├── WizardCampaignSave.php │ ├── WizardEmailSetup.html │ ├── WizardEmailSetup.php │ ├── WizardEmailSetupSave.php │ ├── WizardHome.html │ ├── WizardHome.php │ ├── WizardMarketing.html │ ├── WizardMarketing.php │ ├── WizardMarketingSave.php │ ├── WizardNewsletter.html │ ├── WizardNewsletter.php │ ├── WizardNewsletterSave.php │ ├── action_file_map.php │ ├── chart.tpl │ ├── controller.php │ ├── field_arrays.php │ ├── image.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForEmailMarketing.php │ │ │ └── default.php │ ├── tpls │ │ ├── WizardCampaignBudget.tpl │ │ ├── WizardCampaignHeader.tpl │ │ ├── WizardCampaignTargetList.tpl │ │ ├── WizardCampaignTargetListForNonNewsLetter.tpl │ │ ├── WizardCampaignTracker.tpl │ │ ├── WizardHomeStart.tpl │ │ ├── WizardNewsletter.tpl │ │ ├── campaign-inactive.tpl │ │ └── progressStepsStyle.html │ ├── utils.php │ ├── vardefs.php │ ├── views │ │ ├── view.classic.php │ │ ├── view.detail.php │ │ ├── view.modulelistmenu.php │ │ └── view.newsletterlist.php │ └── wizard.js ├── Cases │ ├── Case.php │ ├── CasesJjwg_MapsLogicHook.php │ ├── CasesListViewSmarty.php │ ├── CasesQuickCreate.php │ ├── Dashlets │ │ └── MyCasesDashlet │ │ │ ├── MyCasesDashlet.data.php │ │ │ ├── MyCasesDashlet.meta.php │ │ │ └── MyCasesDashlet.php │ ├── Menu.php │ ├── SugarFeeds │ │ └── CaseFeed.php │ ├── controller.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── accountsquickcreatedefs.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForAccounts.php │ │ │ ├── ForEmails.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── vardefs.php │ └── views │ │ ├── view.edit.php │ │ └── view.list.php ├── Charts │ ├── Dashlets │ │ ├── CampaignROIChartDashlet │ │ │ ├── CampaignROIChartConfigure.tpl │ │ │ ├── CampaignROIChartDashlet.data.php │ │ │ ├── CampaignROIChartDashlet.en_us.lang.php │ │ │ ├── CampaignROIChartDashlet.meta.php │ │ │ └── CampaignROIChartDashlet.php │ │ ├── MyPipelineBySalesStageDashlet │ │ │ ├── MyPipelineBySalesStageConfigure.tpl │ │ │ ├── MyPipelineBySalesStageDashlet.data.php │ │ │ ├── MyPipelineBySalesStageDashlet.en_us.lang.php │ │ │ ├── MyPipelineBySalesStageDashlet.meta.php │ │ │ └── MyPipelineBySalesStageDashlet.php │ │ ├── OpportunitiesByLeadSourceByOutcomeDashlet │ │ │ ├── OpportunitiesByLeadSourceByOutcomeConfigure.tpl │ │ │ ├── OpportunitiesByLeadSourceByOutcomeDashlet.data.php │ │ │ ├── OpportunitiesByLeadSourceByOutcomeDashlet.en_us.lang.php │ │ │ ├── OpportunitiesByLeadSourceByOutcomeDashlet.meta.php │ │ │ └── OpportunitiesByLeadSourceByOutcomeDashlet.php │ │ ├── OpportunitiesByLeadSourceDashlet │ │ │ ├── OpportunitiesByLeadSourceConfigure.tpl │ │ │ ├── OpportunitiesByLeadSourceDashlet.data.php │ │ │ ├── OpportunitiesByLeadSourceDashlet.en_us.lang.php │ │ │ ├── OpportunitiesByLeadSourceDashlet.meta.php │ │ │ └── OpportunitiesByLeadSourceDashlet.php │ │ ├── OutcomeByMonthDashlet │ │ │ ├── OutcomeByMonthConfigure.tpl │ │ │ ├── OutcomeByMonthDashlet.data.php │ │ │ ├── OutcomeByMonthDashlet.en_us.lang.php │ │ │ ├── OutcomeByMonthDashlet.meta.php │ │ │ └── OutcomeByMonthDashlet.php │ │ ├── PipelineBySalesStageDashlet │ │ │ ├── PipelineBySalesStageConfigure.tpl │ │ │ ├── PipelineBySalesStageDashlet.data.php │ │ │ ├── PipelineBySalesStageDashlet.en_us.lang.php │ │ │ ├── PipelineBySalesStageDashlet.meta.php │ │ │ └── PipelineBySalesStageDashlet.php │ │ └── PredefinedChartDashletScript.tpl │ ├── DynamicAction.php │ ├── PredefinedChart.php │ ├── chartdefs.php │ ├── code │ │ ├── Chart_lead_source_by_outcome.php │ │ ├── Chart_my_pipeline_by_sales_stage.php │ │ ├── Chart_outcome_by_month.php │ │ ├── Chart_pipeline_by_lead_source.php │ │ ├── Chart_pipeline_by_sales_stage.php │ │ └── predefined_charts.php │ └── language │ │ └── en_us.lang.php ├── Configurator │ ├── Configurator.php │ ├── Forms.php │ ├── LogView.php │ ├── Menu.php │ ├── UploadFileCheck.php │ ├── action_view_map.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── SugarpdfSettingsdefs.php │ ├── tpls │ │ ├── EditView.tpl │ │ ├── SugarpdfSettings.tpl │ │ ├── SugarpdfSettingsFields.tpl │ │ ├── addFontResult.tpl │ │ ├── addFontView.tpl │ │ ├── adminwizard.tpl │ │ ├── fontmanager.tpl │ │ └── historyContactsEmails.tpl │ └── views │ │ ├── view.addfontresult.php │ │ ├── view.addfontview.php │ │ ├── view.adminwizard.php │ │ ├── view.edit.php │ │ ├── view.fontmanager.php │ │ ├── view.historycontactsemails.php │ │ └── view.sugarpdfsettings.php ├── Connectors │ ├── Connector.js │ ├── ConnectorRecord.php │ ├── Forms.php │ ├── InstallDefaultConnectors.php │ ├── Menu.php │ ├── action_view_map.php │ ├── connectors │ │ ├── formatters │ │ │ └── ext │ │ │ │ └── rest │ │ │ │ └── twitter │ │ │ │ └── tpls │ │ │ │ └── twitter.gif │ │ └── sources │ │ │ └── ext │ │ │ └── rest │ │ │ ├── facebook │ │ │ ├── config.php │ │ │ ├── facebook.php │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ ├── mapping.php │ │ │ └── vardefs.php │ │ │ ├── insideview │ │ │ ├── InsideViewLogicHook.php │ │ │ ├── config.php │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── insideview.png │ │ │ │ ├── insideview_collapsed.png │ │ │ │ ├── insideview_expanded.png │ │ │ │ └── video.png │ │ │ ├── insideview.php │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ ├── mapping.php │ │ │ └── tpls │ │ │ │ └── InsideView.tpl │ │ │ └── twitter │ │ │ ├── config.php │ │ │ ├── language │ │ │ └── en_us.lang.php │ │ │ ├── mapping.php │ │ │ ├── twitter.php │ │ │ └── vardefs.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── searchdefs.php │ ├── tpls │ │ ├── administration.tpl │ │ ├── display_properties.tpl │ │ ├── listview.tpl │ │ ├── mapping_properties.tpl │ │ ├── modify_display.tpl │ │ ├── modify_mapping.tpl │ │ ├── modify_properties.tpl │ │ ├── modify_search.tpl │ │ ├── search_form.tpl │ │ ├── search_properties.tpl │ │ ├── source_properties.tpl │ │ └── tabs.css │ └── views │ │ ├── view.connectorsettings.php │ │ ├── view.displayproperties.php │ │ ├── view.mappingproperties.php │ │ ├── view.modifydisplay.php │ │ ├── view.modifymapping.php │ │ ├── view.modifyproperties.php │ │ ├── view.modifysearch.php │ │ ├── view.searchproperties.php │ │ └── view.sourceproperties.php ├── Contacts │ ├── AcceptDecline.php │ ├── Address_picker.html │ ├── Contact.js │ ├── Contact.php │ ├── ContactFormBase.php │ ├── ContactOpportunityRelationship.php │ ├── ContactOpportunityRelationshipEdit.html │ ├── ContactOpportunityRelationshipEdit.php │ ├── ContactsJjwg_MapsLogicHook.php │ ├── ContactsListViewSmarty.php │ ├── ContactsQuickCreate.php │ ├── Dashlets │ │ └── MyContactsDashlet │ │ │ ├── MyContactsDashlet.data.php │ │ │ ├── MyContactsDashlet.meta.php │ │ │ └── MyContactsDashlet.php │ ├── Email_picker.html │ ├── MailMergePicker.html │ ├── Menu.php │ ├── Popup_picker.php │ ├── Save.php │ ├── SaveContactOpportunityRelationship.php │ ├── ShowDuplicates.html │ ├── ShowDuplicates.php │ ├── SugarFeeds │ │ └── ContactFeed.php │ ├── controller.php │ ├── createPortalUser.php │ ├── disablePortalUser.php │ ├── enablePortalUser.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── popupdefsEmail.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── FP_events_subpanel_fp_events_contacts.php │ │ │ ├── ForAccounts.php │ │ │ ├── ForCalls.php │ │ │ ├── ForCases.php │ │ │ ├── ForContacts.php │ │ │ ├── ForEmails.php │ │ │ ├── ForMeetings.php │ │ │ ├── ForOpportunities.php │ │ │ ├── ForProject.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── updatePortal.php │ ├── vardefs.php │ └── views │ │ ├── view.closecontactaddresspopup.php │ │ ├── view.contactaddresspopup.php │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ ├── view.list.php │ │ ├── view.mailmergepopup.php │ │ ├── view.quickcreate.php │ │ ├── view.retrieveemail.php │ │ └── view.validportalusername.php ├── Currencies │ ├── Currency.php │ ├── EditCurrency.php │ ├── EditView.js │ ├── EditView.tpl │ ├── Forms.php │ ├── ListCurrency.php │ ├── ListView.html │ ├── Menu.php │ ├── field_arrays.php │ ├── index.php │ ├── iso4217.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── Delegates │ ├── language │ │ └── en_us.lang.php │ └── metadata │ │ └── subpaneldefs.php ├── DocumentRevisions │ ├── DocumentRevision.php │ ├── Forms.php │ ├── ListView.html │ ├── Menu.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── subpanels │ │ └── default.php │ └── vardefs.php ├── Documents │ ├── Dashlets │ │ └── MyDocumentsDashlet │ │ │ ├── MyDocumentsDashlet.data.php │ │ │ ├── MyDocumentsDashlet.meta.php │ │ │ └── MyDocumentsDashlet.php │ ├── Delete.php │ ├── Document.php │ ├── DocumentExternalApiDropDown.php │ ├── DocumentPopupPicker.php │ ├── DocumentSoap.php │ ├── GetLatestRevision.php │ ├── Menu.php │ ├── TreeData.php │ ├── action_view_map.php │ ├── controller.php │ ├── documents.js │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForContractType.php │ │ │ └── default.php │ ├── tpls │ │ ├── detailHeader.tpl │ │ └── view.extdoc.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.extdoc.php ├── DynamicFields │ ├── DynamicField.php │ ├── FieldCases.php │ ├── FieldViewer.php │ ├── FieldsMetaData.php │ ├── Save.php │ ├── UpgradeFields.php │ ├── language │ │ └── en_us.lang.php │ ├── templates │ │ ├── Fields │ │ │ ├── Forms │ │ │ │ ├── address.tpl │ │ │ │ ├── bool.tpl │ │ │ │ ├── coreBottom.tpl │ │ │ │ ├── coreTop.tpl │ │ │ │ ├── currency.tpl │ │ │ │ ├── date.php │ │ │ │ ├── date.tpl │ │ │ │ ├── datetimecombo.php │ │ │ │ ├── datetimecombo.tpl │ │ │ │ ├── dynamicenum.php │ │ │ │ ├── dynamicenum.tpl │ │ │ │ ├── encrypt.php │ │ │ │ ├── encrypt.tpl │ │ │ │ ├── enum.tpl │ │ │ │ ├── enum2.php │ │ │ │ ├── float.tpl │ │ │ │ ├── html.php │ │ │ │ ├── html.tpl │ │ │ │ ├── iframe.php │ │ │ │ ├── iframe.tpl │ │ │ │ ├── image.php │ │ │ │ ├── image.tpl │ │ │ │ ├── int.tpl │ │ │ │ ├── multienum.php │ │ │ │ ├── multienum.tpl │ │ │ │ ├── parent.php │ │ │ │ ├── parent.tpl │ │ │ │ ├── phone.php │ │ │ │ ├── phone.tpl │ │ │ │ ├── radioenum.php │ │ │ │ ├── relate.php │ │ │ │ ├── relate.tpl │ │ │ │ ├── text.tpl │ │ │ │ ├── url.php │ │ │ │ ├── url.tpl │ │ │ │ ├── varchar.tpl │ │ │ │ ├── wysiwyg.php │ │ │ │ └── wysiwyg.tpl │ │ │ ├── TemplateAddress.php │ │ │ ├── TemplateAddressCountry.php │ │ │ ├── TemplateBoolean.php │ │ │ ├── TemplateCronSchedule.php │ │ │ ├── TemplateCurrency.php │ │ │ ├── TemplateCurrencyId.php │ │ │ ├── TemplateDate.php │ │ │ ├── TemplateDatetimecombo.php │ │ │ ├── TemplateDecimal.php │ │ │ ├── TemplateDynamicenum.php │ │ │ ├── TemplateEmail.php │ │ │ ├── TemplateEncrypt.php │ │ │ ├── TemplateEnum.php │ │ │ ├── TemplateField.php │ │ │ ├── TemplateFloat.php │ │ │ ├── TemplateHTML.php │ │ │ ├── TemplateIFrame.php │ │ │ ├── TemplateId.php │ │ │ ├── TemplateImage.php │ │ │ ├── TemplateInt.php │ │ │ ├── TemplateMultiEnum.php │ │ │ ├── TemplateParent.php │ │ │ ├── TemplateParentType.php │ │ │ ├── TemplatePhone.php │ │ │ ├── TemplateRadioEnum.php │ │ │ ├── TemplateRange.php │ │ │ ├── TemplateRelatedTextField.php │ │ │ ├── TemplateText.php │ │ │ ├── TemplateTextArea.php │ │ │ ├── TemplateURL.php │ │ │ └── TemplateWysiwyg.php │ │ └── Files │ │ │ ├── DetailView.php │ │ │ └── EditView.php │ └── vardefs.php ├── EAPM │ ├── CheckLogins.php │ ├── EAPM.php │ ├── EAPMEdit.js │ ├── action_view_map.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── DetailViewFooter.tpl │ │ ├── EditViewFooter.tpl │ │ └── EditViewHeader.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── EmailAddresses │ ├── EmailAddress.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── EmailMan │ ├── EmailImage.php │ ├── EmailMan.php │ ├── EmailManDelivery.php │ ├── Forms.php │ ├── Menu.php │ ├── action_view_map.php │ ├── controller.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── listviewdefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── subpanels │ │ └── default.php │ ├── testOutboundEmail.php │ ├── tpls │ │ ├── campaignconfig.tpl │ │ └── config.tpl │ ├── vardefs.php │ └── views │ │ ├── view.campaignconfig.php │ │ ├── view.config.php │ │ └── view.list.php ├── EmailMarketing │ ├── Delete.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── EmailMarketing.php │ ├── Forms.php │ ├── List.php │ ├── Menu.php │ ├── Save.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── subpanels │ │ └── default.php │ └── vardefs.php ├── EmailTemplates │ ├── AttachFiles.php │ ├── CheckDeletable.php │ ├── Delete.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── EditViewMain.html │ ├── EmailTemplate.css │ ├── EmailTemplate.js │ ├── EmailTemplate.php │ ├── EmailTemplateData.php │ ├── EmailTemplateFormBase.php │ ├── EmailTemplateParser.php │ ├── Menu.php │ ├── PopupDocumentsCampaignTemplate.html │ ├── PopupDocumentsCampaignTemplate.php │ ├── Save.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpaneldefs.php │ ├── templateFields.php │ ├── vardefs.php │ └── views │ │ └── view.classic.php ├── EmailText │ ├── EmailText.php │ └── vardefs.php ├── Emails │ ├── Check.php │ ├── Compose.php │ ├── Dashlets │ │ └── MyEmailsDashlet │ │ │ ├── MyEmailsDashlet.data.php │ │ │ ├── MyEmailsDashlet.meta.php │ │ │ └── MyEmailsDashlet.php │ ├── Delete.php │ ├── Email.php │ ├── EmailException.php │ ├── EmailFromValidator.php │ ├── EmailUI.css │ ├── EmailUI.php │ ├── EmailUIAjax.php │ ├── EmailValidatorException.php │ ├── EmailsController.php │ ├── EmailsControllerActionGetFromFields.php │ ├── EmailsDataAddress.php │ ├── EmailsDataAddressCollector.php │ ├── EmailsSignatureResolver.php │ ├── Folder.php │ ├── GenerateQuickComposeFrame.php │ ├── Grab.php │ ├── Menu.php │ ├── NonGmailSentFolderHandler.php │ ├── PessimisticLock.php │ ├── Popup.php │ ├── PopupDocuments.html │ ├── PopupDocuments.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── Save.php │ ├── Status.html │ ├── Status.php │ ├── SugarRoutingAsync.php │ ├── controller.php │ ├── field_arrays.php │ ├── include │ │ ├── ComposeView │ │ │ ├── ComposeView.php │ │ │ ├── ComposeView.tpl │ │ │ ├── ComposeViewBlank.tpl │ │ │ ├── ComposeViewToolbar.tpl │ │ │ └── EmailsComposeView.js │ │ ├── DetailView │ │ │ ├── EmailsDetailView.php │ │ │ ├── EmailsDraftDetailView.php │ │ │ ├── EmailsNonImportedDetailView.php │ │ │ ├── ImportView.js │ │ │ ├── edit-draft.js │ │ │ ├── import.js │ │ │ └── quickCreateModal.js │ │ ├── ImportView │ │ │ └── ImportView.tpl │ │ ├── ListView │ │ │ ├── CheckNewEmails.js │ │ │ ├── ComposeViewModal.js │ │ │ ├── DeleteEmailAction.js │ │ │ ├── FoldersViewModal.js │ │ │ ├── ImportEmailAction.js │ │ │ ├── ListViewDataEmails.php │ │ │ ├── ListViewDataEmailsSearchAbstract.php │ │ │ ├── ListViewDataEmailsSearchOnCrm.php │ │ │ ├── ListViewDataEmailsSearchOnIMap.php │ │ │ ├── ListViewHeader.js │ │ │ ├── ListViewHeader.tpl │ │ │ ├── ListViewSmartyEmails.php │ │ │ ├── MarkEmails.js │ │ │ └── SettingsView.js │ │ ├── displayAttachmentField.php │ │ ├── displayEmailAddressOptInField.php │ │ ├── displayHasAttachmentField.php │ │ ├── displayIndicatorField.php │ │ └── displaySubjectField.php │ ├── javascript │ │ ├── Email.js │ │ ├── EmailUI.js │ │ ├── EmailUICompose.js │ │ ├── EmailUIShared.js │ │ ├── ajax.js │ │ ├── complexLayout.js │ │ ├── composeEmailTemplate.js │ │ ├── displayOneEmailTemplate.js │ │ ├── email_popup_helper.js │ │ ├── grid.js │ │ ├── init.js │ │ ├── vars.js │ │ └── viewPrintable.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── composeviewdefs.php │ │ ├── dashletviewdefs.php │ │ ├── detaildraftviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── importviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── nonimporteddetailviewdefs.php │ │ ├── popupdefs.php │ │ ├── qcmodulesdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForContacts.php │ │ │ ├── ForHistory.php │ │ │ ├── ForQueues.php │ │ │ ├── ForUnlinkedEmailHistory.php │ │ │ └── ForUsers.php │ ├── subpanels │ │ ├── ForContacts.php │ │ ├── ForHistory.php │ │ ├── ForQueues.php │ │ └── ForUsers.php │ ├── templates │ │ ├── _baseConfigData.tpl │ │ ├── _baseEmail.tpl │ │ ├── _baseEmailAccountSettings.tpl │ │ ├── _baseJsVars.tpl │ │ ├── _createGroupFolder.tpl │ │ ├── addressBook.tpl │ │ ├── addressSearch.tpl │ │ ├── addressSearchContent.tpl │ │ ├── advancedSearch.tpl │ │ ├── assignTo.tpl │ │ ├── dceMenuQuickCreate.tpl │ │ ├── displayAttachmentField.tpl │ │ ├── displayHasAttachmentField.tpl │ │ ├── displayIndicatorField.tpl │ │ ├── displaySubjectField.tpl │ │ ├── editAccountDialogue.tpl │ │ ├── editContact.tpl │ │ ├── editMailingList.tpl │ │ ├── emailDetailView.tpl │ │ ├── emailOptions.tpl │ │ ├── emailSettings.tpl │ │ ├── emailSettingsAccountDetails.tpl │ │ ├── emailSettingsAccounts.tpl │ │ ├── emailSettingsFolders.tpl │ │ ├── emailSettingsGeneral.tpl │ │ ├── emailSettingsRules.tpl │ │ ├── importRelate.tpl │ │ ├── outboundDialog.tpl │ │ ├── outboundDialogTest.tpl │ │ ├── overlay.tpl │ │ └── successMessage.tpl │ ├── vardefs.php │ └── views │ │ ├── view.compose.php │ │ ├── view.deletedraftemail.php │ │ ├── view.detail.php │ │ ├── view.detaildraft.php │ │ ├── view.detailnonimported.php │ │ ├── view.edit.php │ │ ├── view.import.php │ │ ├── view.list.php │ │ ├── view.popup.php │ │ ├── view.savedraftemail.php │ │ └── view.sendemail.php ├── Employees │ ├── Employee.php │ ├── EmployeeStatus.php │ ├── EmployeesSearchForm.php │ ├── EmployeesStudioModule.php │ ├── Error.php │ ├── Forms.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── Save.php │ ├── WapAuthenticate.php │ ├── WapMenu.php │ ├── controller.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── studio.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.list.php ├── FP_Event_Locations │ ├── Dashlets │ │ └── FP_Event_LocationsDashlet │ │ │ ├── FP_Event_LocationsDashlet.meta.php │ │ │ └── FP_Event_LocationsDashlet.php │ ├── FP_Event_Locations.php │ ├── FP_Event_Locations_sugar.php │ ├── Menu.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── FP_events │ ├── Dashlets │ │ └── FP_eventsDashlet │ │ │ ├── FP_eventsDashlet.meta.php │ │ │ └── FP_eventsDashlet.php │ ├── FP_events.php │ ├── FP_events_sugar.php │ ├── Menu.php │ ├── controller.php │ ├── duration_dependency.js │ ├── jsclass_scheduler.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── responseEntryPoint.php │ ├── tpls │ │ ├── additionalDetails.body.tpl │ │ └── additionalDetails.caption.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── Favorites │ ├── Dashlets │ │ └── Favorites │ │ │ ├── Favorites.meta.php │ │ │ └── FavoritesDashlet.php │ ├── Favorites.php │ ├── controller.php │ ├── favorites.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── Groups │ ├── Delete.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── Forms.php │ ├── Group.php │ ├── ListView.html │ ├── ListView.php │ ├── Menu.php │ ├── Save.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── Help │ ├── Menu.php │ ├── index.php │ └── language │ │ └── en_us.lang.php ├── History │ ├── language │ │ └── en_us.lang.php │ └── metadata │ │ └── subpaneldefs.php ├── Home │ ├── About.php │ ├── AddDashboardPages.php │ ├── AddToFavorites.php │ ├── Dashlets │ │ ├── ChartsDashlet │ │ │ ├── ChartsDashlet.en_us.lang.php │ │ │ ├── ChartsDashlet.meta.php │ │ │ ├── ChartsDashlet.php │ │ │ └── ChartsDashletScript.tpl │ │ ├── InvadersDashlet │ │ │ ├── InvadersDashlet.en_us.lang.php │ │ │ ├── InvadersDashlet.icon.jpg │ │ │ ├── InvadersDashlet.meta.php │ │ │ ├── InvadersDashlet.php │ │ │ ├── InvadersDashlet.tpl │ │ │ ├── InvadersDashletScript.tpl │ │ │ ├── InvadersOptions.tpl │ │ │ └── sprites │ │ │ │ ├── alien.png │ │ │ │ ├── bg.png │ │ │ │ ├── cube.png │ │ │ │ └── player.png │ │ ├── JotPadDashlet │ │ │ ├── JotPadDashlet.en_us.lang.php │ │ │ ├── JotPadDashlet.meta.php │ │ │ ├── JotPadDashlet.php │ │ │ ├── JotPadDashlet.tpl │ │ │ ├── JotPadDashletOptions.tpl │ │ │ └── JotPadDashletScript.tpl │ │ ├── RSSDashlet │ │ │ ├── RSSDashlet.en_us.lang.php │ │ │ ├── RSSDashlet.icon.jpg │ │ │ ├── RSSDashlet.meta.php │ │ │ ├── RSSDashlet.php │ │ │ ├── RSSDashlet.tpl │ │ │ └── RSSDashletOptions.tpl │ │ ├── SugarNewsDashlet │ │ │ ├── SugarNewsDashlet.meta.php │ │ │ ├── SugarNewsDashlet.php │ │ │ └── configure.tpl │ │ └── iFrameDashlet │ │ │ ├── configure.tpl │ │ │ ├── iFrameDashlet.meta.php │ │ │ └── iFrameDashlet.php │ ├── DynamicAction.php │ ├── Home.html │ ├── Home.tpl │ ├── LastViewed.php │ ├── Menu.php │ ├── PopupSugar.php │ ├── QuickSearch.php │ ├── RemoveDashboardPages.php │ ├── RenameDashboardPages.php │ ├── SaveSubpanelLayout.php │ ├── Search.php │ ├── SubpanelCreates.php │ ├── SubpanelEdits.php │ ├── UnifiedSearch.php │ ├── UnifiedSearchAdvanced.php │ ├── UnifiedSearchAdvanced.tpl │ ├── UnifiedSearchAdvancedForm.tpl │ ├── UnifiedSearchAdvancedResults.tpl │ ├── action_view_map.php │ ├── controller.php │ ├── dashlets.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── quicksearchQuery.php │ ├── sitemap.php │ ├── sitemap.tpl │ ├── tour.css │ ├── tour.js │ ├── tour.tpl │ └── views │ │ ├── view.additionaldetailsretrieve.php │ │ ├── view.list.php │ │ ├── view.modulelistmenu.php │ │ └── view.tour.php ├── Import │ ├── CsvAutoDetect.php │ ├── Forms.php │ ├── ImportCacheFiles.php │ ├── ImportDuplicateCheck.php │ ├── ImportFieldSanitize.php │ ├── ImportFileSplitter.php │ ├── Importer.php │ ├── Menu.php │ ├── UsersLastImport.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── maps │ │ ├── ImportMap.php │ │ ├── ImportMapAct.php │ │ ├── ImportMapCsv.php │ │ ├── ImportMapGoogle.php │ │ ├── ImportMapOther.php │ │ ├── ImportMapOutlook.php │ │ ├── ImportMapSalesforce.php │ │ └── ImportMapTab.php │ ├── sources │ │ ├── ExternalSourceEAPMAdapter.php │ │ ├── ImportDataSource.php │ │ └── ImportFile.php │ ├── tpls │ │ ├── confirm.tpl │ │ ├── confirm_table.tpl │ │ ├── dupcheck.tpl │ │ ├── error.tpl │ │ ├── last.tpl │ │ ├── listview.tpl │ │ ├── listviewpaginator.tpl │ │ ├── step1.tpl │ │ ├── step2.tpl │ │ ├── step3.tpl │ │ ├── undo.tpl │ │ └── wizardWrapper.tpl │ ├── vardefs.php │ └── views │ │ ├── ImportListView.php │ │ ├── ImportView.php │ │ ├── view.confirm.php │ │ ├── view.dupcheck.php │ │ ├── view.error.php │ │ ├── view.extdupcheck.php │ │ ├── view.last.php │ │ ├── view.step1.php │ │ ├── view.step2.php │ │ ├── view.step3.php │ │ ├── view.step4.php │ │ └── view.undo.php ├── InboundEmail │ ├── AOPInboundEmail.php │ ├── Delete.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditGroupFolder.php │ ├── EditView.html │ ├── EditView.php │ ├── InboundEmail.js │ ├── InboundEmail.php │ ├── ListView.html │ ├── ListView.php │ ├── Menu.php │ ├── Overview.php │ ├── Popup.php │ ├── Save.php │ ├── SaveGroupFolder.php │ ├── ShowInboundFoldersList.php │ ├── View.html │ ├── field_arrays.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── temp.php │ ├── tpls │ │ ├── checkImap.tpl │ │ └── systemSettingsForm.tpl │ └── vardefs.php ├── LabelEditor │ ├── EditView.html │ ├── EditView.php │ ├── Forms.php │ ├── LabelList.php │ ├── Menu.php │ ├── Save.php │ └── language │ │ └── en_us.lang.php ├── Leads │ ├── Capture.php │ ├── Dashlets │ │ └── MyLeadsDashlet │ │ │ ├── MyLeadsDashlet.data.php │ │ │ ├── MyLeadsDashlet.meta.php │ │ │ └── MyLeadsDashlet.php │ ├── Lead.js │ ├── Lead.php │ ├── LeadFormBase.php │ ├── LeadsJjwg_MapsLogicHook.php │ ├── LeadsListViewSmarty.php │ ├── LeadsQuickCreate.php │ ├── LeadsVarDefHandler.php │ ├── Menu.php │ ├── MyLeads.html │ ├── MyLeads.php │ ├── Popup_picker.html │ ├── Save.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── SugarFeeds │ │ └── LeadFeed.php │ ├── action_view_map.php │ ├── controller.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── convertdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── FP_events_subpanel_fp_events_leads_1.php │ │ │ ├── ForCalls.php │ │ │ ├── ForEmails.php │ │ │ ├── ForMeetings.php │ │ │ └── default.php │ ├── tpls │ │ ├── ConvertLead.tpl │ │ ├── ConvertLeadFooter.tpl │ │ ├── ConvertLeadHeader.tpl │ │ ├── DetailViewHeader.tpl │ │ ├── EditConvertLead.tpl │ │ ├── QuickCreate.tpl │ │ └── ShowDuplicates.tpl │ ├── vardefs.php │ └── views │ │ ├── view.convertlead.php │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ ├── view.list.php │ │ └── view.showduplicates.php ├── MailMerge │ ├── DetailView.php │ ├── EditView.php │ ├── MailMerge.php │ ├── Menu.php │ ├── Merge.html │ ├── Merge.php │ ├── Save.php │ ├── Step1.html │ ├── Step1.php │ ├── Step2.html │ ├── Step2.php │ ├── Step3.html │ ├── Step3.php │ ├── Step4.html │ ├── Step4.php │ ├── Step5.html │ ├── Step5.php │ ├── controller.php │ ├── get_doc.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── merge_query.php │ └── modules_array.php ├── Meetings │ ├── Dashlets │ │ └── MyMeetingsDashlet │ │ │ ├── MyMeetingsDashlet.data.php │ │ │ ├── MyMeetingsDashlet.meta.php │ │ │ └── MyMeetingsDashlet.php │ ├── JoinExternalMeeting.php │ ├── Meeting.php │ ├── MeetingFormBase.php │ ├── MeetingsJjwg_MapsLogicHook.php │ ├── MeetingsListViewSmarty.php │ ├── MeetingsQuickCreate.php │ ├── Menu.php │ ├── Save.php │ ├── SubPanelViewInvitees.html │ ├── SubPanelViewInvitees.php │ ├── action_view_map.php │ ├── duration_dependency.js │ ├── field_arrays.php │ ├── jsclass_scheduler.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForActivities.php │ │ │ ├── ForHistory.php │ │ │ └── default.php │ ├── tpls │ │ ├── QuickCreate.tpl │ │ ├── additionalDetails.body.tpl │ │ ├── additionalDetails.caption.tpl │ │ ├── detailHeader.tpl │ │ ├── extMeetingNoStart.tpl │ │ ├── extMeetingNotInvited.tpl │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── reminders.tpl │ ├── vardefs.php │ └── views │ │ ├── view.edit.php │ │ ├── view.list.php │ │ └── view.listbytype.php ├── MergeRecords │ ├── Menu.php │ ├── Merge.js │ ├── MergeField.html │ ├── MergeRecord.php │ ├── SaveMerge.php │ ├── SearchForm.html │ ├── Step1.html │ ├── Step1.php │ ├── Step2.html │ ├── Step2.php │ ├── Step3.html │ ├── Step3.php │ ├── controller.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── ModuleBuilder │ ├── Forms.php │ ├── MB │ │ ├── AjaxCompose.php │ │ ├── MBField.php │ │ ├── MBLanguage.php │ │ ├── MBModule.php │ │ ├── MBPackage.php │ │ ├── MBPackageTree.php │ │ ├── MBRelationship.php │ │ ├── MBVardefs.php │ │ ├── ModuleBuilder.php │ │ └── header.php │ ├── Module │ │ ├── DropDownBrowser.php │ │ ├── DropDownTree.php │ │ ├── IconRepository.php │ │ ├── MainTree.php │ │ ├── StudioBrowser.php │ │ ├── StudioModule.php │ │ ├── StudioModuleFactory.php │ │ └── StudioTree.php │ ├── action_view_map.php │ ├── controller.php │ ├── javascript │ │ ├── JSTransaction.js │ │ ├── ModuleBuilder.js │ │ ├── SimpleList.js │ │ ├── studio2.js │ │ ├── studio2FieldDD.js │ │ ├── studio2ListDD.js │ │ ├── studio2PanelDD.js │ │ ├── studio2RowDD.js │ │ ├── studiotabgroups.js │ │ └── wizardTemplate.js │ ├── language │ │ └── en_us.lang.php │ ├── parsers │ │ ├── ModuleBuilderParser.php │ │ ├── ParserFactory.php │ │ ├── StandardField.php │ │ ├── constants.php │ │ ├── parser.dropdown.php │ │ ├── parser.label.php │ │ ├── parser.modifylayoutview.php │ │ ├── parser.modifylistview.php │ │ ├── parser.modifysubpanel.php │ │ ├── parser.searchfields.php │ │ ├── relationships │ │ │ ├── AbstractRelationship.php │ │ │ ├── AbstractRelationships.php │ │ │ ├── ActivitiesRelationship.php │ │ │ ├── DeployedRelationships.php │ │ │ ├── ManyToManyRelationship.php │ │ │ ├── ManyToOneRelationship.php │ │ │ ├── OneToManyRelationship.php │ │ │ ├── OneToOneRelationship.php │ │ │ ├── RelationshipFactory.php │ │ │ ├── RelationshipsInterface.php │ │ │ └── UndeployedRelationships.php │ │ └── views │ │ │ ├── AbstractMetaDataImplementation.php │ │ │ ├── AbstractMetaDataParser.php │ │ │ ├── DashletMetaDataParser.php │ │ │ ├── DeployedMetaDataImplementation.php │ │ │ ├── DeployedSubpanelImplementation.php │ │ │ ├── GridLayoutMetaDataParser.php │ │ │ ├── History.php │ │ │ ├── HistoryInterface.php │ │ │ ├── ListLayoutMetaDataParser.php │ │ │ ├── MetaDataImplementationInterface.php │ │ │ ├── MetaDataParserInterface.php │ │ │ ├── PopupMetaDataParser.php │ │ │ ├── SearchViewMetaDataParser.php │ │ │ ├── SubpanelMetaDataParser.php │ │ │ ├── UndeployedMetaDataImplementation.php │ │ │ └── UndeployedSubpanelImplementation.php │ ├── tpls │ │ ├── LayoutEditor.css │ │ ├── ListEditor.css │ │ ├── MB.css │ │ ├── MBModule │ │ │ ├── Class.tpl │ │ │ ├── DeveloperClass.tpl │ │ │ ├── Menu.tpl │ │ │ ├── Studio.tpl │ │ │ ├── dropdown.css │ │ │ ├── dropdown.tpl │ │ │ ├── dropdowns.tpl │ │ │ ├── field.tpl │ │ │ ├── fields.tpl │ │ │ ├── form.tpl │ │ │ ├── language.tpl │ │ │ ├── main.tpl │ │ │ ├── module.tpl │ │ │ └── vardef.tpl │ │ ├── MBPackage │ │ │ ├── appLanguage.tpl │ │ │ ├── deploy.tpl │ │ │ └── package.tpl │ │ ├── Preview │ │ │ ├── layoutView.tpl │ │ │ └── listView.tpl │ │ ├── assistantJavascript.tpl │ │ ├── editProperty.tpl │ │ ├── exportcustomizations.tpl │ │ ├── history.tpl │ │ ├── includes.tpl │ │ ├── index.tpl │ │ ├── labels.tpl │ │ ├── layoutView.tpl │ │ ├── listView.tpl │ │ ├── main.tpl │ │ ├── resetModule.tpl │ │ ├── studioRelationship.tpl │ │ ├── studioRelationships.tpl │ │ ├── tabBG.png │ │ └── wizard.tpl │ └── views │ │ ├── view.dashlet.php │ │ ├── view.deletemodule.php │ │ ├── view.deletepackage.php │ │ ├── view.displaydeploy.php │ │ ├── view.displaydeployresult.php │ │ ├── view.dropdown.php │ │ ├── view.dropdowns.php │ │ ├── view.exportcustomizations.php │ │ ├── view.history.php │ │ ├── view.home.php │ │ ├── view.labels.php │ │ ├── view.layoutview.php │ │ ├── view.listview.php │ │ ├── view.main.php │ │ ├── view.module.php │ │ ├── view.modulefield.php │ │ ├── view.modulefields.php │ │ ├── view.modulelabels.php │ │ ├── view.package.php │ │ ├── view.popupview.php │ │ ├── view.property.php │ │ ├── view.relationship.php │ │ ├── view.relationships.php │ │ ├── view.resetmodule.php │ │ ├── view.searchview.php │ │ ├── view.tree.php │ │ └── view.wizard.php ├── MySettings │ ├── LoadTabSubpanels.php │ ├── StoreQuery.php │ ├── TabController.php │ └── language │ │ └── en_us.lang.php ├── Notes │ ├── Dashlets │ │ └── MyNotesDashlet │ │ │ ├── MyNotesDashlet.data.php │ │ │ ├── MyNotesDashlet.meta.php │ │ │ └── MyNotesDashlet.php │ ├── Menu.php │ ├── Note.php │ ├── NoteSoap.php │ ├── NotesQuickCreate.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── controller.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForCalls.php │ │ │ ├── ForHistory.php │ │ │ ├── ForMeetings.php │ │ │ ├── ForTasks.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ └── vardefs.php ├── OAuth2Clients │ ├── Menu.php │ ├── OAuth2Clients.php │ ├── controller.php │ ├── js │ │ ├── ClientCredentialsValidation.js │ │ └── PasswordCredentialsValidation.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailcredentialsviewdefs.php │ │ ├── detailpasswordviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editcredentialsviewdefs.php │ │ ├── editpasswordviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ └── subpaneldefs.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ └── view.edit.php ├── OAuth2Tokens │ ├── Menu.php │ ├── OAuth2Tokens.php │ ├── controller.php │ ├── include │ │ └── RevokeBulk.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── OAuthKeys │ ├── OAuthKey.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── searchdefs.php │ │ └── subpaneldefs.php │ └── vardefs.php ├── OAuthTokens │ ├── OAuthToken.php │ ├── action_view_map.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpanels │ │ │ ├── ForKeys.php │ │ │ └── ForUser.php │ ├── tpl │ │ ├── authorize.tpl │ │ └── authorized.tpl │ ├── vardefs.php │ └── views │ │ └── view.authorize.php ├── Opportunities │ ├── Dashlets │ │ ├── MyClosedOpportunitiesDashlet │ │ │ ├── MyClosedOpportunitiesDashlet.meta.php │ │ │ ├── MyClosedOpportunitiesDashlet.php │ │ │ ├── MyClosedOpportunitiesDashlet.tpl │ │ │ ├── MyClosedOpportunitiesDashletConfigure.tpl │ │ │ └── MyClosedOpportunitiesDashletOptions.tpl │ │ └── MyOpportunitiesDashlet │ │ │ ├── MyOpportunitiesDashlet.data.php │ │ │ ├── MyOpportunitiesDashlet.meta.php │ │ │ └── MyOpportunitiesDashlet.php │ ├── ListViewTop.html │ ├── ListViewTop.php │ ├── Menu.php │ ├── OpportunitiesJjwg_MapsLogicHook.php │ ├── OpportunitiesListViewSmarty.php │ ├── OpportunitiesQuickCreate.php │ ├── Opportunity.php │ ├── OpportunityFormBase.php │ ├── Save.php │ ├── SaveOverload.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── SubPanelViewProjects.html │ ├── SubPanelViewProjects.php │ ├── SugarFeeds │ │ └── OppFeed.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── acldefs.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForAccounts.php │ │ │ ├── ForEmails.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.list.php ├── OptimisticLock │ ├── Forms.php │ ├── LockResolve.php │ ├── Menu.php │ └── language │ │ └── en_us.lang.php ├── OutboundEmailAccounts │ ├── Dashlets │ │ └── OutboundEmailAccountsDashlet │ │ │ ├── OutboundEmailAccountsDashlet.meta.php │ │ │ └── OutboundEmailAccountsDashlet.php │ ├── OutboundEmailAccounts.php │ ├── OutboundEmailAccounts_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ ├── smtpPreselection.tpl │ └── vardefs.php ├── Project │ ├── Dashlets │ │ └── MyProjectDashlet │ │ │ ├── MyProjectDashlet.data.php │ │ │ ├── MyProjectDashlet.meta.php │ │ │ └── MyProjectDashlet.php │ ├── Delete.php │ ├── Menu.php │ ├── Project.js │ ├── Project.php │ ├── ProjectJjwg_MapsLogicHook.php │ ├── ProjectListViewData.php │ ├── ProjectListViewSmarty.php │ ├── ProjectQuickCreate.php │ ├── Save.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── action_view_map.php │ ├── chart.php │ ├── controller.php │ ├── css │ │ ├── style.css │ │ └── style_chart.css │ ├── delete_project_tasks.php │ ├── field_arrays.php │ ├── gantt.php │ ├── images │ │ ├── add_milestone.png │ │ ├── bgbak.gif │ │ ├── linkArrow.png │ │ └── vgrabber.gif │ ├── js │ │ ├── custom_project.js │ │ ├── jquery.blockUI.js │ │ ├── jquery.validate.min.js │ │ ├── main_lib.js │ │ ├── main_lib_chart.js │ │ └── splitter.js │ ├── jsclass_scheduler.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── AM_ProjectTemplates_subpanel_am_projecttemplates_project_1.php │ │ │ ├── ForEmails.php │ │ │ └── default.php │ ├── project_table.php │ ├── qtip │ │ ├── imagesloaded.pkg.min.js │ │ ├── jquery.qtip.min.css │ │ ├── jquery.qtip.min.js │ │ └── jquery.qtip.min.map │ ├── tpls │ │ ├── QuickCreate.tpl │ │ ├── QuickEditFooter.tpl │ │ ├── QuickEditHeader.tpl │ │ ├── footer.tpl │ │ └── header.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ ├── view.ganttchart.php │ │ ├── view.list.php │ │ ├── view.quickedit.php │ │ ├── view.resourcelist.php │ │ ├── view.templatesdetail.php │ │ └── view.templatesedit.php ├── ProjectTask │ ├── Dashlets │ │ └── MyProjectTaskDashlet │ │ │ ├── MyProjectTaskDashlet.data.php │ │ │ ├── MyProjectTaskDashlet.meta.php │ │ │ └── MyProjectTaskDashlet.php │ ├── Delete.php │ ├── Forms.html │ ├── Menu.php │ ├── MyProjectTasks.html │ ├── MyProjectTasks.php │ ├── Popup_picker.html │ ├── ProjectTask.js │ ├── ProjectTask.php │ ├── ProjectTaskQuickCreate.php │ ├── Save.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── acldefs.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── Project_subpanel_projecttask.php │ │ │ └── default.php │ ├── tpls │ │ └── QuickCreate.tpl │ ├── updateDependencies.php │ ├── updateProject.php │ ├── vardefs.php │ └── views │ │ └── view.list.php ├── ProspectLists │ ├── Delete.php │ ├── Duplicate.php │ ├── Forms.html │ ├── Forms.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── ProspectList.php │ ├── ProspectListFormBase.php │ ├── Save.php │ ├── SubPanelView.html │ ├── SubPanelView.php │ ├── TargetListUpdate.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── Prospects │ ├── Delete.php │ ├── Import.php │ ├── Menu.php │ ├── Popup_picker.html │ ├── Prospect.php │ ├── ProspectFormBase.php │ ├── ProspectsJjwg_MapsLogicHook.php │ ├── ProspectsListViewSmarty.php │ ├── Save.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── FP_events_subpanel_fp_events_prospects_1.php │ │ │ └── default.php │ ├── tpls │ │ ├── DetailViewHeader.tpl │ │ └── QuickCreate.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.list.php ├── Relationships │ ├── Relationship.php │ ├── RelationshipHandler.php │ ├── action_view_map.php │ ├── editFields.tpl │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── vardefs.php │ └── views │ │ └── view.editfields.php ├── Releases │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── ListView.html │ ├── Menu.php │ ├── Popup_picker.html │ ├── Popup_picker.php │ ├── Release.php │ ├── Save.php │ ├── field_arrays.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ └── vardefs.php ├── Reminders │ ├── Reminder.php │ ├── Reminders.js │ ├── controller.php │ ├── tpls │ │ ├── reminders.tpl │ │ └── remindersDefaults.tpl │ └── vardefs.php ├── Reminders_Invitees │ ├── Reminder_Invitee.php │ └── vardefs.php ├── ResourceCalendar │ ├── Menu.php │ ├── index.php │ └── language │ │ └── en_us.lang.php ├── Roles │ ├── Delete.php │ ├── DeleteUserRelationship.php │ ├── DetailView.html │ ├── DetailView.php │ ├── EditView.html │ ├── EditView.php │ ├── Forms.php │ ├── Menu.php │ ├── Role.php │ ├── Save.php │ ├── SaveUserRelationship.php │ ├── SubPanelViewUsers.html │ ├── SubPanelViewUsers.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── listviewdefs.php │ │ ├── searchdefs.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ └── view.list.php ├── SavedSearch │ ├── ListView.php │ ├── Menu.php │ ├── SavedSearch.php │ ├── SavedSearchForm.tpl │ ├── SavedSearchSelects.tpl │ ├── SearchForm.html │ ├── UpgradeSavedSearch.php │ ├── field_arrays.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── listviewdefs.php │ └── vardefs.php ├── Schedulers │ ├── EditView.html │ ├── EditView.php │ ├── Menu.php │ ├── Save.php │ ├── Scheduler.php │ ├── Schedulers.js │ ├── _AddJobsHere.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── searchdefs.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ └── view.list.php ├── SchedulersJobs │ ├── SchedulersJob.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── SecurityGroups │ ├── AssignGroups.php │ ├── Forms.php │ ├── MassAssign.php │ ├── Menu.php │ ├── SaveConfig.php │ ├── SaveSecurityGroupUserRelationship.php │ ├── SecurityGroup.php │ ├── SecurityGroupMessage.php │ ├── SecurityGroupUserRelationship.php │ ├── SecurityGroupUserRelationshipEdit.html │ ├── SecurityGroupUserRelationshipEdit.php │ ├── SecurityGroup_sugar.php │ ├── VersionCheck.php │ ├── config.html │ ├── config.php │ ├── info.html │ ├── info.php │ ├── javascript │ │ └── popup_relate.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForUsers.php │ │ │ ├── admin.php │ │ │ └── default.php │ ├── sugaroutfitters │ │ └── img │ │ │ ├── DeDupit_logo.png │ │ │ ├── SugarOutfitters.png │ │ │ ├── fileupload_logo.png │ │ │ ├── google-style-sugartheme_logo.png │ │ │ └── photo_logo.png │ └── vardefs.php ├── Spots │ ├── Dashlets │ │ └── SpotsDashlet │ │ │ ├── SpotsDashlet.en_us.lang.php │ │ │ ├── SpotsDashlet.meta.php │ │ │ ├── SpotsDashlet.php │ │ │ ├── SpotsDashlet.tpl │ │ │ └── SpotsDashletOptions.tpl │ ├── Menu.php │ ├── ShowSpots.php │ ├── Spots.php │ ├── SpotsListViewSmarty.php │ ├── controller.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpl │ │ └── ShowSpots.tpl │ ├── vardefs.php │ └── views │ │ ├── view.edit.php │ │ └── view.list.php ├── Studio │ ├── DropDowns │ │ ├── DropDownHelper.php │ │ ├── EditView.php │ │ └── EditView.tpl │ ├── Forms.php │ ├── JSTransaction.js │ ├── SaveTabs.php │ ├── TabGroups.php │ ├── TabGroups │ │ ├── EditViewTabs.php │ │ ├── EditViewTabs.tpl │ │ └── TabGroupHelper.php │ ├── config.php │ ├── language │ │ └── en_us.lang.php │ ├── parsers │ │ └── StudioParser.php │ ├── studio.js │ ├── studiodd.js │ ├── studiotabgroups.js │ ├── wizard.php │ ├── wizards │ │ ├── EditDropDownWizard.php │ │ ├── RenameModules.php │ │ ├── RenameModules.tpl │ │ └── StudioWizard.php │ └── ygDDListStudio.js ├── SugarFeed │ ├── AdminSettings.php │ ├── Dashlets │ │ └── SugarFeedDashlet │ │ │ ├── Options.tpl │ │ │ ├── SugarFeedDashlet.meta.php │ │ │ ├── SugarFeedDashlet.php │ │ │ ├── SugarFeedScript.tpl │ │ │ └── UserPostForm.tpl │ ├── Forms.php │ ├── Menu.php │ ├── SugarFeed.php │ ├── SugarFeedFlush.php │ ├── action_view_map.php │ ├── feedLogicBase.php │ ├── language │ │ └── en_us.lang.php │ ├── linkHandlers │ │ ├── Image.php │ │ ├── Link.php │ │ └── YouTube.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ └── AdminSettings.tpl │ ├── vardefs.php │ └── views │ │ └── view.adminsettings.php ├── SurveyQuestionOptions │ ├── Dashlets │ │ └── SurveyQuestionOptionsDashlet │ │ │ ├── SurveyQuestionOptionsDashlet.meta.php │ │ │ └── SurveyQuestionOptionsDashlet.php │ ├── Menu.php │ ├── SurveyQuestionOptions.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── SurveyQuestionResponses │ ├── Dashlets │ │ └── SurveyQuestionResponsesDashlet │ │ │ ├── SurveyQuestionResponsesDashlet.meta.php │ │ │ └── SurveyQuestionResponsesDashlet.php │ ├── Menu.php │ ├── SurveyQuestionResponses.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── SurveyQuestions │ ├── Dashlets │ │ └── SurveyQuestionsDashlet │ │ │ ├── SurveyQuestionsDashlet.meta.php │ │ │ └── SurveyQuestionsDashlet.php │ ├── Menu.php │ ├── SurveyQuestions.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── SurveyResponses │ ├── Dashlets │ │ └── SurveyResponsesDashlet │ │ │ ├── SurveyResponsesDashlet.meta.php │ │ │ └── SurveyResponsesDashlet.php │ ├── Lines │ │ └── Lines.php │ ├── Menu.php │ ├── SurveyResponses.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ └── detailquestionresponses.tpl │ └── vardefs.php ├── Surveys │ ├── Dashlets │ │ └── SurveysDashlet │ │ │ ├── SurveysDashlet.meta.php │ │ │ └── SurveysDashlet.php │ ├── Entry │ │ ├── Survey.php │ │ ├── SurveySubmit.php │ │ └── Thanks.php │ ├── Lines │ │ └── Lines.php │ ├── Menu.php │ ├── Surveys.php │ ├── Utils │ │ └── utils.php │ ├── controller.php │ ├── imgs │ │ ├── checked.png │ │ └── star.png │ ├── javascript │ │ ├── Survey.js │ │ ├── datetimepicker │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ └── jquery-ui-timepicker-addon.js │ │ └── rating │ │ │ ├── rating.min.css │ │ │ └── rating.min.js │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── Reports │ │ │ ├── checkbox.tpl │ │ │ ├── matrix.tpl │ │ │ ├── option.tpl │ │ │ └── other.tpl │ │ ├── detailsurveyquestions.tpl │ │ ├── editsurveyquestions.tpl │ │ └── reports.tpl │ ├── vardefs.php │ └── views │ │ └── view.reports.php ├── TableDictionary.php ├── Tasks │ ├── Dashlets │ │ └── MyTasksDashlet │ │ │ ├── MyTasksDashlet.data.php │ │ │ ├── MyTasksDashlet.meta.php │ │ │ └── MyTasksDashlet.php │ ├── Menu.php │ ├── MyTasks.html │ ├── MyTasks.php │ ├── Save.php │ ├── Task.php │ ├── TasksQuickCreate.php │ ├── field_arrays.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForActivities.php │ │ │ ├── ForEmails.php │ │ │ ├── ForHistory.php │ │ │ └── default.php │ ├── tpls │ │ ├── QuickCreate.tpl │ │ ├── additionalDetails.body.tpl │ │ └── additionalDetails.caption.tpl │ ├── vardefs.php │ └── views │ │ └── view.edit.php ├── TemplateSectionLine │ ├── TemplateSectionLine.php │ ├── TemplateSectionLine_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── Trackers │ ├── BreadCrumbStack.php │ ├── Metric.php │ ├── Trackable.php │ ├── Tracker.php │ ├── TrackerManager.php │ ├── config.php │ ├── language │ │ └── en_us.lang.php │ ├── monitor │ │ ├── BlankMonitor.php │ │ ├── Monitor.php │ │ └── tracker_monitor.php │ ├── populateSeedData.php │ ├── store │ │ ├── DatabaseStore.php │ │ ├── Store.php │ │ ├── SugarLogStore.php │ │ ├── TrackerQueriesDatabaseStore.php │ │ └── TrackerSessionsDatabaseStore.php │ └── vardefs.php ├── UpgradeWizard │ ├── Menu.php │ ├── PasswordExpirationService.php │ ├── SILENTUPGRADE.md │ ├── SugarMerge │ │ ├── DetailViewMerge.php │ │ ├── EditViewMerge.php │ │ ├── ListViewMerge.php │ │ ├── QuickCreateMerge.php │ │ ├── SearchMerge.php │ │ ├── SubpanelMerge.php │ │ └── SugarMerge.php │ ├── UpgradeRemoval.php │ ├── UploadFileCheck.php │ ├── cancel.php │ ├── commit.php │ ├── commitJson.php │ ├── deleteCache.php │ ├── end.php │ ├── index.php │ ├── language │ │ └── en_us.lang.php │ ├── layouts.php │ ├── preflight.php │ ├── preflightJson.php │ ├── processing.gif │ ├── silentUpgrade.php │ ├── silentUpgrade_dce_step1.php │ ├── silentUpgrade_dce_step2.php │ ├── silentUpgrade_step1.php │ ├── silentUpgrade_step2.php │ ├── start.php │ ├── systemCheck.php │ ├── systemCheckJson.php │ ├── tpls │ │ └── layoutsMerge.tpl │ ├── upgradeMetaHelper.php │ ├── upgradeTimeCounter.php │ ├── upgradeWizard.js │ ├── upload.php │ ├── uw_ajax.php │ ├── uw_emptyFunctions.php │ ├── uw_files.php │ ├── uw_main.tpl │ └── uw_utils.php ├── UserPreferences │ ├── UserPreference.php │ ├── controller.php │ ├── field_arrays.php │ ├── index.php │ └── vardefs.php ├── Users │ ├── Authenticate.php │ ├── ChangeGroupTab.php │ ├── ChangePassword.php │ ├── Changenewpassword.php │ ├── Changenewpassword.tpl │ ├── DetailView.js │ ├── Error.php │ ├── Forms.php │ ├── GeneratePassword.php │ ├── GoogleApiKeySaverEntryPoint.php │ ├── ListRoles.php │ ├── LoggedOut.php │ ├── LoggedOut.tpl │ ├── Login.php │ ├── Logout.php │ ├── Menu.php │ ├── PasswordRequirementBox.css │ ├── PasswordRequirementBox.js │ ├── PopupSignature.php │ ├── PopupUsers.php │ ├── Popup_Users_picker.html │ ├── Popup_picker.html │ ├── SaveSignature.php │ ├── SaveTimezone.php │ ├── SetTimezone.php │ ├── SetTimezone.tpl │ ├── UpdateTourStatus.php │ ├── User.js │ ├── User.php │ ├── UserEditView.js │ ├── UserEmailOptions.tpl │ ├── UserEmailSettings.tpl │ ├── UserEmailSettingsAccountDetails.tpl │ ├── UserEmailSettingsAccounts.tpl │ ├── UserEmailSettingsGeneral.tpl │ ├── UserSignature.php │ ├── UserSignatureEditView.html │ ├── UserViewHelper.php │ ├── _baseEmail.tpl │ ├── authentication │ │ ├── AuthenticationController.php │ │ ├── EmailAuthenticate │ │ │ ├── EmailAuthenticate.php │ │ │ └── EmailAuthenticateUser.php │ │ ├── LDAPAuthenticate │ │ │ ├── LDAPAuthenticate.php │ │ │ ├── LDAPAuthenticateUser.php │ │ │ └── LDAPConfigs │ │ │ │ └── default.php │ │ ├── SAML2Authenticate │ │ │ ├── SAML2Authenticate.php │ │ │ ├── SAML2AuthenticateUser.php │ │ │ ├── SAML2Metadata.php │ │ │ └── lib │ │ │ │ └── onelogin │ │ │ │ └── settings.php │ │ └── SugarAuthenticate │ │ │ ├── FactorAuthEmailCode.php │ │ │ ├── FactorAuthEmailCode.tpl │ │ │ ├── FactorAuthFactory.php │ │ │ ├── FactorAuthInterface.php │ │ │ ├── SugarAuthenticate.php │ │ │ └── SugarAuthenticateUser.php │ ├── controller.php │ ├── entryPointSaveGoogleApiKey.php │ ├── field_arrays.php │ ├── googleApiKeySaverEntryPointError.tpl │ ├── language │ │ └── en_us.lang.php │ ├── login.css │ ├── login.js │ ├── login.tpl │ ├── metadata │ │ ├── SearchFields.php │ │ ├── additionalDetails.php │ │ ├── detailgroupviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editgroupviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── reassignScriptMetadata.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ ├── ForCalls.php │ │ │ ├── ForEmails.php │ │ │ ├── ForMeetings.php │ │ │ ├── ForProject.php │ │ │ ├── ForProspectLists.php │ │ │ ├── ForSecurityGroups.php │ │ │ ├── ForTeams.php │ │ │ └── default.php │ ├── password_utils.php │ ├── reassignUserRecords.php │ ├── tpls │ │ ├── DetailView.tpl │ │ ├── EditViewFooter.tpl │ │ ├── EditViewGroup.tpl │ │ ├── EditViewHeader.tpl │ │ ├── QuickEditFooter.tpl │ │ └── wizard.tpl │ ├── vardefs.php │ └── views │ │ ├── view.detail.php │ │ ├── view.edit.php │ │ ├── view.list.php │ │ ├── view.quickedit.php │ │ └── view.wizard.php ├── iCals │ ├── HTTP_WebDAV_Server_iCal.php │ ├── Server.php │ └── iCal.php ├── jjwg_Address_Cache │ ├── Menu.php │ ├── jjwg_Address_Cache.php │ ├── jjwg_Address_Cache_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ └── subpanels │ │ │ └── default.php │ └── vardefs.php ├── jjwg_Areas │ ├── Dashlets │ │ └── jjwg_AreasDashlet │ │ │ ├── jjwg_AreasDashlet.meta.php │ │ │ └── jjwg_AreasDashlet.php │ ├── Menu.php │ ├── controller.php │ ├── javascript │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery-1.8.0.min.js │ │ ├── polygon.js │ │ └── polygon.min.js │ ├── jjwg_Areas.php │ ├── jjwg_Areas_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── AreasInfoWindow.tpl │ │ ├── DetailViewFooter.tpl │ │ └── EditViewFooter.tpl │ ├── vardefs.php │ └── views │ │ ├── view.area_detail_map.config.php │ │ ├── view.area_detail_map.php │ │ ├── view.area_edit_map.config.php │ │ └── view.area_edit_map.php ├── jjwg_Maps │ ├── Dashlets │ │ └── jjwg_MapsDashlet │ │ │ ├── jjwg_MapsDashlet.meta.php │ │ │ └── jjwg_MapsDashlet.php │ ├── DataTables │ │ └── media │ │ │ ├── css │ │ │ ├── demo_page.css │ │ │ ├── demo_table.css │ │ │ ├── demo_table_jui.css │ │ │ ├── jquery.dataTables.css │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── forward_enabled_hover.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ │ ├── js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.js │ │ │ └── language │ │ │ └── en_us.lang.js │ ├── Menu.php │ ├── controller.php │ ├── entry_point_registry.php │ ├── javascript │ │ ├── jquery-1.8.0.min.js │ │ ├── jquery.iframe-auto-height.plugin.1.9.3.js │ │ ├── jquery.iframe-auto-height.plugin.1.9.3.min.js │ │ ├── markerclusterer.js │ │ ├── markerclusterer_packed.js │ │ ├── polygon.js │ │ └── polygon.min.js │ ├── jjwg_Maps.php │ ├── jjwg_Maps_Router.php │ ├── jjwg_Maps_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── AccountsInfoWindow.tpl │ │ ├── CasesInfoWindow.tpl │ │ ├── ContactsInfoWindow.tpl │ │ ├── InfoWindow.tpl │ │ ├── LeadsInfoWindow.tpl │ │ ├── MeetingsInfoWindow.tpl │ │ ├── OpportunitiesInfoWindow.tpl │ │ ├── ProjectInfoWindow.tpl │ │ ├── ProspectsInfoWindow.tpl │ │ └── UsersInfoWindow.tpl │ ├── vardefs.php │ └── views │ │ ├── view.config.php │ │ ├── view.geocoded_counts.php │ │ ├── view.geocoding_test.php │ │ ├── view.map_display.php │ │ ├── view.map_markers.config.php │ │ ├── view.map_markers.php │ │ ├── view.quick_radius.php │ │ └── view.quick_radius_display.php ├── jjwg_Markers │ ├── Dashlets │ │ └── jjwg_MarkersDashlet │ │ │ ├── jjwg_MarkersDashlet.meta.php │ │ │ └── jjwg_MarkersDashlet.php │ ├── Menu.php │ ├── controller.php │ ├── jjwg_Markers.php │ ├── jjwg_Markers_sugar.php │ ├── language │ │ └── en_us.lang.php │ ├── metadata │ │ ├── SearchFields.php │ │ ├── dashletviewdefs.php │ │ ├── detailviewdefs.php │ │ ├── editviewdefs.php │ │ ├── listviewdefs.php │ │ ├── metafiles.php │ │ ├── popupdefs.php │ │ ├── quickcreatedefs.php │ │ ├── searchdefs.php │ │ ├── studio.php │ │ ├── subpaneldefs.php │ │ └── subpanels │ │ │ └── default.php │ ├── tpls │ │ ├── DetailViewFooter.tpl │ │ ├── EditViewFooter.tpl │ │ └── MarkersInfoWindow.tpl │ ├── vardefs.php │ └── views │ │ ├── view.marker_detail_map.config.php │ │ ├── view.marker_detail_map.php │ │ ├── view.marker_edit_map.config.php │ │ └── view.marker_edit_map.php └── vCals │ ├── HTTP_WebDAV_Server_vCal.php │ ├── Server.php │ ├── field_arrays.php │ ├── vCal.php │ └── vardefs.php ├── pdf.php ├── php_version.php ├── phpcs.xml ├── release_description_src ├── admin_settings.png ├── admin_settings_ru.png ├── field_sort_settings.png ├── header_card_settings.png ├── module_menu_button.png ├── preview1.png ├── preview2.png ├── settings-colum.png ├── settings_height_board.png ├── settings_stages_field.png └── tab_modules_in_kanban_board_settings_page.png ├── robots.txt ├── run_job.php ├── scripts └── post_install.php ├── service ├── JsonRPCServer │ ├── JsonRPCServer.php │ ├── JsonRPCServerCalls.php │ └── JsonRPCServerUtils.php ├── core │ ├── NusoapSoap.php │ ├── PHP5Soap.php │ ├── REST │ │ ├── SugarRest.php │ │ ├── SugarRestJSON.php │ │ └── SugarRestRSS.php │ ├── SoapHelperWebService.php │ ├── SugarRestService.php │ ├── SugarRestServiceImpl.php │ ├── SugarRestUtils.php │ ├── SugarSoapService.php │ ├── SugarWebService.php │ ├── SugarWebServiceImpl.php │ ├── WSDL.tpl │ └── webservice.php ├── example │ ├── Rest_Proxy.php │ ├── example.html │ └── test.html ├── utils │ └── SugarRest.js ├── v2 │ ├── SugarSoapService2.php │ ├── registry.php │ ├── rest.php │ └── soap.php ├── v2_1 │ ├── SugarWebServiceImplv2_1.php │ ├── registry.php │ ├── rest.php │ └── soap.php ├── v3 │ ├── SugarWebServiceImplv3.php │ ├── SugarWebServiceUtilv3.php │ ├── registry.php │ ├── rest.php │ └── soap.php ├── v3_1 │ ├── SugarWebServiceImplv3_1.php │ ├── SugarWebServiceUtilv3_1.php │ ├── registry.php │ ├── rest.php │ └── soap.php ├── v4 │ ├── SugarWebServiceImplv4.php │ ├── SugarWebServiceUtilv4.php │ ├── registry.php │ ├── rest.php │ └── soap.php └── v4_1 │ ├── SugarWebServiceImplv4_1.php │ ├── SugarWebServiceUtilv4_1.php │ ├── registry.php │ ├── rest.php │ └── soap.php ├── soap.php ├── soap ├── SoapData.php ├── SoapDeprecated.php ├── SoapError.php ├── SoapErrorDefinitions.php ├── SoapHelperFunctions.php ├── SoapPortalHelper.php ├── SoapPortalUsers.php ├── SoapRelationshipHelper.php ├── SoapStudio.php ├── SoapSugarUsers.php └── SoapTypes.php ├── sugar_version.json ├── sugar_version.php ├── suitecrm_version.php ├── themes ├── SuiteP │ ├── css │ │ ├── Dawn │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Day │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Dusk │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── Night │ │ │ ├── color-palette.scss │ │ │ ├── icons.scss │ │ │ ├── style.css │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── bootstrap.min.css │ │ ├── bootstrap │ │ │ ├── alerts.scss │ │ │ ├── badges.scss │ │ │ ├── breadcrumbs.scss │ │ │ ├── button-groups.scss │ │ │ ├── buttons.scss │ │ │ ├── carousel.scss │ │ │ ├── close.scss │ │ │ ├── code.scss │ │ │ ├── component-animations.scss │ │ │ ├── dropdowns.scss │ │ │ ├── forms.scss │ │ │ ├── glyphicons.scss │ │ │ ├── grid.scss │ │ │ ├── input-groups.scss │ │ │ ├── jumbotron.scss │ │ │ ├── labels.scss │ │ │ ├── list-group.scss │ │ │ ├── media.scss │ │ │ ├── mixins.scss │ │ │ ├── mixins │ │ │ │ ├── alerts.scss │ │ │ │ ├── background-variant.scss │ │ │ │ ├── border-radius.scss │ │ │ │ ├── buttons.scss │ │ │ │ ├── center-block.scss │ │ │ │ ├── clearfix.scss │ │ │ │ ├── forms.scss │ │ │ │ ├── gradients.scss │ │ │ │ ├── grid-framework.scss │ │ │ │ ├── grid.scss │ │ │ │ ├── hide-text.scss │ │ │ │ ├── image.scss │ │ │ │ ├── labels.scss │ │ │ │ ├── list-group.scss │ │ │ │ ├── nav-divider.scss │ │ │ │ ├── nav-vertical-align.scss │ │ │ │ ├── opacity.scss │ │ │ │ ├── pagination.scss │ │ │ │ ├── panels.scss │ │ │ │ ├── progress-bar.scss │ │ │ │ ├── reset-filter.scss │ │ │ │ ├── reset-text.scss │ │ │ │ ├── resize.scss │ │ │ │ ├── responsive-visibility.scss │ │ │ │ ├── size.scss │ │ │ │ ├── tab-focus.scss │ │ │ │ ├── table-row.scss │ │ │ │ ├── text-emphasis.scss │ │ │ │ ├── text-overflow.scss │ │ │ │ └── vendor-prefixes.scss │ │ │ ├── modals.scss │ │ │ ├── navbar.scss │ │ │ ├── navs.scss │ │ │ ├── normalize.scss │ │ │ ├── pager.scss │ │ │ ├── pagination.scss │ │ │ ├── panels.scss │ │ │ ├── popovers.scss │ │ │ ├── print.scss │ │ │ ├── progress-bars.scss │ │ │ ├── responsive-embed.scss │ │ │ ├── responsive-utilities.scss │ │ │ ├── scaffolding.scss │ │ │ ├── tables.scss │ │ │ ├── theme.scss │ │ │ ├── thumbnails.scss │ │ │ ├── tooltip.scss │ │ │ ├── type.scss │ │ │ ├── utilities.scss │ │ │ └── wells.scss │ │ ├── bubbles.css │ │ ├── chart.css │ │ ├── colourSelector.php │ │ ├── dashboardstyle.css │ │ ├── deprecated.css │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── footable.eot │ │ │ ├── footable.svg │ │ │ ├── footable.ttf │ │ │ └── footable.woff │ │ ├── footable.core.css │ │ ├── grid.css │ │ ├── normalize.css │ │ ├── print.css │ │ ├── studio.css │ │ ├── suitep-base │ │ │ ├── admin.scss │ │ │ ├── aor.scss │ │ │ ├── aow.scss │ │ │ ├── calendar.scss │ │ │ ├── campaigns.scss │ │ │ ├── cases.scss │ │ │ ├── dashboard.scss │ │ │ ├── detailview.scss │ │ │ ├── editview.scss │ │ │ ├── email.scss │ │ │ ├── forms.scss │ │ │ ├── jstree.scss │ │ │ ├── listview.scss │ │ │ ├── login.scss │ │ │ ├── main.scss │ │ │ ├── mixins.scss │ │ │ ├── modal.scss │ │ │ ├── navbar.scss │ │ │ ├── panels.scss │ │ │ ├── popup.scss │ │ │ ├── projects.scss │ │ │ ├── search.scss │ │ │ ├── sidebar.scss │ │ │ ├── studio.scss │ │ │ ├── suitepicon-glyphs.scss │ │ │ ├── suitepicon.eot │ │ │ ├── suitepicon.html │ │ │ ├── suitepicon.json │ │ │ ├── suitepicon.scss │ │ │ ├── suitepicon.svg │ │ │ ├── suitepicon.ttf │ │ │ ├── suitepicon.woff │ │ │ ├── tabs.scss │ │ │ ├── tinemce.scss │ │ │ └── yui.scss │ │ └── wizard.css │ ├── fonts │ │ ├── 1YwB1sO8YE1Lyjf12WNiUA.woff2 │ │ ├── 2HG_tEPiQ4Z6795cGfdivFtXRa8TVwTICgirnJhmVJw.woff2 │ │ ├── 81X-1TO5y4aMK2PPy9kFwxJtnKITppOI_IvcXXDNrsc.woff2 │ │ ├── 9TBVFLzQ3GUZLG8FZ4yrEfesZW2xOQ-xsNqO47m55DA.woff2 │ │ ├── AcvTq8Q0lyKKNxRlL28RnxJtnKITppOI_IvcXXDNrsc.woff2 │ │ ├── EsvMC5un3kjyUhB9ZEPPwg.woff2 │ │ ├── GtRkRNTnri0g82CjKnEB0Q.woff2 │ │ ├── H2DMvhDLycM56KNuAtbJYA.woff2 │ │ ├── HkF_qI1x_noxlxhrhMQYEFtXRa8TVwTICgirnJhmVJw.woff2 │ │ ├── Lato-Black.ttf │ │ ├── Lato-BlackItalic.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-BoldItalic.ttf │ │ ├── Lato-Hairline.ttf │ │ ├── Lato-HairlineItalic.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-LightItalic.ttf │ │ ├── Lato-Regular.ttf │ │ ├── PLygLKRVCQnA5fhu3qk5fQ.woff2 │ │ ├── R4a6fty3waPci7C44H8AjvY6323mHUZFJMgTvxaG2iE.woff2 │ │ ├── VNUH7ZAcagYBWsAiBBCEY1tXRa8TVwTICgirnJhmVJw.woff2 │ │ ├── XNVd6tsqi9wmKNvnh5HNEBJtnKITppOI_IvcXXDNrsc.woff2 │ │ ├── YMOYVM-eg6Qs9YzV9OSqZfesZW2xOQ-xsNqO47m55DA.woff2 │ │ ├── dPJ5r9gl3kK6ijoeP1IRsvY6323mHUZFJMgTvxaG2iE.woff2 │ │ ├── eFRpvGLEW31oiexbYNx7Y_esZW2xOQ-xsNqO47m55DA.woff2 │ │ ├── footable.eot │ │ ├── footable.svg │ │ ├── footable.ttf │ │ ├── footable.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── muRcAtdNYlnTj3NeuakxChTbgVql8nDJpwnrE27mub0.woff2 │ │ └── tI4j516nok_GrVf4dhunkg.woff2 │ ├── images │ │ ├── ACLRoles.png │ │ ├── ACLRoles.svg │ │ ├── AM_ProjectTemplates.svg │ │ ├── AM_TaskTemplates.svg │ │ ├── AOBH_BusinessHours.svg │ │ ├── AOD.svg │ │ ├── AOK_KnowledgeBase.svg │ │ ├── AOK_Knowledge_Base_Categories.svg │ │ ├── AOP.svg │ │ ├── AOR_Reports.svg │ │ ├── AOS.svg │ │ ├── AOS_Contracts.png │ │ ├── AOS_Contracts.svg │ │ ├── AOS_Contracts2.svg │ │ ├── AOS_Invoices.png │ │ ├── AOS_Invoices.svg │ │ ├── AOS_PDF_Templates.svg │ │ ├── AOS_Product_Categories.svg │ │ ├── AOS_Products.svg │ │ ├── AOS_Products_Quotes.png │ │ ├── AOS_Products_Quotes.svg │ │ ├── AOS_Quotes.png │ │ ├── AOS_Quotes.svg │ │ ├── AOW_Processed.svg │ │ ├── AOW_WorkFlow.svg │ │ ├── Accounts.png │ │ ├── Accounts.svg │ │ ├── Accounts_favico.png │ │ ├── Activities.png │ │ ├── Activities.svg │ │ ├── Activity_Streams.png │ │ ├── Activity_Streams.svg │ │ ├── Address_Cache.png │ │ ├── Address_Cache.svg │ │ ├── Administration.png │ │ ├── Administration.svg │ │ ├── Aos_Settings.png │ │ ├── Aos_Settings.svg │ │ ├── Areas_Maps.svg │ │ ├── ArrowButtons.png │ │ ├── Backups.png │ │ ├── Backups.svg │ │ ├── Bugs.png │ │ ├── Bugs.svg │ │ ├── Bugs_favico.png │ │ ├── Calendar.png │ │ ├── Calendar.svg │ │ ├── Calendar_favico.png │ │ ├── Calls.svg │ │ ├── Calls_favico.png │ │ ├── CampaignLog.png │ │ ├── CampaignLog.svg │ │ ├── CampaignTrackers.png │ │ ├── CampaignTrackers.svg │ │ ├── Campaigns.png │ │ ├── Campaigns.svg │ │ ├── Campaigns_favico.png │ │ ├── Case_Updates.svg │ │ ├── Cases.png │ │ ├── Cases.svg │ │ ├── Cases_favico.png │ │ ├── ConfigureTabs.svg │ │ ├── Configure_Module_Menu_Filters.png │ │ ├── Configure_Module_Menu_Filters.svg │ │ ├── Connectors.png │ │ ├── Connectors.svg │ │ ├── Contacts.gif │ │ ├── Contacts.png │ │ ├── Contacts.svg │ │ ├── Contacts_favico.png │ │ ├── Contracts.png │ │ ├── Contracts.svg │ │ ├── Currencies.png │ │ ├── Currencies.svg │ │ ├── Diagnostic.svg │ │ ├── Diagnostic_Tool.png │ │ ├── Diagnostic_Tool.svg │ │ ├── Direct_Reports.png │ │ ├── Direct_Reports.svg │ │ ├── Display_Modules_And_Subpanels.png │ │ ├── Display_Modules_And_Subpanels.svg │ │ ├── Document_Revisions.svg │ │ ├── Documents.png │ │ ├── Documents.svg │ │ ├── Documents_favico.png │ │ ├── Donate.png │ │ ├── Donate.svg │ │ ├── Dropdown.svg │ │ ├── Dropdown_Editor.png │ │ ├── Dropdown_Editor.svg │ │ ├── EmailAddresses_favico.png │ │ ├── EmailCampaigns.svg │ │ ├── EmailInbound.svg │ │ ├── EmailMan.svg │ │ ├── EmailOutbound.svg │ │ ├── EmailQueue.svg │ │ ├── Email_Marketing.png │ │ ├── Email_Marketing.svg │ │ ├── Email_Marketing2.svg │ │ ├── Email_Queue.png │ │ ├── Email_Queue.svg │ │ ├── Email_Settings.png │ │ ├── Email_Settings.svg │ │ ├── Emails.svg │ │ ├── Emails_favico.png │ │ ├── FP_Event_Locations.svg │ │ ├── FP_events.png │ │ ├── FP_events.svg │ │ ├── GeocodeAddresses.svg │ │ ├── Geocode_Addresses.png │ │ ├── Geocode_Addresses.svg │ │ ├── Geocoded_Counts.png │ │ ├── Geocoded_Counts.svg │ │ ├── GeocodingTests.svg │ │ ├── Geocoding_Test.png │ │ ├── Geocoding_Test.svg │ │ ├── Global_Search.png │ │ ├── Global_Search.svg │ │ ├── Google_Maps_Settings.png │ │ ├── Google_Maps_Settings.svg │ │ ├── History.png │ │ ├── History.svg │ │ ├── History_Subpanel.png │ │ ├── History_Subpanel.svg │ │ ├── Import.png │ │ ├── Import.svg │ │ ├── Import_Wizard.png │ │ ├── Import_Wizard.svg │ │ ├── InboundEmail.svg │ │ ├── Inbound_Email.png │ │ ├── Inbound_Email.svg │ │ ├── Invoices.svg │ │ ├── Kb_Cat.svg │ │ ├── Languages.png │ │ ├── Languages.svg │ │ ├── Leads.gif │ │ ├── Leads.png │ │ ├── Leads.svg │ │ ├── Leads_favico.png │ │ ├── Locale.png │ │ ├── Locale.svg │ │ ├── Maps.svg │ │ ├── Markers_Maps.svg │ │ ├── Meetings.png │ │ ├── Meetings.svg │ │ ├── Meetings_favico.png │ │ ├── Member.png │ │ ├── Member.svg │ │ ├── ModuleBuilder.svg │ │ ├── ModuleLoader.svg │ │ ├── Module_Builder.png │ │ ├── Module_Builder.svg │ │ ├── Module_Loader.png │ │ ├── Module_Loader.svg │ │ ├── MoreDetail.png │ │ ├── Notes.png │ │ ├── Notes.svg │ │ ├── Notes_favico.png │ │ ├── Oauth_Keys.png │ │ ├── Oauth_Keys.svg │ │ ├── Opportunities.png │ │ ├── Opportunities.svg │ │ ├── Opportunities_favico.png │ │ ├── Other.png │ │ ├── Other.svg │ │ ├── OutboundEmailAccounts.svg │ │ ├── Overview.png │ │ ├── Overview.svg │ │ ├── Password.png │ │ ├── Password.svg │ │ ├── Password_Management.png │ │ ├── Password_Management.svg │ │ ├── Process_Autit.svg │ │ ├── Product_Categories.svg │ │ ├── Products.png │ │ ├── Products.svg │ │ ├── Project.png │ │ ├── Project.svg │ │ ├── ProjectTask.svg │ │ ├── Project_Tasks.svg │ │ ├── Projects_favico.png │ │ ├── ProspectLists.png │ │ ├── ProspectLists.svg │ │ ├── Prospects_favico.png │ │ ├── Quotes.png │ │ ├── Quotes.svg │ │ ├── Rebuild.svg │ │ ├── Releases.png │ │ ├── Releases.svg │ │ ├── RenameTabs.svg │ │ ├── Rename_Modules.png │ │ ├── Rename_Modules.svg │ │ ├── Repair.png │ │ ├── Repair.svg │ │ ├── Reports.svg │ │ ├── Role_Management.png │ │ ├── Role_Management.svg │ │ ├── Roles.png │ │ ├── Roles.svg │ │ ├── Scheduler.png │ │ ├── Scheduler.svg │ │ ├── Schedulers.svg │ │ ├── SecurityGroups.png │ │ ├── SecurityGroups.svg │ │ ├── SecurityGroupsManagement.svg │ │ ├── SecuritySuiteGroupManagement.svg │ │ ├── Studio.png │ │ ├── Studio.svg │ │ ├── System_Settings.png │ │ ├── System_Settings.svg │ │ ├── Tab.svg │ │ ├── Targets.svg │ │ ├── Tasks.svg │ │ ├── Tasks_favico.png │ │ ├── TemplateSectionLine.svg │ │ ├── Themes.png │ │ ├── Themes.svg │ │ ├── Upgrade.png │ │ ├── Upgrade.svg │ │ ├── Upgrade_Wizard.png │ │ ├── Upgrade_Wizard.svg │ │ ├── UserManagement.svg │ │ ├── User_Management.png │ │ ├── User_Management.svg │ │ ├── Users.gif │ │ ├── Users.png │ │ ├── Users.svg │ │ ├── Users_favico.png │ │ ├── Workflow.svg │ │ ├── _blank.png │ │ ├── acc_calendar.svg │ │ ├── action_create.png │ │ ├── action_create.svg │ │ ├── admin_panel │ │ │ ├── ACLRoles.svg │ │ │ ├── AOBH_BusinessHours.png │ │ │ ├── AOBH_BusinessHours.svg │ │ │ ├── Activity_Streams.png │ │ │ ├── Activity_Streams.svg │ │ │ ├── Address_Cache.png │ │ │ ├── Address_Cache.svg │ │ │ ├── Administration.png │ │ │ ├── Administration.svg │ │ │ ├── Aod_Settings.png │ │ │ ├── Aod_Settings.svg │ │ │ ├── Aop_Settings.png │ │ │ ├── Aop_Settings.svg │ │ │ ├── Aos_Settings.png │ │ │ ├── Aos_Settings.svg │ │ │ ├── Backups.png │ │ │ ├── Backups.svg │ │ │ ├── Campaign_Email_Settings.png │ │ │ ├── Campaign_Email_Settings.svg │ │ │ ├── Configure_Module_Menu_Filters.png │ │ │ ├── Configure_Module_Menu_Filters.svg │ │ │ ├── Connectors.png │ │ │ ├── Connectors.svg │ │ │ ├── Contacts.png │ │ │ ├── Contacts.svg │ │ │ ├── Currencies.png │ │ │ ├── Currencies.svg │ │ │ ├── Diagnostic.svg │ │ │ ├── Diagnostic_Tool.png │ │ │ ├── Display_Modules_And_Subpanels.png │ │ │ ├── Display_Modules_And_Subpanels.svg │ │ │ ├── Donate.png │ │ │ ├── Donate.svg │ │ │ ├── Dropdown_Editor.png │ │ │ ├── Dropdown_Editor.svg │ │ │ ├── Email_Queue.png │ │ │ ├── Email_Queue.svg │ │ │ ├── Email_Settings.png │ │ │ ├── Email_Settings.svg │ │ │ ├── Geocode_Addresses.png │ │ │ ├── Geocode_Addresses.svg │ │ │ ├── Geocoded_Counts.png │ │ │ ├── Geocoded_Counts.svg │ │ │ ├── Geocoding_Test.png │ │ │ ├── Geocoding_Test.svg │ │ │ ├── Global_Search (copy).png │ │ │ ├── Global_Search.png │ │ │ ├── Global_Search.svg │ │ │ ├── Google_Maps_Settings.png │ │ │ ├── Google_Maps_Settings.svg │ │ │ ├── History_Subpanel.png │ │ │ ├── History_Subpanel.svg │ │ │ ├── Import.png │ │ │ ├── Import.svg │ │ │ ├── Import_Wizard.png │ │ │ ├── Import_Wizard.svg │ │ │ ├── Inbound_Email.png │ │ │ ├── Inbound_Email.svg │ │ │ ├── Languages.png │ │ │ ├── Languages.svg │ │ │ ├── Locale.png │ │ │ ├── Locale.svg │ │ │ ├── Module_Builder.png │ │ │ ├── Module_Builder.svg │ │ │ ├── Module_Loader.png │ │ │ ├── Module_Loader.svg │ │ │ ├── Oauth_Keys.png │ │ │ ├── Oauth_Keys.svg │ │ │ ├── Password.png │ │ │ ├── Password.svg │ │ │ ├── Password_Management.png │ │ │ ├── Password_Management.svg │ │ │ ├── Releases.png │ │ │ ├── Releases.svg │ │ │ ├── Rename_Modules.png │ │ │ ├── Rename_Modules.svg │ │ │ ├── Repair.png │ │ │ ├── Repair.svg │ │ │ ├── Role_Management.png │ │ │ ├── Role_Management.svg │ │ │ ├── Roles.png │ │ │ ├── Roles.svg │ │ │ ├── Scheduler.png │ │ │ ├── Scheduler.svg │ │ │ ├── Schedulers.svg │ │ │ ├── SearchForm.svg │ │ │ ├── SecurityGroups.png │ │ │ ├── SecurityGroups.svg │ │ │ ├── Security_Suite_Group_Management.png │ │ │ ├── Security_Suite_Group_Management.svg │ │ │ ├── Security_Suite_Settings.png │ │ │ ├── Security_Suite_Settings.svg │ │ │ ├── Studio.png │ │ │ ├── Studio.svg │ │ │ ├── System_Settings.png │ │ │ ├── System_Settings.svg │ │ │ ├── Themes.png │ │ │ ├── Themes.svg │ │ │ ├── Upgrade.png │ │ │ ├── Upgrade.svg │ │ │ ├── Upgrade_Wizard.png │ │ │ ├── Upgrade_Wizard.svg │ │ │ ├── User_Management.png │ │ │ ├── User_Management.svg │ │ │ ├── Users.png │ │ │ ├── Users.svg │ │ │ ├── icon_AdminThemes.svg │ │ │ └── icon_SugarFeed.svg │ │ ├── arrow.png │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── arrow_up_alt1_16x16.png │ │ ├── arrowup.png │ │ ├── attachment-indicator.svg │ │ ├── attachment.gif │ │ ├── attachment.svg │ │ ├── basic.svg │ │ ├── bgnoise.png │ │ ├── bigsuite.png │ │ ├── calendar_info.png │ │ ├── calendar_next.png │ │ ├── calendar_next.svg │ │ ├── calendar_previous.png │ │ ├── calendar_previous.svg │ │ ├── check_inline.png │ │ ├── close.png │ │ ├── close_dashboard.png │ │ ├── close_inline.png │ │ ├── cog.png │ │ ├── cog.svg │ │ ├── dashlet-header-close.png │ │ ├── dashlet-header-edit.png │ │ ├── dashlet-header-refresh.png │ │ ├── dashletclose.png │ │ ├── decline_inline.png │ │ ├── edit_inline.gif │ │ ├── edit_inline.png │ │ ├── edit_inline.svg │ │ ├── forms │ │ │ ├── check.png │ │ │ ├── radio.png │ │ │ ├── select.ico │ │ │ ├── select.png │ │ │ └── src │ │ │ │ ├── check.svg │ │ │ │ ├── radio.svg │ │ │ │ └── select.svg │ │ ├── help-dashlet.png │ │ ├── help_inline.png │ │ ├── icon_A1_newmod.png │ │ ├── icon_ACLRoles_32.svg │ │ ├── icon_AM_ProjectTemplates_32.svg │ │ ├── icon_AM_TaskTemplates_32.svg │ │ ├── icon_AOBH_BusinessHours_32.svg │ │ ├── icon_AOD_32.svg │ │ ├── icon_AOK_KnowledgeBase_32.svg │ │ ├── icon_AOK_Knowledge_Base_Categories_32.svg │ │ ├── icon_AOP_32.svg │ │ ├── icon_AOR_Reports_32.svg │ │ ├── icon_AOR_Scheduled_Reports_32.svg │ │ ├── icon_AOS_32.svg │ │ ├── icon_AOS_Contracts2_32.svg │ │ ├── icon_AOS_Contracts_32.svg │ │ ├── icon_AOS_Invoices_32.svg │ │ ├── icon_AOS_PDF_Templates_32.svg │ │ ├── icon_AOS_Product_Categories_32.svg │ │ ├── icon_AOS_Products_32.svg │ │ ├── icon_AOS_Products_Quotes_32.svg │ │ ├── icon_AOS_Quotes_32.svg │ │ ├── icon_AOW_Processed_32.svg │ │ ├── icon_AOW_WorkFlow_32.svg │ │ ├── icon_Accounts_32.svg │ │ ├── icon_Activities_32.svg │ │ ├── icon_Activity_Streams_32.svg │ │ ├── icon_Address_Cache_32.svg │ │ ├── icon_AdminThemes.svg │ │ ├── icon_Administration_32.svg │ │ ├── icon_Aos_Settings_32.svg │ │ ├── icon_Areas_Maps_32.svg │ │ ├── icon_Backups_32.svg │ │ ├── icon_Bugs_32.svg │ │ ├── icon_Calendar_32.svg │ │ ├── icon_Calls_32.svg │ │ ├── icon_CampaignLog_32.svg │ │ ├── icon_CampaignTrackers_32.svg │ │ ├── icon_Campaigns_32.svg │ │ ├── icon_Case_Updates_32.svg │ │ ├── icon_Cases_32.svg │ │ ├── icon_Charts_Funnel_32.svg │ │ ├── icon_Charts_GroupBy_32.svg │ │ ├── icon_Charts_Horizontal_32.svg │ │ ├── icon_Charts_Pie_32.svg │ │ ├── icon_Charts_Vertical_32.svg │ │ ├── icon_ConfigureTabs_32.svg │ │ ├── icon_Configure_Module_Menu_Filters_32.svg │ │ ├── icon_Connectors.svg │ │ ├── icon_Connectors_32.svg │ │ ├── icon_Contacts_32.svg │ │ ├── icon_Contracts_32.svg │ │ ├── icon_Currencies_32.svg │ │ ├── icon_Diagnostic_32.svg │ │ ├── icon_Diagnostic_Tool_32.svg │ │ ├── icon_Direct_Reports_32.svg │ │ ├── icon_Display_Modules_And_Subpanels_32.svg │ │ ├── icon_Document_Revisions_32.svg │ │ ├── icon_Documents_32.svg │ │ ├── icon_Donate_32.svg │ │ ├── icon_Dropdown_32.svg │ │ ├── icon_Dropdown_Editor_32.svg │ │ ├── icon_EmailCampaigns_32.svg │ │ ├── icon_EmailInbound_32.svg │ │ ├── icon_EmailMan_32.svg │ │ ├── icon_EmailOutbound_32.svg │ │ ├── icon_EmailQueue_32.svg │ │ ├── icon_Email_Marketing2_32.svg │ │ ├── icon_Email_Marketing_32.svg │ │ ├── icon_Email_Queue_32.svg │ │ ├── icon_Email_Settings_32.svg │ │ ├── icon_Emails_32.svg │ │ ├── icon_Employees_32.png │ │ ├── icon_FP_Event_Locations_32.svg │ │ ├── icon_FP_events_32.svg │ │ ├── icon_GeocodeAddresses_32.svg │ │ ├── icon_Geocode_Addresses_32.svg │ │ ├── icon_Geocoded_Counts_32.svg │ │ ├── icon_GeocodingTests_32.svg │ │ ├── icon_Geocoding_Test_32.svg │ │ ├── icon_Global_Search_32.svg │ │ ├── icon_Google_Maps_Settings_32.svg │ │ ├── icon_History_32.svg │ │ ├── icon_History_Subpanel_32.svg │ │ ├── icon_Home_32.svg │ │ ├── icon_Import_32.svg │ │ ├── icon_Import_Wizard_32.svg │ │ ├── icon_InboundEmail_32.svg │ │ ├── icon_Inbound_Email_32.svg │ │ ├── icon_Invaders_32.svg │ │ ├── icon_Invoices_32.svg │ │ ├── icon_JotPad_32.svg │ │ ├── icon_Kb_Cat_32.svg │ │ ├── icon_Languages_32.svg │ │ ├── icon_Leads_32.svg │ │ ├── icon_Locale_32.svg │ │ ├── icon_Maps_32.svg │ │ ├── icon_Markers_Maps_32.svg │ │ ├── icon_Meetings_32.svg │ │ ├── icon_Member_32.svg │ │ ├── icon_ModuleBuilder_32.svg │ │ ├── icon_ModuleLoader_32.svg │ │ ├── icon_Module_Builder_32.svg │ │ ├── icon_Module_Loader_32.svg │ │ ├── icon_Notes_32.svg │ │ ├── icon_Oauth_Keys_32.svg │ │ ├── icon_Opportunities_32.svg │ │ ├── icon_Other_32.svg │ │ ├── icon_OutboundEmailAccounts_32.svg │ │ ├── icon_Overview_32.svg │ │ ├── icon_Password_32.svg │ │ ├── icon_Password_Management_32.svg │ │ ├── icon_Process_Autit_32.svg │ │ ├── icon_Product_Categories_32.svg │ │ ├── icon_Products_32.svg │ │ ├── icon_ProjectTask_32.svg │ │ ├── icon_Project_32.svg │ │ ├── icon_Project_Tasks_32.svg │ │ ├── icon_ProspectLists_32.svg │ │ ├── icon_Prospects_32.png │ │ ├── icon_Prospects_32.svg │ │ ├── icon_Quotes_32.svg │ │ ├── icon_Rebuild_32.svg │ │ ├── icon_Releases_32.svg │ │ ├── icon_RenameTabs_32.svg │ │ ├── icon_Rename_Modules_32.svg │ │ ├── icon_Repair_32.svg │ │ ├── icon_Reports_32.svg │ │ ├── icon_Role_Management_32.svg │ │ ├── icon_Roles_32.svg │ │ ├── icon_Scheduler_32.svg │ │ ├── icon_Schedulers_32.svg │ │ ├── icon_SearchForm.svg │ │ ├── icon_SecurityGroupsManagement_32.svg │ │ ├── icon_SecurityGroups_32.svg │ │ ├── icon_SecuritySuiteGroupManagement_32.svg │ │ ├── icon_SpotsDashlet_32.svg │ │ ├── icon_Spots_32.png │ │ ├── icon_Spots_32.svg │ │ ├── icon_Studio_32.svg │ │ ├── icon_SugarFeed.svg │ │ ├── icon_SugarFeed_32.svg │ │ ├── icon_SugarNews_32.svg │ │ ├── icon_System_Settings_32.svg │ │ ├── icon_Tab_32.svg │ │ ├── icon_Targets_32.svg │ │ ├── icon_Tasks_32.svg │ │ ├── icon_TemplateSectionLine_32.svg │ │ ├── icon_Themes_32.svg │ │ ├── icon_UpgradeWizard_32.svg │ │ ├── icon_Upgrade_32.svg │ │ ├── icon_Upgrade_Wizard_32.svg │ │ ├── icon_UserManagement_32.svg │ │ ├── icon_User_Management_32.svg │ │ ├── icon_Users_32.svg │ │ ├── icon_Workflow_32.svg │ │ ├── icon_acc_calendar_32.svg │ │ ├── icon_action_create_32.svg │ │ ├── icon_attachment_32.svg │ │ ├── icon_basic.png │ │ ├── icon_cog_32.svg │ │ ├── icon_home.png │ │ ├── icon_icon_AdminThemes_32.svg │ │ ├── icon_icon_Connectors_32.svg │ │ ├── icon_icon_SearchForm_32.svg │ │ ├── icon_icon_SugarFeed_32.svg │ │ ├── icon_id-ff-add_32.svg │ │ ├── icon_id-ff-clear_32.svg │ │ ├── icon_id-ff-remove-nobg_32.svg │ │ ├── icon_id-ff-select_32.svg │ │ ├── icon_inline_edit_icon_32.svg │ │ ├── icon_inline_edit_save_icon_32.svg │ │ ├── icon_jjwg_Address_Cache_32.svg │ │ ├── icon_jjwg_Areas_32.svg │ │ ├── icon_jjwg_Maps_32.svg │ │ ├── icon_jjwg_Markers_32.svg │ │ ├── icon_list_head_sort_32.svg │ │ ├── icon_login_bg_32.svg │ │ ├── icon_p_create_arrow_32.svg │ │ ├── icon_p_hide_sidebar_32.svg │ │ ├── icon_p_icon_alert_32.svg │ │ ├── icon_p_icon_alert_small_32.svg │ │ ├── icon_p_icon_back_to_top_32.svg │ │ ├── icon_p_icon_caret_32.svg │ │ ├── icon_p_icon_home_32.svg │ │ ├── icon_p_icon_user_32.svg │ │ ├── icon_p_list_search_32.svg │ │ ├── icon_p_login_logo_32.svg │ │ ├── icon_p_pag_tools_32.svg │ │ ├── icon_p_search_button_32.svg │ │ ├── icon_p_search_button_small_32.svg │ │ ├── icon_p_shortcut_action_32.svg │ │ ├── icon_p_show_sidebar_32.svg │ │ ├── icon_p_up_arrow_32.svg │ │ ├── icon_p_user_icon_32.svg │ │ ├── icon_p_user_icon_small_32.svg │ │ ├── id-ff-add.png │ │ ├── id-ff-add.svg │ │ ├── id-ff-clear.png │ │ ├── id-ff-clear.svg │ │ ├── id-ff-remove-nobg.png │ │ ├── id-ff-remove-nobg.svg │ │ ├── id-ff-remove.png │ │ ├── id-ff-select.png │ │ ├── id-ff-select.svg │ │ ├── img_left_arrow.jpg │ │ ├── img_right_arrow.jpg │ │ ├── info-add-page.png │ │ ├── info-del.png │ │ ├── info_inline.gif │ │ ├── inline_edit_icon.svg │ │ ├── inline_edit_save_icon.svg │ │ ├── jjwg_Address_Cache.svg │ │ ├── jjwg_Areas.svg │ │ ├── jjwg_Maps.svg │ │ ├── jjwg_Markers.svg │ │ ├── jscalendar.gif │ │ ├── jscolor │ │ │ ├── arrow.gif │ │ │ ├── cross.gif │ │ │ ├── hs.png │ │ │ └── hv.png │ │ ├── last_16x16.png │ │ ├── light-bulb.png │ │ ├── list_head_sort.png │ │ ├── list_head_sort.svg │ │ ├── loading.gif │ │ ├── login_bg.png │ │ ├── login_bg.svg │ │ ├── menu-edit.png │ │ ├── p_create_arrow.png │ │ ├── p_create_arrow.svg │ │ ├── p_edit_inline.png │ │ ├── p_generic_arrow.png │ │ ├── p_generic_arrow.svg │ │ ├── p_hide_sidebar.png │ │ ├── p_hide_sidebar.svg │ │ ├── p_icon_alert.png │ │ ├── p_icon_alert.svg │ │ ├── p_icon_alert_small.png │ │ ├── p_icon_alert_small.svg │ │ ├── p_icon_back_to_top.png │ │ ├── p_icon_back_to_top.svg │ │ ├── p_icon_caret.png │ │ ├── p_icon_caret.svg │ │ ├── p_icon_email_address_32.png │ │ ├── p_icon_email_address_32.svg │ │ ├── p_icon_home.png │ │ ├── p_icon_home.svg │ │ ├── p_icon_home_hover.png │ │ ├── p_icon_home_hover.svg │ │ ├── p_icon_user.png │ │ ├── p_icon_user.svg │ │ ├── p_left.svg │ │ ├── p_list_search.png │ │ ├── p_list_search.svg │ │ ├── p_login_logo.png │ │ ├── p_login_logo.svg │ │ ├── p_pag_tools.png │ │ ├── p_pag_tools.svg │ │ ├── p_right.svg │ │ ├── p_search_button.png │ │ ├── p_search_button.svg │ │ ├── p_search_button_small.png │ │ ├── p_search_button_small.svg │ │ ├── p_shortcut_action.png │ │ ├── p_shortcut_action.svg │ │ ├── p_show_sidebar.png │ │ ├── p_show_sidebar.svg │ │ ├── p_up_arrow.png │ │ ├── p_up_arrow.svg │ │ ├── p_user_icon.png │ │ ├── p_user_icon.svg │ │ ├── p_user_icon_small.png │ │ ├── p_user_icon_small.svg │ │ ├── plus_16x16.png │ │ ├── poweredby_sugarcrm_65.png │ │ ├── quickcreate.png │ │ ├── right-arrow-install.png │ │ ├── right-arrow.png │ │ ├── search_mag.png │ │ ├── search_mag2.png │ │ ├── sidebar │ │ │ ├── Add.png │ │ │ ├── Add.svg │ │ │ ├── Create_Contact_Vcard.png │ │ │ ├── Create_Contact_Vcard.svg │ │ │ ├── Create_Group_User.png │ │ │ ├── Create_Group_User.svg │ │ │ ├── Create_Person_Form.png │ │ │ ├── Create_Person_Form.svg │ │ │ ├── Create_Security_Group.png │ │ │ ├── Create_Security_Group.svg │ │ │ ├── Import.png │ │ │ ├── Import.svg │ │ │ ├── Import_Line_Item.png │ │ │ ├── Import_Line_Item.svg │ │ │ ├── List_Maps.png │ │ │ ├── List_Maps.svg │ │ │ ├── Quick_Radius_Map.png │ │ │ ├── Quick_Radius_Map.svg │ │ │ ├── README.txt │ │ │ ├── Resource_Chart.png │ │ │ ├── Resource_Chart.svg │ │ │ ├── Role_Management.png │ │ │ ├── Role_Management.svg │ │ │ ├── Schedule_Call.png │ │ │ ├── Schedule_Call.svg │ │ │ ├── Schedule_Meeting.png │ │ │ ├── Schedule_Meeting.svg │ │ │ ├── Security_Groups.png │ │ │ ├── Security_Groups.svg │ │ │ ├── Security_Suite_Settings.png │ │ │ ├── Security_Suite_Settings.svg │ │ │ ├── Setup_Email.png │ │ │ ├── Setup_Email.svg │ │ │ ├── Subtract.svg │ │ │ ├── Today.png │ │ │ ├── Today.svg │ │ │ ├── View.png │ │ │ ├── View.svg │ │ │ ├── View_Create_Email_Templates.png │ │ │ ├── View_Create_Email_Templates.svg │ │ │ ├── View_Diagnostics.png │ │ │ ├── View_Diagnostics.svg │ │ │ ├── View_Email_Templates.png │ │ │ ├── View_Email_Templates.svg │ │ │ ├── View_Process_Audit.png │ │ │ ├── View_Process_Audit.svg │ │ │ ├── View_Project_Tasks.png │ │ │ ├── View_Project_Tasks.svg │ │ │ └── modules │ │ │ │ ├── ACLRoles.png │ │ │ │ ├── ACLRoles.svg │ │ │ │ ├── AOBH_BusinessHours.png │ │ │ │ ├── AOBH_BusinessHours.svg │ │ │ │ ├── AOK_KnowledgeBase.png │ │ │ │ ├── AOK_KnowledgeBase.svg │ │ │ │ ├── AOK_Knowledge_Base_Categories.png │ │ │ │ ├── AOK_Knowledge_Base_Categories.svg │ │ │ │ ├── AOK_KnowlegdgeBase.png │ │ │ │ ├── AOK_KnowlegdgeBase.svg │ │ │ │ ├── AOP_Case_Updates.png │ │ │ │ ├── AOP_Case_Updates.svg │ │ │ │ ├── AOR_Processed.png │ │ │ │ ├── AOR_Processed.svg │ │ │ │ ├── AOR_Reports.png │ │ │ │ ├── AOR_Reports.svg │ │ │ │ ├── AOS_Contracts.png │ │ │ │ ├── AOS_Contracts.svg │ │ │ │ ├── AOS_Contracts2.png │ │ │ │ ├── AOS_Contracts2.svg │ │ │ │ ├── AOS_Contracts_2.png │ │ │ │ ├── AOS_Contracts_2.svg │ │ │ │ ├── AOS_Invoices.png │ │ │ │ ├── AOS_Invoices.svg │ │ │ │ ├── AOS_Product_Categories.png │ │ │ │ ├── AOS_Product_Categories.svg │ │ │ │ ├── AOS_Products.png │ │ │ │ ├── AOS_Products.svg │ │ │ │ ├── AOS_Products_Categories.png │ │ │ │ ├── AOS_Products_Categories.svg │ │ │ │ ├── AOS_Products_Quotes.png │ │ │ │ ├── AOS_Products_Quotes.svg │ │ │ │ ├── AOS_Quotes.png │ │ │ │ ├── AOS_Quotes.svg │ │ │ │ ├── AOW_WorkFlow.png │ │ │ │ ├── AOW_WorkFlow.svg │ │ │ │ ├── Accounts.png │ │ │ │ ├── Accounts.svg │ │ │ │ ├── Accounts_favico.png │ │ │ │ ├── Activities.png │ │ │ │ ├── Activities.svg │ │ │ │ ├── AddEmailTemplates.png │ │ │ │ ├── AddEmailTemplates.svg │ │ │ │ ├── Administration.png │ │ │ │ ├── Areas_Maps.png │ │ │ │ ├── Areas_Maps.svg │ │ │ │ ├── ArrowButtons.png │ │ │ │ ├── Bugs.png │ │ │ │ ├── Bugs.svg │ │ │ │ ├── Bugs_favico.png │ │ │ │ ├── Calendar.png │ │ │ │ ├── Calendar.svg │ │ │ │ ├── Calendar_favico.png │ │ │ │ ├── Calls.png │ │ │ │ ├── Calls.svg │ │ │ │ ├── Calls_favico.png │ │ │ │ ├── CampaignLog.png │ │ │ │ ├── CampaignLog.svg │ │ │ │ ├── CampaignTrackers.png │ │ │ │ ├── CampaignTrackers.svg │ │ │ │ ├── Campaigns.png │ │ │ │ ├── Campaigns.svg │ │ │ │ ├── Campaigns_favico.png │ │ │ │ ├── Case_Updates.png │ │ │ │ ├── Case_Updates.svg │ │ │ │ ├── Cases.png │ │ │ │ ├── Cases.svg │ │ │ │ ├── Cases_favico.png │ │ │ │ ├── Contacts.png │ │ │ │ ├── Contacts.svg │ │ │ │ ├── Contacts_favico.png │ │ │ │ ├── Contracts.png │ │ │ │ ├── Contracts.svg │ │ │ │ ├── Direct_Reports.png │ │ │ │ ├── Direct_Reports.svg │ │ │ │ ├── DocumentRevisions.png │ │ │ │ ├── DocumentRevisions.svg │ │ │ │ ├── Documents.png │ │ │ │ ├── Documents.svg │ │ │ │ ├── Documents_2.png │ │ │ │ ├── Documents_2.svg │ │ │ │ ├── Documents_favico.png │ │ │ │ ├── EmailAddresses_favico.png │ │ │ │ ├── EmailMarketing.png │ │ │ │ ├── EmailMarketing.svg │ │ │ │ ├── EmailTempates.svg │ │ │ │ ├── EmailTemplates.png │ │ │ │ ├── EmailTemplates.svg │ │ │ │ ├── Email_Marketing.png │ │ │ │ ├── Email_Marketing.svg │ │ │ │ ├── Email_Marketing2.png │ │ │ │ ├── Email_Marketing2.svg │ │ │ │ ├── Emails.png │ │ │ │ ├── Emails.svg │ │ │ │ ├── Emails_favico.png │ │ │ │ ├── Employees.png │ │ │ │ ├── Employees.svg │ │ │ │ ├── FP_Event_Locations.png │ │ │ │ ├── FP_Event_Locations.svg │ │ │ │ ├── FP_events.png │ │ │ │ ├── FP_events.svg │ │ │ │ ├── History.png │ │ │ │ ├── History.svg │ │ │ │ ├── InboundEmail.png │ │ │ │ ├── InboundEmail.svg │ │ │ │ ├── Invoices.png │ │ │ │ ├── Invoices.svg │ │ │ │ ├── Kb_Cat.png │ │ │ │ ├── Kb_Cat.svg │ │ │ │ ├── Leads.png │ │ │ │ ├── Leads.svg │ │ │ │ ├── Leads_favico.png │ │ │ │ ├── Maps.png │ │ │ │ ├── Maps.svg │ │ │ │ ├── Markers_Maps.png │ │ │ │ ├── Markers_Maps.svg │ │ │ │ ├── Meetings.png │ │ │ │ ├── Meetings.svg │ │ │ │ ├── Meetings_favico.png │ │ │ │ ├── Member.png │ │ │ │ ├── Member.svg │ │ │ │ ├── MoreDetail.png │ │ │ │ ├── Notes.png │ │ │ │ ├── Notes.svg │ │ │ │ ├── Notes_favico.png │ │ │ │ ├── Opportunities.png │ │ │ │ ├── Opportunities.svg │ │ │ │ ├── Opportunities_favico.png │ │ │ │ ├── Other.png │ │ │ │ ├── Other.svg │ │ │ │ ├── Overview.png │ │ │ │ ├── Overview.svg │ │ │ │ ├── Password.png │ │ │ │ ├── Process_Autit.png │ │ │ │ ├── Process_Autit.svg │ │ │ │ ├── Products.png │ │ │ │ ├── Products.svg │ │ │ │ ├── Project.png │ │ │ │ ├── Project.svg │ │ │ │ ├── ProjectTask.png │ │ │ │ ├── ProjectTask.svg │ │ │ │ ├── ProjectTasks.png │ │ │ │ ├── ProjectTasks.svg │ │ │ │ ├── Project_Tasks.png │ │ │ │ ├── Project_Tasks.svg │ │ │ │ ├── Projects_favico.png │ │ │ │ ├── ProspectLists.png │ │ │ │ ├── ProspectLists.svg │ │ │ │ ├── Prospects.png │ │ │ │ ├── Prospects.svg │ │ │ │ ├── Prospects_favico.png │ │ │ │ ├── Quotes.png │ │ │ │ ├── Quotes.svg │ │ │ │ ├── Rebuild.png │ │ │ │ ├── Repair.png │ │ │ │ ├── Reports.png │ │ │ │ ├── Reports.svg │ │ │ │ ├── SecurityGroups.png │ │ │ │ ├── SecurityGroups.svg │ │ │ │ ├── Spots.png │ │ │ │ ├── Spots.svg │ │ │ │ ├── Subtract.svg │ │ │ │ ├── SugarFeed.png │ │ │ │ ├── SugarFeed.svg │ │ │ │ ├── SurveyQuestionOptions.svg │ │ │ │ ├── SurveyQuestionResponses.svg │ │ │ │ ├── SurveyQuestions.svg │ │ │ │ ├── SurveyResponses.svg │ │ │ │ ├── Surveys.svg │ │ │ │ ├── Tab.svg │ │ │ │ ├── Targets.png │ │ │ │ ├── Targets.svg │ │ │ │ ├── Tasks.png │ │ │ │ ├── Tasks.svg │ │ │ │ ├── Tasks_favico.png │ │ │ │ ├── TemplateSectionLine.png │ │ │ │ ├── TemplateSectionLine.svg │ │ │ │ ├── Users.png │ │ │ │ ├── Users.svg │ │ │ │ ├── Users_favico.png │ │ │ │ ├── Workflow.png │ │ │ │ ├── Workflow.svg │ │ │ │ ├── _blank.png │ │ │ │ ├── acc_markers_maps_small.png │ │ │ │ ├── acc_markers_maps_small.svg │ │ │ │ ├── acc_other_small.png │ │ │ │ ├── acc_other_small.svg │ │ │ │ ├── action_create.png │ │ │ │ ├── action_create.svg │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── arrow_up_alt1_16x16.png │ │ │ │ ├── arrowup.png │ │ │ │ ├── basic.svg │ │ │ │ ├── bgnoise.png │ │ │ │ ├── bigsuite.png │ │ │ │ ├── calendar_info.png │ │ │ │ ├── calendar_next.png │ │ │ │ ├── calendar_previous.png │ │ │ │ ├── check_inline.png │ │ │ │ ├── close.png │ │ │ │ ├── close_dashboard.png │ │ │ │ ├── close_inline.png │ │ │ │ ├── cog.png │ │ │ │ ├── cog.svg │ │ │ │ ├── dashlet-header-close.png │ │ │ │ ├── dashlet-header-close.svg │ │ │ │ ├── dashlet-header-edit.png │ │ │ │ ├── dashlet-header-edit.svg │ │ │ │ ├── dashlet-header-refresh.png │ │ │ │ ├── dashlet-header-refresh.svg │ │ │ │ ├── dashletclose.png │ │ │ │ ├── decline_inline.png │ │ │ │ ├── edit_inline.png │ │ │ │ ├── favorite-star-outline.svg │ │ │ │ ├── favorite-star.svg │ │ │ │ ├── help-dashlet.png │ │ │ │ ├── help_inline.png │ │ │ │ ├── icon_A1_newmod.png │ │ │ │ ├── icon_basic.png │ │ │ │ ├── icon_home.png │ │ │ │ ├── id-ff-add.png │ │ │ │ ├── id-ff-add.svg │ │ │ │ ├── id-ff-clear.png │ │ │ │ ├── id-ff-clear.svg │ │ │ │ ├── id-ff-remove-nobg.png │ │ │ │ ├── id-ff-remove-nobg.svg │ │ │ │ ├── id-ff-remove.png │ │ │ │ ├── id-ff-select.png │ │ │ │ ├── id-ff-select.svg │ │ │ │ ├── img_left_arrow.jpg │ │ │ │ ├── img_right_arrow.jpg │ │ │ │ ├── info-add-page.png │ │ │ │ ├── info-del.png │ │ │ │ ├── inline_edit_icon.svg │ │ │ │ ├── inline_edit_save_icon.svg │ │ │ │ ├── jjwg_Areas.png │ │ │ │ ├── jjwg_Areas.svg │ │ │ │ ├── jjwg_Maps.png │ │ │ │ ├── jjwg_Maps.svg │ │ │ │ ├── jjwg_Markers.png │ │ │ │ ├── jjwg_Markers.svg │ │ │ │ ├── last_16x16.png │ │ │ │ ├── light-bulb.png │ │ │ │ ├── list_head_sort.png │ │ │ │ ├── list_head_sort.svg │ │ │ │ ├── login_bg.png │ │ │ │ ├── login_bg.svg │ │ │ │ ├── menu-edit.png │ │ │ │ ├── p_create_arrow.png │ │ │ │ ├── p_create_arrow.svg │ │ │ │ ├── p_edit_inline.png │ │ │ │ ├── p_hide_sidebar.png │ │ │ │ ├── p_hide_sidebar.svg │ │ │ │ ├── p_icon_alert.png │ │ │ │ ├── p_icon_alert.svg │ │ │ │ ├── p_icon_alert_small.png │ │ │ │ ├── p_icon_alert_small.svg │ │ │ │ ├── p_icon_back_to_top.png │ │ │ │ ├── p_icon_back_to_top.svg │ │ │ │ ├── p_icon_caret.png │ │ │ │ ├── p_icon_caret.svg │ │ │ │ ├── p_icon_home.png │ │ │ │ ├── p_icon_home.svg │ │ │ │ ├── p_icon_user.png │ │ │ │ ├── p_icon_user.svg │ │ │ │ ├── p_list_search.png │ │ │ │ ├── p_list_search.svg │ │ │ │ ├── p_login_logo.png │ │ │ │ ├── p_login_logo.svg │ │ │ │ ├── p_pag_tools.png │ │ │ │ ├── p_pag_tools.svg │ │ │ │ ├── p_search_button.png │ │ │ │ ├── p_search_button.svg │ │ │ │ ├── p_search_button_small.png │ │ │ │ ├── p_search_button_small.svg │ │ │ │ ├── p_shortcut_action.png │ │ │ │ ├── p_shortcut_action.svg │ │ │ │ ├── p_show_sidebar.png │ │ │ │ ├── p_show_sidebar.svg │ │ │ │ ├── p_up_arrow.png │ │ │ │ ├── p_up_arrow.svg │ │ │ │ ├── p_user_icon.png │ │ │ │ ├── p_user_icon.svg │ │ │ │ ├── p_user_icon_small.png │ │ │ │ ├── p_user_icon_small.svg │ │ │ │ ├── plus_16x16.png │ │ │ │ ├── poweredby_sugarcrm_65.png │ │ │ │ ├── quickcreate.png │ │ │ │ ├── right-arrow-install.png │ │ │ │ ├── right-arrow.png │ │ │ │ ├── search-close.svg │ │ │ │ ├── search_mag.png │ │ │ │ ├── search_mag2.png │ │ │ │ ├── sugar-yui-sprites-green.png │ │ │ │ ├── sugar-yui-sprites-grey.png │ │ │ │ ├── sugar-yui-sprites-purple.png │ │ │ │ ├── sugar-yui-sprites-red.png │ │ │ │ ├── sugar-yui-sprites.png │ │ │ │ ├── sugar_icon.ico │ │ │ │ ├── themePreview.png │ │ │ │ ├── view.png │ │ │ │ └── view_inline.png │ │ ├── sub_panel │ │ │ ├── ACLRoles.svg │ │ │ ├── AOK_KnowledgeBase.png │ │ │ ├── AOK_KnowledgeBase.svg │ │ │ ├── AOK_Knowledge_Base_Categories.png │ │ │ ├── AOK_Knowledge_Base_Categories.svg │ │ │ ├── AOS_Contracts.png │ │ │ ├── AOS_Contracts.svg │ │ │ ├── AOS_Contracts2.png │ │ │ ├── AOS_Contracts2.svg │ │ │ ├── AOS_Invoices.png │ │ │ ├── AOS_Invoices.svg │ │ │ ├── AOS_Product_Categories.png │ │ │ ├── AOS_Product_Categories.svg │ │ │ ├── AOS_Products.png │ │ │ ├── AOS_Products.svg │ │ │ ├── AOS_Products_Quotes.png │ │ │ ├── AOS_Products_Quotes.svg │ │ │ ├── AOS_Quotes.png │ │ │ ├── AOS_Quotes.svg │ │ │ ├── Accounts.png │ │ │ ├── Accounts.svg │ │ │ ├── Activities.png │ │ │ ├── Activities.svg │ │ │ ├── Areas_Maps.png │ │ │ ├── Areas_Maps.svg │ │ │ ├── Bugs.png │ │ │ ├── Bugs.svg │ │ │ ├── CampaignLog.png │ │ │ ├── CampaignLog.svg │ │ │ ├── CampaignTrackers.png │ │ │ ├── CampaignTrackers.svg │ │ │ ├── Campaigns.png │ │ │ ├── Campaigns.svg │ │ │ ├── Case_Updates.png │ │ │ ├── Case_Updates.svg │ │ │ ├── Cases.png │ │ │ ├── Cases.svg │ │ │ ├── Contacts.png │ │ │ ├── Contacts.svg │ │ │ ├── Contracts.png │ │ │ ├── Contracts.svg │ │ │ ├── Direct_Reports.png │ │ │ ├── Direct_Reports.svg │ │ │ ├── DocumentRevisions.png │ │ │ ├── DocumentRevisions.svg │ │ │ ├── Documents.png │ │ │ ├── Documents.svg │ │ │ ├── EmailMarketing.png │ │ │ ├── EmailMarketing.svg │ │ │ ├── EmailMarketing2.png │ │ │ ├── EmailMarketing2.svg │ │ │ ├── Emails.svg │ │ │ ├── FP_events.png │ │ │ ├── FP_events.svg │ │ │ ├── History.png │ │ │ ├── History.svg │ │ │ ├── Invoices.png │ │ │ ├── Invoices.svg │ │ │ ├── Kb_Cat.png │ │ │ ├── Kb_Cat.svg │ │ │ ├── Leads.png │ │ │ ├── Leads.svg │ │ │ ├── Maps.png │ │ │ ├── Maps.svg │ │ │ ├── Markers_Maps.png │ │ │ ├── Markers_Maps.svg │ │ │ ├── Member.png │ │ │ ├── Member.svg │ │ │ ├── Notes.png │ │ │ ├── Notes.svg │ │ │ ├── Opportunities.png │ │ │ ├── Opportunities.svg │ │ │ ├── Other.png │ │ │ ├── Other.svg │ │ │ ├── Overview.png │ │ │ ├── Overview.svg │ │ │ ├── Process_Autit.png │ │ │ ├── Process_Autit.svg │ │ │ ├── Product_Categories.png │ │ │ ├── Product_Categories.svg │ │ │ ├── Products.png │ │ │ ├── Products.svg │ │ │ ├── Project.png │ │ │ ├── Project.svg │ │ │ ├── ProjectTask.png │ │ │ ├── ProjectTask.svg │ │ │ ├── Project_Tasks.png │ │ │ ├── Project_Tasks.svg │ │ │ ├── ProspectLists.png │ │ │ ├── ProspectLists.svg │ │ │ ├── Quotes.png │ │ │ ├── Quotes.svg │ │ │ ├── Reports.png │ │ │ ├── Reports.svg │ │ │ ├── SecurityGroups.png │ │ │ ├── SecurityGroups.svg │ │ │ ├── Subtract.svg │ │ │ ├── SurveyQuestionOptions.svg │ │ │ ├── SurveyQuestionResponses.svg │ │ │ ├── SurveyQuestions.svg │ │ │ ├── SurveyResponses.svg │ │ │ ├── Surveys.svg │ │ │ ├── Tab.svg │ │ │ ├── Targets.png │ │ │ ├── Targets.svg │ │ │ ├── Tasks.png │ │ │ ├── Tasks.svg │ │ │ ├── Users.png │ │ │ ├── Users.svg │ │ │ ├── Workflow.png │ │ │ ├── Workflow.svg │ │ │ ├── basic.svg │ │ │ ├── jjwg_Maps.png │ │ │ ├── jjwg_Maps.svg │ │ │ ├── jjwg_Markers.svg │ │ │ └── modules │ │ │ │ ├── ACLRoles.svg │ │ │ │ ├── AM_TaskTemplates.svg │ │ │ │ ├── AOK_KnowledgeBase.svg │ │ │ │ ├── AOK_Knowledge_Base_Categories.svg │ │ │ │ ├── AOR_Processed.svg │ │ │ │ ├── AOR_Reports.svg │ │ │ │ ├── AOS_Contracts.svg │ │ │ │ ├── AOS_Contracts2.svg │ │ │ │ ├── AOS_Invoices.svg │ │ │ │ ├── AOS_Product_Categories.svg │ │ │ │ ├── AOS_Products.svg │ │ │ │ ├── AOS_Products_Quotes.svg │ │ │ │ ├── AOS_Quotes.svg │ │ │ │ ├── AOW_Workflow.svg │ │ │ │ ├── Accounts.svg │ │ │ │ ├── Activities.svg │ │ │ │ ├── Areas_Maps.svg │ │ │ │ ├── Bugs.svg │ │ │ │ ├── Calendar.svg │ │ │ │ ├── Calls.svg │ │ │ │ ├── CampaignLog.svg │ │ │ │ ├── CampaignTrackers.svg │ │ │ │ ├── Campaigns.svg │ │ │ │ ├── Case_Updates.svg │ │ │ │ ├── Cases.svg │ │ │ │ ├── Contacts.svg │ │ │ │ ├── Contracts.svg │ │ │ │ ├── Direct_Reports.svg │ │ │ │ ├── Document_Revisions.svg │ │ │ │ ├── Documents.svg │ │ │ │ ├── Email_Marketing.svg │ │ │ │ ├── Email_Marketing2.svg │ │ │ │ ├── Emails.svg │ │ │ │ ├── FP_events.svg │ │ │ │ ├── History.svg │ │ │ │ ├── Invoices.svg │ │ │ │ ├── Kb_Cat.svg │ │ │ │ ├── Leads.svg │ │ │ │ ├── Maps.svg │ │ │ │ ├── Markers_Maps.svg │ │ │ │ ├── Meetings.svg │ │ │ │ ├── Member.svg │ │ │ │ ├── Notes.svg │ │ │ │ ├── Opportunities.svg │ │ │ │ ├── Other.svg │ │ │ │ ├── Overview.svg │ │ │ │ ├── Process_Audit.svg │ │ │ │ ├── Product_Categories.svg │ │ │ │ ├── Products.svg │ │ │ │ ├── Project.svg │ │ │ │ ├── ProjectTask.svg │ │ │ │ ├── Project_Tasks.svg │ │ │ │ ├── ProspectLists.svg │ │ │ │ ├── Quotes.svg │ │ │ │ ├── Reports.svg │ │ │ │ ├── SecurityGroups.svg │ │ │ │ ├── SurveyQuestionOptions.svg │ │ │ │ ├── SurveyQuestionResponses.svg │ │ │ │ ├── SurveyQuestions.svg │ │ │ │ ├── SurveyResponses.svg │ │ │ │ ├── Surveys.svg │ │ │ │ ├── Tab.svg │ │ │ │ ├── Targets.svg │ │ │ │ ├── Tasks.svg │ │ │ │ ├── UserManagement.svg │ │ │ │ ├── Users.svg │ │ │ │ ├── Workflow.svg │ │ │ │ ├── acc_calendar.svg │ │ │ │ ├── acc_default_module.svg │ │ │ │ ├── attachment.svg │ │ │ │ ├── jjwg_Areas.svg │ │ │ │ ├── jjwg_Maps.svg │ │ │ │ └── jjwg_Markers.svg │ │ ├── sugar-yui-sprites-green.png │ │ ├── sugar-yui-sprites-grey.png │ │ ├── sugar-yui-sprites-purple.png │ │ ├── sugar-yui-sprites-red.png │ │ ├── sugar-yui-sprites.png │ │ ├── sugarColors.xml │ │ ├── sugar_icon.ico │ │ ├── themePreview.png │ │ ├── view.png │ │ ├── view_inline.png │ │ └── wizmenu │ │ │ ├── center-active.png │ │ │ ├── center-empty.png │ │ │ ├── center-full-half.png │ │ │ ├── center-full.png │ │ │ ├── dot.png │ │ │ ├── left-full.png │ │ │ ├── left-start.png │ │ │ ├── right-empty.png │ │ │ └── right-full.png │ ├── include │ │ ├── Dashlets │ │ │ └── DashletHeader.tpl │ │ ├── DetailView │ │ │ ├── DetailView.tpl │ │ │ ├── actions_buttons.tpl │ │ │ ├── actions_menu.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── tab_panel_content.tpl │ │ │ └── test.tpl │ │ ├── EditView │ │ │ ├── EditView.tpl │ │ │ ├── QuickCreate.tpl │ │ │ ├── SugarVCR.tpl │ │ │ ├── actions_buttons.tpl │ │ │ ├── actions_menu.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ └── tab_panel_content.tpl │ │ ├── ListView │ │ │ ├── ListViewDCMenu.tpl │ │ │ ├── ListViewGeneric.tpl │ │ │ ├── ListViewNoMassUpdate.tpl │ │ │ ├── ListViewPagination.tpl │ │ │ ├── ListViewPaginationBottom.tpl │ │ │ ├── ListViewPaginationTop.tpl │ │ │ └── ListViewSelectObjects.tpl │ │ ├── MySugar │ │ │ ├── javascript │ │ │ │ ├── AddRemoveDashboardPages.js │ │ │ │ └── retrievePage.js │ │ │ └── tpls │ │ │ │ ├── MySugar.tpl │ │ │ │ ├── MySugar2.tpl │ │ │ │ ├── actions_menu.tpl │ │ │ │ ├── addDashletsDialog.tpl │ │ │ │ └── dashlet_page.tpl │ │ ├── Popups │ │ │ └── tpls │ │ │ │ └── PopupGeneric.tpl │ │ ├── SearchForm │ │ │ └── tpls │ │ │ │ ├── SearchFormGeneric.tpl │ │ │ │ ├── SearchFormGenericAdvanced.tpl │ │ │ │ ├── SubpanelSearchFormGeneric.tpl │ │ │ │ ├── SugarSpot.tpl │ │ │ │ ├── footer.tpl │ │ │ │ └── header.tpl │ │ └── SubPanel │ │ │ └── tpls │ │ │ ├── SubPanelDynamic.tpl │ │ │ ├── SubPanelTiles.tpl │ │ │ └── singletabmenu.tpl │ ├── js │ │ ├── arrow.gif │ │ ├── cross.gif │ │ ├── hs.png │ │ ├── hv.png │ │ ├── jscolor.js │ │ └── style.js │ ├── modules │ │ ├── Calendar │ │ │ └── tpls │ │ │ │ ├── footer.tpl │ │ │ │ ├── form.tpl │ │ │ │ ├── header.tpl │ │ │ │ ├── settings.tpl │ │ │ │ └── shared_users.tpl │ │ ├── Leads │ │ │ └── tpls │ │ │ │ ├── ConvertLead.tpl │ │ │ │ ├── ConvertLeadFooter.tpl │ │ │ │ └── ConvertLeadHeader.tpl │ │ ├── Meetings │ │ │ └── tpls │ │ │ │ ├── footer.tpl │ │ │ │ └── header.tpl │ │ ├── ModuleBuilder │ │ │ └── tpls │ │ │ │ ├── includes.tpl │ │ │ │ └── layoutView.tpl │ │ ├── SavedSearch │ │ │ └── SavedSearchForm.tpl │ │ ├── Studio │ │ │ └── TabGroups │ │ │ │ └── EditViewTabs.tpl │ │ └── Users │ │ │ └── tpls │ │ │ ├── DetailView-advanced-tab-content.tpl │ │ │ └── DetailView.tpl │ ├── themedef.php │ └── tpls │ │ ├── Home.tpl │ │ ├── _head.tpl │ │ ├── _headerModuleList.tpl │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── login.tpl └── default │ ├── css │ ├── bootstrap.css │ ├── chart.css │ ├── content.min.css │ ├── deprecated.css │ ├── print.css │ ├── skin.min.css │ ├── style.css │ └── wizard.css │ ├── font │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.svgz │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── images │ ├── AM_ProjectHolidays.gif │ ├── AM_ProjectTemplates.gif │ ├── AM_TaskTemplates.gif │ ├── AOK_KnowledgeBase.gif │ ├── AOK_Knowledge_Base_Categories.gif │ ├── AOP_AOP_Case_Events.gif │ ├── AOP_AOP_Case_Updates.gif │ ├── AOP_Case_Events.gif │ ├── AOP_Case_Updates.gif │ ├── AOR_Reports.gif │ ├── AOR_Scheduled_Reports.gif │ ├── AOS_Contracts.gif │ ├── AOS_Invoices.gif │ ├── AOS_PDF_Templates.gif │ ├── AOS_Product_Categories.gif │ ├── AOS_Products.gif │ ├── AOS_Products_Quotes.gif │ ├── AOS_Quotes.gif │ ├── AOW_Processed.gif │ ├── AOW_WorkFlow.gif │ ├── Accounts.gif │ ├── ActivitiesReports.gif │ ├── Address_Cache.gif │ ├── Administration.gif │ ├── AlertEmailTemplates.gif │ ├── AllNews.gif │ ├── AllRSS.gif │ ├── ArrowButtons.png │ ├── Backup.gif │ ├── Backups.gif │ ├── BugReports.gif │ ├── Bugs.gif │ ├── Calendar.gif │ ├── Calls.gif │ ├── Calls_Reschedule.gif │ ├── Campaigns.gif │ ├── CampaignsWizard.gif │ ├── Cases.gif │ ├── ConfigureSubPanels.gif │ ├── ConfigureTabs.gif │ ├── Contacts.gif │ ├── CreateAM_ProjectHolidays.gif │ ├── CreateAM_ProjectTemplates.gif │ ├── CreateAM_TaskTemplates.gif │ ├── CreateAOK_KnowledgeBase.gif │ ├── CreateAOK_Knowledge_Base_Categories.gif │ ├── CreateAOP_AOP_Case_Events.gif │ ├── CreateAOP_AOP_Case_Updates.gif │ ├── CreateAOP_Case_Events.gif │ ├── CreateAOP_Case_Updates.gif │ ├── CreateAOR_Reports.gif │ ├── CreateAOR_Scheduled_Reports.gif │ ├── CreateAOS_Contracts.gif │ ├── CreateAOS_Invoices.gif │ ├── CreateAOS_PDF_Templates.gif │ ├── CreateAOS_Product_Categories.gif │ ├── CreateAOS_Products.gif │ ├── CreateAOS_Products_Quotes.gif │ ├── CreateAOS_Quotes.gif │ ├── CreateAOW_WorkFlow.gif │ ├── CreateAccounts.gif │ ├── CreateBugs.gif │ ├── CreateCalls.gif │ ├── CreateCalls_Reschedule.gif │ ├── CreateCampaigns.gif │ ├── CreateCases.gif │ ├── CreateContacts.gif │ ├── CreateDCEClusters.gif │ ├── CreateDCEDataBases.gif │ ├── CreateDCEInstances.gif │ ├── CreateDCETemplates.gif │ ├── CreateDocuments.gif │ ├── CreateDropdown.gif │ ├── CreateEmails.gif │ ├── CreateEmployees.gif │ ├── CreateFP_events.gif │ ├── CreateHolidays.gif │ ├── CreateKBArticle.gif │ ├── CreateLeads.gif │ ├── CreateMailboxes.gif │ ├── CreateMeetings.gif │ ├── CreateNotes.gif │ ├── CreateOpportunities.gif │ ├── CreateOutboundEmailAccount.gif │ ├── CreateOutboundEmailAccounts.gif │ ├── CreateOutboundEmailAccounts1.gif │ ├── CreateProject.gif │ ├── CreateProjectTask.gif │ ├── CreateProjectTemplate.gif │ ├── CreateProspectLists.gif │ ├── CreateProspects.gif │ ├── CreateQuery.gif │ ├── CreateQuotes.gif │ ├── CreateRoles.gif │ ├── CreateScheduler.gif │ ├── CreateSurveyQuestionOptions.gif │ ├── CreateSurveyQuestionOptions.svg │ ├── CreateSurveyQuestionResponses.gif │ ├── CreateSurveyQuestionResponses.svg │ ├── CreateSurveyQuestions.gif │ ├── CreateSurveyQuestions.svg │ ├── CreateSurveyResponses.gif │ ├── CreateSurveyResponses.svg │ ├── CreateSurveys.gif │ ├── CreateSurveys.svg │ ├── CreateTasks.gif │ ├── CreateTeams.gif │ ├── CreateTemplateEditor.gif │ ├── CreateUsers.gif │ ├── CreateWebToLeadForm.gif │ ├── Create_Spots.gif │ ├── CreateiFrames.gif │ ├── Createjjwg_Address_Cache.gif │ ├── Createjjwg_Areas.gif │ ├── Createjjwg_Maps.gif │ ├── Createjjwg_Markers.gif │ ├── Currencies.gif │ ├── CustomQueries.gif │ ├── DCEActions.gif │ ├── DCELicensingReport.gif │ ├── Dashboard.gif │ ├── DataSets.gif │ ├── Diagnostic.gif │ ├── DocumentRevisions.gif │ ├── Documents.gif │ ├── Donate.gif │ ├── Dropdown.gif │ ├── EditLayout.gif │ ├── EmailCampaigns.gif │ ├── EmailDiagnostic.gif │ ├── EmailFolder.gif │ ├── EmailInbound.gif │ ├── EmailMan.gif │ ├── EmailOutbound.gif │ ├── EmailQueue.gif │ ├── EmailSetupWizard.gif │ ├── EmailTemplates.gif │ ├── Emails.gif │ ├── Employees.gif │ ├── ExportCustomFields.gif │ ├── FP_events.gif │ ├── FavoriteReports.gif │ ├── Feeds.gif │ ├── FieldLabels.gif │ ├── Geocoded_Counts.gif │ ├── GeocodingTests.gif │ ├── Holidays.gif │ ├── IBMSmartCloud_image_inline.png │ ├── Import.gif │ ├── ImportCustomFields.gif │ ├── Importjjwg_Address_Cache.gif │ ├── Importjjwg_Areas.gif │ ├── Importjjwg_Maps.gif │ ├── Importjjwg_Markers.gif │ ├── InboundEmail.gif │ ├── KB.gif │ ├── KBArticle.gif │ ├── KBDocuments.gif │ ├── LanguagePacks.gif │ ├── Layout.gif │ ├── Leads.gif │ ├── License.gif │ ├── MailboxesTestImport.gif │ ├── Manufacturers.gif │ ├── Masquerade.gif │ ├── MatrixReport.gif │ ├── MatrixReportOver.gif │ ├── Meetings.gif │ ├── MigrateFields.gif │ ├── ModuleBuilder.gif │ ├── ModuleLoader.gif │ ├── MoreDetail.png │ ├── MyProject.gif │ ├── Newsletters.gif │ ├── Notes.gif │ ├── OnlineDocumentation.gif │ ├── Opportunities.gif │ ├── OpportunityReports.gif │ ├── OutboundEmailAccount.gif │ ├── OutboundEmailAccounts.gif │ ├── OutboundEmailAccounts1.gif │ ├── Password.gif │ ├── PatchUpgrades.gif │ ├── Print_Email.gif │ ├── ProductTemplates.gif │ ├── Product_Types.gif │ ├── Project.gif │ ├── Project2Weeks.gif │ ├── ProjectCollapseAll.gif │ ├── ProjectCopy.gif │ ├── ProjectCut.gif │ ├── ProjectDelete.gif │ ├── ProjectExpandAll.gif │ ├── ProjectIndent.gif │ ├── ProjectInsertRows.gif │ ├── ProjectMinus.gif │ ├── ProjectMonth.gif │ ├── ProjectOutdent.gif │ ├── ProjectPaste.gif │ ├── ProjectPlus.gif │ ├── ProjectSave.gif │ ├── ProjectTask.gif │ ├── ProjectTemplate.gif │ ├── ProjectWeek.gif │ ├── ProspectLists.gif │ ├── Prospects.gif │ ├── QueryBuilder.gif │ ├── RSS.gif │ ├── ReassignRecords.gif │ ├── Rebuild.gif │ ├── Rebuild2.gif │ ├── Releases.gif │ ├── RenameTabs.gif │ ├── Repair.gif │ ├── Roles.gif │ ├── RowsAndColumns.gif │ ├── RowsAndColumnsOver.gif │ ├── SA_SurveyQuestionOptions.gif │ ├── SA_SurveyQuestionOptions.svg │ ├── SA_SurveyQuestionResponses.gif │ ├── SA_SurveyQuestionResponses.svg │ ├── SA_SurveyQuestions.gif │ ├── SA_SurveyQuestions.svg │ ├── SA_SurveyResponses.gif │ ├── SA_SurveyResponses.svg │ ├── SA_Surveys.gif │ ├── SA_Surveys.svg │ ├── SchedulerTest.gif │ ├── Schedulers.gif │ ├── Search.gif │ ├── SecurityGroups.gif │ ├── SecurityGroupsManagement.gif │ ├── SecurityGroups_32.gif │ ├── SecuritySuiteGroupManagement.gif │ ├── Security_Groups.gif │ ├── Security_Suite_Settings.gif │ ├── Setup_Email.gif │ ├── Shippers.gif │ ├── Spots.gif │ ├── StickyThread.gif │ ├── Studio.gif │ ├── SugarLogic │ │ ├── icon_bool_16.png │ │ ├── icon_date_16.png │ │ ├── icon_enum_16.png │ │ ├── icon_generic_16.png │ │ ├── icon_num_16.png │ │ ├── icon_rel_field_16.png │ │ ├── icon_rollup_16.png │ │ └── icon_string_16.png │ ├── SugarPortal.gif │ ├── Summation.gif │ ├── SummationOver.gif │ ├── SummationWithDetails.gif │ ├── SummationWithDetailsOver.gif │ ├── Support.gif │ ├── Tasks.gif │ ├── Teams.gif │ ├── TemplateSectionLine.gif │ ├── Themes.gif │ ├── Trackers.gif │ ├── Upgrade.gif │ ├── UpgradeDCEInstances.gif │ ├── UserManagement.gif │ ├── Users.gif │ ├── WorkFlow.gif │ ├── _blank.png │ ├── accept_inline.gif │ ├── actionMenuArrow.png │ ├── advanced_search.gif │ ├── arrow.gif │ ├── arrow_down.gif │ ├── arrow_up.gif │ ├── attachment.gif │ ├── backtotop.gif │ ├── bar_loader.gif │ ├── basic_search.gif │ ├── bg.gif │ ├── bgBlue.gif │ ├── bgBtn.gif │ ├── bgBtnBlue.gif │ ├── bgBtnGray.gif │ ├── bgBtnGreen.gif │ ├── bgBtnOrange.gif │ ├── bgBtnPurple.gif │ ├── bgGray.gif │ ├── bgGreen.gif │ ├── bgOcher.gif │ ├── bgPurple.gif │ ├── bgRed.gif │ ├── blank.gif │ ├── calendarHeaderBg.gif │ ├── calendar_info.png │ ├── calendar_next.gif │ ├── calendar_previous.gif │ ├── chartBg.png │ ├── check_inline.gif │ ├── close.gif │ ├── close_button_24.png │ ├── close_inline.gif │ ├── cmpwzrd │ │ ├── Surveys.png │ │ ├── cmpwzrd-email.png │ │ ├── cmpwzrd-newsletter.png │ │ ├── cmpwzrd-nonemail.png │ │ ├── email167.png │ │ ├── ic_assignment_black_24px.svg │ │ ├── ic_cancel_black_24px.svg │ │ ├── ic_check_circle_black_24px.svg │ │ ├── wallclock.png │ │ └── wallclockwhite.png │ ├── colors.blue.icon.gif │ ├── colors.gray.icon.gif │ ├── colors.green.icon.gif │ ├── colors.orange.icon.gif │ ├── colors.purple.icon.gif │ ├── colors.red.icon.gif │ ├── colors.sugar.icon.gif │ ├── company_logo.png │ ├── create-record.gif │ ├── currentTab.gif │ ├── currentTab.png │ ├── currentTabBlue.gif │ ├── currentTabGray.gif │ ├── currentTabGreen.gif │ ├── currentTabLinkBg.gif │ ├── currentTabOcher.gif │ ├── currentTabOff.gif │ ├── currentTabPurple.gif │ ├── currentTabRed.gif │ ├── dashlet-header-close.gif │ ├── dashlet-header-edit.gif │ ├── dashlet-header-refresh.gif │ ├── dcMenuDivider.png │ ├── dce_Settings.gif │ ├── dcmenugrade.png │ ├── decline_inline.gif │ ├── def_image_inline.gif │ ├── delete.gif │ ├── delete_inline.gif │ ├── detailViewBg.gif │ ├── detailview.gif │ ├── doc_image_inline.gif │ ├── downarrow.gif │ ├── downarrow_big.gif │ ├── downarrow_inline.gif │ ├── dp-bd-dc.png │ ├── dp-bd-menu.png │ ├── dp-bd-top-menu.png │ ├── dp-bd.png │ ├── dp-bl-dc.png │ ├── dp-bl-menu.png │ ├── dp-bl.png │ ├── dp-br-dc.png │ ├── dp-br-menu.png │ ├── dp-br.png │ ├── dp-ft-dc.png │ ├── dp-ft-menu.png │ ├── dp-ft.png │ ├── dp-hd-dc.png │ ├── dp-hd-menu.png │ ├── dp-hd-plain.png │ ├── dp-hd.png │ ├── dp-ml-dc.png │ ├── dp-ml-menu.png │ ├── dp-ml.png │ ├── dp-mr-dc.png │ ├── dp-mr-menu.png │ ├── dp-mr.png │ ├── dp-tl-dc.png │ ├── dp-tl-menu.png │ ├── dp-tl-plain.png │ ├── dp-tl.png │ ├── dp-tr-dc.png │ ├── dp-tr-menu.png │ ├── dp-tr-plain.png │ ├── dp-tr.png │ ├── dropdown_menu_toggle_more.gif │ ├── edit_inline.gif │ ├── edit_wizard.gif │ ├── editfields.gif │ ├── editlabels.gif │ ├── editview.gif │ ├── emptyTabSpace.gif │ ├── end.gif │ ├── end_off.gif │ ├── export.gif │ ├── favorite-star-outline.svg │ ├── favorite-star.svg │ ├── fonts.larger.icon.gif │ ├── fonts.largest.icon.gif │ ├── fonts.normal.icon.gif │ ├── form-button-bg.png │ ├── form-button-bg2.png │ ├── form-button-primary-bg.png │ ├── formButtonBg.gif │ ├── formButtonBgOn.gif │ ├── getLatestDocument.gif │ ├── green_camp.gif │ ├── green_camp_clean.gif │ ├── grouped-menu-arrow.png │ ├── grouped-menu.png │ ├── h3Arrow.gif │ ├── help-dashlet.gif │ ├── help.gif │ ├── helpInline.gif │ ├── hide.gif │ ├── hide_submenu_shortcuts.gif │ ├── iFrames.gif │ ├── icon_A1_newmod.gif │ ├── icon_AM_ProjectHolidays.gif │ ├── icon_AM_ProjectHolidays_32.gif │ ├── icon_AM_ProjectTemplates.gif │ ├── icon_AM_ProjectTemplates_32.gif │ ├── icon_AM_TaskTemplates.gif │ ├── icon_AM_TaskTemplates_32.gif │ ├── icon_AOK_KnowledgeBase.gif │ ├── icon_AOK_KnowledgeBase_32.gif │ ├── icon_AOK_Knowledge_Base_Categories.gif │ ├── icon_AOK_Knowledge_Base_Categories_32.gif │ ├── icon_AOP_AOP_Case_Events.gif │ ├── icon_AOP_AOP_Case_Events_32.gif │ ├── icon_AOP_AOP_Case_Updates.gif │ ├── icon_AOP_AOP_Case_Updates_32.gif │ ├── icon_AOP_Case_Events.gif │ ├── icon_AOP_Case_Events_32.gif │ ├── icon_AOP_Case_Updates.gif │ ├── icon_AOP_Case_Updates_32.gif │ ├── icon_AOR_Reports.gif │ ├── icon_AOR_Reports_32.gif │ ├── icon_AOR_Scheduled_Reports.gif │ ├── icon_AOR_Scheduled_Reports_32.gif │ ├── icon_AOS_Contracts.gif │ ├── icon_AOS_Contracts_32.gif │ ├── icon_AOS_Invoices.gif │ ├── icon_AOS_Invoices_32.gif │ ├── icon_AOS_PDF_Templates.gif │ ├── icon_AOS_PDF_Templates_32.gif │ ├── icon_AOS_Product_Categories.gif │ ├── icon_AOS_Product_Categories_32.gif │ ├── icon_AOS_Products.gif │ ├── icon_AOS_Products_32.gif │ ├── icon_AOS_Products_Quotes.gif │ ├── icon_AOS_Products_Quotes_32.gif │ ├── icon_AOS_Quotes.gif │ ├── icon_AOS_Quotes_32.gif │ ├── icon_AOW_Processed.gif │ ├── icon_AOW_Processed_32.gif │ ├── icon_AOW_WorkFlow.gif │ ├── icon_AOW_WorkFlow_32.gif │ ├── icon_Accounts.gif │ ├── icon_Accounts_32.gif │ ├── icon_Activities.gif │ ├── icon_Address.gif │ ├── icon_AdminMobile.gif │ ├── icon_AdminPDF.gif │ ├── icon_AdminThemes.gif │ ├── icon_AdvancedSearch.gif │ ├── icon_Application.gif │ ├── icon_BasicSearch.gif │ ├── icon_Bugs.gif │ ├── icon_Bugs_32.gif │ ├── icon_Calendar_32.gif │ ├── icon_Calls.gif │ ├── icon_Calls_32.gif │ ├── icon_Calls_Reschedule.gif │ ├── icon_Calls_Reschedule_32.gif │ ├── icon_CampaignLog_32.gif │ ├── icon_Campaigns.gif │ ├── icon_Campaigns_32.gif │ ├── icon_Cases.gif │ ├── icon_Cases_32.gif │ ├── icon_Charts_Funnel.gif │ ├── icon_Charts_Funnel_32.gif │ ├── icon_Charts_Gauge_32.gif │ ├── icon_Charts_GroupBy.gif │ ├── icon_Charts_GroupBy_32.gif │ ├── icon_Charts_Horizontal.gif │ ├── icon_Charts_Horizontal_32.gif │ ├── icon_Charts_Pie.gif │ ├── icon_Charts_Pie_32.gif │ ├── icon_Charts_Vertical.gif │ ├── icon_Charts_Vertical_32.gif │ ├── icon_Column_1.gif │ ├── icon_Column_2.gif │ ├── icon_Column_3.gif │ ├── icon_ConnectorConfig.gif │ ├── icon_ConnectorConfigOver.gif │ ├── icon_ConnectorConfig_16.gif │ ├── icon_ConnectorEnable.gif │ ├── icon_ConnectorEnableOver.gif │ ├── icon_ConnectorEnable_16.gif │ ├── icon_ConnectorMap.gif │ ├── icon_ConnectorMapOver.gif │ ├── icon_ConnectorMap_16.gif │ ├── icon_ConnectorSearchFields.gif │ ├── icon_ConnectorSearchFieldsOver.gif │ ├── icon_ConnectorSearchFields_16.gif │ ├── icon_Connectors.gif │ ├── icon_Contacts.gif │ ├── icon_Contacts_32.gif │ ├── icon_Contracts_32.gif │ ├── icon_ConvertLead.gif │ ├── icon_Dashlet.gif │ ├── icon_Delete.gif │ ├── icon_DeleteFull.gif │ ├── icon_DetailView.gif │ ├── icon_Documents.gif │ ├── icon_Documents_32.gif │ ├── icon_DropDownEditor.gif │ ├── icon_EditView.gif │ ├── icon_EmailAddress.gif │ ├── icon_EmailAddresses_32.gif │ ├── icon_EmailTemplates_32.gif │ ├── icon_Emails.gif │ ├── icon_Emails_32.gif │ ├── icon_Employees_32.png │ ├── icon_FP_events.gif │ ├── icon_FP_events_32.gif │ ├── icon_FavoriteReports_32.gif │ ├── icon_Feeds_32.gif │ ├── icon_Fields.gif │ ├── icon_Forecasts_32.gif │ ├── icon_Invaders_32.gif │ ├── icon_Jjwg_Address_Cache.gif │ ├── icon_Jjwg_Address_Cache.png │ ├── icon_Jjwg_Areas.gif │ ├── icon_Jjwg_Areas.png │ ├── icon_Jjwg_Maps.gif │ ├── icon_Jjwg_Maps.png │ ├── icon_Jjwg_Markers.gif │ ├── icon_Jjwg_Markers.png │ ├── icon_JotPad.gif │ ├── icon_JotPad_32.gif │ ├── icon_KBDocuments.gif │ ├── icon_KBDocuments_32.gif │ ├── icon_Labels.gif │ ├── icon_Layouts.gif │ ├── icon_Leads.gif │ ├── icon_Leads_32.gif │ ├── icon_ListView.gif │ ├── icon_Meetings.gif │ ├── icon_Meetings_32.gif │ ├── icon_MobileLayouts.gif │ ├── icon_ModuleBuilder.gif │ ├── icon_MyPortal_32.gif │ ├── icon_MyTasks_32.gif │ ├── icon_NewModule.gif │ ├── icon_Notes.gif │ ├── icon_Notes_32.gif │ ├── icon_OpenTasks_32.gif │ ├── icon_Opportunities.gif │ ├── icon_Opportunities_32.gif │ ├── icon_OutboundEmailAccount.gif │ ├── icon_OutboundEmailAccount_32.gif │ ├── icon_OutboundEmailAccounts.gif │ ├── icon_OutboundEmailAccounts1.gif │ ├── icon_OutboundEmailAccounts1_32.gif │ ├── icon_OutboundEmailAccounts_32.gif │ ├── icon_Phone.gif │ ├── icon_Popup.gif │ ├── icon_Portal.gif │ ├── icon_ProductCategories_32.gif │ ├── icon_ProductTypes_32.gif │ ├── icon_Product_Types_32.gif │ ├── icon_Products_32.gif │ ├── icon_Project.gif │ ├── icon_ProjectTask.gif │ ├── icon_ProjectTask_32.gif │ ├── icon_Project_32.gif │ ├── icon_Projects_32.gif │ ├── icon_Prospects.gif │ ├── icon_Prospects_32.gif │ ├── icon_QuickCreate.gif │ ├── icon_Quotes_32.gif │ ├── icon_Relationships.gif │ ├── icon_Releases_32.gif │ ├── icon_Reports_32.gif │ ├── icon_Rss_32.gif │ ├── icon_SPSync.gif │ ├── icon_SPUploadCSS.gif │ ├── icon_SearchForm.gif │ ├── icon_SecurityGroups.gif │ ├── icon_ShortcutBar.gif │ ├── icon_Spots.gif │ ├── icon_Spots_32.gif │ ├── icon_Studio.gif │ ├── icon_Subpanels.gif │ ├── icon_SugarFeed.gif │ ├── icon_SugarFeed_32.gif │ ├── icon_SugarNews_32.gif │ ├── icon_SugarPortal.gif │ ├── icon_SurveyQuestionOptions.gif │ ├── icon_SurveyQuestionOptions_32.gif │ ├── icon_SurveyQuestionOptions_32.svg │ ├── icon_SurveyQuestionResponses.gif │ ├── icon_SurveyQuestionResponses_32.gif │ ├── icon_SurveyQuestionResponses_32.svg │ ├── icon_SurveyQuestions.gif │ ├── icon_SurveyQuestions_32.gif │ ├── icon_SurveyQuestions_32.svg │ ├── icon_SurveyResponses.gif │ ├── icon_SurveyResponses_32.gif │ ├── icon_SurveyResponses_32.svg │ ├── icon_Surveys.gif │ ├── icon_Surveys_32.gif │ ├── icon_Targets_32.gif │ ├── icon_Tasks.gif │ ├── icon_Tasks_32.gif │ ├── icon_Teams_32.gif │ ├── icon_TemplateSectionLine.gif │ ├── icon_TemplateSectionLine_32.gif │ ├── icon_TrackerPerfs_32.gif │ ├── icon_TrackerQueries_32.gif │ ├── icon_TrackerSessions_32.gif │ ├── icon_Trackers_32.gif │ ├── icon_Users_32.gif │ ├── icon_assistant.gif │ ├── icon_back.gif │ ├── icon_basic.gif │ ├── icon_company.gif │ ├── icon_document.gif │ ├── icon_email_addressbook.gif │ ├── icon_email_archive.gif │ ├── icon_email_assign.gif │ ├── icon_email_attach.gif │ ├── icon_email_check.gif │ ├── icon_email_compose.gif │ ├── icon_email_create.gif │ ├── icon_email_delete.gif │ ├── icon_email_folder.gif │ ├── icon_email_folder_archives.gif │ ├── icon_email_folder_drafts.gif │ ├── icon_email_folder_exp.gif │ ├── icon_email_folder_grp.gif │ ├── icon_email_folder_sent.gif │ ├── icon_email_forward.gif │ ├── icon_email_fullscreen.gif │ ├── icon_email_mark.gif │ ├── icon_email_options.gif │ ├── icon_email_relate.gif │ ├── icon_email_reply.gif │ ├── icon_email_replyall.gif │ ├── icon_email_save.gif │ ├── icon_email_send.gif │ ├── icon_email_settings.gif │ ├── icon_email_sugfolder.gif │ ├── icon_email_sugfolder_exp.gif │ ├── icon_email_view.gif │ ├── icon_email_view1.gif │ ├── icon_email_view2.gif │ ├── icon_email_view3.gif │ ├── icon_expression_types.gif │ ├── icon_file.gif │ ├── icon_home.gif │ ├── icon_iFrames_32.gif │ ├── icon_issue.gif │ ├── icon_jjwg_Address_Cache_32.gif │ ├── icon_jjwg_Areas_32.gif │ ├── icon_jjwg_Maps_32.gif │ ├── icon_jjwg_Markers_32.gif │ ├── icon_new_package.gif │ ├── icon_opportunity.gif │ ├── icon_package.gif │ ├── icon_package_create.gif │ ├── icon_person.gif │ ├── icon_sale.gif │ ├── icon_therevisions.gif │ ├── id-ff-add.png │ ├── id-ff-clear.png │ ├── id-ff-copy.png │ ├── id-ff-down.png │ ├── id-ff-remove-nobg.png │ ├── id-ff-remove.png │ ├── id-ff-select.png │ ├── id-ff-vcard.png │ ├── img_close_search.gif │ ├── img_left_arrow.jpg │ ├── img_loading.gif │ ├── img_loading_54.gif │ ├── img_right_arrow.jpg │ ├── info-add.gif │ ├── info-help.gif │ ├── info-layout.gif │ ├── info_inline.gif │ ├── jjwg_Address_Cache.gif │ ├── jjwg_Areas.gif │ ├── jjwg_Maps.gif │ ├── jjwg_Maps │ │ ├── 0-10 │ │ │ ├── marker_0.png │ │ │ ├── marker_1.png │ │ │ ├── marker_10.png │ │ │ ├── marker_2.png │ │ │ ├── marker_3.png │ │ │ ├── marker_4.png │ │ │ ├── marker_5.png │ │ │ ├── marker_6.png │ │ │ ├── marker_7.png │ │ │ ├── marker_8.png │ │ │ └── marker_9.png │ │ ├── 0-100 │ │ │ ├── marker_0.png │ │ │ ├── marker_1.png │ │ │ ├── marker_10.png │ │ │ ├── marker_100.png │ │ │ ├── marker_11.png │ │ │ ├── marker_12.png │ │ │ ├── marker_13.png │ │ │ ├── marker_14.png │ │ │ ├── marker_15.png │ │ │ ├── marker_16.png │ │ │ ├── marker_17.png │ │ │ ├── marker_18.png │ │ │ ├── marker_19.png │ │ │ ├── marker_2.png │ │ │ ├── marker_20.png │ │ │ ├── marker_21.png │ │ │ ├── marker_22.png │ │ │ ├── marker_23.png │ │ │ ├── marker_24.png │ │ │ ├── marker_25.png │ │ │ ├── marker_26.png │ │ │ ├── marker_27.png │ │ │ ├── marker_28.png │ │ │ ├── marker_29.png │ │ │ ├── marker_3.png │ │ │ ├── marker_30.png │ │ │ ├── marker_31.png │ │ │ ├── marker_32.png │ │ │ ├── marker_33.png │ │ │ ├── marker_34.png │ │ │ ├── marker_35.png │ │ │ ├── marker_36.png │ │ │ ├── marker_37.png │ │ │ ├── marker_38.png │ │ │ ├── marker_39.png │ │ │ ├── marker_4.png │ │ │ ├── marker_40.png │ │ │ ├── marker_41.png │ │ │ ├── marker_42.png │ │ │ ├── marker_43.png │ │ │ ├── marker_44.png │ │ │ ├── marker_45.png │ │ │ ├── marker_46.png │ │ │ ├── marker_47.png │ │ │ ├── marker_48.png │ │ │ ├── marker_49.png │ │ │ ├── marker_5.png │ │ │ ├── marker_50.png │ │ │ ├── marker_51.png │ │ │ ├── marker_52.png │ │ │ ├── marker_53.png │ │ │ ├── marker_54.png │ │ │ ├── marker_55.png │ │ │ ├── marker_56.png │ │ │ ├── marker_57.png │ │ │ ├── marker_58.png │ │ │ ├── marker_59.png │ │ │ ├── marker_6.png │ │ │ ├── marker_60.png │ │ │ ├── marker_61.png │ │ │ ├── marker_62.png │ │ │ ├── marker_63.png │ │ │ ├── marker_64.png │ │ │ ├── marker_65.png │ │ │ ├── marker_66.png │ │ │ ├── marker_67.png │ │ │ ├── marker_68.png │ │ │ ├── marker_69.png │ │ │ ├── marker_7.png │ │ │ ├── marker_70.png │ │ │ ├── marker_71.png │ │ │ ├── marker_72.png │ │ │ ├── marker_73.png │ │ │ ├── marker_74.png │ │ │ ├── marker_75.png │ │ │ ├── marker_76.png │ │ │ ├── marker_77.png │ │ │ ├── marker_78.png │ │ │ ├── marker_79.png │ │ │ ├── marker_8.png │ │ │ ├── marker_80.png │ │ │ ├── marker_81.png │ │ │ ├── marker_82.png │ │ │ ├── marker_83.png │ │ │ ├── marker_84.png │ │ │ ├── marker_85.png │ │ │ ├── marker_86.png │ │ │ ├── marker_87.png │ │ │ ├── marker_88.png │ │ │ ├── marker_89.png │ │ │ ├── marker_9.png │ │ │ ├── marker_90.png │ │ │ ├── marker_91.png │ │ │ ├── marker_92.png │ │ │ ├── marker_93.png │ │ │ ├── marker_94.png │ │ │ ├── marker_95.png │ │ │ ├── marker_96.png │ │ │ ├── marker_97.png │ │ │ ├── marker_98.png │ │ │ └── marker_99.png │ │ ├── 0-216 │ │ │ ├── marker_0.png │ │ │ ├── marker_1.png │ │ │ ├── marker_10.png │ │ │ ├── marker_100.png │ │ │ ├── marker_101.png │ │ │ ├── marker_102.png │ │ │ ├── marker_103.png │ │ │ ├── marker_104.png │ │ │ ├── marker_105.png │ │ │ ├── marker_106.png │ │ │ ├── marker_107.png │ │ │ ├── marker_108.png │ │ │ ├── marker_109.png │ │ │ ├── marker_11.png │ │ │ ├── marker_110.png │ │ │ ├── marker_111.png │ │ │ ├── marker_112.png │ │ │ ├── marker_113.png │ │ │ ├── marker_114.png │ │ │ ├── marker_115.png │ │ │ ├── marker_116.png │ │ │ ├── marker_117.png │ │ │ ├── marker_118.png │ │ │ ├── marker_119.png │ │ │ ├── marker_12.png │ │ │ ├── marker_120.png │ │ │ ├── marker_121.png │ │ │ ├── marker_122.png │ │ │ ├── marker_123.png │ │ │ ├── marker_124.png │ │ │ ├── marker_125.png │ │ │ ├── marker_126.png │ │ │ ├── marker_127.png │ │ │ ├── marker_128.png │ │ │ ├── marker_129.png │ │ │ ├── marker_13.png │ │ │ ├── marker_130.png │ │ │ ├── marker_131.png │ │ │ ├── marker_132.png │ │ │ ├── marker_133.png │ │ │ ├── marker_134.png │ │ │ ├── marker_135.png │ │ │ ├── marker_136.png │ │ │ ├── marker_137.png │ │ │ ├── marker_138.png │ │ │ ├── marker_139.png │ │ │ ├── marker_14.png │ │ │ ├── marker_140.png │ │ │ ├── marker_141.png │ │ │ ├── marker_142.png │ │ │ ├── marker_143.png │ │ │ ├── marker_144.png │ │ │ ├── marker_145.png │ │ │ ├── marker_146.png │ │ │ ├── marker_147.png │ │ │ ├── marker_148.png │ │ │ ├── marker_149.png │ │ │ ├── marker_15.png │ │ │ ├── marker_150.png │ │ │ ├── marker_151.png │ │ │ ├── marker_152.png │ │ │ ├── marker_153.png │ │ │ ├── marker_154.png │ │ │ ├── marker_155.png │ │ │ ├── marker_156.png │ │ │ ├── marker_157.png │ │ │ ├── marker_158.png │ │ │ ├── marker_159.png │ │ │ ├── marker_16.png │ │ │ ├── marker_160.png │ │ │ ├── marker_161.png │ │ │ ├── marker_162.png │ │ │ ├── marker_163.png │ │ │ ├── marker_164.png │ │ │ ├── marker_165.png │ │ │ ├── marker_166.png │ │ │ ├── marker_167.png │ │ │ ├── marker_168.png │ │ │ ├── marker_169.png │ │ │ ├── marker_17.png │ │ │ ├── marker_170.png │ │ │ ├── marker_171.png │ │ │ ├── marker_172.png │ │ │ ├── marker_173.png │ │ │ ├── marker_174.png │ │ │ ├── marker_175.png │ │ │ ├── marker_176.png │ │ │ ├── marker_177.png │ │ │ ├── marker_178.png │ │ │ ├── marker_179.png │ │ │ ├── marker_18.png │ │ │ ├── marker_180.png │ │ │ ├── marker_181.png │ │ │ ├── marker_182.png │ │ │ ├── marker_183.png │ │ │ ├── marker_184.png │ │ │ ├── marker_185.png │ │ │ ├── marker_186.png │ │ │ ├── marker_187.png │ │ │ ├── marker_188.png │ │ │ ├── marker_189.png │ │ │ ├── marker_19.png │ │ │ ├── marker_190.png │ │ │ ├── marker_191.png │ │ │ ├── marker_192.png │ │ │ ├── marker_193.png │ │ │ ├── marker_194.png │ │ │ ├── marker_195.png │ │ │ ├── marker_196.png │ │ │ ├── marker_197.png │ │ │ ├── marker_198.png │ │ │ ├── marker_199.png │ │ │ ├── marker_2.png │ │ │ ├── marker_20.png │ │ │ ├── marker_200.png │ │ │ ├── marker_201.png │ │ │ ├── marker_202.png │ │ │ ├── marker_203.png │ │ │ ├── marker_204.png │ │ │ ├── marker_205.png │ │ │ ├── marker_206.png │ │ │ ├── marker_207.png │ │ │ ├── marker_208.png │ │ │ ├── marker_209.png │ │ │ ├── marker_21.png │ │ │ ├── marker_210.png │ │ │ ├── marker_211.png │ │ │ ├── marker_212.png │ │ │ ├── marker_213.png │ │ │ ├── marker_214.png │ │ │ ├── marker_215.png │ │ │ ├── marker_216.png │ │ │ ├── marker_22.png │ │ │ ├── marker_23.png │ │ │ ├── marker_24.png │ │ │ ├── marker_25.png │ │ │ ├── marker_26.png │ │ │ ├── marker_27.png │ │ │ ├── marker_28.png │ │ │ ├── marker_29.png │ │ │ ├── marker_3.png │ │ │ ├── marker_30.png │ │ │ ├── marker_31.png │ │ │ ├── marker_32.png │ │ │ ├── marker_33.png │ │ │ ├── marker_34.png │ │ │ ├── marker_35.png │ │ │ ├── marker_36.png │ │ │ ├── marker_37.png │ │ │ ├── marker_38.png │ │ │ ├── marker_39.png │ │ │ ├── marker_4.png │ │ │ ├── marker_40.png │ │ │ ├── marker_41.png │ │ │ ├── marker_42.png │ │ │ ├── marker_43.png │ │ │ ├── marker_44.png │ │ │ ├── marker_45.png │ │ │ ├── marker_46.png │ │ │ ├── marker_47.png │ │ │ ├── marker_48.png │ │ │ ├── marker_49.png │ │ │ ├── marker_5.png │ │ │ ├── marker_50.png │ │ │ ├── marker_51.png │ │ │ ├── marker_52.png │ │ │ ├── marker_53.png │ │ │ ├── marker_54.png │ │ │ ├── marker_55.png │ │ │ ├── marker_56.png │ │ │ ├── marker_57.png │ │ │ ├── marker_58.png │ │ │ ├── marker_59.png │ │ │ ├── marker_6.png │ │ │ ├── marker_60.png │ │ │ ├── marker_61.png │ │ │ ├── marker_62.png │ │ │ ├── marker_63.png │ │ │ ├── marker_64.png │ │ │ ├── marker_65.png │ │ │ ├── marker_66.png │ │ │ ├── marker_67.png │ │ │ ├── marker_68.png │ │ │ ├── marker_69.png │ │ │ ├── marker_7.png │ │ │ ├── marker_70.png │ │ │ ├── marker_71.png │ │ │ ├── marker_72.png │ │ │ ├── marker_73.png │ │ │ ├── marker_74.png │ │ │ ├── marker_75.png │ │ │ ├── marker_76.png │ │ │ ├── marker_77.png │ │ │ ├── marker_78.png │ │ │ ├── marker_79.png │ │ │ ├── marker_8.png │ │ │ ├── marker_80.png │ │ │ ├── marker_81.png │ │ │ ├── marker_82.png │ │ │ ├── marker_83.png │ │ │ ├── marker_84.png │ │ │ ├── marker_85.png │ │ │ ├── marker_86.png │ │ │ ├── marker_87.png │ │ │ ├── marker_88.png │ │ │ ├── marker_89.png │ │ │ ├── marker_9.png │ │ │ ├── marker_90.png │ │ │ ├── marker_91.png │ │ │ ├── marker_92.png │ │ │ ├── marker_93.png │ │ │ ├── marker_94.png │ │ │ ├── marker_95.png │ │ │ ├── marker_96.png │ │ │ ├── marker_97.png │ │ │ ├── marker_98.png │ │ │ └── marker_99.png │ │ └── 0-25 │ │ │ ├── marker_0.png │ │ │ ├── marker_1.png │ │ │ ├── marker_10.png │ │ │ ├── marker_11.png │ │ │ ├── marker_12.png │ │ │ ├── marker_13.png │ │ │ ├── marker_14.png │ │ │ ├── marker_15.png │ │ │ ├── marker_16.png │ │ │ ├── marker_17.png │ │ │ ├── marker_18.png │ │ │ ├── marker_19.png │ │ │ ├── marker_2.png │ │ │ ├── marker_20.png │ │ │ ├── marker_21.png │ │ │ ├── marker_22.png │ │ │ ├── marker_23.png │ │ │ ├── marker_24.png │ │ │ ├── marker_25.png │ │ │ ├── marker_3.png │ │ │ ├── marker_4.png │ │ │ ├── marker_5.png │ │ │ ├── marker_6.png │ │ │ ├── marker_7.png │ │ │ ├── marker_8.png │ │ │ └── marker_9.png │ ├── jjwg_Markers.gif │ ├── jjwg_Markers │ │ ├── accident.png │ │ ├── administration.png │ │ ├── agriculture.png │ │ ├── aircraft_small.png │ │ ├── airplane_tourism.png │ │ ├── airport.png │ │ ├── amphitheater.png │ │ ├── apartment.png │ │ ├── aquarium.png │ │ ├── arch.png │ │ ├── atm.png │ │ ├── audio.png │ │ ├── bank.png │ │ ├── bank_euro.png │ │ ├── bank_pound.png │ │ ├── bar.png │ │ ├── beach.png │ │ ├── beautiful.png │ │ ├── bicycle_parking.png │ │ ├── big_city.png │ │ ├── bridge.png │ │ ├── bridge_modern.png │ │ ├── bus.png │ │ ├── cable_car.png │ │ ├── car.png │ │ ├── car_rental.png │ │ ├── carrepair.png │ │ ├── castle.png │ │ ├── cathedral.png │ │ ├── chapel.png │ │ ├── church.png │ │ ├── city_square.png │ │ ├── cluster.png │ │ ├── cluster_2.png │ │ ├── cluster_3.png │ │ ├── cluster_4.png │ │ ├── cluster_5.png │ │ ├── coffee.png │ │ ├── community_centre.png │ │ ├── company.png │ │ ├── conference.png │ │ ├── construction.png │ │ ├── convenience.png │ │ ├── court.png │ │ ├── cruise.png │ │ ├── currency_exchange.png │ │ ├── customs.png │ │ ├── cycling.png │ │ ├── dam.png │ │ ├── days_dim.png │ │ ├── days_dom.png │ │ ├── days_jeu.png │ │ ├── days_jue.png │ │ ├── days_lun.png │ │ ├── days_mar.png │ │ ├── days_mer.png │ │ ├── days_mie.png │ │ ├── days_qua.png │ │ ├── days_qui.png │ │ ├── days_sab.png │ │ ├── days_sam.png │ │ ├── days_seg.png │ │ ├── days_sex.png │ │ ├── days_ter.png │ │ ├── days_ven.png │ │ ├── days_vie.png │ │ ├── dentist.png │ │ ├── deptartment_store.png │ │ ├── disability.png │ │ ├── disabled_parking.png │ │ ├── doctor.png │ │ ├── dog_leash.png │ │ ├── down.png │ │ ├── down_left.png │ │ ├── down_right.png │ │ ├── down_then_left.png │ │ ├── down_then_right.png │ │ ├── drugs.png │ │ ├── elevator.png │ │ ├── embassy.png │ │ ├── expert.png │ │ ├── factory.png │ │ ├── falling_rocks.png │ │ ├── fast_food.png │ │ ├── festival.png │ │ ├── fjord.png │ │ ├── forest.png │ │ ├── fountain.png │ │ ├── friday.png │ │ ├── garden.png │ │ ├── gas_station.png │ │ ├── geyser.png │ │ ├── gifts.png │ │ ├── gourmet.png │ │ ├── grocery.png │ │ ├── hairsalon.png │ │ ├── helicopter.png │ │ ├── highway.png │ │ ├── historical_quarter.png │ │ ├── home.png │ │ ├── hospital.png │ │ ├── hostel.png │ │ ├── hotel.png │ │ ├── hotel_1_star.png │ │ ├── hotel_2_stars.png │ │ ├── hotel_3_stars.png │ │ ├── hotel_4_stars.png │ │ ├── hotel_5_stars.png │ │ ├── info.png │ │ ├── justice.png │ │ ├── lake.png │ │ ├── laundromat.png │ │ ├── left.png │ │ ├── left_then_down.png │ │ ├── left_then_up.png │ │ ├── library.png │ │ ├── lighthouse.png │ │ ├── liquor.png │ │ ├── lock.png │ │ ├── main_road.png │ │ ├── massage.png │ │ ├── mobile_phone_tower.png │ │ ├── modern_tower.png │ │ ├── monastery.png │ │ ├── monday.png │ │ ├── monument.png │ │ ├── mosque.png │ │ ├── motorcycle.png │ │ ├── museum.png │ │ ├── music_live.png │ │ ├── oil_pump_jack.png │ │ ├── pagoda.png │ │ ├── palace.png │ │ ├── panoramic.png │ │ ├── park.png │ │ ├── park_and_ride.png │ │ ├── parking.png │ │ ├── photo.png │ │ ├── picnic.png │ │ ├── places_unvisited.png │ │ ├── places_visited.png │ │ ├── playground.png │ │ ├── police.png │ │ ├── port.png │ │ ├── postal.png │ │ ├── power_line_pole.png │ │ ├── power_plant.png │ │ ├── power_substation.png │ │ ├── public_art.png │ │ ├── rain.png │ │ ├── real_estate.png │ │ ├── regroup.png │ │ ├── resort.png │ │ ├── restaurant.png │ │ ├── restaurant_african.png │ │ ├── restaurant_barbecue.png │ │ ├── restaurant_buffet.png │ │ ├── restaurant_chinese.png │ │ ├── restaurant_fish.png │ │ ├── restaurant_fish_chips.png │ │ ├── restaurant_gourmet.png │ │ ├── restaurant_greek.png │ │ ├── restaurant_indian.png │ │ ├── restaurant_italian.png │ │ ├── restaurant_japanese.png │ │ ├── restaurant_kebab.png │ │ ├── restaurant_korean.png │ │ ├── restaurant_mediterranean.png │ │ ├── restaurant_mexican.png │ │ ├── restaurant_romantic.png │ │ ├── restaurant_thai.png │ │ ├── restaurant_turkish.png │ │ ├── right.png │ │ ├── right_then_down.png │ │ ├── right_then_up.png │ │ ├── saturday.png │ │ ├── school.png │ │ ├── shopping_mall.png │ │ ├── shore.png │ │ ├── sight.png │ │ ├── small_city.png │ │ ├── snow.png │ │ ├── spaceport.png │ │ ├── speed_100.png │ │ ├── speed_110.png │ │ ├── speed_120.png │ │ ├── speed_130.png │ │ ├── speed_20.png │ │ ├── speed_30.png │ │ ├── speed_40.png │ │ ├── speed_50.png │ │ ├── speed_60.png │ │ ├── speed_70.png │ │ ├── speed_80.png │ │ ├── speed_90.png │ │ ├── speed_hump.png │ │ ├── stadium.png │ │ ├── statue.png │ │ ├── steam_train.png │ │ ├── stop.png │ │ ├── stoplight.png │ │ ├── subway.png │ │ ├── sun.png │ │ ├── sunday.png │ │ ├── supermarket.png │ │ ├── synagogue.png │ │ ├── tapas.png │ │ ├── taxi.png │ │ ├── taxiway.png │ │ ├── teahouse.png │ │ ├── telephone.png │ │ ├── temple_hindu.png │ │ ├── terrace.png │ │ ├── text.png │ │ ├── theater.png │ │ ├── theme_park.png │ │ ├── thursday.png │ │ ├── toilets.png │ │ ├── toll_station.png │ │ ├── tower.png │ │ ├── traffic_enforcement_camera.png │ │ ├── train.png │ │ ├── tram.png │ │ ├── truck.png │ │ ├── tuesday.png │ │ ├── tunnel.png │ │ ├── turn_left.png │ │ ├── turn_right.png │ │ ├── university.png │ │ ├── up.png │ │ ├── up_left.png │ │ ├── up_right.png │ │ ├── up_then_left.png │ │ ├── up_then_right.png │ │ ├── vespa.png │ │ ├── video.png │ │ ├── villa.png │ │ ├── water.png │ │ ├── waterfall.png │ │ ├── watermill.png │ │ ├── waterpark.png │ │ ├── watertower.png │ │ ├── wednesday.png │ │ ├── wifi.png │ │ ├── wind_turbine.png │ │ ├── windmill.png │ │ ├── winery.png │ │ ├── work_office.png │ │ ├── world_heritage_site.png │ │ └── zoo.png │ ├── join_imeeting.gif │ ├── join_meeting_inline.png │ ├── jscalendar.gif │ ├── layout_sprite.png │ ├── leftarrow.gif │ ├── leftarrow_big.gif │ ├── line.gif │ ├── list.gif │ ├── listViewBg.gif │ ├── listViewHR.gif │ ├── loadSignedDocument.gif │ ├── loading.gif │ ├── loading_home.gif │ ├── login-bg.png │ ├── mass_update.gif │ ├── menuarrow.gif │ ├── minus.gif │ ├── minus_inline.gif │ ├── more.gif │ ├── new_inline.gif │ ├── next.gif │ ├── next_off.gif │ ├── no.gif │ ├── open_multiple.gif │ ├── otherTab.gif │ ├── otherTab.png │ ├── otherTabBlue.gif │ ├── otherTabGray.gif │ ├── otherTabGreen.gif │ ├── otherTabOcher.gif │ ├── otherTabPurple.gif │ ├── otherTabRed.gif │ ├── pdf_header_logo_SugarCRMheader.jpg │ ├── pdf_header_logo_company_logo.png │ ├── pdf_header_logo_img_left_arrow.jpg │ ├── pdf_header_logo_pdf_header_logo_SugarCRMheader.jpg │ ├── pdf_image_inline.gif │ ├── pdf_logo.jpg │ ├── pdf_logo_small.jpg │ ├── plug-in_Excel.gif │ ├── plug-in_Lotus.png │ ├── plug-in_Outlook.gif │ ├── plug-in_Word.gif │ ├── plus.gif │ ├── plus_inline.gif │ ├── poweredby_sugarcrm_65.png │ ├── ppt_image_inline.gif │ ├── previous.gif │ ├── previous_off.gif │ ├── print.gif │ ├── publish_inline.gif │ ├── quick-create.png │ ├── red_camp.gif │ ├── red_camp_clean.gif │ ├── rightarrow.gif │ ├── rightarrow_big.gif │ ├── scheduled_inline.gif │ ├── searchMore.gif │ ├── shortCutsBg.png │ ├── show.gif │ ├── show_submenu_shortcuts.gif │ ├── slot.gif │ ├── spacer.gif │ ├── sqsWait.gif │ ├── start.gif │ ├── start_meeting_inline.png │ ├── start_off.gif │ ├── studio_addField.gif │ ├── studio_addRows.gif │ ├── studio_blank.gif │ ├── studio_history.gif │ ├── studio_publish.gif │ ├── studio_redo.gif │ ├── studio_save.gif │ ├── studio_undo.gif │ ├── sugar-yui-sprites-grey.png │ ├── sugarColors.xml │ ├── sugar_document.png │ ├── sugar_icon.ico │ ├── sugar_icon.png │ ├── sugarupdate.gif │ ├── tabRowBlueBg.gif │ ├── tabRowGrayBg.gif │ ├── tabRowGreenBg.gif │ ├── tabRowOcherBg.gif │ ├── tabRowPurpleBg.gif │ ├── tabRowRedBg.gif │ ├── tentative_inline.gif │ ├── themePreview.png │ ├── txt_image_inline.gif │ ├── unpublish_inline.gif │ ├── unscheduled_inline.gif │ ├── uparrow.gif │ ├── uparrow_big.gif │ ├── uparrow_inline.gif │ ├── view-process-own.png │ ├── view.gif │ ├── view_inline.gif │ ├── view_status.gif │ ├── xls_image_inline.gif │ ├── yellow_camp.gif │ └── yes.gif │ ├── js │ └── style.js │ └── less │ ├── accordion.less │ ├── alerts.less │ ├── bootstrap-mobile.less │ ├── bootstrap.less │ ├── breadcrumbs.less │ ├── button-groups.less │ ├── buttons.less │ ├── carousel.less │ ├── chosen.less │ ├── close.less │ ├── code.less │ ├── component-animations.less │ ├── dropdowns.less │ ├── font-awesome.less │ ├── forms.less │ ├── grid.less │ ├── hero-unit.less │ ├── labels.less │ ├── layouts.less │ ├── mixins.less │ ├── modals.less │ ├── navbar.less │ ├── navs.less │ ├── pager.less │ ├── pagination.less │ ├── popovers.less │ ├── progress-bars.less │ ├── reset.less │ ├── responsive.less │ ├── scaffolding.less │ ├── sprites.less │ ├── sugar.less │ ├── sugarmobile.less │ ├── tables.less │ ├── thumbnails.less │ ├── tooltip.less │ ├── type.less │ ├── utilities.less │ ├── variables.less │ └── wells.less ├── vCard.php ├── vcal_server.php └── vendor ├── autoload.php ├── behat ├── gherkin │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── update_i18n │ ├── composer.json │ ├── i18n.php │ ├── libpath.php │ ├── package.xml.tpl │ ├── phpdoc.ini.dist │ ├── phpunit.xml.dist │ ├── src │ │ └── Behat │ │ │ └── Gherkin │ │ │ ├── Cache │ │ │ ├── CacheInterface.php │ │ │ ├── FileCache.php │ │ │ └── MemoryCache.php │ │ │ ├── Exception │ │ │ ├── CacheException.php │ │ │ ├── Exception.php │ │ │ ├── LexerException.php │ │ │ ├── NodeException.php │ │ │ └── ParserException.php │ │ │ ├── Filter │ │ │ ├── ComplexFilter.php │ │ │ ├── ComplexFilterInterface.php │ │ │ ├── FeatureFilterInterface.php │ │ │ ├── FilterInterface.php │ │ │ ├── LineFilter.php │ │ │ ├── LineRangeFilter.php │ │ │ ├── NameFilter.php │ │ │ ├── NarrativeFilter.php │ │ │ ├── PathsFilter.php │ │ │ ├── RoleFilter.php │ │ │ ├── SimpleFilter.php │ │ │ └── TagFilter.php │ │ │ ├── Gherkin.php │ │ │ ├── Keywords │ │ │ ├── ArrayKeywords.php │ │ │ ├── CachedArrayKeywords.php │ │ │ ├── CucumberKeywords.php │ │ │ ├── KeywordsDumper.php │ │ │ └── KeywordsInterface.php │ │ │ ├── Lexer.php │ │ │ ├── Loader │ │ │ ├── AbstractFileLoader.php │ │ │ ├── ArrayLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── FileLoaderInterface.php │ │ │ ├── GherkinFileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ └── YamlFileLoader.php │ │ │ ├── Node │ │ │ ├── ArgumentInterface.php │ │ │ ├── BackgroundNode.php │ │ │ ├── ExampleNode.php │ │ │ ├── ExampleTableNode.php │ │ │ ├── FeatureNode.php │ │ │ ├── KeywordNodeInterface.php │ │ │ ├── NodeInterface.php │ │ │ ├── OutlineNode.php │ │ │ ├── PyStringNode.php │ │ │ ├── ScenarioInterface.php │ │ │ ├── ScenarioLikeInterface.php │ │ │ ├── ScenarioNode.php │ │ │ ├── StepContainerInterface.php │ │ │ ├── StepNode.php │ │ │ ├── TableNode.php │ │ │ └── TaggedNodeInterface.php │ │ │ └── Parser.php │ └── tests │ │ └── Behat │ │ └── Gherkin │ │ ├── Cache │ │ ├── FileCacheTest.php │ │ └── MemoryCacheTest.php │ │ ├── Filter │ │ ├── FilterTest.php │ │ ├── Fixtures │ │ │ ├── full │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ └── full_path │ │ │ │ └── file1 │ │ ├── LineFilterTest.php │ │ ├── LineRangeFilterTest.php │ │ ├── NameFilterTest.php │ │ ├── NarrativeFilterTest.php │ │ ├── PathsFilterTest.php │ │ ├── RoleFilterTest.php │ │ └── TagFilterTest.php │ │ ├── Fixtures │ │ ├── directories │ │ │ └── phps │ │ │ │ └── some_file.php │ │ ├── etalons │ │ │ ├── addition.yml │ │ │ ├── background.yml │ │ │ ├── background_title.yml │ │ │ ├── big_pystring.yml │ │ │ ├── clean_tags.yml │ │ │ ├── commented_out.yml │ │ │ ├── comments.yml │ │ │ ├── complex_descriptions.yml │ │ │ ├── empty.yml │ │ │ ├── empty_scenario.yml │ │ │ ├── empty_scenario_without_linefeed.yml │ │ │ ├── empty_scenarios.yml │ │ │ ├── fibonacci.yml │ │ │ ├── hashes_in_quotes.yml │ │ │ ├── issue_13.yml │ │ │ ├── ja_addition.yml │ │ │ ├── long_title_feature.yml │ │ │ ├── multiline_name.yml │ │ │ ├── multiline_name_with_newlines.yml │ │ │ ├── multiplepystrings.yml │ │ │ ├── outline_with_spaces.yml │ │ │ ├── outline_with_step_table.yml │ │ │ ├── pystring.yml │ │ │ ├── ru_addition.yml │ │ │ ├── ru_commented.yml │ │ │ ├── ru_consecutive_calculations.yml │ │ │ ├── ru_division.yml │ │ │ ├── start_comments.yml │ │ │ ├── tables.yml │ │ │ ├── tags_sample.yml │ │ │ ├── test_unit.yml │ │ │ ├── trimpystring.yml │ │ │ └── undefined_multiline_args.yml │ │ ├── features │ │ │ ├── addition.feature │ │ │ ├── background.feature │ │ │ ├── background_title.feature │ │ │ ├── big_pystring.feature │ │ │ ├── clean_tags.feature │ │ │ ├── commented_out.feature │ │ │ ├── comments.feature │ │ │ ├── complex_descriptions.feature │ │ │ ├── empty.feature │ │ │ ├── empty_scenario.feature │ │ │ ├── empty_scenario_without_linefeed.feature │ │ │ ├── empty_scenarios.feature │ │ │ ├── fibonacci.feature │ │ │ ├── hashes_in_quotes.feature │ │ │ ├── issue_13.feature │ │ │ ├── ja_addition.feature │ │ │ ├── long_title_feature.feature │ │ │ ├── multiline_name.feature │ │ │ ├── multiline_name_with_newlines.feature │ │ │ ├── multiplepystrings.feature │ │ │ ├── outline_with_spaces.feature │ │ │ ├── outline_with_step_table.feature │ │ │ ├── pystring.feature │ │ │ ├── ru_addition.feature │ │ │ ├── ru_commented.feature │ │ │ ├── ru_consecutive_calculations.feature │ │ │ ├── ru_division.feature │ │ │ ├── start_comments.feature │ │ │ ├── tables.feature │ │ │ ├── tags_sample.feature │ │ │ ├── test_unit.feature │ │ │ ├── trimpystring.feature │ │ │ └── undefined_multiline_args.feature │ │ └── i18n.yml │ │ ├── GherkinTest.php │ │ ├── Keywords │ │ ├── ArrayKeywordsTest.php │ │ ├── CachedArrayKeywordsTest.php │ │ ├── CucumberKeywordsTest.php │ │ ├── KeywordsDumperTest.php │ │ └── KeywordsTest.php │ │ ├── Loader │ │ ├── ArrayLoaderTest.php │ │ ├── DirectoryLoaderTest.php │ │ ├── GherkinFileLoaderTest.php │ │ └── YamlFileLoaderTest.php │ │ ├── Node │ │ ├── ExampleNodeTest.php │ │ ├── OutlineNodeTest.php │ │ ├── PyStringNodeTest.php │ │ ├── StepNodeTest.php │ │ └── TableNodeTest.php │ │ ├── ParserExceptionsTest.php │ │ └── ParserTest.php └── transliterator │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Behat │ └── Transliterator │ ├── SyncTool.php │ ├── Transliterator.php │ └── data │ ├── x00.php │ ├── x01.php │ ├── x02.php │ ├── x03.php │ ├── x04.php │ ├── x05.php │ ├── x06.php │ ├── x07.php │ ├── x09.php │ ├── x0a.php │ ├── x0b.php │ ├── x0c.php │ ├── x0d.php │ ├── x0e.php │ ├── x0f.php │ ├── x10.php │ ├── x11.php │ ├── x12.php │ ├── x13.php │ ├── x14.php │ ├── x15.php │ ├── x16.php │ ├── x17.php │ ├── x18.php │ ├── x1e.php │ ├── x1f.php │ ├── x20.php │ ├── x21.php │ ├── x24.php │ ├── x25.php │ ├── x26.php │ ├── x27.php │ ├── x28.php │ ├── x30.php │ ├── x31.php │ ├── x32.php │ ├── x33.php │ ├── x4e.php │ ├── x4f.php │ ├── x50.php │ ├── x51.php │ ├── x52.php │ ├── x53.php │ ├── x54.php │ ├── x55.php │ ├── x56.php │ ├── x57.php │ ├── x58.php │ ├── x59.php │ ├── x5a.php │ ├── x5b.php │ ├── x5c.php │ ├── x5d.php │ ├── x5e.php │ ├── x5f.php │ ├── x60.php │ ├── x61.php │ ├── x62.php │ ├── x63.php │ ├── x64.php │ ├── x65.php │ ├── x66.php │ ├── x67.php │ ├── x68.php │ ├── x69.php │ ├── x6a.php │ ├── x6b.php │ ├── x6c.php │ ├── x6d.php │ ├── x6e.php │ ├── x6f.php │ ├── x70.php │ ├── x71.php │ ├── x72.php │ ├── x73.php │ ├── x74.php │ ├── x75.php │ ├── x76.php │ ├── x77.php │ ├── x78.php │ ├── x79.php │ ├── x7a.php │ ├── x7b.php │ ├── x7c.php │ ├── x7d.php │ ├── x7e.php │ ├── x7f.php │ ├── x80.php │ ├── x81.php │ ├── x82.php │ ├── x83.php │ ├── x84.php │ ├── x85.php │ ├── x86.php │ ├── x87.php │ ├── x88.php │ ├── x89.php │ ├── x8a.php │ ├── x8b.php │ ├── x8c.php │ ├── x8d.php │ ├── x8e.php │ ├── x8f.php │ ├── x90.php │ ├── x91.php │ ├── x92.php │ ├── x93.php │ ├── x94.php │ ├── x95.php │ ├── x96.php │ ├── x97.php │ ├── x98.php │ ├── x99.php │ ├── x9a.php │ ├── x9b.php │ ├── x9c.php │ ├── x9d.php │ ├── x9e.php │ ├── x9f.php │ ├── xa0.php │ ├── xa1.php │ ├── xa2.php │ ├── xa3.php │ ├── xa4.php │ ├── xac.php │ ├── xad.php │ ├── xae.php │ ├── xaf.php │ ├── xb0.php │ ├── xb1.php │ ├── xb2.php │ ├── xb3.php │ ├── xb4.php │ ├── xb5.php │ ├── xb6.php │ ├── xb7.php │ ├── xb8.php │ ├── xb9.php │ ├── xba.php │ ├── xbb.php │ ├── xbc.php │ ├── xbd.php │ ├── xbe.php │ ├── xbf.php │ ├── xc0.php │ ├── xc1.php │ ├── xc2.php │ ├── xc3.php │ ├── xc4.php │ ├── xc5.php │ ├── xc6.php │ ├── xc7.php │ ├── xc8.php │ ├── xc9.php │ ├── xca.php │ ├── xcb.php │ ├── xcc.php │ ├── xcd.php │ ├── xce.php │ ├── xcf.php │ ├── xd0.php │ ├── xd1.php │ ├── xd2.php │ ├── xd3.php │ ├── xd4.php │ ├── xd5.php │ ├── xd6.php │ ├── xd7.php │ ├── xf9.php │ ├── xfa.php │ ├── xfb.php │ ├── xfc.php │ ├── xfd.php │ ├── xfe.php │ └── xff.php ├── bin ├── codecept ├── generate-defuse-key ├── parse ├── php-cs-fixer ├── phpunit ├── pscss ├── release ├── robo ├── update-psl ├── upgrade-carbon └── validate-json ├── browserstack └── browserstack-local │ ├── .gitignore │ ├── .travis.yml │ ├── MIT-LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── example.php │ ├── lib │ ├── Local.php │ ├── LocalBinary.php │ └── LocalException.php │ ├── phpunit.xml │ └── tests │ └── LocalTest.php ├── codeception ├── codeception │ ├── .github │ │ └── FUNDING.yml │ ├── Dockerfile │ ├── LICENSE │ ├── PruneTest.php │ ├── RoboFile.php │ ├── autoload.php │ ├── codecept │ ├── codecept.bat │ ├── composer.json │ ├── ext │ │ ├── DotReporter.php │ │ ├── Logger.php │ │ ├── README.md │ │ ├── Recorder.php │ │ ├── RunBefore.php │ │ ├── RunFailed.php │ │ ├── RunProcess.php │ │ └── SimpleReporter.php │ ├── nitpick.json │ ├── package │ │ ├── bin │ │ └── stub.php │ ├── ruleset.xml │ ├── shim.php │ └── src │ │ └── Codeception │ │ ├── Actor.php │ │ ├── Application.php │ │ ├── Codecept.php │ │ ├── Command │ │ ├── Bootstrap.php │ │ ├── Build.php │ │ ├── Clean.php │ │ ├── Completion.php │ │ ├── CompletionFallback.php │ │ ├── ConfigValidate.php │ │ ├── Console.php │ │ ├── DryRun.php │ │ ├── GenerateCept.php │ │ ├── GenerateCest.php │ │ ├── GenerateEnvironment.php │ │ ├── GenerateFeature.php │ │ ├── GenerateGroup.php │ │ ├── GenerateHelper.php │ │ ├── GeneratePageObject.php │ │ ├── GenerateScenarios.php │ │ ├── GenerateSnapshot.php │ │ ├── GenerateStepObject.php │ │ ├── GenerateSuite.php │ │ ├── GenerateTest.php │ │ ├── GherkinSnippets.php │ │ ├── GherkinSteps.php │ │ ├── Init.php │ │ ├── Run.php │ │ ├── SelfUpdate.php │ │ └── Shared │ │ │ ├── Config.php │ │ │ ├── FileSystem.php │ │ │ └── Style.php │ │ ├── Configuration.php │ │ ├── Coverage │ │ ├── Filter.php │ │ ├── Subscriber │ │ │ ├── Local.php │ │ │ ├── LocalServer.php │ │ │ ├── Printer.php │ │ │ └── RemoteServer.php │ │ └── SuiteSubscriber.php │ │ ├── CustomCommandInterface.php │ │ ├── Event │ │ ├── FailEvent.php │ │ ├── PrintResultEvent.php │ │ ├── StepEvent.php │ │ ├── SuiteEvent.php │ │ └── TestEvent.php │ │ ├── Events.php │ │ ├── Example.php │ │ ├── Exception │ │ ├── ConditionalAssertionFailed.php │ │ ├── ConfigurationException.php │ │ ├── ConnectionException.php │ │ ├── ContentNotFound.php │ │ ├── ElementNotFound.php │ │ ├── ExtensionException.php │ │ ├── ExternalUrlException.php │ │ ├── InjectionException.php │ │ ├── MalformedLocatorException.php │ │ ├── ModuleConfigException.php │ │ ├── ModuleConflictException.php │ │ ├── ModuleException.php │ │ ├── ModuleRequireException.php │ │ ├── ParseException.php │ │ ├── RemoteException.php │ │ ├── TestParseException.php │ │ └── TestRuntimeException.php │ │ ├── Extension.php │ │ ├── GroupObject.php │ │ ├── InitTemplate.php │ │ ├── Lib │ │ ├── Actor │ │ │ └── Shared │ │ │ │ ├── Comment.php │ │ │ │ ├── Friend.php │ │ │ │ ├── Pause.php │ │ │ │ └── Retry.php │ │ ├── Connector │ │ │ ├── Guzzle.php │ │ │ ├── Laravel5.php │ │ │ ├── Laravel5 │ │ │ │ └── ExceptionHandlerDecorator.php │ │ │ ├── Lumen.php │ │ │ ├── Lumen │ │ │ │ └── DummyKernel.php │ │ │ ├── Phalcon.php │ │ │ ├── Phalcon │ │ │ │ └── MemorySession.php │ │ │ ├── Shared │ │ │ │ ├── LaravelCommon.php │ │ │ │ └── PhpSuperGlobalsConverter.php │ │ │ ├── Symfony.php │ │ │ ├── Universal.php │ │ │ ├── Yii1.php │ │ │ ├── Yii2.php │ │ │ ├── Yii2 │ │ │ │ ├── ConnectionWatcher.php │ │ │ │ ├── FixturesStore.php │ │ │ │ ├── Logger.php │ │ │ │ ├── TestMailer.php │ │ │ │ └── TransactionForcer.php │ │ │ ├── ZF2.php │ │ │ ├── ZendExpressive.php │ │ │ └── ZendExpressive │ │ │ │ └── ResponseCollector.php │ │ ├── Console │ │ │ ├── Colorizer.php │ │ │ ├── DiffFactory.php │ │ │ ├── Message.php │ │ │ ├── MessageFactory.php │ │ │ └── Output.php │ │ ├── DbPopulator.php │ │ ├── Di.php │ │ ├── Driver │ │ │ ├── AmazonSQS.php │ │ │ ├── Beanstalk.php │ │ │ ├── Db.php │ │ │ ├── Iron.php │ │ │ ├── MongoDb.php │ │ │ ├── MySql.php │ │ │ ├── Oci.php │ │ │ ├── PostgreSql.php │ │ │ ├── SqlSrv.php │ │ │ └── Sqlite.php │ │ ├── Framework.php │ │ ├── Friend.php │ │ ├── Generator │ │ │ ├── Actions.php │ │ │ ├── Actor.php │ │ │ ├── Cept.php │ │ │ ├── Cest.php │ │ │ ├── Feature.php │ │ │ ├── GherkinSnippets.php │ │ │ ├── Group.php │ │ │ ├── Helper.php │ │ │ ├── PageObject.php │ │ │ ├── Shared │ │ │ │ └── Classname.php │ │ │ ├── Snapshot.php │ │ │ ├── StepObject.php │ │ │ └── Test.php │ │ ├── GroupManager.php │ │ ├── InnerBrowser.php │ │ ├── Interfaces │ │ │ ├── API.php │ │ │ ├── ActiveRecord.php │ │ │ ├── ConflictsWithModule.php │ │ │ ├── DataMapper.php │ │ │ ├── Db.php │ │ │ ├── DependsOnModule.php │ │ │ ├── DoctrineProvider.php │ │ │ ├── ElementLocator.php │ │ │ ├── MultiSession.php │ │ │ ├── ORM.php │ │ │ ├── PageSourceSaver.php │ │ │ ├── PartedModule.php │ │ │ ├── Queue.php │ │ │ ├── Remote.php │ │ │ ├── RequiresPackage.php │ │ │ ├── ScreenshotSaver.php │ │ │ ├── SessionSnapshot.php │ │ │ └── Web.php │ │ ├── ModuleContainer.php │ │ ├── Notification.php │ │ ├── ParamsLoader.php │ │ ├── Parser.php │ │ ├── README.md │ │ └── Shared │ │ │ └── LaravelCommon.php │ │ ├── Module.php │ │ ├── Module │ │ ├── AMQP.php │ │ ├── Apc.php │ │ ├── Asserts.php │ │ ├── Cli.php │ │ ├── DataFactory.php │ │ ├── Db.php │ │ ├── Doctrine2.php │ │ ├── FTP.php │ │ ├── Filesystem.php │ │ ├── Laravel5.php │ │ ├── Lumen.php │ │ ├── Memcache.php │ │ ├── MongoDb.php │ │ ├── Phalcon.php │ │ ├── PhpBrowser.php │ │ ├── Queue.php │ │ ├── README.md │ │ ├── REST.php │ │ ├── Redis.php │ │ ├── SOAP.php │ │ ├── Sequence.php │ │ ├── Symfony.php │ │ ├── WebDriver.php │ │ ├── Yii2.php │ │ ├── ZF2.php │ │ └── ZendExpressive.php │ │ ├── README.md │ │ ├── Scenario.php │ │ ├── Snapshot.php │ │ ├── Step.php │ │ ├── Step │ │ ├── Action.php │ │ ├── Argument │ │ │ ├── FormattedOutput.php │ │ │ └── PasswordArgument.php │ │ ├── Assertion.php │ │ ├── Comment.php │ │ ├── Condition.php │ │ ├── ConditionalAssertion.php │ │ ├── Executor.php │ │ ├── GeneratedStep.php │ │ ├── Incomplete.php │ │ ├── Meta.php │ │ ├── README.md │ │ ├── Retry.php │ │ ├── Skip.php │ │ └── TryTo.php │ │ ├── Subscriber │ │ ├── AutoRebuild.php │ │ ├── BeforeAfterTest.php │ │ ├── Bootstrap.php │ │ ├── Console.php │ │ ├── Dependencies.php │ │ ├── ErrorHandler.php │ │ ├── ExtensionLoader.php │ │ ├── FailFast.php │ │ ├── GracefulTermination.php │ │ ├── Module.php │ │ ├── PrepareTest.php │ │ ├── README.md │ │ └── Shared │ │ │ └── StaticEvents.php │ │ ├── Suite.php │ │ ├── SuiteManager.php │ │ ├── Template │ │ ├── Acceptance.php │ │ ├── Api.php │ │ ├── Bootstrap.php │ │ └── Unit.php │ │ ├── Test │ │ ├── Cept.php │ │ ├── Cest.php │ │ ├── Descriptor.php │ │ ├── Feature │ │ │ ├── AssertionCounter.php │ │ │ ├── CodeCoverage.php │ │ │ ├── ErrorLogger.php │ │ │ ├── IgnoreIfMetadataBlocked.php │ │ │ ├── MetadataCollector.php │ │ │ └── ScenarioLoader.php │ │ ├── Gherkin.php │ │ ├── Interfaces │ │ │ ├── Dependent.php │ │ │ ├── Descriptive.php │ │ │ ├── Plain.php │ │ │ ├── Reported.php │ │ │ ├── ScenarioDriven.php │ │ │ └── StrictCoverage.php │ │ ├── Loader.php │ │ ├── Loader │ │ │ ├── Cept.php │ │ │ ├── Cest.php │ │ │ ├── Gherkin.php │ │ │ ├── LoaderInterface.php │ │ │ └── Unit.php │ │ ├── Metadata.php │ │ ├── Test.php │ │ └── Unit.php │ │ ├── TestInterface.php │ │ └── Util │ │ ├── ActionSequence.php │ │ ├── Annotation.php │ │ ├── ArrayContainsComparator.php │ │ ├── Autoload.php │ │ ├── Debug.php │ │ ├── FileSystem.php │ │ ├── Fixtures.php │ │ ├── HttpCode.php │ │ ├── JsonArray.php │ │ ├── JsonType.php │ │ ├── Locator.php │ │ ├── Maybe.php │ │ ├── PathResolver.php │ │ ├── README.md │ │ ├── ReflectionHelper.php │ │ ├── ReflectionPropertyAccessor.php │ │ ├── Shared │ │ ├── Asserts.php │ │ └── Namespaces.php │ │ ├── Soap.php │ │ ├── Stub.php │ │ ├── Template.php │ │ ├── Uri.php │ │ ├── Xml.php │ │ ├── XmlBuilder.php │ │ ├── XmlStructure.php │ │ └── sq.php ├── phpunit-wrapper │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── RoboFile.php │ ├── composer.json │ └── src │ │ ├── ConsolePrinter.php │ │ ├── Constraint │ │ ├── Crawler.php │ │ ├── CrawlerNot.php │ │ ├── JsonContains.php │ │ ├── JsonType.php │ │ ├── Page.php │ │ ├── WebDriver.php │ │ └── WebDriverNot.php │ │ ├── DispatcherWrapper.php │ │ ├── FilterTest.php │ │ ├── Init.php │ │ ├── Listener.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── PhpUnit.php │ │ ├── Overrides │ │ └── Filter.php │ │ ├── ResultPrinter.php │ │ ├── ResultPrinter │ │ ├── HTML.php │ │ ├── Report.php │ │ ├── UI.php │ │ └── template │ │ │ ├── fail.html.dist │ │ │ ├── scenario.html.dist │ │ │ ├── scenario_header.html.dist │ │ │ ├── scenarios.html.dist │ │ │ ├── step.html.dist │ │ │ ├── substeps.html.dist │ │ │ └── suite.html.dist │ │ ├── Runner.php │ │ ├── TestCase.php │ │ ├── phpunit5-loggers.php │ │ └── shim.php └── stub │ ├── .gitignore │ ├── .travis.yml │ ├── Readme.md │ ├── RoboFile.php │ ├── composer.json │ ├── docs │ ├── Expected.md │ ├── Stub.md │ └── StubTrait.md │ ├── src │ ├── Stub.php │ ├── Stub │ │ ├── ConsecutiveMap.php │ │ ├── Expected.php │ │ └── StubMarshaler.php │ ├── Test │ │ └── Feature │ │ │ └── Stub.php │ └── shim.php │ └── tests │ ├── ResetMocks.php │ ├── StubTest.php │ ├── StubTraitTest.php │ └── _data │ ├── DummyClass.php │ └── DummyOverloadableClass.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── semver │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Comparator.php │ │ ├── Constraint │ │ ├── AbstractConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EmptyConstraint.php │ │ └── MultiConstraint.php │ │ ├── Semver.php │ │ └── VersionParser.php └── xdebug-handler │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── PhpConfig.php │ ├── Process.php │ ├── Status.php │ └── XdebugHandler.php ├── consolidation ├── annotated-command │ ├── .editorconfig │ ├── .scenarios.lock │ │ ├── install │ │ ├── phpunit4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ ├── symfony2 │ │ │ ├── .gitignore │ │ │ └── composer.json │ │ └── symfony4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── dependencies.yml │ ├── infection.json.dist │ ├── phpunit.xml.dist │ └── src │ │ ├── AnnotatedCommand.php │ │ ├── AnnotatedCommandFactory.php │ │ ├── AnnotationData.php │ │ ├── Cache │ │ ├── CacheWrapper.php │ │ ├── NullCache.php │ │ └── SimpleCacheInterface.php │ │ ├── CommandCreationListener.php │ │ ├── CommandCreationListenerInterface.php │ │ ├── CommandData.php │ │ ├── CommandError.php │ │ ├── CommandFileDiscovery.php │ │ ├── CommandInfoAltererInterface.php │ │ ├── CommandProcessor.php │ │ ├── CommandResult.php │ │ ├── Events │ │ ├── CustomEventAwareInterface.php │ │ └── CustomEventAwareTrait.php │ │ ├── ExitCodeInterface.php │ │ ├── Help │ │ ├── HelpCommand.php │ │ ├── HelpDocument.php │ │ ├── HelpDocumentAlter.php │ │ └── HelpDocumentBuilder.php │ │ ├── Hooks │ │ ├── AlterResultInterface.php │ │ ├── Dispatchers │ │ │ ├── CommandEventHookDispatcher.php │ │ │ ├── ExtracterHookDispatcher.php │ │ │ ├── HookDispatcher.php │ │ │ ├── InitializeHookDispatcher.php │ │ │ ├── InteractHookDispatcher.php │ │ │ ├── OptionsHookDispatcher.php │ │ │ ├── ProcessResultHookDispatcher.php │ │ │ ├── ReplaceCommandHookDispatcher.php │ │ │ ├── StatusDeterminerHookDispatcher.php │ │ │ └── ValidateHookDispatcher.php │ │ ├── ExtractOutputInterface.php │ │ ├── HookManager.php │ │ ├── InitializeHookInterface.php │ │ ├── InteractorInterface.php │ │ ├── OptionHookInterface.php │ │ ├── ProcessResultInterface.php │ │ ├── StatusDeterminerInterface.php │ │ └── ValidatorInterface.php │ │ ├── Input │ │ ├── StdinAwareInterface.php │ │ ├── StdinAwareTrait.php │ │ └── StdinHandler.php │ │ ├── Options │ │ ├── AlterOptionsCommandEvent.php │ │ ├── AutomaticOptionsProviderInterface.php │ │ ├── PrepareFormatter.php │ │ └── PrepareTerminalWidthOption.php │ │ ├── OutputDataInterface.php │ │ ├── ParameterInjection.php │ │ ├── ParameterInjector.php │ │ ├── Parser │ │ ├── CommandInfo.php │ │ ├── CommandInfoDeserializer.php │ │ ├── CommandInfoSerializer.php │ │ ├── DefaultsWithDescriptions.php │ │ └── Internal │ │ │ ├── BespokeDocBlockParser.php │ │ │ ├── CommandDocBlockParserFactory.php │ │ │ ├── CsvUtils.php │ │ │ ├── DocblockTag.php │ │ │ ├── FullyQualifiedClassCache.php │ │ │ └── TagFactory.php │ │ └── ResultWriter.php ├── config │ ├── .editorconfig │ ├── .scenarios.lock │ │ ├── install │ │ ├── symfony2 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ └── symfony4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ └── src │ │ ├── Config.php │ │ ├── ConfigAwareInterface.php │ │ ├── ConfigAwareTrait.php │ │ ├── ConfigInterface.php │ │ ├── GlobalOptionDefaultValuesInterface.php │ │ ├── Inject │ │ ├── ConfigForCommand.php │ │ └── ConfigForSetters.php │ │ ├── Loader │ │ ├── ConfigLoader.php │ │ ├── ConfigLoaderInterface.php │ │ ├── ConfigProcessor.php │ │ └── YamlConfigLoader.php │ │ └── Util │ │ ├── ArrayUtil.php │ │ ├── ConfigFallback.php │ │ ├── ConfigGroup.php │ │ ├── ConfigInterpolatorInterface.php │ │ ├── ConfigInterpolatorTrait.php │ │ ├── ConfigMerge.php │ │ ├── ConfigOverlay.php │ │ ├── ConfigRuntimeInterface.php │ │ ├── EnvConfig.php │ │ └── Interpolator.php ├── log │ ├── .editorconfig │ ├── .gitignore │ ├── .scenarios.lock │ │ ├── install │ │ ├── phpunit4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ ├── symfony2 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── src │ │ │ └── tests │ │ └── symfony4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── src │ │ │ └── tests │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ │ ├── ConsoleLogLevel.php │ │ ├── LogOutputStyler.php │ │ ├── LogOutputStylerInterface.php │ │ ├── Logger.php │ │ ├── LoggerManager.php │ │ ├── StylableLoggerInterface.php │ │ ├── SymfonyLogOutputStyler.php │ │ └── UnstyledLogOutputStyler.php │ └── tests │ │ ├── LogMethodTests.php │ │ ├── LoggerManagerTests.php │ │ ├── LoggerVerbosityAndStyleTests.php │ │ └── src │ │ └── TestDataPermuter.php ├── output-formatters │ ├── .editorconfig │ ├── .scenarios.lock │ │ ├── install │ │ ├── symfony2 │ │ │ ├── .gitignore │ │ │ └── composer.json │ │ ├── symfony3 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ └── symfony4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── mkdocs.yml │ ├── phpunit.xml.dist │ ├── src │ │ ├── Exception │ │ │ ├── AbstractDataFormatException.php │ │ │ ├── IncompatibleDataException.php │ │ │ ├── InvalidFormatException.php │ │ │ ├── UnknownFieldException.php │ │ │ └── UnknownFormatException.php │ │ ├── FormatterManager.php │ │ ├── Formatters │ │ │ ├── CsvFormatter.php │ │ │ ├── FormatterAwareInterface.php │ │ │ ├── FormatterAwareTrait.php │ │ │ ├── FormatterInterface.php │ │ │ ├── HumanReadableFormat.php │ │ │ ├── JsonFormatter.php │ │ │ ├── ListFormatter.php │ │ │ ├── MetadataFormatterInterface.php │ │ │ ├── MetadataFormatterTrait.php │ │ │ ├── NoOutputFormatter.php │ │ │ ├── PrintRFormatter.php │ │ │ ├── RenderDataInterface.php │ │ │ ├── RenderTableDataTrait.php │ │ │ ├── SectionsFormatter.php │ │ │ ├── SerializeFormatter.php │ │ │ ├── StringFormatter.php │ │ │ ├── TableFormatter.php │ │ │ ├── TsvFormatter.php │ │ │ ├── VarDumpFormatter.php │ │ │ ├── VarExportFormatter.php │ │ │ ├── XmlFormatter.php │ │ │ └── YamlFormatter.php │ │ ├── Options │ │ │ ├── FormatterOptions.php │ │ │ └── OverrideOptionsInterface.php │ │ ├── StructuredData │ │ │ ├── AbstractListData.php │ │ │ ├── AbstractStructuredList.php │ │ │ ├── AssociativeList.php │ │ │ ├── CallableRenderer.php │ │ │ ├── ConversionInterface.php │ │ │ ├── FieldProcessor.php │ │ │ ├── HelpDocument.php │ │ │ ├── ListDataFromKeys.php │ │ │ ├── ListDataInterface.php │ │ │ ├── MetadataHolderInterface.php │ │ │ ├── MetadataHolderTrait.php │ │ │ ├── MetadataInterface.php │ │ │ ├── NumericCellRenderer.php │ │ │ ├── OriginalDataInterface.php │ │ │ ├── PropertyList.php │ │ │ ├── RenderCellCollectionInterface.php │ │ │ ├── RenderCellCollectionTrait.php │ │ │ ├── RenderCellInterface.php │ │ │ ├── RestructureInterface.php │ │ │ ├── RowsOfFields.php │ │ │ ├── RowsOfFieldsWithMetadata.php │ │ │ ├── TableDataInterface.php │ │ │ ├── UnstructuredData.php │ │ │ ├── UnstructuredInterface.php │ │ │ ├── UnstructuredListData.php │ │ │ └── Xml │ │ │ │ ├── DomDataInterface.php │ │ │ │ ├── XmlSchema.php │ │ │ │ └── XmlSchemaInterface.php │ │ ├── Transformations │ │ │ ├── DomToArraySimplifier.php │ │ │ ├── OverrideRestructureInterface.php │ │ │ ├── PropertyListTableTransformation.php │ │ │ ├── PropertyParser.php │ │ │ ├── ReorderFields.php │ │ │ ├── SimplifyToArrayInterface.php │ │ │ ├── StringTransformationInterface.php │ │ │ ├── TableTransformation.php │ │ │ ├── UnstructuredDataFieldAccessor.php │ │ │ ├── UnstructuredDataListTransformation.php │ │ │ ├── UnstructuredDataTransformation.php │ │ │ ├── WordWrapper.php │ │ │ └── Wrap │ │ │ │ ├── CalculateWidths.php │ │ │ │ └── ColumnWidths.php │ │ └── Validate │ │ │ ├── ValidDataTypesInterface.php │ │ │ ├── ValidDataTypesTrait.php │ │ │ └── ValidationInterface.php │ └── test.php ├── robo │ ├── .editorconfig │ ├── .scenarios.lock │ │ ├── install │ │ ├── symfony2 │ │ │ ├── .gitignore │ │ │ └── composer.json │ │ └── symfony4 │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ └── composer.lock │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── RoboFile.php │ ├── codeception.yml │ ├── composer.json │ ├── composer.lock │ ├── data │ │ └── Task │ │ │ └── Development │ │ │ └── GeneratedWrapper.tmpl │ ├── dependencies.yml │ ├── phpunit.xml.dist │ ├── robo │ ├── robo.yml │ ├── scripts │ │ └── composer │ │ │ └── ScriptHandler.php │ └── src │ │ ├── Application.php │ │ ├── ClassDiscovery │ │ ├── AbstractClassDiscovery.php │ │ ├── ClassDiscoveryInterface.php │ │ └── RelativeNamespaceDiscovery.php │ │ ├── Collection │ │ ├── CallableTask.php │ │ ├── Collection.php │ │ ├── CollectionBuilder.php │ │ ├── CollectionInterface.php │ │ ├── CollectionProcessHook.php │ │ ├── CompletionWrapper.php │ │ ├── Element.php │ │ ├── NestedCollectionInterface.php │ │ ├── TaskForEach.php │ │ ├── Temporary.php │ │ └── loadTasks.php │ │ ├── Common │ │ ├── BuilderAwareTrait.php │ │ ├── CommandArguments.php │ │ ├── CommandReceiver.php │ │ ├── ConfigAwareTrait.php │ │ ├── DynamicParams.php │ │ ├── ExecCommand.php │ │ ├── ExecOneCommand.php │ │ ├── ExecTrait.php │ │ ├── IO.php │ │ ├── InflectionTrait.php │ │ ├── InputAwareTrait.php │ │ ├── OutputAdapter.php │ │ ├── OutputAwareTrait.php │ │ ├── ProcessExecutor.php │ │ ├── ProcessUtils.php │ │ ├── ProgressIndicator.php │ │ ├── ProgressIndicatorAwareTrait.php │ │ ├── ResourceExistenceChecker.php │ │ ├── TaskIO.php │ │ ├── TimeKeeper.php │ │ ├── Timer.php │ │ └── VerbosityThresholdTrait.php │ │ ├── Config.php │ │ ├── Config │ │ ├── Config.php │ │ └── GlobalOptionDefaultValuesInterface.php │ │ ├── Contract │ │ ├── BuilderAwareInterface.php │ │ ├── CommandInterface.php │ │ ├── CompletionInterface.php │ │ ├── ConfigAwareInterface.php │ │ ├── IOAwareInterface.php │ │ ├── InflectionInterface.php │ │ ├── OutputAdapterInterface.php │ │ ├── OutputAwareInterface.php │ │ ├── PrintedInterface.php │ │ ├── ProgressIndicatorAwareInterface.php │ │ ├── ProgressInterface.php │ │ ├── RollbackInterface.php │ │ ├── SimulatedInterface.php │ │ ├── TaskInterface.php │ │ ├── VerbosityThresholdInterface.php │ │ └── WrappedTaskInterface.php │ │ ├── Exception │ │ ├── AbortTasksException.php │ │ ├── TaskException.php │ │ └── TaskExitException.php │ │ ├── GlobalOptionsEventListener.php │ │ ├── LoadAllTasks.php │ │ ├── Log │ │ ├── ResultPrinter.php │ │ ├── RoboLogLevel.php │ │ ├── RoboLogStyle.php │ │ └── RoboLogger.php │ │ ├── Result.php │ │ ├── ResultData.php │ │ ├── Robo.php │ │ ├── Runner.php │ │ ├── State │ │ ├── Consumer.php │ │ ├── Data.php │ │ ├── StateAwareInterface.php │ │ └── StateAwareTrait.php │ │ ├── Symfony │ │ └── SymfonyStyleInjector.php │ │ ├── Task │ │ ├── ApiGen │ │ │ ├── ApiGen.php │ │ │ └── loadTasks.php │ │ ├── Archive │ │ │ ├── Extract.php │ │ │ ├── Pack.php │ │ │ └── loadTasks.php │ │ ├── Assets │ │ │ ├── CssPreprocessor.php │ │ │ ├── ImageMinify.php │ │ │ ├── Less.php │ │ │ ├── Minify.php │ │ │ ├── Scss.php │ │ │ └── loadTasks.php │ │ ├── Base │ │ │ ├── Exec.php │ │ │ ├── ExecStack.php │ │ │ ├── ParallelExec.php │ │ │ ├── SymfonyCommand.php │ │ │ ├── Watch.php │ │ │ ├── loadShortcuts.php │ │ │ └── loadTasks.php │ │ ├── BaseTask.php │ │ ├── Bower │ │ │ ├── Base.php │ │ │ ├── Install.php │ │ │ ├── Update.php │ │ │ └── loadTasks.php │ │ ├── CommandStack.php │ │ ├── Composer │ │ │ ├── Base.php │ │ │ ├── Config.php │ │ │ ├── CreateProject.php │ │ │ ├── DumpAutoload.php │ │ │ ├── Init.php │ │ │ ├── Install.php │ │ │ ├── Remove.php │ │ │ ├── RequireDependency.php │ │ │ ├── Update.php │ │ │ ├── Validate.php │ │ │ └── loadTasks.php │ │ ├── Development │ │ │ ├── Changelog.php │ │ │ ├── GenerateMarkdownDoc.php │ │ │ ├── GenerateTask.php │ │ │ ├── GitHub.php │ │ │ ├── GitHubRelease.php │ │ │ ├── OpenBrowser.php │ │ │ ├── PackPhar.php │ │ │ ├── PhpServer.php │ │ │ ├── SemVer.php │ │ │ └── loadTasks.php │ │ ├── Docker │ │ │ ├── Base.php │ │ │ ├── Build.php │ │ │ ├── Commit.php │ │ │ ├── Exec.php │ │ │ ├── Pull.php │ │ │ ├── Remove.php │ │ │ ├── Result.php │ │ │ ├── Run.php │ │ │ ├── Start.php │ │ │ ├── Stop.php │ │ │ └── loadTasks.php │ │ ├── File │ │ │ ├── Concat.php │ │ │ ├── Replace.php │ │ │ ├── TmpFile.php │ │ │ ├── Write.php │ │ │ └── loadTasks.php │ │ ├── Filesystem │ │ │ ├── BaseDir.php │ │ │ ├── CleanDir.php │ │ │ ├── CopyDir.php │ │ │ ├── DeleteDir.php │ │ │ ├── FilesystemStack.php │ │ │ ├── FlattenDir.php │ │ │ ├── MirrorDir.php │ │ │ ├── TmpDir.php │ │ │ ├── WorkDir.php │ │ │ ├── loadShortcuts.php │ │ │ └── loadTasks.php │ │ ├── Gulp │ │ │ ├── Base.php │ │ │ ├── Run.php │ │ │ └── loadTasks.php │ │ ├── Npm │ │ │ ├── Base.php │ │ │ ├── Install.php │ │ │ ├── Update.php │ │ │ └── loadTasks.php │ │ ├── Remote │ │ │ ├── Rsync.php │ │ │ ├── Ssh.php │ │ │ └── loadTasks.php │ │ ├── Simulator.php │ │ ├── StackBasedTask.php │ │ ├── Testing │ │ │ ├── Atoum.php │ │ │ ├── Behat.php │ │ │ ├── Codecept.php │ │ │ ├── PHPUnit.php │ │ │ ├── Phpspec.php │ │ │ └── loadTasks.php │ │ └── Vcs │ │ │ ├── GitStack.php │ │ │ ├── HgStack.php │ │ │ ├── SvnStack.php │ │ │ ├── loadShortcuts.php │ │ │ └── loadTasks.php │ │ ├── TaskAccessor.php │ │ ├── TaskInfo.php │ │ └── Tasks.php └── self-update │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── composer.lock │ ├── scripts │ └── release │ └── src │ └── SelfUpdateCommand.php ├── container-interop └── container-interop │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── ContainerInterface-meta.md │ ├── ContainerInterface.md │ ├── Delegate-lookup-meta.md │ ├── Delegate-lookup.md │ └── images │ │ ├── interoperating_containers.png │ │ ├── priority.png │ │ └── side_by_side_containers.png │ └── src │ └── Interop │ └── Container │ ├── ContainerInterface.php │ └── Exception │ ├── ContainerException.php │ └── NotFoundException.php ├── defuse └── php-encryption │ ├── .gitignore │ ├── .php_cs │ ├── LICENSE │ ├── README.md │ ├── bin │ └── generate-defuse-key │ ├── composer.json │ ├── dist │ ├── Makefile │ ├── box.json │ └── signingkey.asc │ ├── docs │ ├── CryptoDetails.md │ ├── FAQ.md │ ├── InstallingAndVerifying.md │ ├── InternalDeveloperDocs.md │ ├── Tutorial.md │ ├── UpgradingFromV1.2.md │ └── classes │ │ ├── Crypto.md │ │ ├── File.md │ │ ├── Key.md │ │ └── KeyProtectedByPassword.md │ ├── psalm.xml │ └── src │ ├── Core.php │ ├── Crypto.php │ ├── DerivedKeys.php │ ├── Encoding.php │ ├── Exception │ ├── BadFormatException.php │ ├── CryptoException.php │ ├── EnvironmentIsBrokenException.php │ ├── IOException.php │ └── WrongKeyOrModifiedCiphertextException.php │ ├── File.php │ ├── Key.php │ ├── KeyOrPassword.php │ ├── KeyProtectedByPassword.php │ └── RuntimeTests.php ├── dflydev └── dot-access-data │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Dflydev │ │ └── DotAccessData │ │ ├── Data.php │ │ ├── DataInterface.php │ │ └── Util.php │ └── tests │ ├── Dflydev │ └── DotAccessData │ │ ├── DataTest.php │ │ └── UtilTest.php │ └── bootstrap.php ├── doctrine ├── annotations │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Annotations │ │ │ ├── Annotation.php │ │ │ ├── Annotation │ │ │ ├── Attribute.php │ │ │ ├── Attributes.php │ │ │ ├── Enum.php │ │ │ ├── IgnoreAnnotation.php │ │ │ ├── Required.php │ │ │ └── Target.php │ │ │ ├── AnnotationException.php │ │ │ ├── AnnotationReader.php │ │ │ ├── AnnotationRegistry.php │ │ │ ├── CachedReader.php │ │ │ ├── DocLexer.php │ │ │ ├── DocParser.php │ │ │ ├── FileCacheReader.php │ │ │ ├── IndexedReader.php │ │ │ ├── PhpParser.php │ │ │ ├── Reader.php │ │ │ ├── SimpleAnnotationReader.php │ │ │ └── TokenParser.php │ └── phpstan.neon ├── instantiator │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.install.sh │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── tests │ │ └── DoctrineTest │ │ ├── InstantiatorPerformance │ │ └── InstantiatorPerformanceEvent.php │ │ ├── InstantiatorTest │ │ ├── Exception │ │ │ ├── InvalidArgumentExceptionTest.php │ │ │ └── UnexpectedValueExceptionTest.php │ │ └── InstantiatorTest.php │ │ └── InstantiatorTestAsset │ │ ├── AbstractClassAsset.php │ │ ├── ArrayObjectAsset.php │ │ ├── ExceptionAsset.php │ │ ├── FinalExceptionAsset.php │ │ ├── PharAsset.php │ │ ├── PharExceptionAsset.php │ │ ├── SerializableArrayObjectAsset.php │ │ ├── SimpleSerializableAsset.php │ │ ├── SimpleTraitAsset.php │ │ ├── UnCloneableAsset.php │ │ ├── UnserializeExceptionArrayObjectAsset.php │ │ ├── WakeUpNoticesAsset.php │ │ └── XMLReaderAsset.php └── lexer │ ├── .doctrine-project.json │ ├── .github │ └── FUNDING.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ └── en │ │ ├── dql-parser.rst │ │ ├── index.rst │ │ ├── sidebar.rst │ │ └── simple-parser-example.rst │ ├── lib │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php │ ├── phpunit.xml.dist │ └── tests │ └── Doctrine │ └── Common │ └── Lexer │ ├── AbstractLexerTest.php │ └── ConcreteLexer.php ├── elasticsearch └── elasticsearch │ ├── .github │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .gitmodules │ ├── .php_cs │ ├── .travis.yml │ ├── BREAKING_CHANGES.md │ ├── CHANGELOG.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── breaking-changes.asciidoc │ ├── build │ │ ├── Elasticsearch │ │ │ ├── Client.asciidoc │ │ │ ├── ClientBuilder.asciidoc │ │ │ └── Namespaces │ │ │ │ ├── CatNamespace.asciidoc │ │ │ │ ├── ClusterNamespace.asciidoc │ │ │ │ ├── IndicesNamespace.asciidoc │ │ │ │ ├── IngestNamespace.asciidoc │ │ │ │ ├── NodesNamespace.asciidoc │ │ │ │ ├── SnapshotNamespace.asciidoc │ │ │ │ └── TasksNamespace.asciidoc │ │ ├── PROJECT_VERSION │ │ ├── SAMI_VERSION │ │ ├── classes.asciidoc │ │ ├── interfaces.asciidoc │ │ ├── namespaces.asciidoc │ │ └── renderer.index │ ├── community.asciidoc │ ├── configuration.asciidoc │ ├── connection-pool.asciidoc │ ├── crud.asciidoc │ ├── futures.asciidoc │ ├── index-operations.asciidoc │ ├── index.asciidoc │ ├── installation.asciidoc │ ├── namespaces.asciidoc │ ├── overview.asciidoc │ ├── per-request-configuration.asciidoc │ ├── php-version-requirement.asciidoc │ ├── php_json_objects.asciidoc │ ├── quickstart.asciidoc │ ├── search-operations.asciidoc │ ├── security.asciidoc │ ├── selectors.asciidoc │ └── serializers.asciidoc │ ├── phpunit-integration.xml │ ├── phpunit.xml │ ├── src │ └── Elasticsearch │ │ ├── Client.php │ │ ├── ClientBuilder.php │ │ ├── Common │ │ ├── EmptyLogger.php │ │ └── Exceptions │ │ │ ├── AlreadyExpiredException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── BadRequest400Exception.php │ │ │ ├── ClientErrorResponseException.php │ │ │ ├── Conflict409Exception.php │ │ │ ├── Curl │ │ │ ├── CouldNotConnectToHost.php │ │ │ ├── CouldNotResolveHostException.php │ │ │ └── OperationTimeoutException.php │ │ │ ├── ElasticsearchException.php │ │ │ ├── Forbidden403Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MaxRetriesException.php │ │ │ ├── Missing404Exception.php │ │ │ ├── NoDocumentsToGetException.php │ │ │ ├── NoNodesAvailableException.php │ │ │ ├── NoShardAvailableException.php │ │ │ ├── RequestTimeout408Exception.php │ │ │ ├── RoutingMissingException.php │ │ │ ├── RuntimeException.php │ │ │ ├── ScriptLangNotSupportedException.php │ │ │ ├── Serializer │ │ │ └── JsonErrorException.php │ │ │ ├── ServerErrorResponseException.php │ │ │ ├── TransportException.php │ │ │ └── UnexpectedValueException.php │ │ ├── ConnectionPool │ │ ├── AbstractConnectionPool.php │ │ ├── ConnectionPoolInterface.php │ │ ├── Selectors │ │ │ ├── RandomSelector.php │ │ │ ├── RoundRobinSelector.php │ │ │ ├── SelectorInterface.php │ │ │ └── StickyRoundRobinSelector.php │ │ ├── SimpleConnectionPool.php │ │ ├── SniffingConnectionPool.php │ │ ├── StaticConnectionPool.php │ │ └── StaticNoPingConnectionPool.php │ │ ├── Connections │ │ ├── Connection.php │ │ ├── ConnectionFactory.php │ │ ├── ConnectionFactoryInterface.php │ │ └── ConnectionInterface.php │ │ ├── Endpoints │ │ ├── AbstractEndpoint.php │ │ ├── Bulk.php │ │ ├── BulkEndpointInterface.php │ │ ├── Cat │ │ │ ├── Aliases.php │ │ │ ├── Allocation.php │ │ │ ├── Count.php │ │ │ ├── Fielddata.php │ │ │ ├── Health.php │ │ │ ├── Help.php │ │ │ ├── Indices.php │ │ │ ├── Master.php │ │ │ ├── NodeAttrs.php │ │ │ ├── Nodes.php │ │ │ ├── PendingTasks.php │ │ │ ├── Plugins.php │ │ │ ├── Recovery.php │ │ │ ├── Repositories.php │ │ │ ├── Segments.php │ │ │ ├── Shards.php │ │ │ ├── Snapshots.php │ │ │ ├── Tasks.php │ │ │ ├── Templates.php │ │ │ └── ThreadPool.php │ │ ├── ClearScroll.php │ │ ├── Cluster │ │ │ ├── AllocationExplain.php │ │ │ ├── Health.php │ │ │ ├── Nodes │ │ │ │ ├── AbstractNodesEndpoint.php │ │ │ │ ├── HotThreads.php │ │ │ │ ├── Info.php │ │ │ │ ├── Shutdown.php │ │ │ │ └── Stats.php │ │ │ ├── PendingTasks.php │ │ │ ├── Reroute.php │ │ │ ├── Settings │ │ │ │ ├── Get.php │ │ │ │ └── Put.php │ │ │ ├── State.php │ │ │ └── Stats.php │ │ ├── Count.php │ │ ├── CountPercolate.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── DeleteByQuery.php │ │ ├── Exists.php │ │ ├── Explain.php │ │ ├── FieldCaps.php │ │ ├── FieldStats.php │ │ ├── Get.php │ │ ├── Index.php │ │ ├── Indices │ │ │ ├── Alias │ │ │ │ ├── AbstractAliasEndpoint.php │ │ │ │ ├── Delete.php │ │ │ │ ├── Exists.php │ │ │ │ ├── Get.php │ │ │ │ └── Put.php │ │ │ ├── Aliases │ │ │ │ ├── Get.php │ │ │ │ └── Update.php │ │ │ ├── Analyze.php │ │ │ ├── Cache │ │ │ │ └── Clear.php │ │ │ ├── ClearCache.php │ │ │ ├── Close.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Exists.php │ │ │ ├── Exists │ │ │ │ └── Types.php │ │ │ ├── Field │ │ │ │ └── Get.php │ │ │ ├── Flush.php │ │ │ ├── ForceMerge.php │ │ │ ├── Gateway │ │ │ │ └── Snapshot.php │ │ │ ├── Get.php │ │ │ ├── Mapping │ │ │ │ ├── Delete.php │ │ │ │ ├── Get.php │ │ │ │ ├── GetField.php │ │ │ │ └── Put.php │ │ │ ├── Open.php │ │ │ ├── Recovery.php │ │ │ ├── Refresh.php │ │ │ ├── Rollover.php │ │ │ ├── Seal.php │ │ │ ├── Segments.php │ │ │ ├── Settings │ │ │ │ ├── Get.php │ │ │ │ └── Put.php │ │ │ ├── ShardStores.php │ │ │ ├── Shrink.php │ │ │ ├── Snapshotindex.php │ │ │ ├── Stats.php │ │ │ ├── Status.php │ │ │ ├── Template │ │ │ │ ├── AbstractTemplateEndpoint.php │ │ │ │ ├── Delete.php │ │ │ │ ├── Exists.php │ │ │ │ ├── Get.php │ │ │ │ └── Put.php │ │ │ ├── Type │ │ │ │ └── Exists.php │ │ │ ├── Upgrade │ │ │ │ ├── Get.php │ │ │ │ └── Post.php │ │ │ ├── Validate │ │ │ │ └── Query.php │ │ │ └── ValidateQuery.php │ │ ├── Info.php │ │ ├── Ingest │ │ │ ├── Pipeline │ │ │ │ ├── Delete.php │ │ │ │ ├── Get.php │ │ │ │ └── Put.php │ │ │ └── Simulate.php │ │ ├── MPercolate.php │ │ ├── MTermVectors.php │ │ ├── Mget.php │ │ ├── Msearch.php │ │ ├── MsearchTemplate.php │ │ ├── Percolate.php │ │ ├── Ping.php │ │ ├── Reindex.php │ │ ├── Remote │ │ │ └── Info.php │ │ ├── RenderSearchTemplate.php │ │ ├── Script │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ └── Put.php │ │ ├── Scroll.php │ │ ├── Search.php │ │ ├── SearchShards.php │ │ ├── SearchTemplate.php │ │ ├── Snapshot │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ ├── Repository │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── Get.php │ │ │ │ └── Verify.php │ │ │ ├── Restore.php │ │ │ └── Status.php │ │ ├── Source │ │ │ └── Get.php │ │ ├── Suggest.php │ │ ├── Tasks │ │ │ ├── Cancel.php │ │ │ ├── Get.php │ │ │ └── TasksList.php │ │ ├── Template │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ └── Put.php │ │ ├── TermVectors.php │ │ ├── Update.php │ │ └── UpdateByQuery.php │ │ ├── Helper │ │ └── Iterators │ │ │ ├── SearchHitIterator.php │ │ │ └── SearchResponseIterator.php │ │ ├── Namespaces │ │ ├── AbstractNamespace.php │ │ ├── BooleanRequestWrapper.php │ │ ├── CatNamespace.php │ │ ├── ClusterNamespace.php │ │ ├── IndicesNamespace.php │ │ ├── IngestNamespace.php │ │ ├── NamespaceBuilderInterface.php │ │ ├── NodesNamespace.php │ │ ├── RemoteNamespace.php │ │ ├── SnapshotNamespace.php │ │ └── TasksNamespace.php │ │ ├── Serializers │ │ ├── ArrayToJSONSerializer.php │ │ ├── EverythingToJSONSerializer.php │ │ ├── SerializerInterface.php │ │ └── SmartSerializer.php │ │ └── Transport.php │ ├── tests │ └── bootstrap.php │ ├── travis │ ├── download_and_run_es.sh │ └── generate_docs.sh │ └── util │ ├── EnsureClusterAlive.php │ ├── RestSpecRunner.php │ ├── SpecParser.php │ ├── docsConfig.php │ ├── docstheme │ ├── layout │ │ └── base.twig │ ├── macros.twig │ ├── manifest.yml │ └── pages │ │ ├── class.twig │ │ ├── classes.twig │ │ ├── interfaces.twig │ │ └── namespaces.twig │ └── templates │ └── endpoint.twig ├── ezyang └── htmlpurifier │ ├── CREDITS │ ├── INSTALL │ ├── INSTALL.fr.utf8 │ ├── LICENSE │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── VERSION │ ├── WHATSNEW │ ├── WYSIWYG │ ├── composer.json │ ├── extras │ ├── ConfigDoc │ │ └── HTMLXSLTProcessor.php │ ├── FSTools.php │ ├── FSTools │ │ └── File.php │ ├── HTMLPurifierExtras.auto.php │ ├── HTMLPurifierExtras.autoload-legacy.php │ ├── HTMLPurifierExtras.autoload.php │ ├── HTMLPurifierExtras.php │ └── README │ ├── library │ ├── HTMLPurifier.auto.php │ ├── HTMLPurifier.autoload-legacy.php │ ├── HTMLPurifier.autoload.php │ ├── HTMLPurifier.composer.php │ ├── HTMLPurifier.func.php │ ├── HTMLPurifier.includes.php │ ├── HTMLPurifier.kses.php │ ├── HTMLPurifier.path.php │ ├── HTMLPurifier.php │ ├── HTMLPurifier.safe-includes.php │ └── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Comment.php │ │ ├── Element.php │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ ├── nntp.php │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php │ ├── maintenance │ ├── PH5P.patch │ ├── PH5P.php │ ├── add-vimline.php │ ├── common.php │ ├── compile-doxygen.sh │ ├── config-scanner.php │ ├── flush-definition-cache.php │ ├── flush.sh │ ├── generate-entity-file.php │ ├── generate-includes.php │ ├── generate-ph5p-patch.php │ ├── generate-schema-cache.php │ ├── generate-standalone.php │ ├── merge-library.php │ ├── old-extract-schema.php │ ├── old-remove-require-once.php │ ├── old-remove-schema-def.php │ ├── regenerate-docs.sh │ ├── remove-trailing-whitespace.php │ └── rename-config.php │ ├── package.php │ ├── phpdoc.ini │ ├── plugins │ ├── modx.txt │ └── phorum │ │ ├── .gitignore │ │ ├── Changelog │ │ ├── INSTALL │ │ ├── README │ │ ├── config.default.php │ │ ├── htmlpurifier.php │ │ ├── info.txt │ │ ├── init-config.php │ │ ├── migrate.bbcode.php │ │ ├── settings.php │ │ └── settings │ │ ├── form.php │ │ ├── migrate-sigs-form.php │ │ ├── migrate-sigs.php │ │ └── save.php │ ├── test-settings.sample.php │ ├── test-settings.travis.php │ ├── tests │ └── path2class.func.php │ └── update-for-release ├── facebook └── webdriver │ ├── .coveralls.yml │ ├── .php_cs.dist │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── lib │ ├── AbstractWebDriverCheckboxOrRadio.php │ ├── Chrome │ │ ├── ChromeDriver.php │ │ ├── ChromeDriverService.php │ │ └── ChromeOptions.php │ ├── Cookie.php │ ├── Exception │ │ ├── ElementNotSelectableException.php │ │ ├── ElementNotVisibleException.php │ │ ├── ExpectedException.php │ │ ├── IMEEngineActivationFailedException.php │ │ ├── IMENotAvailableException.php │ │ ├── IndexOutOfBoundsException.php │ │ ├── InvalidCookieDomainException.php │ │ ├── InvalidCoordinatesException.php │ │ ├── InvalidElementStateException.php │ │ ├── InvalidSelectorException.php │ │ ├── MoveTargetOutOfBoundsException.php │ │ ├── NoAlertOpenException.php │ │ ├── NoCollectionException.php │ │ ├── NoScriptResultException.php │ │ ├── NoStringException.php │ │ ├── NoStringLengthException.php │ │ ├── NoStringWrapperException.php │ │ ├── NoSuchCollectionException.php │ │ ├── NoSuchDocumentException.php │ │ ├── NoSuchDriverException.php │ │ ├── NoSuchElementException.php │ │ ├── NoSuchFrameException.php │ │ ├── NoSuchWindowException.php │ │ ├── NullPointerException.php │ │ ├── ScriptTimeoutException.php │ │ ├── SessionNotCreatedException.php │ │ ├── StaleElementReferenceException.php │ │ ├── TimeOutException.php │ │ ├── UnableToSetCookieException.php │ │ ├── UnexpectedAlertOpenException.php │ │ ├── UnexpectedJavascriptException.php │ │ ├── UnexpectedTagNameException.php │ │ ├── UnknownCommandException.php │ │ ├── UnknownServerException.php │ │ ├── UnrecognizedExceptionException.php │ │ ├── UnsupportedOperationException.php │ │ ├── WebDriverCurlException.php │ │ ├── WebDriverException.php │ │ └── XPathLookupException.php │ ├── Firefox │ │ ├── FirefoxDriver.php │ │ ├── FirefoxPreferences.php │ │ └── FirefoxProfile.php │ ├── Interactions │ │ ├── Internal │ │ │ ├── WebDriverButtonReleaseAction.php │ │ │ ├── WebDriverClickAction.php │ │ │ ├── WebDriverClickAndHoldAction.php │ │ │ ├── WebDriverContextClickAction.php │ │ │ ├── WebDriverCoordinates.php │ │ │ ├── WebDriverDoubleClickAction.php │ │ │ ├── WebDriverKeyDownAction.php │ │ │ ├── WebDriverKeyUpAction.php │ │ │ ├── WebDriverKeysRelatedAction.php │ │ │ ├── WebDriverMouseAction.php │ │ │ ├── WebDriverMouseMoveAction.php │ │ │ ├── WebDriverMoveToOffsetAction.php │ │ │ ├── WebDriverSendKeysAction.php │ │ │ └── WebDriverSingleKeyAction.php │ │ ├── Touch │ │ │ ├── WebDriverDoubleTapAction.php │ │ │ ├── WebDriverDownAction.php │ │ │ ├── WebDriverFlickAction.php │ │ │ ├── WebDriverFlickFromElementAction.php │ │ │ ├── WebDriverLongPressAction.php │ │ │ ├── WebDriverMoveAction.php │ │ │ ├── WebDriverScrollAction.php │ │ │ ├── WebDriverScrollFromElementAction.php │ │ │ ├── WebDriverTapAction.php │ │ │ ├── WebDriverTouchAction.php │ │ │ └── WebDriverTouchScreen.php │ │ ├── WebDriverActions.php │ │ ├── WebDriverCompositeAction.php │ │ └── WebDriverTouchActions.php │ ├── Internal │ │ └── WebDriverLocatable.php │ ├── JavaScriptExecutor.php │ ├── Net │ │ └── URLChecker.php │ ├── Remote │ │ ├── DesiredCapabilities.php │ │ ├── DriverCommand.php │ │ ├── ExecuteMethod.php │ │ ├── FileDetector.php │ │ ├── HttpCommandExecutor.php │ │ ├── LocalFileDetector.php │ │ ├── RemoteExecuteMethod.php │ │ ├── RemoteKeyboard.php │ │ ├── RemoteMouse.php │ │ ├── RemoteTargetLocator.php │ │ ├── RemoteTouchScreen.php │ │ ├── RemoteWebDriver.php │ │ ├── RemoteWebElement.php │ │ ├── Service │ │ │ ├── DriverCommandExecutor.php │ │ │ └── DriverService.php │ │ ├── UselessFileDetector.php │ │ ├── WebDriverBrowserType.php │ │ ├── WebDriverCapabilityType.php │ │ ├── WebDriverCommand.php │ │ └── WebDriverResponse.php │ ├── Support │ │ ├── Events │ │ │ ├── EventFiringWebDriver.php │ │ │ ├── EventFiringWebDriverNavigation.php │ │ │ └── EventFiringWebElement.php │ │ └── XPathEscaper.php │ ├── WebDriver.php │ ├── WebDriverAction.php │ ├── WebDriverAlert.php │ ├── WebDriverBy.php │ ├── WebDriverCapabilities.php │ ├── WebDriverCheckboxes.php │ ├── WebDriverCommandExecutor.php │ ├── WebDriverDimension.php │ ├── WebDriverDispatcher.php │ ├── WebDriverElement.php │ ├── WebDriverEventListener.php │ ├── WebDriverExpectedCondition.php │ ├── WebDriverHasInputDevices.php │ ├── WebDriverKeyboard.php │ ├── WebDriverKeys.php │ ├── WebDriverMouse.php │ ├── WebDriverNavigation.php │ ├── WebDriverOptions.php │ ├── WebDriverPlatform.php │ ├── WebDriverPoint.php │ ├── WebDriverRadios.php │ ├── WebDriverSearchContext.php │ ├── WebDriverSelect.php │ ├── WebDriverSelectInterface.php │ ├── WebDriverTargetLocator.php │ ├── WebDriverTimeouts.php │ ├── WebDriverUpAction.php │ ├── WebDriverWait.php │ └── WebDriverWindow.php │ ├── logs │ └── .gitkeep │ └── phpstan.neon ├── filp └── whoops │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── composer.json │ └── src │ └── Whoops │ ├── Exception │ ├── ErrorException.php │ ├── Formatter.php │ ├── Frame.php │ ├── FrameCollection.php │ └── Inspector.php │ ├── Handler │ ├── CallbackHandler.php │ ├── Handler.php │ ├── HandlerInterface.php │ ├── JsonResponseHandler.php │ ├── PlainTextHandler.php │ ├── PrettyPageHandler.php │ └── XmlResponseHandler.php │ ├── Resources │ ├── css │ │ └── whoops.base.css │ ├── js │ │ ├── clipboard.min.js │ │ ├── prettify.min.js │ │ ├── whoops.base.js │ │ └── zepto.min.js │ └── views │ │ ├── env_details.html.php │ │ ├── frame_code.html.php │ │ ├── frame_list.html.php │ │ ├── frames_container.html.php │ │ ├── frames_description.html.php │ │ ├── header.html.php │ │ ├── header_outer.html.php │ │ ├── layout.html.php │ │ ├── panel_details.html.php │ │ ├── panel_details_outer.html.php │ │ ├── panel_left.html.php │ │ └── panel_left_outer.html.php │ ├── Run.php │ ├── RunInterface.php │ └── Util │ ├── HtmlDumperOutput.php │ ├── Misc.php │ ├── SystemFacade.php │ └── TemplateHelper.php ├── firebase └── php-jwt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── BeforeValidException.php │ ├── ExpiredException.php │ ├── JWK.php │ ├── JWT.php │ └── SignatureInvalidException.php ├── flow └── jsonpath │ ├── .gitignore │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ └── Flow │ │ └── JSONPath │ │ ├── AccessHelper.php │ │ ├── Filters │ │ ├── AbstractFilter.php │ │ ├── IndexFilter.php │ │ ├── IndexesFilter.php │ │ ├── QueryMatchFilter.php │ │ ├── QueryResultFilter.php │ │ ├── RecursiveFilter.php │ │ └── SliceFilter.php │ │ ├── JSONPath.php │ │ ├── JSONPathException.php │ │ ├── JSONPathLexer.php │ │ └── JSONPathToken.php │ └── tests │ ├── JSONPathArrayAccessTest.php │ ├── JSONPathBenchmarks.php │ ├── JSONPathLexerTest.php │ └── JSONPathTest.php ├── friendsofphp └── php-cs-fixer │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.rst │ ├── UPGRADE.md │ ├── ci-integration.sh │ ├── composer.json │ ├── doc │ ├── COOKBOOK-FIXERS.md │ ├── checkstyle.xsd │ ├── junit-10.xsd │ ├── schema.json │ └── xml.xsd │ ├── php-cs-fixer │ ├── src │ ├── AbstractAlignFixerHelper.php │ ├── AbstractDoctrineAnnotationFixer.php │ ├── AbstractFixer.php │ ├── AbstractFopenFlagFixer.php │ ├── AbstractFunctionReferenceFixer.php │ ├── AbstractLinesBeforeNamespaceFixer.php │ ├── AbstractNoUselessElseFixer.php │ ├── AbstractPhpdocTypesFixer.php │ ├── AbstractProxyFixer.php │ ├── AbstractPsrAutoloadingFixer.php │ ├── Cache │ │ ├── Cache.php │ │ ├── CacheInterface.php │ │ ├── CacheManagerInterface.php │ │ ├── Directory.php │ │ ├── DirectoryInterface.php │ │ ├── FileCacheManager.php │ │ ├── FileHandler.php │ │ ├── FileHandlerInterface.php │ │ ├── NullCacheManager.php │ │ ├── Signature.php │ │ └── SignatureInterface.php │ ├── Config.php │ ├── ConfigInterface.php │ ├── ConfigurationException │ │ ├── InvalidConfigurationException.php │ │ ├── InvalidFixerConfigurationException.php │ │ ├── InvalidForEnvFixerConfigurationException.php │ │ └── RequiredFixerConfigurationException.php │ ├── Console │ │ ├── Application.php │ │ ├── Command │ │ │ ├── DescribeCommand.php │ │ │ ├── DescribeNameNotFoundException.php │ │ │ ├── FixCommand.php │ │ │ ├── FixCommandExitStatusCalculator.php │ │ │ ├── HelpCommand.php │ │ │ ├── ReadmeCommand.php │ │ │ └── SelfUpdateCommand.php │ │ ├── ConfigurationResolver.php │ │ ├── Output │ │ │ ├── ErrorOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── ProcessOutput.php │ │ │ └── ProcessOutputInterface.php │ │ ├── SelfUpdate │ │ │ ├── GithubClient.php │ │ │ ├── GithubClientInterface.php │ │ │ ├── NewVersionChecker.php │ │ │ └── NewVersionCheckerInterface.php │ │ └── WarningsDetector.php │ ├── Differ │ │ ├── DiffConsoleFormatter.php │ │ ├── DifferInterface.php │ │ ├── FullDiffer.php │ │ ├── NullDiffer.php │ │ ├── SebastianBergmannDiffer.php │ │ ├── SebastianBergmannShortDiffer.php │ │ └── UnifiedDiffer.php │ ├── DocBlock │ │ ├── Annotation.php │ │ ├── DocBlock.php │ │ ├── Line.php │ │ ├── ShortDescription.php │ │ ├── Tag.php │ │ └── TagComparator.php │ ├── Doctrine │ │ └── Annotation │ │ │ ├── Token.php │ │ │ └── Tokens.php │ ├── Error │ │ ├── Error.php │ │ └── ErrorsManager.php │ ├── Event │ │ └── Event.php │ ├── FileReader.php │ ├── FileRemoval.php │ ├── Finder.php │ ├── Fixer │ │ ├── Alias │ │ │ ├── BacktickToShellExecFixer.php │ │ │ ├── EregToPregFixer.php │ │ │ ├── MbStrFunctionsFixer.php │ │ │ ├── NoAliasFunctionsFixer.php │ │ │ ├── NoMixedEchoPrintFixer.php │ │ │ ├── PowToExponentiationFixer.php │ │ │ ├── RandomApiMigrationFixer.php │ │ │ └── SetTypeToCastFixer.php │ │ ├── ArrayNotation │ │ │ ├── ArraySyntaxFixer.php │ │ │ ├── NoMultilineWhitespaceAroundDoubleArrowFixer.php │ │ │ ├── NoTrailingCommaInSinglelineArrayFixer.php │ │ │ ├── NoWhitespaceBeforeCommaInArrayFixer.php │ │ │ ├── NormalizeIndexBraceFixer.php │ │ │ ├── TrailingCommaInMultilineArrayFixer.php │ │ │ ├── TrimArraySpacesFixer.php │ │ │ └── WhitespaceAfterCommaInArrayFixer.php │ │ ├── Basic │ │ │ ├── BracesFixer.php │ │ │ ├── EncodingFixer.php │ │ │ ├── NonPrintableCharacterFixer.php │ │ │ ├── Psr0Fixer.php │ │ │ └── Psr4Fixer.php │ │ ├── Casing │ │ │ ├── ConstantCaseFixer.php │ │ │ ├── LowercaseConstantsFixer.php │ │ │ ├── LowercaseKeywordsFixer.php │ │ │ ├── LowercaseStaticReferenceFixer.php │ │ │ ├── MagicConstantCasingFixer.php │ │ │ ├── MagicMethodCasingFixer.php │ │ │ ├── NativeFunctionCasingFixer.php │ │ │ └── NativeFunctionTypeDeclarationCasingFixer.php │ │ ├── CastNotation │ │ │ ├── CastSpacesFixer.php │ │ │ ├── LowercaseCastFixer.php │ │ │ ├── ModernizeTypesCastingFixer.php │ │ │ ├── NoShortBoolCastFixer.php │ │ │ ├── NoUnsetCastFixer.php │ │ │ └── ShortScalarCastFixer.php │ │ ├── ClassNotation │ │ │ ├── ClassAttributesSeparationFixer.php │ │ │ ├── ClassDefinitionFixer.php │ │ │ ├── FinalClassFixer.php │ │ │ ├── FinalInternalClassFixer.php │ │ │ ├── FinalPublicMethodForAbstractClassFixer.php │ │ │ ├── FinalStaticAccessFixer.php │ │ │ ├── MethodSeparationFixer.php │ │ │ ├── NoBlankLinesAfterClassOpeningFixer.php │ │ │ ├── NoNullPropertyInitializationFixer.php │ │ │ ├── NoPhp4ConstructorFixer.php │ │ │ ├── NoUnneededFinalMethodFixer.php │ │ │ ├── OrderedClassElementsFixer.php │ │ │ ├── OrderedInterfacesFixer.php │ │ │ ├── ProtectedToPrivateFixer.php │ │ │ ├── SelfAccessorFixer.php │ │ │ ├── SelfStaticAccessorFixer.php │ │ │ ├── SingleClassElementPerStatementFixer.php │ │ │ ├── SingleTraitInsertPerStatementFixer.php │ │ │ └── VisibilityRequiredFixer.php │ │ ├── ClassUsage │ │ │ └── DateTimeImmutableFixer.php │ │ ├── Comment │ │ │ ├── CommentToPhpdocFixer.php │ │ │ ├── HashToSlashCommentFixer.php │ │ │ ├── HeaderCommentFixer.php │ │ │ ├── MultilineCommentOpeningClosingFixer.php │ │ │ ├── NoEmptyCommentFixer.php │ │ │ ├── NoTrailingWhitespaceInCommentFixer.php │ │ │ └── SingleLineCommentStyleFixer.php │ │ ├── ConfigurableFixerInterface.php │ │ ├── ConfigurationDefinitionFixerInterface.php │ │ ├── ConstantNotation │ │ │ └── NativeConstantInvocationFixer.php │ │ ├── ControlStructure │ │ │ ├── ElseifFixer.php │ │ │ ├── IncludeFixer.php │ │ │ ├── NoAlternativeSyntaxFixer.php │ │ │ ├── NoBreakCommentFixer.php │ │ │ ├── NoSuperfluousElseifFixer.php │ │ │ ├── NoTrailingCommaInListCallFixer.php │ │ │ ├── NoUnneededControlParenthesesFixer.php │ │ │ ├── NoUnneededCurlyBracesFixer.php │ │ │ ├── NoUselessElseFixer.php │ │ │ ├── SwitchCaseSemicolonToColonFixer.php │ │ │ ├── SwitchCaseSpaceFixer.php │ │ │ └── YodaStyleFixer.php │ │ ├── DefinedFixerInterface.php │ │ ├── DeprecatedFixerInterface.php │ │ ├── DoctrineAnnotation │ │ │ ├── DoctrineAnnotationArrayAssignmentFixer.php │ │ │ ├── DoctrineAnnotationBracesFixer.php │ │ │ ├── DoctrineAnnotationIndentationFixer.php │ │ │ └── DoctrineAnnotationSpacesFixer.php │ │ ├── FixerInterface.php │ │ ├── FunctionNotation │ │ │ ├── CombineNestedDirnameFixer.php │ │ │ ├── FopenFlagOrderFixer.php │ │ │ ├── FopenFlagsFixer.php │ │ │ ├── FunctionDeclarationFixer.php │ │ │ ├── FunctionTypehintSpaceFixer.php │ │ │ ├── ImplodeCallFixer.php │ │ │ ├── MethodArgumentSpaceFixer.php │ │ │ ├── NativeFunctionInvocationFixer.php │ │ │ ├── NoSpacesAfterFunctionNameFixer.php │ │ │ ├── NoUnreachableDefaultArgumentValueFixer.php │ │ │ ├── NullableTypeDeclarationForDefaultNullValueFixer.php │ │ │ ├── PhpdocToParamTypeFixer.php │ │ │ ├── PhpdocToReturnTypeFixer.php │ │ │ ├── ReturnTypeDeclarationFixer.php │ │ │ ├── SingleLineThrowFixer.php │ │ │ ├── StaticLambdaFixer.php │ │ │ └── VoidReturnFixer.php │ │ ├── Import │ │ │ ├── FullyQualifiedStrictTypesFixer.php │ │ │ ├── GlobalNamespaceImportFixer.php │ │ │ ├── NoLeadingImportSlashFixer.php │ │ │ ├── NoUnusedImportsFixer.php │ │ │ ├── OrderedImportsFixer.php │ │ │ ├── SingleImportPerStatementFixer.php │ │ │ └── SingleLineAfterImportsFixer.php │ │ ├── LanguageConstruct │ │ │ ├── ClassKeywordRemoveFixer.php │ │ │ ├── CombineConsecutiveIssetsFixer.php │ │ │ ├── CombineConsecutiveUnsetsFixer.php │ │ │ ├── DeclareEqualNormalizeFixer.php │ │ │ ├── DirConstantFixer.php │ │ │ ├── ErrorSuppressionFixer.php │ │ │ ├── ExplicitIndirectVariableFixer.php │ │ │ ├── FunctionToConstantFixer.php │ │ │ ├── IsNullFixer.php │ │ │ ├── NoUnsetOnPropertyFixer.php │ │ │ └── SilencedDeprecationErrorFixer.php │ │ ├── ListNotation │ │ │ └── ListSyntaxFixer.php │ │ ├── NamespaceNotation │ │ │ ├── BlankLineAfterNamespaceFixer.php │ │ │ ├── NoBlankLinesBeforeNamespaceFixer.php │ │ │ ├── NoLeadingNamespaceWhitespaceFixer.php │ │ │ └── SingleBlankLineBeforeNamespaceFixer.php │ │ ├── Naming │ │ │ └── NoHomoglyphNamesFixer.php │ │ ├── Operator │ │ │ ├── AlignDoubleArrowFixerHelper.php │ │ │ ├── AlignEqualsFixerHelper.php │ │ │ ├── BinaryOperatorSpacesFixer.php │ │ │ ├── ConcatSpaceFixer.php │ │ │ ├── IncrementStyleFixer.php │ │ │ ├── LogicalOperatorsFixer.php │ │ │ ├── NewWithBracesFixer.php │ │ │ ├── NotOperatorWithSpaceFixer.php │ │ │ ├── NotOperatorWithSuccessorSpaceFixer.php │ │ │ ├── ObjectOperatorWithoutWhitespaceFixer.php │ │ │ ├── PreIncrementFixer.php │ │ │ ├── StandardizeIncrementFixer.php │ │ │ ├── StandardizeNotEqualsFixer.php │ │ │ ├── TernaryOperatorSpacesFixer.php │ │ │ ├── TernaryToNullCoalescingFixer.php │ │ │ └── UnaryOperatorSpacesFixer.php │ │ ├── PhpTag │ │ │ ├── BlankLineAfterOpeningTagFixer.php │ │ │ ├── FullOpeningTagFixer.php │ │ │ ├── LinebreakAfterOpeningTagFixer.php │ │ │ ├── NoClosingTagFixer.php │ │ │ └── NoShortEchoTagFixer.php │ │ ├── PhpUnit │ │ │ ├── PhpUnitConstructFixer.php │ │ │ ├── PhpUnitDedicateAssertFixer.php │ │ │ ├── PhpUnitDedicateAssertInternalTypeFixer.php │ │ │ ├── PhpUnitExpectationFixer.php │ │ │ ├── PhpUnitFqcnAnnotationFixer.php │ │ │ ├── PhpUnitInternalClassFixer.php │ │ │ ├── PhpUnitMethodCasingFixer.php │ │ │ ├── PhpUnitMockFixer.php │ │ │ ├── PhpUnitMockShortWillReturnFixer.php │ │ │ ├── PhpUnitNamespacedFixer.php │ │ │ ├── PhpUnitNoExpectationAnnotationFixer.php │ │ │ ├── PhpUnitOrderedCoversFixer.php │ │ │ ├── PhpUnitSetUpTearDownVisibilityFixer.php │ │ │ ├── PhpUnitSizeClassFixer.php │ │ │ ├── PhpUnitStrictFixer.php │ │ │ ├── PhpUnitTargetVersion.php │ │ │ ├── PhpUnitTestAnnotationFixer.php │ │ │ ├── PhpUnitTestCaseStaticMethodCallsFixer.php │ │ │ └── PhpUnitTestClassRequiresCoversFixer.php │ │ ├── Phpdoc │ │ │ ├── AlignMultilineCommentFixer.php │ │ │ ├── GeneralPhpdocAnnotationRemoveFixer.php │ │ │ ├── NoBlankLinesAfterPhpdocFixer.php │ │ │ ├── NoEmptyPhpdocFixer.php │ │ │ ├── NoSuperfluousPhpdocTagsFixer.php │ │ │ ├── PhpdocAddMissingParamAnnotationFixer.php │ │ │ ├── PhpdocAlignFixer.php │ │ │ ├── PhpdocAnnotationWithoutDotFixer.php │ │ │ ├── PhpdocIndentFixer.php │ │ │ ├── PhpdocInlineTagFixer.php │ │ │ ├── PhpdocLineSpanFixer.php │ │ │ ├── PhpdocNoAccessFixer.php │ │ │ ├── PhpdocNoAliasTagFixer.php │ │ │ ├── PhpdocNoEmptyReturnFixer.php │ │ │ ├── PhpdocNoPackageFixer.php │ │ │ ├── PhpdocNoUselessInheritdocFixer.php │ │ │ ├── PhpdocOrderFixer.php │ │ │ ├── PhpdocReturnSelfReferenceFixer.php │ │ │ ├── PhpdocScalarFixer.php │ │ │ ├── PhpdocSeparationFixer.php │ │ │ ├── PhpdocSingleLineVarSpacingFixer.php │ │ │ ├── PhpdocSummaryFixer.php │ │ │ ├── PhpdocToCommentFixer.php │ │ │ ├── PhpdocTrimConsecutiveBlankLineSeparationFixer.php │ │ │ ├── PhpdocTrimFixer.php │ │ │ ├── PhpdocTypesFixer.php │ │ │ ├── PhpdocTypesOrderFixer.php │ │ │ ├── PhpdocVarAnnotationCorrectOrderFixer.php │ │ │ └── PhpdocVarWithoutNameFixer.php │ │ ├── ReturnNotation │ │ │ ├── BlankLineBeforeReturnFixer.php │ │ │ ├── NoUselessReturnFixer.php │ │ │ ├── ReturnAssignmentFixer.php │ │ │ └── SimplifiedNullReturnFixer.php │ │ ├── Semicolon │ │ │ ├── MultilineWhitespaceBeforeSemicolonsFixer.php │ │ │ ├── NoEmptyStatementFixer.php │ │ │ ├── NoMultilineWhitespaceBeforeSemicolonsFixer.php │ │ │ ├── NoSinglelineWhitespaceBeforeSemicolonsFixer.php │ │ │ ├── SemicolonAfterInstructionFixer.php │ │ │ └── SpaceAfterSemicolonFixer.php │ │ ├── Strict │ │ │ ├── DeclareStrictTypesFixer.php │ │ │ ├── StrictComparisonFixer.php │ │ │ └── StrictParamFixer.php │ │ ├── StringNotation │ │ │ ├── EscapeImplicitBackslashesFixer.php │ │ │ ├── ExplicitStringVariableFixer.php │ │ │ ├── HeredocToNowdocFixer.php │ │ │ ├── NoBinaryStringFixer.php │ │ │ ├── SimpleToComplexStringVariableFixer.php │ │ │ ├── SingleQuoteFixer.php │ │ │ └── StringLineEndingFixer.php │ │ ├── Whitespace │ │ │ ├── ArrayIndentationFixer.php │ │ │ ├── BlankLineBeforeStatementFixer.php │ │ │ ├── CompactNullableTypehintFixer.php │ │ │ ├── HeredocIndentationFixer.php │ │ │ ├── IndentationTypeFixer.php │ │ │ ├── LineEndingFixer.php │ │ │ ├── MethodChainingIndentationFixer.php │ │ │ ├── NoExtraBlankLinesFixer.php │ │ │ ├── NoExtraConsecutiveBlankLinesFixer.php │ │ │ ├── NoSpacesAroundOffsetFixer.php │ │ │ ├── NoSpacesInsideParenthesisFixer.php │ │ │ ├── NoTrailingWhitespaceFixer.php │ │ │ ├── NoWhitespaceInBlankLineFixer.php │ │ │ └── SingleBlankLineAtEofFixer.php │ │ └── WhitespacesAwareFixerInterface.php │ ├── FixerConfiguration │ │ ├── AliasedFixerOption.php │ │ ├── AliasedFixerOptionBuilder.php │ │ ├── AllowedValueSubset.php │ │ ├── DeprecatedFixerOption.php │ │ ├── DeprecatedFixerOptionInterface.php │ │ ├── FixerConfigurationResolver.php │ │ ├── FixerConfigurationResolverInterface.php │ │ ├── FixerConfigurationResolverRootless.php │ │ ├── FixerOption.php │ │ ├── FixerOptionBuilder.php │ │ ├── FixerOptionInterface.php │ │ └── InvalidOptionsForEnvException.php │ ├── FixerDefinition │ │ ├── CodeSample.php │ │ ├── CodeSampleInterface.php │ │ ├── FileSpecificCodeSample.php │ │ ├── FileSpecificCodeSampleInterface.php │ │ ├── FixerDefinition.php │ │ ├── FixerDefinitionInterface.php │ │ ├── VersionSpecificCodeSample.php │ │ ├── VersionSpecificCodeSampleInterface.php │ │ ├── VersionSpecification.php │ │ └── VersionSpecificationInterface.php │ ├── FixerFactory.php │ ├── FixerFileProcessedEvent.php │ ├── FixerNameValidator.php │ ├── Indicator │ │ └── PhpUnitTestCaseIndicator.php │ ├── Linter │ │ ├── CachingLinter.php │ │ ├── Linter.php │ │ ├── LinterInterface.php │ │ ├── LintingException.php │ │ ├── LintingResultInterface.php │ │ ├── ProcessLinter.php │ │ ├── ProcessLinterProcessBuilder.php │ │ ├── ProcessLintingResult.php │ │ ├── TokenizerLinter.php │ │ ├── TokenizerLintingResult.php │ │ └── UnavailableLinterException.php │ ├── PharChecker.php │ ├── PharCheckerInterface.php │ ├── Preg.php │ ├── PregException.php │ ├── Report │ │ ├── CheckstyleReporter.php │ │ ├── GitlabReporter.php │ │ ├── JsonReporter.php │ │ ├── JunitReporter.php │ │ ├── ReportSummary.php │ │ ├── ReporterFactory.php │ │ ├── ReporterInterface.php │ │ ├── TextReporter.php │ │ └── XmlReporter.php │ ├── RuleSet.php │ ├── RuleSetInterface.php │ ├── Runner │ │ ├── FileCachingLintingIterator.php │ │ ├── FileFilterIterator.php │ │ ├── FileLintingIterator.php │ │ └── Runner.php │ ├── StdinFileInfo.php │ ├── Test │ │ ├── AbstractFixerTestCase.php │ │ ├── AbstractIntegrationTestCase.php │ │ ├── AccessibleObject.php │ │ └── IntegrationCase.php │ ├── Tokenizer │ │ ├── AbstractTransformer.php │ │ ├── Analyzer │ │ │ ├── Analysis │ │ │ │ ├── ArgumentAnalysis.php │ │ │ │ ├── NamespaceAnalysis.php │ │ │ │ ├── NamespaceUseAnalysis.php │ │ │ │ ├── StartEndTokenAwareAnalysis.php │ │ │ │ └── TypeAnalysis.php │ │ │ ├── ArgumentsAnalyzer.php │ │ │ ├── BlocksAnalyzer.php │ │ │ ├── ClassyAnalyzer.php │ │ │ ├── CommentsAnalyzer.php │ │ │ ├── FunctionsAnalyzer.php │ │ │ ├── NamespaceUsesAnalyzer.php │ │ │ └── NamespacesAnalyzer.php │ │ ├── CT.php │ │ ├── CodeHasher.php │ │ ├── Generator │ │ │ └── NamespacedStringTokenGenerator.php │ │ ├── Resolver │ │ │ └── TypeShortNameResolver.php │ │ ├── Token.php │ │ ├── Tokens.php │ │ ├── TokensAnalyzer.php │ │ ├── Transformer │ │ │ ├── ArrayTypehintTransformer.php │ │ │ ├── BraceClassInstantiationTransformer.php │ │ │ ├── ClassConstantTransformer.php │ │ │ ├── CurlyBraceTransformer.php │ │ │ ├── ImportTransformer.php │ │ │ ├── NamespaceOperatorTransformer.php │ │ │ ├── NullableTypeTransformer.php │ │ │ ├── ReturnRefTransformer.php │ │ │ ├── SquareBraceTransformer.php │ │ │ ├── TypeAlternationTransformer.php │ │ │ ├── TypeColonTransformer.php │ │ │ ├── UseTransformer.php │ │ │ └── WhitespacyCommentTransformer.php │ │ ├── TransformerInterface.php │ │ └── Transformers.php │ ├── ToolInfo.php │ ├── ToolInfoInterface.php │ ├── Utils.php │ ├── WhitespacesFixerConfig.php │ └── WordMatcher.php │ └── tests │ ├── Test │ ├── AbstractFixerTestCase.php │ ├── AbstractIntegrationCaseFactory.php │ ├── AbstractIntegrationTestCase.php │ ├── Assert │ │ └── AssertTokensTrait.php │ ├── IntegrationCase.php │ ├── IntegrationCaseFactory.php │ ├── IntegrationCaseFactoryInterface.php │ ├── InternalIntegrationCaseFactory.php │ └── IsIdenticalConstraint.php │ └── TestCase.php ├── fzaninotto └── faker │ ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.md │ ├── .travis │ └── xdebug.sh │ ├── CHANGELOG.md │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ ├── Faker │ ├── Calculator │ │ ├── Ean.php │ │ ├── Iban.php │ │ ├── Inn.php │ │ ├── Luhn.php │ │ └── TCNo.php │ ├── DefaultGenerator.php │ ├── Documentor.php │ ├── Factory.php │ ├── Generator.php │ ├── Guesser │ │ └── Name.php │ ├── ORM │ │ ├── CakePHP │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ │ ├── Doctrine │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ │ ├── Mandango │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ │ ├── Propel │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ │ ├── Propel2 │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ │ └── Spot │ │ │ ├── ColumnTypeGuesser.php │ │ │ ├── EntityPopulator.php │ │ │ └── Populator.php │ ├── Provider │ │ ├── Address.php │ │ ├── Barcode.php │ │ ├── Base.php │ │ ├── Biased.php │ │ ├── Color.php │ │ ├── Company.php │ │ ├── DateTime.php │ │ ├── File.php │ │ ├── HtmlLorem.php │ │ ├── Image.php │ │ ├── Internet.php │ │ ├── Lorem.php │ │ ├── Miscellaneous.php │ │ ├── Payment.php │ │ ├── Person.php │ │ ├── PhoneNumber.php │ │ ├── Text.php │ │ ├── UserAgent.php │ │ ├── Uuid.php │ │ ├── ar_JO │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── Text.php │ │ ├── ar_SA │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── Text.php │ │ ├── at_AT │ │ │ └── Payment.php │ │ ├── bg_BG │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── bn_BD │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Utils.php │ │ ├── cs_CZ │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── da_DK │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── de_AT │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── de_CH │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── de_DE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── el_CY │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── el_GR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── en_AU │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── en_CA │ │ │ ├── Address.php │ │ │ └── PhoneNumber.php │ │ ├── en_GB │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── en_HK │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── en_IN │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── en_NG │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── en_NZ │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ ├── en_PH │ │ │ ├── Address.php │ │ │ └── PhoneNumber.php │ │ ├── en_SG │ │ │ ├── Address.php │ │ │ └── PhoneNumber.php │ │ ├── en_UG │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── en_US │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── en_ZA │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── es_AR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── es_ES │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── es_PE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── es_VE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── et_EE │ │ │ └── Person.php │ │ ├── fa_IR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── fi_FI │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── fr_BE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── fr_CA │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Person.php │ │ │ └── Text.php │ │ ├── fr_CH │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── fr_FR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── he_IL │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── hr_HR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── hu_HU │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── hy_AM │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── id_ID │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── is_IS │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── it_CH │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── it_IT │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── ja_JP │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── ka_GE │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── kk_KZ │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── ko_KR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── lt_LT │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── lv_LV │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── me_ME │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── mn_MN │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── ms_MY │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Miscellaneous.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── nb_NO │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── ne_NP │ │ │ ├── Address.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── nl_BE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── nl_NL │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── pl_PL │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── pt_BR │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── check_digit.php │ │ ├── pt_PT │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── ro_MD │ │ │ ├── Address.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── ro_RO │ │ │ ├── Address.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── ru_RU │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── sk_SK │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── sl_SI │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── sr_Cyrl_RS │ │ │ ├── Address.php │ │ │ ├── Payment.php │ │ │ └── Person.php │ │ ├── sr_Latn_RS │ │ │ ├── Address.php │ │ │ ├── Payment.php │ │ │ └── Person.php │ │ ├── sr_RS │ │ │ ├── Address.php │ │ │ ├── Payment.php │ │ │ └── Person.php │ │ ├── sv_SE │ │ │ ├── Address.php │ │ │ ├── Company.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── th_TH │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── tr_TR │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── uk_UA │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ │ ├── vi_VN │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Internet.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ ├── zh_CN │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ └── PhoneNumber.php │ │ └── zh_TW │ │ │ ├── Address.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── Internet.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ └── Text.php │ ├── UniqueGenerator.php │ └── ValidGenerator.php │ └── autoload.php ├── google ├── apiclient-services │ ├── .github │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── feature_request.md │ │ │ └── support_request.md │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Google │ │ │ └── Service │ │ │ ├── Calendar.php │ │ │ └── Calendar │ │ │ ├── Acl.php │ │ │ ├── AclRule.php │ │ │ ├── AclRuleScope.php │ │ │ ├── Calendar.php │ │ │ ├── CalendarList.php │ │ │ ├── CalendarListEntry.php │ │ │ ├── CalendarListEntryNotificationSettings.php │ │ │ ├── CalendarNotification.php │ │ │ ├── Channel.php │ │ │ ├── ColorDefinition.php │ │ │ ├── Colors.php │ │ │ ├── ConferenceData.php │ │ │ ├── ConferenceParameters.php │ │ │ ├── ConferenceParametersAddOnParameters.php │ │ │ ├── ConferenceProperties.php │ │ │ ├── ConferenceRequestStatus.php │ │ │ ├── ConferenceSolution.php │ │ │ ├── ConferenceSolutionKey.php │ │ │ ├── CreateConferenceRequest.php │ │ │ ├── EntryPoint.php │ │ │ ├── Error.php │ │ │ ├── Event.php │ │ │ ├── EventAttachment.php │ │ │ ├── EventAttendee.php │ │ │ ├── EventCreator.php │ │ │ ├── EventDateTime.php │ │ │ ├── EventExtendedProperties.php │ │ │ ├── EventGadget.php │ │ │ ├── EventOrganizer.php │ │ │ ├── EventReminder.php │ │ │ ├── EventReminders.php │ │ │ ├── EventSource.php │ │ │ ├── Events.php │ │ │ ├── FreeBusyCalendar.php │ │ │ ├── FreeBusyGroup.php │ │ │ ├── FreeBusyRequest.php │ │ │ ├── FreeBusyRequestItem.php │ │ │ ├── FreeBusyResponse.php │ │ │ ├── Resource │ │ │ ├── Acl.php │ │ │ ├── CalendarList.php │ │ │ ├── Calendars.php │ │ │ ├── Channels.php │ │ │ ├── Colors.php │ │ │ ├── Events.php │ │ │ ├── Freebusy.php │ │ │ └── Settings.php │ │ │ ├── Setting.php │ │ │ ├── Settings.php │ │ │ └── TimePeriod.php │ └── tests │ │ └── ServiceTest.php ├── apiclient │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ │ ├── README.md │ │ ├── api-keys.md │ │ ├── auth.md │ │ ├── id-token.md │ │ ├── install.md │ │ ├── media.md │ │ ├── oauth-server.md │ │ ├── oauth-web.md │ │ ├── pagination.md │ │ ├── parameters.md │ │ └── start.md │ └── src │ │ └── Google │ │ ├── AccessToken │ │ ├── Revoke.php │ │ └── Verify.php │ │ ├── AuthHandler │ │ ├── AuthHandlerFactory.php │ │ ├── Guzzle5AuthHandler.php │ │ └── Guzzle6AuthHandler.php │ │ ├── Client.php │ │ ├── Collection.php │ │ ├── Exception.php │ │ ├── Http │ │ ├── Batch.php │ │ ├── MediaFileUpload.php │ │ └── REST.php │ │ ├── Model.php │ │ ├── Service.php │ │ ├── Service │ │ ├── Exception.php │ │ ├── README.md │ │ └── Resource.php │ │ ├── Task │ │ ├── Exception.php │ │ ├── Retryable.php │ │ └── Runner.php │ │ ├── Utils │ │ └── UriTemplate.php │ │ └── autoload.php ├── auth │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── COPYING │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ └── src │ │ ├── AccessToken.php │ │ ├── ApplicationDefaultCredentials.php │ │ ├── Cache │ │ ├── InvalidArgumentException.php │ │ ├── Item.php │ │ ├── MemoryCacheItemPool.php │ │ └── SysVCacheItemPool.php │ │ ├── CacheTrait.php │ │ ├── Credentials │ │ ├── AppIdentityCredentials.php │ │ ├── GCECredentials.php │ │ ├── IAMCredentials.php │ │ ├── InsecureCredentials.php │ │ ├── ServiceAccountCredentials.php │ │ ├── ServiceAccountJwtAccessCredentials.php │ │ └── UserRefreshCredentials.php │ │ ├── CredentialsLoader.php │ │ ├── FetchAuthTokenCache.php │ │ ├── FetchAuthTokenInterface.php │ │ ├── GetQuotaProjectInterface.php │ │ ├── HttpHandler │ │ ├── Guzzle5HttpHandler.php │ │ ├── Guzzle6HttpHandler.php │ │ ├── HttpClientCache.php │ │ └── HttpHandlerFactory.php │ │ ├── Iam.php │ │ ├── Middleware │ │ ├── AuthTokenMiddleware.php │ │ ├── ScopedAccessTokenMiddleware.php │ │ └── SimpleMiddleware.php │ │ ├── OAuth2.php │ │ ├── ProjectIdProviderInterface.php │ │ ├── ServiceAccountSignerTrait.php │ │ ├── SignBlobInterface.php │ │ └── Subscriber │ │ ├── AuthTokenSubscriber.php │ │ ├── ScopedAccessTokenSubscriber.php │ │ └── SimpleSubscriber.php └── recaptcha │ ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.md │ ├── .gitignore │ ├── .travis.yml │ ├── ARCHITECTURE.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ ├── composer.json │ ├── examples │ ├── appengine-https.php │ ├── config.php.dist │ ├── examples.css │ ├── google0afd8760fd68f119.html │ ├── index.php │ ├── recaptcha-content-security-policy.php │ ├── recaptcha-v2-checkbox-explicit.php │ ├── recaptcha-v2-checkbox.php │ ├── recaptcha-v2-invisible.php │ ├── recaptcha-v3-request-scores.php │ ├── recaptcha-v3-verify.php │ └── robots.txt │ ├── phpunit.xml.dist │ ├── src │ ├── ReCaptcha │ │ ├── ReCaptcha.php │ │ ├── RequestMethod.php │ │ ├── RequestMethod │ │ │ ├── Curl.php │ │ │ ├── CurlPost.php │ │ │ ├── Post.php │ │ │ ├── Socket.php │ │ │ └── SocketPost.php │ │ ├── RequestParameters.php │ │ └── Response.php │ └── autoload.php │ └── tests │ └── ReCaptcha │ ├── ReCaptchaTest.php │ ├── RequestMethod │ ├── CurlPostTest.php │ ├── PostTest.php │ └── SocketPostTest.php │ ├── RequestParametersTest.php │ └── ResponseTest.php ├── grasmash ├── expander │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── RELEASE.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ │ ├── Expander.php │ │ ├── Stringifier.php │ │ └── StringifierInterface.php │ └── tests │ │ └── phpunit │ │ └── ExpanderTest.php └── yaml-expander │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── RELEASE.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── scenarios │ ├── install │ ├── symfony2 │ │ ├── .gitignore │ │ ├── composer.json │ │ ├── src │ │ └── tests │ └── symfony4 │ │ ├── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ └── tests │ ├── src │ └── Expander.php │ └── tests │ ├── phpunit │ └── ExpanderTest.php │ └── resources │ └── valid.yml ├── guzzlehttp ├── guzzle │ ├── .php_cs │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── InvalidArgumentException.php │ │ ├── RequestException.php │ │ ├── SeekException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── UriTemplate.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── functions.php │ │ └── functions_include.php ├── psr7 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── MessageTrait.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── functions.php │ │ └── functions_include.php ├── ringphp │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.rst │ ├── composer.json │ ├── docs │ │ ├── Makefile │ │ ├── client_handlers.rst │ │ ├── client_middleware.rst │ │ ├── conf.py │ │ ├── futures.rst │ │ ├── index.rst │ │ ├── requirements.txt │ │ ├── spec.rst │ │ └── testing.rst │ ├── phpunit.xml.dist │ ├── src │ │ ├── Client │ │ │ ├── ClientUtils.php │ │ │ ├── CurlFactory.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── Middleware.php │ │ │ ├── MockHandler.php │ │ │ └── StreamHandler.php │ │ ├── Core.php │ │ ├── Exception │ │ │ ├── CancelledException.php │ │ │ ├── CancelledFutureAccessException.php │ │ │ ├── ConnectException.php │ │ │ └── RingException.php │ │ └── Future │ │ │ ├── BaseFutureTrait.php │ │ │ ├── CompletedFutureArray.php │ │ │ ├── CompletedFutureValue.php │ │ │ ├── FutureArray.php │ │ │ ├── FutureArrayInterface.php │ │ │ ├── FutureInterface.php │ │ │ ├── FutureValue.php │ │ │ └── MagicFutureTrait.php │ └── tests │ │ ├── Client │ │ ├── CurlFactoryTest.php │ │ ├── CurlHandlerTest.php │ │ ├── CurlMultiHandlerTest.php │ │ ├── MiddlewareTest.php │ │ ├── MockHandlerTest.php │ │ ├── Server.php │ │ ├── StreamHandlerTest.php │ │ └── server.js │ │ ├── CoreTest.php │ │ ├── Future │ │ ├── CompletedFutureArrayTest.php │ │ ├── CompletedFutureValueTest.php │ │ ├── FutureArrayTest.php │ │ └── FutureValueTest.php │ │ └── bootstrap.php └── streams │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.rst │ ├── LICENSE │ ├── Makefile │ ├── README.rst │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── AppendStream.php │ ├── AsyncReadStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── Exception │ │ ├── CannotAttachException.php │ │ └── SeekException.php │ ├── FnStream.php │ ├── GuzzleStreamWrapper.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── MetadataStreamInterface.php │ ├── NoSeekStream.php │ ├── NullStream.php │ ├── PumpStream.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamInterface.php │ └── Utils.php │ └── tests │ ├── AppendStreamTest.php │ ├── AsyncReadStreamTest.php │ ├── BufferStreamTest.php │ ├── CachingStreamTest.php │ ├── DroppingStreamTest.php │ ├── Exception │ └── SeekExceptionTest.php │ ├── FnStreamTest.php │ ├── GuzzleStreamWrapperTest.php │ ├── InflateStreamTest.php │ ├── LazyOpenStreamTest.php │ ├── LimitStreamTest.php │ ├── NoSeekStreamTest.php │ ├── NullStreamTest.php │ ├── PumpStreamTest.php │ ├── StreamDecoratorTraitTest.php │ ├── StreamTest.php │ └── UtilsTest.php ├── hamcrest └── hamcrest-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .gush.yml │ ├── .travis.yml │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.txt │ ├── composer.json │ ├── composer.lock │ ├── generator │ ├── FactoryCall.php │ ├── FactoryClass.php │ ├── FactoryFile.php │ ├── FactoryGenerator.php │ ├── FactoryMethod.php │ ├── FactoryParameter.php │ ├── GlobalFunctionFile.php │ ├── StaticMethodFile.php │ ├── parts │ │ ├── file_header.txt │ │ ├── functions_footer.txt │ │ ├── functions_header.txt │ │ ├── functions_imports.txt │ │ ├── matchers_footer.txt │ │ ├── matchers_header.txt │ │ └── matchers_imports.txt │ └── run.php │ ├── hamcrest │ ├── Hamcrest.php │ └── Hamcrest │ │ ├── Arrays │ │ ├── IsArray.php │ │ ├── IsArrayContaining.php │ │ ├── IsArrayContainingInAnyOrder.php │ │ ├── IsArrayContainingInOrder.php │ │ ├── IsArrayContainingKey.php │ │ ├── IsArrayContainingKeyValuePair.php │ │ ├── IsArrayWithSize.php │ │ ├── MatchingOnce.php │ │ └── SeriesMatchingOnce.php │ │ ├── AssertionError.php │ │ ├── BaseDescription.php │ │ ├── BaseMatcher.php │ │ ├── Collection │ │ ├── IsEmptyTraversable.php │ │ └── IsTraversableWithSize.php │ │ ├── Core │ │ ├── AllOf.php │ │ ├── AnyOf.php │ │ ├── CombinableMatcher.php │ │ ├── DescribedAs.php │ │ ├── Every.php │ │ ├── HasToString.php │ │ ├── Is.php │ │ ├── IsAnything.php │ │ ├── IsCollectionContaining.php │ │ ├── IsEqual.php │ │ ├── IsIdentical.php │ │ ├── IsInstanceOf.php │ │ ├── IsNot.php │ │ ├── IsNull.php │ │ ├── IsSame.php │ │ ├── IsTypeOf.php │ │ ├── Set.php │ │ └── ShortcutCombination.php │ │ ├── Description.php │ │ ├── DiagnosingMatcher.php │ │ ├── FeatureMatcher.php │ │ ├── Internal │ │ └── SelfDescribingValue.php │ │ ├── Matcher.php │ │ ├── MatcherAssert.php │ │ ├── Matchers.php │ │ ├── NullDescription.php │ │ ├── Number │ │ ├── IsCloseTo.php │ │ └── OrderingComparison.php │ │ ├── SelfDescribing.php │ │ ├── StringDescription.php │ │ ├── Text │ │ ├── IsEmptyString.php │ │ ├── IsEqualIgnoringCase.php │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ ├── MatchesPattern.php │ │ ├── StringContains.php │ │ ├── StringContainsIgnoringCase.php │ │ ├── StringContainsInOrder.php │ │ ├── StringEndsWith.php │ │ ├── StringStartsWith.php │ │ └── SubstringMatcher.php │ │ ├── Type │ │ ├── IsArray.php │ │ ├── IsBoolean.php │ │ ├── IsCallable.php │ │ ├── IsDouble.php │ │ ├── IsInteger.php │ │ ├── IsNumeric.php │ │ ├── IsObject.php │ │ ├── IsResource.php │ │ ├── IsScalar.php │ │ └── IsString.php │ │ ├── TypeSafeDiagnosingMatcher.php │ │ ├── TypeSafeMatcher.php │ │ ├── Util.php │ │ └── Xml │ │ └── HasXPath.php │ └── tests │ ├── Hamcrest │ ├── AbstractMatcherTest.php │ ├── Array │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ ├── IsArrayContainingInOrderTest.php │ │ ├── IsArrayContainingKeyTest.php │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ ├── IsArrayContainingTest.php │ │ ├── IsArrayTest.php │ │ └── IsArrayWithSizeTest.php │ ├── BaseMatcherTest.php │ ├── Collection │ │ ├── IsEmptyTraversableTest.php │ │ └── IsTraversableWithSizeTest.php │ ├── Core │ │ ├── AllOfTest.php │ │ ├── AnyOfTest.php │ │ ├── CombinableMatcherTest.php │ │ ├── DescribedAsTest.php │ │ ├── EveryTest.php │ │ ├── HasToStringTest.php │ │ ├── IsAnythingTest.php │ │ ├── IsCollectionContainingTest.php │ │ ├── IsEqualTest.php │ │ ├── IsIdenticalTest.php │ │ ├── IsInstanceOfTest.php │ │ ├── IsNotTest.php │ │ ├── IsNullTest.php │ │ ├── IsSameTest.php │ │ ├── IsTest.php │ │ ├── IsTypeOfTest.php │ │ ├── SampleBaseClass.php │ │ ├── SampleSubClass.php │ │ └── SetTest.php │ ├── FeatureMatcherTest.php │ ├── MatcherAssertTest.php │ ├── Number │ │ ├── IsCloseToTest.php │ │ └── OrderingComparisonTest.php │ ├── StringDescriptionTest.php │ ├── Text │ │ ├── IsEmptyStringTest.php │ │ ├── IsEqualIgnoringCaseTest.php │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ ├── MatchesPatternTest.php │ │ ├── StringContainsIgnoringCaseTest.php │ │ ├── StringContainsInOrderTest.php │ │ ├── StringContainsTest.php │ │ ├── StringEndsWithTest.php │ │ └── StringStartsWithTest.php │ ├── Type │ │ ├── IsArrayTest.php │ │ ├── IsBooleanTest.php │ │ ├── IsCallableTest.php │ │ ├── IsDoubleTest.php │ │ ├── IsIntegerTest.php │ │ ├── IsNumericTest.php │ │ ├── IsObjectTest.php │ │ ├── IsResourceTest.php │ │ ├── IsScalarTest.php │ │ └── IsStringTest.php │ ├── UtilTest.php │ └── Xml │ │ └── HasXPathTest.php │ ├── bootstrap.php │ └── phpunit.xml.dist ├── hoa ├── consistency │ ├── .State │ ├── .gitignore │ ├── .travis.yml │ ├── Autoloader.php │ ├── CHANGELOG.md │ ├── Consistency.php │ ├── Exception.php │ ├── Prelude.php │ ├── README.md │ ├── Test │ │ └── Unit │ │ │ ├── Autoloader.php │ │ │ ├── Consistency.php │ │ │ ├── Exception.php │ │ │ └── Xcallable.php │ ├── Xcallable.php │ └── composer.json ├── console │ ├── .State │ ├── .gitignore │ ├── .travis.yml │ ├── Bin │ │ └── Termcap.php │ ├── CHANGELOG.md │ ├── Chrome │ │ ├── Editor.php │ │ ├── Exception.php │ │ ├── Pager.php │ │ └── Text.php │ ├── Console.php │ ├── Cursor.php │ ├── Dispatcher │ │ └── Kit.php │ ├── Documentation │ │ ├── En │ │ │ └── Index.xyl │ │ ├── Fr │ │ │ └── Index.xyl │ │ └── Image │ │ │ └── Readline_autocompleters.gif │ ├── Exception.php │ ├── GetOption.php │ ├── Input.php │ ├── Mouse.php │ ├── Output.php │ ├── Parser.php │ ├── Processus.php │ ├── README.md │ ├── Readline │ │ ├── Autocompleter │ │ │ ├── Aggregate.php │ │ │ ├── Autocompleter.php │ │ │ ├── Path.php │ │ │ └── Word.php │ │ ├── Password.php │ │ └── Readline.php │ ├── Terminfo │ │ ├── 77 │ │ │ └── windows-ansi │ │ └── 78 │ │ │ ├── xterm │ │ │ └── xterm-256color │ ├── Test │ │ └── Unit │ │ │ ├── Console.php │ │ │ ├── Cursor.php │ │ │ ├── GetOption.php │ │ │ ├── Input.php │ │ │ ├── Mouse.php │ │ │ ├── Output.php │ │ │ ├── Parser.php │ │ │ ├── Readline │ │ │ ├── Autocompleter │ │ │ │ ├── Aggregate.php │ │ │ │ ├── Path.php │ │ │ │ └── Word.php │ │ │ └── Password.php │ │ │ ├── Tput.php │ │ │ └── Window.php │ ├── Tput.php │ ├── Window.php │ └── composer.json ├── event │ ├── .State │ ├── .gitignore │ ├── Bucket.php │ ├── CHANGELOG.md │ ├── Event.php │ ├── Exception.php │ ├── Listenable.php │ ├── Listener.php │ ├── Listens.php │ ├── README.md │ ├── Source.php │ ├── Test │ │ └── Unit │ │ │ ├── Bucket.php │ │ │ ├── Event.php │ │ │ ├── Exception.php │ │ │ ├── Listenable.php │ │ │ ├── Listener.php │ │ │ ├── Listens.php │ │ │ └── Source.php │ └── composer.json ├── exception │ ├── .State │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Error.php │ ├── Exception.php │ ├── Group.php │ ├── Idle.php │ ├── README.md │ ├── Test │ │ └── Unit │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── Group.php │ │ │ └── Idle.php │ └── composer.json ├── file │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Directory.php │ ├── Exception │ │ ├── Exception.php │ │ └── FileDoesNotExist.php │ ├── File.php │ ├── Finder.php │ ├── Generic.php │ ├── Link │ │ ├── Link.php │ │ ├── Read.php │ │ ├── ReadWrite.php │ │ └── Write.php │ ├── Read.php │ ├── ReadWrite.php │ ├── SplFileInfo.php │ ├── Temporary │ │ ├── Read.php │ │ ├── ReadWrite.php │ │ ├── Temporary.php │ │ └── Write.php │ ├── Watcher.php │ ├── Write.php │ └── composer.json ├── iterator │ ├── .State │ ├── .gitignore │ ├── Aggregate.php │ ├── Append.php │ ├── Buffer.php │ ├── CHANGELOG.md │ ├── CallbackFilter.php │ ├── CallbackGenerator.php │ ├── Counter.php │ ├── Demultiplexer.php │ ├── Directory.php │ ├── Exception.php │ ├── FileSystem.php │ ├── Filter.php │ ├── Glob.php │ ├── Infinite.php │ ├── Iterator.php │ ├── IteratorIterator.php │ ├── Limit.php │ ├── Lookahead.php │ ├── Lookbehind.php │ ├── Map.php │ ├── Mock.php │ ├── Multiple.php │ ├── NoRewind.php │ ├── Outer.php │ ├── README.md │ ├── Recursive │ │ ├── CallbackFilter.php │ │ ├── Directory.php │ │ ├── Filter.php │ │ ├── Iterator.php │ │ ├── Map.php │ │ ├── Mock.php │ │ ├── Recursive.php │ │ └── RegularExpression.php │ ├── RegularExpression.php │ ├── Repeater.php │ ├── Seekable.php │ ├── SplFileInfo.php │ ├── Test │ │ └── Unit │ │ │ ├── Append.php │ │ │ ├── Buffer.php │ │ │ ├── CallbackFilter.php │ │ │ ├── CallbackGenerator.php │ │ │ ├── Counter.php │ │ │ ├── Demultiplexer.php │ │ │ ├── Directory.php │ │ │ ├── FileSystem.php │ │ │ ├── Filter.php │ │ │ ├── Infinite.php │ │ │ ├── IteratorIterator.php │ │ │ ├── Limit.php │ │ │ ├── Lookahead.php │ │ │ ├── Lookbehind.php │ │ │ ├── Map.php │ │ │ ├── Mock.php │ │ │ ├── Multiple.php │ │ │ ├── NoRewind.php │ │ │ ├── RegularExpression.php │ │ │ ├── Repeater.php │ │ │ └── SplFileInfo.php │ └── composer.json ├── protocol │ ├── .State │ ├── .gitignore │ ├── Bin │ │ └── Resolve.php │ ├── CHANGELOG.md │ ├── Exception.php │ ├── Node │ │ ├── Library.php │ │ └── Node.php │ ├── Protocol.php │ ├── README.md │ ├── Test │ │ └── Unit │ │ │ ├── Exception.php │ │ │ ├── Node │ │ │ ├── Library.php │ │ │ └── Node.php │ │ │ ├── Protocol.php │ │ │ └── Wrapper.php │ ├── Wrapper.php │ └── composer.json ├── stream │ ├── .gitignore │ ├── Bucket.php │ ├── CHANGELOG.md │ ├── Composite.php │ ├── Context.php │ ├── Exception.php │ ├── Filter │ │ ├── Basic.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ └── LateComputed.php │ ├── IStream │ │ ├── Bufferable.php │ │ ├── In.php │ │ ├── Lockable.php │ │ ├── Out.php │ │ ├── Pathable.php │ │ ├── Pointable.php │ │ ├── Statable.php │ │ ├── Stream.php │ │ ├── Structural.php │ │ └── Touchable.php │ ├── README.md │ ├── Stream.php │ ├── Test │ │ ├── Fixtures │ │ │ └── index.html │ │ ├── Integration │ │ │ ├── Filter │ │ │ │ ├── Filter.php │ │ │ │ └── LateComputed.php │ │ │ └── Stream.php │ │ └── Unit │ │ │ ├── Bucket.php │ │ │ ├── Composite.php │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ ├── Basic.php │ │ │ ├── Exception.php │ │ │ └── Filter.php │ │ │ ├── IStream │ │ │ ├── Bufferable.php │ │ │ ├── In.php │ │ │ ├── Lockable.php │ │ │ ├── Out.php │ │ │ ├── Pathable.php │ │ │ ├── Pointable.php │ │ │ ├── Statable.php │ │ │ ├── Stream.php │ │ │ ├── Structural.php │ │ │ └── Touchable.php │ │ │ ├── Stream.php │ │ │ └── Wrapper │ │ │ ├── Exception.php │ │ │ ├── IWrapper │ │ │ ├── File.php │ │ │ ├── IWrapper.php │ │ │ └── Stream.php │ │ │ └── Wrapper.php │ ├── Wrapper │ │ ├── Exception.php │ │ ├── IWrapper │ │ │ ├── File.php │ │ │ ├── IWrapper.php │ │ │ └── Stream.php │ │ └── Wrapper.php │ └── composer.json └── ustring │ ├── .State │ ├── .gitignore │ ├── Bin │ ├── Fromcode.php │ └── Tocode.php │ ├── CHANGELOG.md │ ├── Documentation │ ├── En │ │ └── Index.xyl │ └── Fr │ │ └── Index.xyl │ ├── Exception.php │ ├── README.md │ ├── Search.php │ ├── Test │ └── Unit │ │ ├── Issue.php │ │ ├── Search.php │ │ └── Ustring.php │ ├── Ustring.php │ └── composer.json ├── jeremykendall └── php-domain-parser │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ASF-LICENSE-2.0 │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ ├── parse │ └── update-psl │ ├── build.properties │ ├── build.xml │ ├── composer.json │ ├── data │ ├── public-suffix-list.php │ └── public-suffix-list.txt │ ├── example.php │ ├── phpunit.xml.dist │ ├── src │ ├── Pdp │ │ ├── Exception │ │ │ ├── PdpException.php │ │ │ └── SeriouslyMalformedUrlException.php │ │ ├── HttpAdapter │ │ │ ├── CurlHttpAdapter.php │ │ │ └── HttpAdapterInterface.php │ │ ├── Parser.php │ │ ├── PublicSuffixList.php │ │ ├── PublicSuffixListManager.php │ │ └── Uri │ │ │ ├── Url.php │ │ │ └── Url │ │ │ └── Host.php │ └── pdp-parse-url.php │ └── tests │ ├── bootstrap.php │ └── src │ └── Pdp │ ├── CheckPublicSuffixTest.php │ ├── Exception │ └── SeriouslyMalformedUrlExceptionTest.php │ ├── HttpAdapter │ └── CurlHttpAdapterTest.php │ ├── ParserTest.php │ ├── PublicSuffixListManagerTest.php │ └── Uri │ ├── Url │ └── HostTest.php │ └── UrlTest.php ├── jeroendesloovere └── vcard │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── examples │ ├── assets │ │ ├── contacts.vcf │ │ └── landscape.jpeg │ ├── example.php │ └── example_parsing.php │ ├── phpunit.xml.dist │ ├── src │ ├── VCard.php │ ├── VCardException.php │ └── VCardParser.php │ └── tests │ ├── VCardExceptionTest.php │ ├── VCardParserTest.php │ ├── VCardTest.php │ ├── empty.jpg │ ├── emptyfile │ ├── example.vcf │ ├── image.jpg │ └── wrongfile ├── justinrainbow └── json-schema │ ├── .php_cs.dist │ ├── LICENSE │ ├── README.md │ ├── bin │ └── validate-json │ ├── composer.json │ ├── demo │ ├── README.md │ ├── data.json │ ├── demo.php │ └── schema.json │ ├── dist │ └── schema │ │ ├── json-schema-draft-03.json │ │ └── json-schema-draft-04.json │ ├── phpunit.xml.dist │ └── src │ └── JsonSchema │ ├── Constraints │ ├── BaseConstraint.php │ ├── CollectionConstraint.php │ ├── Constraint.php │ ├── ConstraintInterface.php │ ├── EnumConstraint.php │ ├── Factory.php │ ├── FormatConstraint.php │ ├── NumberConstraint.php │ ├── ObjectConstraint.php │ ├── SchemaConstraint.php │ ├── StringConstraint.php │ ├── TypeCheck │ │ ├── LooseTypeCheck.php │ │ ├── StrictTypeCheck.php │ │ └── TypeCheckInterface.php │ ├── TypeConstraint.php │ └── UndefinedConstraint.php │ ├── Entity │ └── JsonPointer.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidConfigException.php │ ├── InvalidSchemaException.php │ ├── InvalidSchemaMediaTypeException.php │ ├── InvalidSourceUriException.php │ ├── JsonDecodingException.php │ ├── ResourceNotFoundException.php │ ├── RuntimeException.php │ ├── UnresolvableJsonPointerException.php │ ├── UriResolverException.php │ └── ValidationException.php │ ├── Iterator │ └── ObjectIterator.php │ ├── Rfc3339.php │ ├── SchemaStorage.php │ ├── SchemaStorageInterface.php │ ├── Uri │ ├── Retrievers │ │ ├── AbstractRetriever.php │ │ ├── Curl.php │ │ ├── FileGetContents.php │ │ ├── PredefinedArray.php │ │ └── UriRetrieverInterface.php │ ├── UriResolver.php │ └── UriRetriever.php │ ├── UriResolverInterface.php │ ├── UriRetrieverInterface.php │ └── Validator.php ├── kylekatarnls └── update-helper │ ├── LICENSE │ ├── composer.json │ └── src │ └── UpdateHelper │ ├── ComposerPlugin.php │ ├── NotUpdateInterfaceInstanceException.php │ ├── UpdateHelper.php │ └── UpdateHelperInterface.php ├── lcobucci └── jwt │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── Builder.php │ ├── Claim.php │ ├── Claim │ │ ├── Basic.php │ │ ├── EqualsTo.php │ │ ├── Factory.php │ │ ├── GreaterOrEqualsTo.php │ │ ├── LesserOrEqualsTo.php │ │ └── Validatable.php │ ├── Parser.php │ ├── Parsing │ │ ├── Decoder.php │ │ └── Encoder.php │ ├── Signature.php │ ├── Signer.php │ ├── Signer │ │ ├── BaseSigner.php │ │ ├── Ecdsa.php │ │ ├── Ecdsa │ │ │ ├── MultibyteStringConverter.php │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ ├── Sha512.php │ │ │ └── SignatureConverter.php │ │ ├── Hmac.php │ │ ├── Hmac │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ └── Sha512.php │ │ ├── Key.php │ │ ├── Keychain.php │ │ ├── OpenSSL.php │ │ ├── Rsa.php │ │ └── Rsa │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ └── Sha512.php │ ├── Token.php │ └── ValidationData.php │ └── test │ ├── functional │ ├── EcdsaTokenTest.php │ ├── HmacTokenTest.php │ ├── Keys.php │ ├── RFC6978VectorTest.php │ ├── RsaTokenTest.php │ ├── UnsignedTokenTest.php │ ├── ecdsa │ │ ├── private.key │ │ ├── private2.key │ │ ├── public1.key │ │ ├── public2.key │ │ └── public3.key │ └── rsa │ │ ├── encrypted-private.key │ │ ├── encrypted-public.key │ │ ├── private.key │ │ └── public.key │ └── unit │ ├── BuilderTest.php │ ├── Claim │ ├── BasicTest.php │ ├── EqualsToTest.php │ ├── FactoryTest.php │ ├── GreaterOrEqualsToTest.php │ └── LesserOrEqualsToTest.php │ ├── ParserTest.php │ ├── Parsing │ ├── DecoderTest.php │ └── EncoderTest.php │ ├── SignatureTest.php │ ├── Signer │ ├── BaseSignerTest.php │ ├── Ecdsa │ │ ├── MultibyteStringConverterTest.php │ │ ├── Sha256Test.php │ │ ├── Sha384Test.php │ │ └── Sha512Test.php │ ├── EcdsaTest.php │ ├── Hmac │ │ ├── Sha256Test.php │ │ ├── Sha384Test.php │ │ └── Sha512Test.php │ ├── HmacTest.php │ ├── KeyTest.php │ ├── KeychainTest.php │ ├── Rsa │ │ ├── Sha256Test.php │ │ ├── Sha384Test.php │ │ └── Sha512Test.php │ └── RsaTest.php │ ├── TokenTest.php │ └── ValidationDataTest.php ├── leafo └── scssphp │ ├── LICENSE.md │ ├── README.md │ ├── bin │ └── pscss │ ├── composer.json │ ├── example │ └── Server.php │ ├── scss.inc.php │ └── src │ ├── Base │ └── Range.php │ ├── Block.php │ ├── Colors.php │ ├── Compiler.php │ ├── Compiler │ └── Environment.php │ ├── Exception │ ├── CompilerException.php │ ├── ParserException.php │ ├── RangeException.php │ └── ServerException.php │ ├── Formatter.php │ ├── Formatter │ ├── Compact.php │ ├── Compressed.php │ ├── Crunched.php │ ├── Debug.php │ ├── Expanded.php │ ├── Nested.php │ └── OutputBlock.php │ ├── Node.php │ ├── Node │ └── Number.php │ ├── Parser.php │ ├── SourceMap │ ├── Base64.php │ ├── Base64VLQ.php │ ├── Base64VLQEncoder.php │ └── SourceMapGenerator.php │ ├── Type.php │ ├── Util.php │ └── Version.php ├── league ├── container │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Argument │ │ ├── ArgumentResolverInterface.php │ │ ├── ArgumentResolverTrait.php │ │ ├── RawArgument.php │ │ └── RawArgumentInterface.php │ │ ├── Container.php │ │ ├── ContainerAwareInterface.php │ │ ├── ContainerAwareTrait.php │ │ ├── ContainerInterface.php │ │ ├── Definition │ │ ├── AbstractDefinition.php │ │ ├── CallableDefinition.php │ │ ├── ClassDefinition.php │ │ ├── ClassDefinitionInterface.php │ │ ├── DefinitionFactory.php │ │ ├── DefinitionFactoryInterface.php │ │ └── DefinitionInterface.php │ │ ├── Exception │ │ └── NotFoundException.php │ │ ├── ImmutableContainerAwareInterface.php │ │ ├── ImmutableContainerAwareTrait.php │ │ ├── ImmutableContainerInterface.php │ │ ├── Inflector │ │ ├── Inflector.php │ │ ├── InflectorAggregate.php │ │ └── InflectorAggregateInterface.php │ │ ├── ReflectionContainer.php │ │ └── ServiceProvider │ │ ├── AbstractServiceProvider.php │ │ ├── AbstractSignatureServiceProvider.php │ │ ├── BootableServiceProviderInterface.php │ │ ├── ServiceProviderAggregate.php │ │ ├── ServiceProviderAggregateInterface.php │ │ ├── ServiceProviderInterface.php │ │ └── SignatureServiceProviderInterface.php ├── event │ ├── LICENSE │ ├── composer.json │ └── src │ │ ├── AbstractEvent.php │ │ ├── AbstractListener.php │ │ ├── BufferedEmitter.php │ │ ├── CallbackListener.php │ │ ├── Emitter.php │ │ ├── EmitterAwareInterface.php │ │ ├── EmitterAwareTrait.php │ │ ├── EmitterInterface.php │ │ ├── EmitterTrait.php │ │ ├── Event.php │ │ ├── EventInterface.php │ │ ├── Generator.php │ │ ├── GeneratorInterface.php │ │ ├── GeneratorTrait.php │ │ ├── ListenerAcceptor.php │ │ ├── ListenerAcceptorInterface.php │ │ ├── ListenerInterface.php │ │ ├── ListenerProviderInterface.php │ │ └── OneTimeListener.php ├── oauth2-server │ ├── .styleci.yml │ ├── CONDUCT.md │ ├── LICENSE │ ├── composer.json │ └── src │ │ ├── AuthorizationServer.php │ │ ├── AuthorizationValidators │ │ ├── AuthorizationValidatorInterface.php │ │ └── BearerTokenValidator.php │ │ ├── CryptKey.php │ │ ├── CryptTrait.php │ │ ├── Entities │ │ ├── AccessTokenEntityInterface.php │ │ ├── AuthCodeEntityInterface.php │ │ ├── ClientEntityInterface.php │ │ ├── RefreshTokenEntityInterface.php │ │ ├── ScopeEntityInterface.php │ │ ├── TokenInterface.php │ │ ├── Traits │ │ │ ├── AccessTokenTrait.php │ │ │ ├── AuthCodeTrait.php │ │ │ ├── ClientTrait.php │ │ │ ├── EntityTrait.php │ │ │ ├── RefreshTokenTrait.php │ │ │ └── TokenEntityTrait.php │ │ └── UserEntityInterface.php │ │ ├── Exception │ │ ├── OAuthServerException.php │ │ └── UniqueTokenIdentifierConstraintViolationException.php │ │ ├── Grant │ │ ├── AbstractAuthorizeGrant.php │ │ ├── AbstractGrant.php │ │ ├── AuthCodeGrant.php │ │ ├── ClientCredentialsGrant.php │ │ ├── GrantTypeInterface.php │ │ ├── ImplicitGrant.php │ │ ├── PasswordGrant.php │ │ └── RefreshTokenGrant.php │ │ ├── Middleware │ │ ├── AuthorizationServerMiddleware.php │ │ └── ResourceServerMiddleware.php │ │ ├── Repositories │ │ ├── AccessTokenRepositoryInterface.php │ │ ├── AuthCodeRepositoryInterface.php │ │ ├── ClientRepositoryInterface.php │ │ ├── RefreshTokenRepositoryInterface.php │ │ ├── RepositoryInterface.php │ │ ├── ScopeRepositoryInterface.php │ │ └── UserRepositoryInterface.php │ │ ├── RequestEvent.php │ │ ├── RequestTypes │ │ └── AuthorizationRequest.php │ │ ├── ResourceServer.php │ │ └── ResponseTypes │ │ ├── AbstractResponseType.php │ │ ├── BearerTokenResponse.php │ │ ├── RedirectResponse.php │ │ └── ResponseTypeInterface.php └── uri │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Components │ ├── AbstractComponent.php │ ├── AbstractHierarchicalComponent.php │ ├── DataPath.php │ ├── Fragment.php │ ├── HierarchicalPath.php │ ├── Host.php │ ├── HostIpTrait.php │ ├── HostnameInfoTrait.php │ ├── HostnameTrait.php │ ├── Pass.php │ ├── Path.php │ ├── PathTrait.php │ ├── Port.php │ ├── Query.php │ ├── Scheme.php │ ├── User.php │ └── UserInfo.php │ ├── Formatter.php │ ├── Interfaces │ ├── Collection.php │ ├── Component.php │ ├── DataPath.php │ ├── Fragment.php │ ├── HierarchicalComponent.php │ ├── HierarchicalPath.php │ ├── Host.php │ ├── Pass.php │ ├── Path.php │ ├── Port.php │ ├── Query.php │ ├── Scheme.php │ ├── Uri.php │ ├── UriPart.php │ ├── User.php │ └── UserInfo.php │ ├── Modifiers │ ├── AbstractHostModifier.php │ ├── AbstractPartialUriModifier.php │ ├── AbstractPathModifier.php │ ├── AbstractQueryModifier.php │ ├── AbstractUriModifier.php │ ├── AddLeadingSlash.php │ ├── AddTrailingSlash.php │ ├── AppendLabel.php │ ├── AppendSegment.php │ ├── DataUriParameters.php │ ├── DataUriToAscii.php │ ├── DataUriToBinary.php │ ├── DecodeUnreservedCharacters.php │ ├── Extension.php │ ├── FilterLabels.php │ ├── FilterQuery.php │ ├── FilterSegments.php │ ├── Filters │ │ ├── FilterTrait.php │ │ ├── Flag.php │ │ ├── ForCallable.php │ │ ├── Keys.php │ │ ├── Label.php │ │ ├── Offset.php │ │ ├── QueryString.php │ │ ├── Segment.php │ │ └── Uri.php │ ├── HostToAscii.php │ ├── HostToUnicode.php │ ├── KsortQuery.php │ ├── MergeQuery.php │ ├── Normalize.php │ ├── Pipeline.php │ ├── PrependLabel.php │ ├── PrependSegment.php │ ├── Relativize.php │ ├── RemoveDotSegments.php │ ├── RemoveEmptySegments.php │ ├── RemoveLabels.php │ ├── RemoveLeadingSlash.php │ ├── RemoveQueryKeys.php │ ├── RemoveSegments.php │ ├── RemoveTrailingSlash.php │ ├── RemoveZoneIdentifier.php │ ├── ReplaceLabel.php │ ├── ReplaceSegment.php │ ├── Resolve.php │ ├── Typecode.php │ └── functions.php │ ├── QueryParser.php │ ├── Schemes │ ├── Data.php │ ├── Ftp.php │ ├── Generic │ │ ├── AbstractHierarchicalUri.php │ │ ├── AbstractUri.php │ │ └── UriBuilderTrait.php │ ├── Http.php │ └── Ws.php │ ├── Types │ ├── ImmutableCollectionTrait.php │ ├── ImmutableComponentTrait.php │ ├── ImmutablePropertyTrait.php │ ├── TranscoderTrait.php │ └── ValidatorTrait.php │ ├── UriParser.php │ └── functions_include.php ├── mikey179 └── vfsstream │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ ├── phpunit.xml.dist │ └── src │ ├── main │ └── php │ │ └── org │ │ └── bovigo │ │ └── vfs │ │ ├── DotDirectory.php │ │ ├── Quota.php │ │ ├── content │ │ ├── FileContent.php │ │ ├── LargeFileContent.php │ │ ├── SeekableFileContent.php │ │ └── StringBasedFileContent.php │ │ ├── vfsStream.php │ │ ├── vfsStreamAbstractContent.php │ │ ├── vfsStreamBlock.php │ │ ├── vfsStreamContainer.php │ │ ├── vfsStreamContainerIterator.php │ │ ├── vfsStreamContent.php │ │ ├── vfsStreamDirectory.php │ │ ├── vfsStreamException.php │ │ ├── vfsStreamFile.php │ │ ├── vfsStreamWrapper.php │ │ └── visitor │ │ ├── vfsStreamAbstractVisitor.php │ │ ├── vfsStreamPrintVisitor.php │ │ ├── vfsStreamStructureVisitor.php │ │ └── vfsStreamVisitor.php │ └── test │ ├── bootstrap.php │ ├── php │ └── org │ │ └── bovigo │ │ └── vfs │ │ ├── DirectoryIterationTestCase.php │ │ ├── FilenameTestCase.php │ │ ├── Issue104TestCase.php │ │ ├── PermissionsTestCase.php │ │ ├── QuotaTestCase.php │ │ ├── UnlinkTestCase.php │ │ ├── content │ │ ├── LargeFileContentTestCase.php │ │ └── StringBasedFileContentTestCase.php │ │ ├── proxy │ │ └── vfsStreamWrapperRecordingProxy.php │ │ ├── vfsStreamAbstractContentTestCase.php │ │ ├── vfsStreamBlockTestCase.php │ │ ├── vfsStreamContainerIteratorTestCase.php │ │ ├── vfsStreamDirectoryIssue134TestCase.php │ │ ├── vfsStreamDirectoryIssue18TestCase.php │ │ ├── vfsStreamDirectoryTestCase.php │ │ ├── vfsStreamExLockTestCase.php │ │ ├── vfsStreamFileTestCase.php │ │ ├── vfsStreamGlobTestCase.php │ │ ├── vfsStreamResolveIncludePathTestCase.php │ │ ├── vfsStreamTestCase.php │ │ ├── vfsStreamUmaskTestCase.php │ │ ├── vfsStreamWrapperAlreadyRegisteredTestCase.php │ │ ├── vfsStreamWrapperBaseTestCase.php │ │ ├── vfsStreamWrapperDirSeparatorTestCase.php │ │ ├── vfsStreamWrapperDirTestCase.php │ │ ├── vfsStreamWrapperFileTestCase.php │ │ ├── vfsStreamWrapperFileTimesTestCase.php │ │ ├── vfsStreamWrapperFlockTestCase.php │ │ ├── vfsStreamWrapperLargeFileTestCase.php │ │ ├── vfsStreamWrapperQuotaTestCase.php │ │ ├── vfsStreamWrapperSetOptionTestCase.php │ │ ├── vfsStreamWrapperStreamSelectTestCase.php │ │ ├── vfsStreamWrapperTestCase.php │ │ ├── vfsStreamWrapperUnregisterTestCase.php │ │ ├── vfsStreamWrapperWithoutRootTestCase.php │ │ ├── vfsStreamZipTestCase.php │ │ └── visitor │ │ ├── vfsStreamAbstractVisitorTestCase.php │ │ ├── vfsStreamPrintVisitorTestCase.php │ │ └── vfsStreamStructureVisitorTestCase.php │ ├── phpt │ └── bug71287.phpt │ └── resources │ └── filesystemcopy │ ├── emptyFolder │ └── .gitignore │ └── withSubfolders │ ├── aFile.txt │ ├── subfolder1 │ └── file1.txt │ └── subfolder2 │ └── .gitignore ├── mockery └── mockery │ ├── .gitignore │ ├── .php_cs │ ├── .phpstorm.meta.php │ ├── .scrutinizer.yml │ ├── .styleci.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── docker │ └── php56 │ │ └── Dockerfile │ ├── docs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── conf.py │ ├── cookbook │ │ ├── big_parent_class.rst │ │ ├── class_constants.rst │ │ ├── default_expectations.rst │ │ ├── detecting_mock_objects.rst │ │ ├── index.rst │ │ ├── map.rst.inc │ │ ├── mockery_on.rst │ │ ├── mocking_class_within_class.rst │ │ ├── mocking_hard_dependencies.rst │ │ └── not_calling_the_constructor.rst │ ├── getting_started │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── map.rst.inc │ │ ├── quick_reference.rst │ │ ├── simple_example.rst │ │ └── upgrading.rst │ ├── index.rst │ ├── mockery │ │ ├── configuration.rst │ │ ├── exceptions.rst │ │ ├── gotchas.rst │ │ ├── index.rst │ │ ├── map.rst.inc │ │ └── reserved_method_names.rst │ └── reference │ │ ├── alternative_should_receive_syntax.rst │ │ ├── argument_validation.rst │ │ ├── creating_test_doubles.rst │ │ ├── demeter_chains.rst │ │ ├── expectations.rst │ │ ├── final_methods_classes.rst │ │ ├── index.rst │ │ ├── instance_mocking.rst │ │ ├── magic_methods.rst │ │ ├── map.rst.inc │ │ ├── partial_mocks.rst │ │ ├── pass_by_reference_behaviours.rst │ │ ├── phpunit_integration.rst │ │ ├── protected_methods.rst │ │ ├── public_properties.rst │ │ ├── public_static_properties.rst │ │ └── spies.rst │ ├── library │ ├── Mockery.php │ ├── Mockery │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ ├── Legacy │ │ │ │ ├── TestListenerForV5.php │ │ │ │ ├── TestListenerForV6.php │ │ │ │ ├── TestListenerForV7.php │ │ │ │ └── TestListenerTrait.php │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditionsForV7AndPrevious.php │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditionsForV8.php │ │ │ │ ├── MockeryTestCase.php │ │ │ │ ├── MockeryTestCaseSetUpForV7AndPrevious.php │ │ │ │ ├── MockeryTestCaseSetUpForV8.php │ │ │ │ └── TestListener.php │ │ ├── ClosureWrapper.php │ │ ├── CompositeExpectation.php │ │ ├── Configuration.php │ │ ├── Container.php │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── NoMatchingExpectationException.php │ │ │ └── RuntimeException.php │ │ ├── Expectation.php │ │ ├── ExpectationDirector.php │ │ ├── ExpectationInterface.php │ │ ├── ExpectsHigherOrderMessage.php │ │ ├── Generator │ │ │ ├── CachingGenerator.php │ │ │ ├── DefinedTargetClass.php │ │ │ ├── Generator.php │ │ │ ├── Method.php │ │ │ ├── MockConfiguration.php │ │ │ ├── MockConfigurationBuilder.php │ │ │ ├── MockDefinition.php │ │ │ ├── MockNameBuilder.php │ │ │ ├── Parameter.php │ │ │ ├── StringManipulation │ │ │ │ └── Pass │ │ │ │ │ ├── AvoidMethodClashPass.php │ │ │ │ │ ├── CallTypeHintPass.php │ │ │ │ │ ├── ClassNamePass.php │ │ │ │ │ ├── ClassPass.php │ │ │ │ │ ├── ConstantsPass.php │ │ │ │ │ ├── InstanceMockPass.php │ │ │ │ │ ├── InterfacePass.php │ │ │ │ │ ├── MagicMethodTypeHintsPass.php │ │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ │ ├── Pass.php │ │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ │ ├── RemoveDestructorPass.php │ │ │ │ │ ├── RemoveUnserializeForInternalSerializableClassesPass.php │ │ │ │ │ └── TraitPass.php │ │ │ ├── StringManipulationGenerator.php │ │ │ ├── TargetClassInterface.php │ │ │ └── UndefinedTargetClass.php │ │ ├── HigherOrderMessage.php │ │ ├── Instantiator.php │ │ ├── LegacyMockInterface.php │ │ ├── Loader │ │ │ ├── EvalLoader.php │ │ │ ├── Loader.php │ │ │ └── RequireLoader.php │ │ ├── Matcher │ │ │ ├── AndAnyOtherArgs.php │ │ │ ├── Any.php │ │ │ ├── AnyArgs.php │ │ │ ├── AnyOf.php │ │ │ ├── ArgumentListMatcher.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MultiArgumentClosure.php │ │ │ ├── MustBe.php │ │ │ ├── NoArgs.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── PHPUnitConstraint.php │ │ │ ├── Pattern.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ ├── MethodCall.php │ │ ├── Mock.php │ │ ├── MockInterface.php │ │ ├── ReceivedMethodCalls.php │ │ ├── Undefined.php │ │ ├── VerificationDirector.php │ │ └── VerificationExpectation.php │ └── helpers.php │ ├── phpunit.xml.dist │ └── tests │ ├── Bootstrap.php │ ├── Mockery │ ├── Adapter │ │ └── Phpunit │ │ │ ├── MockeryPHPUnitIntegrationTest.php │ │ │ └── TestListenerTest.php │ ├── AdhocTest.php │ ├── AllowsExpectsSyntaxTest.php │ ├── CallableSpyTest.php │ ├── ContainerTest.php │ ├── DemeterChainTest.php │ ├── DummyClasses │ │ ├── DemeterChain.php │ │ └── Namespaced.php │ ├── ExpectationTest.php │ ├── Fixtures │ │ ├── ClassWithAllLowerCaseMethod.php │ │ ├── ClassWithConstants.php │ │ ├── EmptyTestCaseV5.php │ │ ├── EmptyTestCaseV6.php │ │ ├── EmptyTestCaseV7.php │ │ ├── MethodWithHHVMReturnType.php │ │ ├── MethodWithIterableTypeHints.php │ │ ├── MethodWithNullableReturnType.php │ │ ├── MethodWithNullableTypedParameter.php │ │ ├── MethodWithParametersWithDefaultValues.php │ │ ├── MethodWithVoidReturnType.php │ │ └── SemiReservedWordsAsMethods.php │ ├── Generator │ │ ├── DefinedTargetClassTest.php │ │ ├── MockConfigurationBuilderTest.php │ │ ├── MockConfigurationTest.php │ │ └── StringManipulation │ │ │ └── Pass │ │ │ ├── CallTypeHintPassTest.php │ │ │ ├── ClassNamePassTest.php │ │ │ ├── ClassPassTest.php │ │ │ ├── ConstantsPassTest.php │ │ │ ├── InstanceMockPassTest.php │ │ │ └── InterfacePassTest.php │ ├── GlobalHelpersTest.php │ ├── HamcrestExpectationTest.php │ ├── Loader │ │ ├── EvalLoaderTest.php │ │ ├── LoaderTestCase.php │ │ └── RequireLoaderTest.php │ ├── Matcher │ │ ├── PHPUnitConstraintTest.php │ │ └── SubsetTest.php │ ├── MockClassWithFinalWakeupTest.php │ ├── MockClassWithMethodOverloadingTest.php │ ├── MockClassWithUnknownTypeHintTest.php │ ├── MockTest.php │ ├── MockeryCanMockClassesWithSemiReservedWordsTest.php │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php │ ├── MockingAllLowerCasedMethodsTest.php │ ├── MockingClassConstantsTest.php │ ├── MockingHHVMMethodsTest.php │ ├── MockingMethodsWithIterableTypeHintsTest.php │ ├── MockingMethodsWithNullableParametersTest.php │ ├── MockingNullableMethodsTest.php │ ├── MockingProtectedMethodsTest.php │ ├── MockingStaticMethodsCalledObjectStyleTest.php │ ├── MockingVariadicArgumentsTest.php │ ├── MockingVoidMethodsTest.php │ ├── NamedMockTest.php │ ├── ProxyMockingTest.php │ ├── SpyTest.php │ ├── Stubs │ │ ├── Animal.php │ │ └── Habitat.php │ ├── TraitsTest.php │ ├── WithFormatterExpectationTest.php │ └── _files │ │ └── file.txt │ ├── PHP56 │ └── MockingOldStyleConstructorTest.php │ ├── PHP70 │ ├── Generator │ │ └── StringManipulation │ │ │ └── Pass │ │ │ └── MagicMethodTypeHintsPassTest.php │ └── MockingParameterAndReturnTypesTest.php │ └── PHP72 │ └── Php72LanguageFeaturesTest.php ├── monolog └── monolog │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Monolog │ ├── ErrorHandler.php │ ├── Formatter │ ├── ChromePHPFormatter.php │ ├── ElasticaFormatter.php │ ├── FlowdockFormatter.php │ ├── FluentdFormatter.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 │ ├── DeduplicationHandler.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 │ ├── FormattableHandlerInterface.php │ ├── FormattableHandlerTrait.php │ ├── GelfHandler.php │ ├── GroupHandler.php │ ├── HandlerInterface.php │ ├── HandlerWrapper.php │ ├── HipChatHandler.php │ ├── IFTTTHandler.php │ ├── InsightOpsHandler.php │ ├── LogEntriesHandler.php │ ├── LogglyHandler.php │ ├── MailHandler.php │ ├── MandrillHandler.php │ ├── MissingExtensionException.php │ ├── MongoDBHandler.php │ ├── NativeMailerHandler.php │ ├── NewRelicHandler.php │ ├── NullHandler.php │ ├── PHPConsoleHandler.php │ ├── ProcessableHandlerInterface.php │ ├── ProcessableHandlerTrait.php │ ├── PsrHandler.php │ ├── PushoverHandler.php │ ├── RavenHandler.php │ ├── RedisHandler.php │ ├── RollbarHandler.php │ ├── RotatingFileHandler.php │ ├── SamplingHandler.php │ ├── Slack │ │ └── SlackRecord.php │ ├── SlackHandler.php │ ├── SlackWebhookHandler.php │ ├── SlackbotHandler.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 │ ├── MercurialProcessor.php │ ├── ProcessIdProcessor.php │ ├── ProcessorInterface.php │ ├── PsrLogMessageProcessor.php │ ├── TagProcessor.php │ ├── UidProcessor.php │ └── WebProcessor.php │ ├── Registry.php │ ├── ResettableInterface.php │ ├── SignalHandler.php │ └── Utils.php ├── myclabs └── deep-copy │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── clone.png │ ├── deep-clone.png │ ├── deep-copy.png │ └── graph.png │ ├── fixtures │ ├── f001 │ │ ├── A.php │ │ └── B.php │ ├── f002 │ │ └── A.php │ ├── f003 │ │ └── Foo.php │ ├── f004 │ │ └── UnclonableItem.php │ ├── f005 │ │ └── Foo.php │ ├── f006 │ │ ├── A.php │ │ └── B.php │ ├── f007 │ │ ├── FooDateInterval.php │ │ └── FooDateTimeZone.php │ └── f008 │ │ ├── A.php │ │ └── B.php │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── Doctrine │ │ ├── DoctrineCollectionFilter.php │ │ ├── DoctrineEmptyCollectionFilter.php │ │ └── DoctrineProxyFilter.php │ ├── Filter.php │ ├── KeepFilter.php │ ├── ReplaceFilter.php │ └── SetNullFilter.php │ ├── Matcher │ ├── Doctrine │ │ └── DoctrineProxyMatcher.php │ ├── Matcher.php │ ├── PropertyMatcher.php │ ├── PropertyNameMatcher.php │ └── PropertyTypeMatcher.php │ ├── Reflection │ └── ReflectionHelper.php │ ├── TypeFilter │ ├── Date │ │ └── DateIntervalFilter.php │ ├── ReplaceFilter.php │ ├── ShallowCopyFilter.php │ ├── Spl │ │ ├── SplDoublyLinkedList.php │ │ └── SplDoublyLinkedListFilter.php │ └── TypeFilter.php │ ├── TypeMatcher │ └── TypeMatcher.php │ └── deep_copy.php ├── nesbot └── carbon │ ├── LICENSE │ ├── bin │ ├── upgrade-carbon │ └── upgrade-carbon.bat │ ├── composer.json │ ├── readme.md │ └── src │ ├── Carbon │ ├── Carbon.php │ ├── CarbonInterval.php │ ├── CarbonPeriod.php │ ├── Exceptions │ │ └── InvalidDateException.php │ ├── Lang │ │ ├── af.php │ │ ├── ar.php │ │ ├── ar_Shakl.php │ │ ├── az.php │ │ ├── bg.php │ │ ├── bn.php │ │ ├── bs_BA.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── cy.php │ │ ├── da.php │ │ ├── de.php │ │ ├── dv_MV.php │ │ ├── el.php │ │ ├── en.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── et.php │ │ ├── eu.php │ │ ├── fa.php │ │ ├── fi.php │ │ ├── fo.php │ │ ├── fr.php │ │ ├── gl.php │ │ ├── gu.php │ │ ├── he.php │ │ ├── hi.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── hy.php │ │ ├── id.php │ │ ├── is.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ka.php │ │ ├── kk.php │ │ ├── km.php │ │ ├── ko.php │ │ ├── lt.php │ │ ├── lv.php │ │ ├── mk.php │ │ ├── mn.php │ │ ├── ms.php │ │ ├── my.php │ │ ├── ne.php │ │ ├── nl.php │ │ ├── no.php │ │ ├── oc.php │ │ ├── pl.php │ │ ├── ps.php │ │ ├── pt.php │ │ ├── pt_BR.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sh.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── sq.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_ME.php │ │ ├── sv.php │ │ ├── sw.php │ │ ├── th.php │ │ ├── tr.php │ │ ├── uk.php │ │ ├── ur.php │ │ ├── uz.php │ │ ├── vi.php │ │ ├── zh.php │ │ └── zh_TW.php │ ├── Laravel │ │ └── ServiceProvider.php │ ├── Translator.php │ └── Upgrade.php │ └── JsonSerializable.php ├── nikic └── fast-route │ ├── .gitignore │ ├── .hhconfig │ ├── .travis.yml │ ├── FastRoute.hhi │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── psalm.xml │ ├── src │ ├── BadRouteException.php │ ├── DataGenerator.php │ ├── DataGenerator │ │ ├── CharCountBased.php │ │ ├── GroupCountBased.php │ │ ├── GroupPosBased.php │ │ ├── MarkBased.php │ │ └── RegexBasedAbstract.php │ ├── Dispatcher.php │ ├── Dispatcher │ │ ├── CharCountBased.php │ │ ├── GroupCountBased.php │ │ ├── GroupPosBased.php │ │ ├── MarkBased.php │ │ └── RegexBasedAbstract.php │ ├── Route.php │ ├── RouteCollector.php │ ├── RouteParser.php │ ├── RouteParser │ │ └── Std.php │ ├── bootstrap.php │ └── functions.php │ └── test │ ├── Dispatcher │ ├── CharCountBasedTest.php │ ├── DispatcherTest.php │ ├── GroupCountBasedTest.php │ ├── GroupPosBasedTest.php │ └── MarkBasedTest.php │ ├── HackTypechecker │ ├── HackTypecheckerTest.php │ └── fixtures │ │ ├── all_options.php │ │ ├── empty_options.php │ │ └── no_options.php │ ├── RouteCollectorTest.php │ ├── RouteParser │ └── StdTest.php │ └── bootstrap.php ├── onelogin └── php-saml │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ ├── _toolkit_loader.php │ ├── advanced_settings_example.php │ ├── certs │ └── README │ ├── composer.json │ ├── phpunit.xml │ ├── settings_example.php │ └── src │ └── Saml2 │ ├── Auth.php │ ├── AuthnRequest.php │ ├── Constants.php │ ├── Error.php │ ├── IdPMetadataParser.php │ ├── LogoutRequest.php │ ├── LogoutResponse.php │ ├── Metadata.php │ ├── Response.php │ ├── Settings.php │ ├── Utils.php │ ├── ValidationError.php │ ├── schemas │ ├── saml-schema-assertion-2.0.xsd │ ├── saml-schema-authn-context-2.0.xsd │ ├── saml-schema-authn-context-types-2.0.xsd │ ├── saml-schema-metadata-2.0.xsd │ ├── saml-schema-protocol-2.0.xsd │ ├── sstc-metadata-attr.xsd │ ├── sstc-saml-attribute-ext.xsd │ ├── sstc-saml-metadata-algsupport-v1.0.xsd │ ├── sstc-saml-metadata-ui-v1.0.xsd │ ├── xenc-schema.xsd │ ├── xml.xsd │ └── xmldsig-core-schema.xsd │ └── version.json ├── paragonie └── random_compat │ ├── LICENSE │ ├── composer.json │ ├── dist │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc │ └── lib │ ├── byte_safe_strings.php │ ├── cast_to_int.php │ ├── error_polyfill.php │ ├── random.php │ ├── random_bytes_com_dotnet.php │ ├── random_bytes_dev_urandom.php │ ├── random_bytes_libsodium.php │ ├── random_bytes_libsodium_legacy.php │ ├── random_bytes_mcrypt.php │ └── random_int.php ├── php-cs-fixer └── diff │ ├── ChangeLog.md │ ├── LICENSE │ ├── LICENSE_DIFF │ ├── LICENSE_GECKO │ ├── README.md │ ├── composer.json │ └── src │ ├── GeckoPackages │ └── DiffOutputBuilder │ │ ├── ConfigurationException.php │ │ └── UnifiedDiffOutputBuilder.php │ ├── v1_4 │ ├── Chunk.php │ ├── Diff.php │ ├── Differ.php │ ├── LCS │ │ ├── LongestCommonSubsequence.php │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ ├── Line.php │ └── Parser.php │ ├── v2_0 │ ├── Chunk.php │ ├── Diff.php │ ├── Differ.php │ ├── Exception │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ ├── Line.php │ ├── LongestCommonSubsequenceCalculator.php │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ ├── Output │ │ ├── AbstractChunkOutputBuilder.php │ │ ├── DiffOnlyOutputBuilder.php │ │ ├── DiffOutputBuilderInterface.php │ │ └── UnifiedDiffOutputBuilder.php │ ├── Parser.php │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ └── v3_0 │ ├── Chunk.php │ ├── Diff.php │ ├── Differ.php │ ├── Exception │ ├── ConfigurationException.php │ ├── Exception.php │ └── InvalidArgumentException.php │ ├── Line.php │ ├── LongestCommonSubsequenceCalculator.php │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ ├── Output │ ├── AbstractChunkOutputBuilder.php │ ├── DiffOnlyOutputBuilder.php │ ├── DiffOutputBuilderInterface.php │ ├── StrictUnifiedDiffOutputBuilder.php │ └── UnifiedDiffOutputBuilder.php │ ├── Parser.php │ └── TimeEfficientLongestCommonSubsequenceCalculator.php ├── phpdocumentor ├── reflection-common │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags │ │ │ ├── Author.php │ │ │ ├── BaseTag.php │ │ │ ├── Covers.php │ │ │ ├── Deprecated.php │ │ │ ├── Example.php │ │ │ ├── Factory │ │ │ ├── StaticMethod.php │ │ │ └── Strategy.php │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Float_.php │ ├── Integer.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phpmailer └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── phpoption └── phpoption │ ├── LICENSE │ ├── composer.json │ └── src │ └── PhpOption │ ├── LazyOption.php │ ├── None.php │ ├── Option.php │ └── Some.php ├── phpseclib └── phpseclib │ ├── AUTHORS │ ├── BACKERS.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ └── phpseclib │ ├── Crypt │ ├── AES.php │ ├── Base.php │ ├── Blowfish.php │ ├── DES.php │ ├── Hash.php │ ├── RC2.php │ ├── RC4.php │ ├── RSA.php │ ├── Random.php │ ├── Rijndael.php │ ├── TripleDES.php │ └── Twofish.php │ ├── File │ ├── ANSI.php │ ├── ASN1.php │ ├── ASN1 │ │ └── Element.php │ └── X509.php │ ├── Math │ └── BigInteger.php │ ├── Net │ ├── SCP.php │ ├── SFTP.php │ ├── SFTP │ │ └── Stream.php │ ├── SSH1.php │ └── SSH2.php │ ├── System │ └── SSH │ │ ├── Agent.php │ │ └── Agent │ │ └── Identity.php │ ├── bootstrap.php │ └── openssl.cnf ├── phpspec └── prophecy │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ApproximateValueToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ ├── Factory.php │ └── ProphecyComparator.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ ├── ThrowablePatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ ├── ReflectionInterface.php │ │ └── TypeHintReference.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotExtendableException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── PhpDocumentor │ ├── ClassAndInterfaceTagRetriever.php │ ├── ClassTagRetriever.php │ ├── LegacyClassTagRetriever.php │ └── MethodTagRetrieverInterface.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .github │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog-2.2.md │ ├── ChangeLog-3.0.md │ ├── ChangeLog-3.1.md │ ├── ChangeLog-3.2.md │ ├── ChangeLog-3.3.md │ ├── ChangeLog-4.0.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── HHVM.php │ │ │ ├── PHPDBG.php │ │ │ └── Xdebug.php │ │ ├── Exception │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnintentionallyCoveredCodeException.php │ │ ├── Filter.php │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ └── Xml │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ └── Util.php │ └── tests │ │ ├── TestCase.php │ │ ├── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount-crap4j.xml │ │ ├── BankAccount-text.txt │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── Report │ │ │ ├── HTML │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ ├── dashboard.html │ │ │ │ │ └── index.html │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── dashboard.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── dashboard.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── source_with_ignore.php.html │ │ │ └── XML │ │ │ │ ├── CoverageForBankAccount │ │ │ │ ├── BankAccount.php.xml │ │ │ │ └── index.xml │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ ├── index.xml │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ ├── index.xml │ │ │ │ └── source_with_ignore.php.xml │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── class-with-anonymous-function-crap4j.xml │ │ ├── class-with-anonymous-function-text.txt │ │ ├── ignored-lines-clover.xml │ │ ├── ignored-lines-crap4j.xml │ │ ├── ignored-lines-text.txt │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php │ │ ├── bootstrap.php │ │ └── tests │ │ ├── BuilderTest.php │ │ ├── CloverTest.php │ │ ├── CodeCoverageTest.php │ │ ├── Crap4jTest.php │ │ ├── FilterTest.php │ │ ├── HTMLTest.php │ │ ├── TextTest.php │ │ ├── UtilTest.php │ │ └── XMLTest.php ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── phpunit.xml │ ├── composer.json │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── classUsesNamespacedFunction.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── deprecation.tpl.dist │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_method.tpl.dist │ │ │ ├── mocked_method_void.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── proxied_method.tpl.dist │ │ │ ├── proxied_method_void.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation.php │ │ │ ├── Invocation │ │ │ ├── Object.php │ │ │ └── Static.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── Return.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnReference.php │ │ │ ├── ReturnSelf.php │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ └── tests │ │ ├── GeneratorTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObject │ │ ├── Builder │ │ │ └── InvocationMockerTest.php │ │ ├── Generator │ │ │ ├── 232.phpt │ │ │ ├── abstract_class.phpt │ │ │ ├── class.phpt │ │ │ ├── class_call_parent_clone.phpt │ │ │ ├── class_call_parent_constructor.phpt │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── class_partial.phpt │ │ │ ├── class_with_method_named_method.phpt │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ ├── interface.phpt │ │ │ ├── invocation_object_clone_object.phpt │ │ │ ├── namespaced_class.phpt │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_partial.phpt │ │ │ ├── namespaced_interface.phpt │ │ │ ├── nonexistent_class.phpt │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ ├── nullable_types.phpt │ │ │ ├── proxy.phpt │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ ├── return_type_declarations_self.phpt │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ ├── return_type_declarations_void.phpt │ │ │ ├── scalar_type_declarations.phpt │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ ├── Invocation │ │ │ ├── ObjectTest.php │ │ │ └── StaticTest.php │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ └── class_with_deprecated_method.phpt │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnInterfaceWithReturnType.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithSelfTypeHint.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ ├── StringableClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .gitattributes │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs.dist │ ├── .stickler.yml │ ├── .travis.yml │ ├── ChangeLog-5.7.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── ForwardCompatibility │ │ ├── Assert.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestListener.php │ │ └── TestSuite.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── CodeCoverageException.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── And.php │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Count.php │ │ │ ├── DirectoryExists.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegExp.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsFinite.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInfinite.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNan.php │ │ │ ├── IsNull.php │ │ │ ├── IsReadable.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── IsWritable.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── Not.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── Or.php │ │ │ ├── PCREMatch.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatches.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsOnly.php │ │ │ └── Xor.php │ │ ├── CoveredCodeNotExecutedException.php │ │ ├── Error.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExceptionWrapper.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── MissingCoversAnnotationException.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuite │ │ │ └── DataProvider.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ ├── Warning.php │ │ └── WarningTestCase.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Factory.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ ├── Exclude.php │ │ │ │ └── Include.php │ │ │ └── Test.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── ConfigurationGenerator.php │ │ ├── ErrorHandler.php │ │ ├── Fileloader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Log │ │ ├── JSON.php │ │ ├── JUnit.php │ │ ├── TAP.php │ │ └── TeamCity.php │ │ ├── PHP.php │ │ ├── PHP │ │ ├── Default.php │ │ ├── Template │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── Windows.php │ │ └── eval-stdin.php │ │ ├── Printer.php │ │ ├── Regex.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ ├── Text.php │ │ │ └── XML.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ └── tests │ ├── Extensions │ ├── PhptTestCaseTest.php │ └── RepeatedTestTest.php │ ├── Fail │ └── fail.phpt │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.php │ ├── Constraint │ │ ├── ArraySubsetTest.php │ │ ├── CountTest.php │ │ ├── ExceptionMessageRegExpTest.php │ │ ├── ExceptionMessageTest.php │ │ ├── IsJsonTest.php │ │ ├── JsonMatches │ │ │ └── ErrorMessageProviderTest.php │ │ └── JsonMatchesTest.php │ ├── ConstraintTest.php │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Regression │ ├── GitHub │ │ ├── 74 │ │ │ ├── Issue74Test.php │ │ │ └── NewException.php │ │ ├── 244 │ │ │ └── Issue244Test.php │ │ ├── 322 │ │ │ ├── Issue322Test.php │ │ │ └── phpunit322.xml │ │ ├── 433 │ │ │ └── Issue433Test.php │ │ ├── 445 │ │ │ └── Issue445Test.php │ │ ├── 498 │ │ │ └── Issue498Test.php │ │ ├── 503 │ │ │ └── Issue503Test.php │ │ ├── 581 │ │ │ └── Issue581Test.php │ │ ├── 765 │ │ │ └── Issue765Test.php │ │ ├── 797 │ │ │ ├── Issue797Test.php │ │ │ └── bootstrap797.php │ │ ├── 873 │ │ │ └── Issue873Test.php │ │ ├── 1149 │ │ │ └── Issue1149Test.php │ │ ├── 1216 │ │ │ ├── Issue1216Test.php │ │ │ ├── bootstrap1216.php │ │ │ └── phpunit1216.xml │ │ ├── 1265 │ │ │ ├── Issue1265Test.php │ │ │ └── phpunit1265.xml │ │ ├── 1330 │ │ │ ├── Issue1330Test.php │ │ │ └── phpunit1330.xml │ │ ├── 1335 │ │ │ ├── Issue1335Test.php │ │ │ └── bootstrap1335.php │ │ ├── 1337 │ │ │ └── Issue1337Test.php │ │ ├── 1348 │ │ │ └── Issue1348Test.php │ │ ├── 1351 │ │ │ ├── ChildProcessClass1351.php │ │ │ └── Issue1351Test.php │ │ ├── 1374 │ │ │ └── Issue1374Test.php │ │ ├── 1437 │ │ │ └── Issue1437Test.php │ │ ├── 1468 │ │ │ └── Issue1468Test.php │ │ ├── 1471 │ │ │ └── Issue1471Test.php │ │ ├── 1472 │ │ │ └── Issue1472Test.php │ │ ├── 1570 │ │ │ └── Issue1570Test.php │ │ ├── 2137 │ │ │ └── Issue2137Test.php │ │ ├── 2145 │ │ │ └── Issue2145Test.php │ │ ├── 2158 │ │ │ ├── Issue2158Test.php │ │ │ └── constant.inc │ │ ├── 2299 │ │ │ └── Issue2299Test.php │ │ ├── 2366 │ │ │ └── Issue2366Test.php │ │ ├── 2380 │ │ │ └── Issue2380Test.php │ │ ├── 2382 │ │ │ └── Issue2382Test.php │ │ ├── 2435 │ │ │ └── Issue2435Test.php │ │ ├── 2731 │ │ │ └── Issue2731Test.php │ │ ├── 2758 │ │ │ ├── Issue2758Test.php │ │ │ ├── Issue2758TestListener.php │ │ │ └── phpunit.xml │ │ ├── 2811 │ │ │ └── Issue2811Test.php │ │ ├── 2972 │ │ │ ├── issue-2972-test.phpt │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ ├── 1149.phpt │ │ ├── 1216.phpt │ │ ├── 1265.phpt │ │ ├── 1330.phpt │ │ ├── 1335.phpt │ │ ├── 1337.phpt │ │ ├── 1348.phpt │ │ ├── 1351.phpt │ │ ├── 1374.phpt │ │ ├── 1437.phpt │ │ ├── 1468.phpt │ │ ├── 1471.phpt │ │ ├── 1472.phpt │ │ ├── 1570.phpt │ │ ├── 2137-filter.phpt │ │ ├── 2137-no_filter.phpt │ │ ├── 2145.phpt │ │ ├── 2158.phpt │ │ ├── 2366.phpt │ │ ├── 2380.phpt │ │ ├── 2382.phpt │ │ ├── 2435.phpt │ │ ├── 244.phpt │ │ ├── 2731.phpt │ │ ├── 2758.phpt │ │ ├── 2811.phpt │ │ ├── 2972.phpt │ │ ├── 322.phpt │ │ ├── 433.phpt │ │ ├── 445.phpt │ │ ├── 498.phpt │ │ ├── 503.phpt │ │ ├── 581.phpt │ │ ├── 74.phpt │ │ ├── 765.phpt │ │ ├── 797.phpt │ │ ├── 863.phpt │ │ ├── 873-php5.phpt │ │ └── 873-php7.phpt │ └── Trac │ │ ├── 523 │ │ └── Issue523Test.php │ │ ├── 578 │ │ └── Issue578Test.php │ │ ├── 684 │ │ └── Issue684Test.php │ │ ├── 783 │ │ ├── ChildSuite.php │ │ ├── OneTest.php │ │ ├── ParentSuite.php │ │ └── TwoTest.php │ │ ├── 1021 │ │ └── Issue1021Test.php │ │ ├── 1021.phpt │ │ ├── 523.phpt │ │ ├── 578.phpt │ │ ├── 684.phpt │ │ └── 783.phpt │ ├── Runner │ └── BaseTestRunnerTest.php │ ├── TextUI │ ├── _files │ │ ├── expect_external.txt │ │ ├── phpt-env.expected.txt │ │ └── phpt_external.php │ ├── abstract-test-class.phpt │ ├── assertion.phpt │ ├── code-coverage-ignore.phpt │ ├── colors-always.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-debug.phpt │ ├── dataprovider-issue-2833.phpt │ ├── dataprovider-issue-2859.phpt │ ├── dataprovider-issue-2922.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── dependencies-clone.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── disable-code-coverage-ignore.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── failure-isolation.phpt │ ├── failure-reverse-list.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-case-insensitive.phpt │ ├── filter-method-case-sensitive-no-result.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── forward-compatibility.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── list-suites.phpt │ ├── log-json-post-66021.phpt │ ├── log-junit.phpt │ ├── log-tap.phpt │ ├── log-teamcity.phpt │ ├── mycommand.phpt │ ├── options-after-arguments.phpt │ ├── output-isolation.phpt │ ├── phar-extension-suppressed.phpt │ ├── phar-extension.phpt │ ├── phpt-args.phpt │ ├── phpt-env.phpt │ ├── phpt-external.phpt │ ├── phpt-stderr.phpt │ ├── phpt-stdin.phpt │ ├── phpt-xfail.phpt │ ├── repeat.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── stop-on-warning-via-cli.phpt │ ├── stop-on-warning-via-config.phpt │ ├── tap.phpt │ ├── teamcity-inner-exceptions.phpt │ ├── teamcity.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-exclude-group.phpt │ ├── testdox-group.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ ├── testdox-xml.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── PHPTest.php │ ├── RegexTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XMLTest.php │ ├── _files │ ├── AbstractTest.php │ ├── ArrayAccessible.php │ ├── AssertionExample.php │ ├── AssertionExampleTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BankAccountTest2.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── BeforeClassWithOnlyDataProviderTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ClonedDependencyTest.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNamespacedFunctionTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderDebugTest.php │ ├── DataProviderDependencyTest.php │ ├── DataProviderFilterTest.php │ ├── DataProviderIncompleteTest.php │ ├── DataProviderIssue2833 │ │ ├── FirstTest.php │ │ └── SecondTest.php │ ├── DataProviderIssue2859 │ │ ├── phpunit.xml │ │ └── tests │ │ │ └── another │ │ │ └── TestWithDataProviderTest.php │ ├── DataProviderIssue2922 │ │ ├── FirstTest.php │ │ └── SecondTest.php │ ├── DataProviderSkippedTest.php │ ├── DataProviderTest.php │ ├── DataProviderTestDoxTest.php │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyException.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FatalTest.php │ ├── IgnoreCodeCoverageClass.php │ ├── IgnoreCodeCoverageClassTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── Mockable.php │ ├── MultiDependencyTest.php │ ├── MultipleDataProviderTest.php │ ├── MyCommand.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NamespaceCoveredFunction.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── StatusTest.php │ ├── StopOnWarningTestSuite.php │ ├── StopsOnWarningTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestAutoreferenced.php │ ├── TestDoxGroupTest.php │ ├── TestGeneratorMaker.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── WasRun.php │ ├── bar.xml │ ├── configuration.colors.empty.xml │ ├── configuration.colors.false.xml │ ├── configuration.colors.invalid.xml │ ├── configuration.colors.true.xml │ ├── configuration.custom-printer.xml │ ├── configuration.suites.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_stop_on_warning.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── phpt-for-coverage.phpt │ ├── phpt-xfail.phpt │ ├── phpunit-example-extension │ │ ├── phpunit.xml │ │ ├── tests │ │ │ └── OneTest.php │ │ └── tools │ │ │ └── phpunit.d │ │ │ └── phpunit-example-extension-1.0.0.phar │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ └── bootstrap.php ├── pimple └── pimple │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── ext │ └── pimple │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config.m4 │ │ ├── config.w32 │ │ ├── php_pimple.h │ │ ├── pimple.c │ │ ├── pimple_compat.h │ │ └── tests │ │ ├── 001.phpt │ │ ├── 002.phpt │ │ ├── 003.phpt │ │ ├── 004.phpt │ │ ├── 005.phpt │ │ ├── 006.phpt │ │ ├── 007.phpt │ │ ├── 008.phpt │ │ ├── 009.phpt │ │ ├── 010.phpt │ │ ├── 011.phpt │ │ ├── 012.phpt │ │ ├── 013.phpt │ │ ├── 014.phpt │ │ ├── 015.phpt │ │ ├── 016.phpt │ │ ├── 017.phpt │ │ ├── 017_1.phpt │ │ ├── 018.phpt │ │ ├── 019.phpt │ │ ├── bench.phpb │ │ └── bench_shared.phpb │ ├── phpunit.xml.dist │ └── src │ └── Pimple │ ├── Container.php │ ├── Exception │ ├── ExpectedInvokableException.php │ ├── FrozenServiceException.php │ ├── InvalidServiceIdentifierException.php │ └── UnknownIdentifierException.php │ ├── Psr11 │ ├── Container.php │ └── ServiceLocator.php │ ├── ServiceIterator.php │ ├── ServiceProviderInterface.php │ └── Tests │ ├── Fixtures │ ├── Invokable.php │ ├── NonInvokable.php │ ├── PimpleServiceProvider.php │ └── Service.php │ ├── PimpleServiceProviderInterfaceTest.php │ ├── PimpleTest.php │ ├── Psr11 │ ├── ContainerTest.php │ └── ServiceLocatorTest.php │ └── ServiceIteratorTest.php ├── psr ├── cache │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CacheException.php │ │ ├── CacheItemInterface.php │ │ ├── CacheItemPoolInterface.php │ │ └── InvalidArgumentException.php ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── log │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ ├── DummyTest.php │ │ ├── LoggerInterfaceTest.php │ │ └── TestLogger.php │ ├── README.md │ └── composer.json ├── ralouphie └── getallheaders │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── getallheaders.php ├── react └── promise │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── CancellablePromiseInterface.php │ ├── CancellationQueue.php │ ├── Deferred.php │ ├── Exception │ └── LengthException.php │ ├── ExtendedPromiseInterface.php │ ├── FulfilledPromise.php │ ├── LazyPromise.php │ ├── Promise.php │ ├── PromiseInterface.php │ ├── PromisorInterface.php │ ├── RejectedPromise.php │ ├── UnhandledRejectionException.php │ ├── functions.php │ └── functions_include.php ├── robrichards └── xmlseclibs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ ├── Utils │ │ └── XPath.php │ ├── XMLSecEnc.php │ ├── XMLSecurityDSig.php │ └── XMLSecurityKey.php │ └── xmlseclibs.php ├── sebastian ├── code-unit-reverse-lookup │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Wizard.php │ └── tests │ │ └── WizardTest.php ├── comparator │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── DoubleComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ └── TypeComparator.php │ └── tests │ │ ├── ArrayComparatorTest.php │ │ ├── DOMNodeComparatorTest.php │ │ ├── DateTimeComparatorTest.php │ │ ├── DoubleComparatorTest.php │ │ ├── ExceptionComparatorTest.php │ │ ├── FactoryTest.php │ │ ├── MockObjectComparatorTest.php │ │ ├── NumericComparatorTest.php │ │ ├── ObjectComparatorTest.php │ │ ├── ResourceComparatorTest.php │ │ ├── ScalarComparatorTest.php │ │ ├── SplObjectStorageComparatorTest.php │ │ ├── TypeComparatorTest.php │ │ ├── _files │ │ ├── Author.php │ │ ├── Book.php │ │ ├── ClassWithToString.php │ │ ├── SampleClass.php │ │ ├── Struct.php │ │ ├── TestClass.php │ │ └── TestClassComparator.php │ │ ├── autoload.php │ │ └── bootstrap.php ├── diff │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── LCS │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ └── TimeEfficientImplementationTest.php │ │ ├── LineTest.php │ │ ├── ParserTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Console.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php ├── global-state │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Blacklist.php │ │ ├── CodeExporter.php │ │ ├── Exception.php │ │ ├── Restorer.php │ │ ├── RuntimeException.php │ │ └── Snapshot.php │ └── tests │ │ ├── BlacklistTest.php │ │ ├── SnapshotTest.php │ │ └── _fixture │ │ ├── BlacklistedChildClass.php │ │ ├── BlacklistedClass.php │ │ ├── BlacklistedImplementor.php │ │ ├── BlacklistedInterface.php │ │ ├── SnapshotClass.php │ │ ├── SnapshotDomDocument.php │ │ ├── SnapshotFunctions.php │ │ └── SnapshotTrait.php ├── object-enumerator │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Enumerator.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ ├── EnumeratorTest.php │ │ └── Fixtures │ │ └── ExceptionThrower.php ├── recursion-context │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ └── ContextTest.php ├── resource-operations │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── generate.php │ ├── composer.json │ └── src │ │ └── ResourceOperations.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── slim └── slim │ ├── LICENSE.md │ ├── MAINTAINERS.md │ ├── Slim │ ├── App.php │ ├── CallableResolver.php │ ├── CallableResolverAwareTrait.php │ ├── Collection.php │ ├── Container.php │ ├── DefaultServicesProvider.php │ ├── DeferredCallable.php │ ├── Exception │ │ ├── ContainerException.php │ │ ├── ContainerValueNotFoundException.php │ │ ├── InvalidMethodException.php │ │ ├── MethodNotAllowedException.php │ │ ├── NotFoundException.php │ │ └── SlimException.php │ ├── Handlers │ │ ├── AbstractError.php │ │ ├── AbstractHandler.php │ │ ├── Error.php │ │ ├── NotAllowed.php │ │ ├── NotFound.php │ │ ├── PhpError.php │ │ └── Strategies │ │ │ ├── RequestResponse.php │ │ │ └── RequestResponseArgs.php │ ├── Http │ │ ├── Body.php │ │ ├── Cookies.php │ │ ├── Environment.php │ │ ├── Headers.php │ │ ├── Message.php │ │ ├── NonBufferedBody.php │ │ ├── Request.php │ │ ├── RequestBody.php │ │ ├── Response.php │ │ ├── StatusCode.php │ │ ├── Stream.php │ │ ├── UploadedFile.php │ │ └── Uri.php │ ├── Interfaces │ │ ├── CallableResolverInterface.php │ │ ├── CollectionInterface.php │ │ ├── Http │ │ │ ├── CookiesInterface.php │ │ │ ├── EnvironmentInterface.php │ │ │ └── HeadersInterface.php │ │ ├── InvocationStrategyInterface.php │ │ ├── RouteGroupInterface.php │ │ ├── RouteInterface.php │ │ └── RouterInterface.php │ ├── MiddlewareAwareTrait.php │ ├── Routable.php │ ├── Route.php │ ├── RouteGroup.php │ └── Router.php │ ├── composer.json │ └── phpstan.neon.dist ├── smarty └── smarty │ ├── .cvsignore │ ├── BUGS │ ├── COPYING.lib │ ├── ChangeLog │ ├── FAQ │ ├── INSTALL │ ├── NEWS │ ├── QUICK_START │ ├── README │ ├── README.md │ ├── RELEASE_NOTES │ ├── TODO │ ├── composer.json │ ├── demo │ ├── configs │ │ └── test.conf │ ├── index.php │ └── templates │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── index.tpl │ └── libs │ ├── Config_File.class.php │ ├── Smarty.class.php │ ├── Smarty_Compiler.class.php │ ├── debug.tpl │ ├── internals │ ├── core.assemble_plugin_filepath.php │ ├── core.assign_smarty_interface.php │ ├── core.create_dir_structure.php │ ├── core.display_debug_console.php │ ├── core.get_include_path.php │ ├── core.get_microtime.php │ ├── core.get_php_resource.php │ ├── core.is_secure.php │ ├── core.is_trusted.php │ ├── core.load_plugins.php │ ├── core.load_resource_plugin.php │ ├── core.process_cached_inserts.php │ ├── core.process_compiled_include.php │ ├── core.read_cache_file.php │ ├── core.rm_auto.php │ ├── core.rmdir.php │ ├── core.run_insert_handler.php │ ├── core.smarty_include_php.php │ ├── core.write_cache_file.php │ ├── core.write_compiled_include.php │ ├── core.write_compiled_resource.php │ └── core.write_file.php │ └── plugins │ ├── block.textformat.php │ ├── compiler.assign.php │ ├── function.assign_debug_info.php │ ├── function.config_load.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.debug.php │ ├── function.eval.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── function.popup.php │ ├── function.popup_init.php │ ├── modifier.capitalize.php │ ├── modifier.cat.php │ ├── modifier.count_characters.php │ ├── modifier.count_paragraphs.php │ ├── modifier.count_sentences.php │ ├── modifier.count_words.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.default.php │ ├── modifier.escape.php │ ├── modifier.indent.php │ ├── modifier.lower.php │ ├── modifier.nl2br.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.string_format.php │ ├── modifier.strip.php │ ├── modifier.strip_tags.php │ ├── modifier.truncate.php │ ├── modifier.upper.php │ ├── modifier.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ └── shared.make_timestamp.php ├── soundasleep └── html2text │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── convert.php │ ├── html2text.php │ ├── phpunit.xml │ ├── src │ ├── Html2Text.php │ └── Html2TextException.php │ └── tests │ ├── .editorconfig │ ├── Html2TextComponentTest.php │ ├── Html2TextTest.php │ ├── anchors.html │ ├── anchors.txt │ ├── basic.html │ ├── basic.txt │ ├── dom-processing.html │ ├── dom-processing.txt │ ├── empty.html │ ├── empty.txt │ ├── full_email.html │ ├── full_email.txt │ ├── huge-msoffice.html │ ├── huge-msoffice.txt │ ├── images.html │ ├── images.txt │ ├── invalid.html │ ├── invalid.txt │ ├── lists.html │ ├── lists.txt │ ├── more-anchors.html │ ├── more-anchors.txt │ ├── msoffice.html │ ├── msoffice.txt │ ├── nbsp.html │ ├── nbsp.txt │ ├── newlines.html │ ├── newlines.txt │ ├── non-breaking-spaces.html │ ├── non-breaking-spaces.txt │ ├── pre.html │ ├── pre.txt │ ├── table.html │ ├── table.txt │ ├── test3.html │ ├── test3.txt │ ├── test4.html │ ├── test4.txt │ ├── utf8-example.html │ ├── utf8-example.txt │ ├── windows-1252-example.html │ └── windows-1252-example.txt ├── symfony ├── browser-kit │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Client.php │ ├── Cookie.php │ ├── CookieJar.php │ ├── History.php │ ├── LICENSE │ ├── README.md │ ├── Request.php │ ├── Response.php │ ├── Tests │ │ ├── ClientTest.php │ │ ├── CookieJarTest.php │ │ ├── CookieTest.php │ │ ├── HistoryTest.php │ │ ├── RequestTest.php │ │ └── ResponseTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── console │ ├── .gitignore │ ├── Application.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ ├── ListCommand.php │ │ └── LockableTrait.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── ConsoleEvents.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPass.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleErrorEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleExceptionEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ └── OutputFormatterStyleStack.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableSeparator.php │ │ └── TableStyle.php │ ├── Input │ │ ├── ArgvInput.php │ │ ├── ArrayInput.php │ │ ├── Input.php │ │ ├── InputArgument.php │ │ ├── InputAwareInterface.php │ │ ├── InputDefinition.php │ │ ├── InputInterface.php │ │ ├── InputOption.php │ │ ├── StreamableInputInterface.php │ │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ └── StreamOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ └── CommandTester.php │ ├── Tests │ │ ├── ApplicationTest.php │ │ ├── Command │ │ │ ├── CommandTest.php │ │ │ ├── HelpCommandTest.php │ │ │ ├── ListCommandTest.php │ │ │ └── LockableTraitTest.php │ │ ├── CommandLoader │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ └── FactoryCommandLoaderTest.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPassTest.php │ │ ├── Descriptor │ │ │ ├── AbstractDescriptorTest.php │ │ │ ├── ApplicationDescriptionTest.php │ │ │ ├── JsonDescriptorTest.php │ │ │ ├── MarkdownDescriptorTest.php │ │ │ ├── ObjectsProvider.php │ │ │ ├── TextDescriptorTest.php │ │ │ └── XmlDescriptorTest.php │ │ ├── EventListener │ │ │ └── ErrorListenerTest.php │ │ ├── Fixtures │ │ │ ├── BarBucCommand.php │ │ │ ├── DescriptorApplication1.php │ │ │ ├── DescriptorApplication2.php │ │ │ ├── DescriptorApplicationMbString.php │ │ │ ├── DescriptorCommand1.php │ │ │ ├── DescriptorCommand2.php │ │ │ ├── DescriptorCommand3.php │ │ │ ├── DescriptorCommand4.php │ │ │ ├── DescriptorCommandMbString.php │ │ │ ├── DummyOutput.php │ │ │ ├── Foo1Command.php │ │ │ ├── Foo2Command.php │ │ │ ├── Foo3Command.php │ │ │ ├── Foo4Command.php │ │ │ ├── Foo5Command.php │ │ │ ├── Foo6Command.php │ │ │ ├── FooCommand.php │ │ │ ├── FooHiddenCommand.php │ │ │ ├── FooLock2Command.php │ │ │ ├── FooLockCommand.php │ │ │ ├── FooOptCommand.php │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ ├── FooSubnamespaced1Command.php │ │ │ ├── FooSubnamespaced2Command.php │ │ │ ├── FoobarCommand.php │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ ├── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ ├── command_1.php │ │ │ │ │ ├── command_10.php │ │ │ │ │ ├── command_11.php │ │ │ │ │ ├── command_12.php │ │ │ │ │ ├── command_13.php │ │ │ │ │ ├── command_14.php │ │ │ │ │ ├── command_15.php │ │ │ │ │ ├── command_16.php │ │ │ │ │ ├── command_17.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ ├── command_7.php │ │ │ │ │ ├── command_8.php │ │ │ │ │ ├── command_9.php │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ └── output │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_10.txt │ │ │ │ │ ├── output_11.txt │ │ │ │ │ ├── output_12.txt │ │ │ │ │ ├── output_13.txt │ │ │ │ │ ├── output_14.txt │ │ │ │ │ ├── output_15.txt │ │ │ │ │ ├── output_16.txt │ │ │ │ │ ├── output_17.txt │ │ │ │ │ ├── output_2.txt │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_4.txt │ │ │ │ │ ├── output_5.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── output_8.txt │ │ │ │ │ └── output_9.txt │ │ │ ├── TestAmbiguousCommandRegistering.php │ │ │ ├── TestAmbiguousCommandRegistering2.php │ │ │ ├── TestCommand.php │ │ │ ├── application_1.json │ │ │ ├── application_1.md │ │ │ ├── application_1.txt │ │ │ ├── application_1.xml │ │ │ ├── application_2.json │ │ │ ├── application_2.md │ │ │ ├── application_2.txt │ │ │ ├── application_2.xml │ │ │ ├── application_filtered_namespace.txt │ │ │ ├── application_gethelp.txt │ │ │ ├── application_mbstring.md │ │ │ ├── application_mbstring.txt │ │ │ ├── application_renderexception1.txt │ │ │ ├── application_renderexception2.txt │ │ │ ├── application_renderexception3.txt │ │ │ ├── application_renderexception3decorated.txt │ │ │ ├── application_renderexception4.txt │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ ├── application_renderexception_linebreaks.txt │ │ │ ├── application_run1.txt │ │ │ ├── application_run2.txt │ │ │ ├── application_run3.txt │ │ │ ├── application_run4.txt │ │ │ ├── command_1.json │ │ │ ├── command_1.md │ │ │ ├── command_1.txt │ │ │ ├── command_1.xml │ │ │ ├── command_2.json │ │ │ ├── command_2.md │ │ │ ├── command_2.txt │ │ │ ├── command_2.xml │ │ │ ├── command_mbstring.md │ │ │ ├── command_mbstring.txt │ │ │ ├── input_argument_1.json │ │ │ ├── input_argument_1.md │ │ │ ├── input_argument_1.txt │ │ │ ├── input_argument_1.xml │ │ │ ├── input_argument_2.json │ │ │ ├── input_argument_2.md │ │ │ ├── input_argument_2.txt │ │ │ ├── input_argument_2.xml │ │ │ ├── input_argument_3.json │ │ │ ├── input_argument_3.md │ │ │ ├── input_argument_3.txt │ │ │ ├── input_argument_3.xml │ │ │ ├── input_argument_4.json │ │ │ ├── input_argument_4.md │ │ │ ├── input_argument_4.txt │ │ │ ├── input_argument_4.xml │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ ├── input_argument_with_style.json │ │ │ ├── input_argument_with_style.md │ │ │ ├── input_argument_with_style.txt │ │ │ ├── input_argument_with_style.xml │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_1.md │ │ │ ├── input_definition_1.txt │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.json │ │ │ ├── input_definition_2.md │ │ │ ├── input_definition_2.txt │ │ │ ├── input_definition_2.xml │ │ │ ├── input_definition_3.json │ │ │ ├── input_definition_3.md │ │ │ ├── input_definition_3.txt │ │ │ ├── input_definition_3.xml │ │ │ ├── input_definition_4.json │ │ │ ├── input_definition_4.md │ │ │ ├── input_definition_4.txt │ │ │ ├── input_definition_4.xml │ │ │ ├── input_option_1.json │ │ │ ├── input_option_1.md │ │ │ ├── input_option_1.txt │ │ │ ├── input_option_1.xml │ │ │ ├── input_option_2.json │ │ │ ├── input_option_2.md │ │ │ ├── input_option_2.txt │ │ │ ├── input_option_2.xml │ │ │ ├── input_option_3.json │ │ │ ├── input_option_3.md │ │ │ ├── input_option_3.txt │ │ │ ├── input_option_3.xml │ │ │ ├── input_option_4.json │ │ │ ├── input_option_4.md │ │ │ ├── input_option_4.txt │ │ │ ├── input_option_4.xml │ │ │ ├── input_option_5.json │ │ │ ├── input_option_5.md │ │ │ ├── input_option_5.txt │ │ │ ├── input_option_5.xml │ │ │ ├── input_option_6.json │ │ │ ├── input_option_6.md │ │ │ ├── input_option_6.txt │ │ │ ├── input_option_6.xml │ │ │ ├── input_option_with_default_inf_value.json │ │ │ ├── input_option_with_default_inf_value.md │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ ├── input_option_with_style.json │ │ │ ├── input_option_with_style.md │ │ │ ├── input_option_with_style.txt │ │ │ ├── input_option_with_style.xml │ │ │ ├── input_option_with_style_array.json │ │ │ ├── input_option_with_style_array.md │ │ │ ├── input_option_with_style_array.txt │ │ │ ├── input_option_with_style_array.xml │ │ │ └── stream_output_file.txt │ │ ├── Formatter │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ ├── OutputFormatterStyleTest.php │ │ │ └── OutputFormatterTest.php │ │ ├── Helper │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── HelperTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ ├── TableStyleTest.php │ │ │ └── TableTest.php │ │ ├── Input │ │ │ ├── ArgvInputTest.php │ │ │ ├── ArrayInputTest.php │ │ │ ├── InputArgumentTest.php │ │ │ ├── InputDefinitionTest.php │ │ │ ├── InputOptionTest.php │ │ │ ├── InputTest.php │ │ │ └── StringInputTest.php │ │ ├── Logger │ │ │ └── ConsoleLoggerTest.php │ │ ├── Output │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── NullOutputTest.php │ │ │ ├── OutputTest.php │ │ │ └── StreamOutputTest.php │ │ ├── Question │ │ │ ├── ChoiceQuestionTest.php │ │ │ └── ConfirmationQuestionTest.php │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ ├── TerminalTest.php │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── css-selector │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CssSelectorConverter.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ ├── LICENSE │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ ├── README.md │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ ├── composer.json │ └── phpunit.xml.dist ├── debug │ ├── .gitignore │ ├── BufferingLogger.php │ ├── CHANGELOG.md │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── ErrorHandler.php │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ContextErrorException.php │ │ ├── FatalErrorException.php │ │ ├── FatalThrowableError.php │ │ ├── FlattenException.php │ │ ├── OutOfMemoryException.php │ │ ├── SilencedErrorContext.php │ │ ├── UndefinedFunctionException.php │ │ └── UndefinedMethodException.php │ ├── ExceptionHandler.php │ ├── FatalErrorHandler │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ ├── FatalErrorHandlerInterface.php │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ └── UndefinedMethodFatalErrorHandler.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── ext │ │ │ ├── README.md │ │ │ ├── config.m4 │ │ │ ├── config.w32 │ │ │ ├── php_symfony_debug.h │ │ │ ├── symfony_debug.c │ │ │ └── tests │ │ │ ├── 001.phpt │ │ │ ├── 002.phpt │ │ │ ├── 002_1.phpt │ │ │ └── 003.phpt │ ├── Tests │ │ ├── DebugClassLoaderTest.php │ │ ├── ErrorHandlerTest.php │ │ ├── Exception │ │ │ └── FlattenExceptionTest.php │ │ ├── ExceptionHandlerTest.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ ├── Fixtures │ │ │ ├── AnnotatedClass.php │ │ │ ├── ClassAlias.php │ │ │ ├── DefinitionInEvaluatedCode.php │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ │ ├── ExtendedFinalMethod.php │ │ │ ├── FinalClasses.php │ │ │ ├── FinalMethod.php │ │ │ ├── FinalMethod2Trait.php │ │ │ ├── InternalClass.php │ │ │ ├── InternalInterface.php │ │ │ ├── InternalTrait.php │ │ │ ├── InternalTrait2.php │ │ │ ├── LoggerThatSetAnErrorHandler.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── PEARClass.php │ │ │ ├── Throwing.php │ │ │ ├── ToStringThrower.php │ │ │ ├── TraitWithInternalMethod.php │ │ │ ├── casemismatch.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ └── reallyNotPsr0.php │ │ ├── Fixtures2 │ │ │ └── RequiredTwice.php │ │ ├── HeaderMock.php │ │ └── phpt │ │ │ ├── debug_class_loader.phpt │ │ │ ├── decorate_exception_hander.phpt │ │ │ ├── exception_rethrown.phpt │ │ │ └── fatal_with_nested_handlers.phpt │ ├── composer.json │ └── phpunit.xml.dist ├── dom-crawler │ ├── .gitignore │ ├── AbstractUriElement.php │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ │ ├── ChoiceFormField.php │ │ ├── FileFormField.php │ │ ├── FormField.php │ │ ├── InputFormField.php │ │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── Image.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Tests │ │ ├── CrawlerTest.php │ │ ├── Field │ │ │ ├── ChoiceFormFieldTest.php │ │ │ ├── FileFormFieldTest.php │ │ │ ├── FormFieldTest.php │ │ │ ├── FormFieldTestCase.php │ │ │ ├── InputFormFieldTest.php │ │ │ └── TextareaFormFieldTest.php │ │ ├── Fixtures │ │ │ ├── no-extension │ │ │ └── windows-1250.html │ │ ├── FormTest.php │ │ ├── ImageTest.php │ │ └── LinkTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── event-dispatcher │ ├── .gitignore │ ├── CHANGELOG.md │ ├── 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 │ ├── README.md │ ├── Tests │ │ ├── AbstractEventDispatcherTest.php │ │ ├── ContainerAwareEventDispatcherTest.php │ │ ├── Debug │ │ │ ├── TraceableEventDispatcherTest.php │ │ │ └── WrappedListenerTest.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ ├── EventDispatcherTest.php │ │ ├── EventTest.php │ │ ├── GenericEventTest.php │ │ └── ImmutableEventDispatcherTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── filesystem │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ └── IOExceptionInterface.php │ ├── Filesystem.php │ ├── LICENSE │ ├── LockHandler.php │ ├── README.md │ ├── Tests │ │ ├── ExceptionTest.php │ │ ├── FilesystemTest.php │ │ ├── FilesystemTestCase.php │ │ ├── Fixtures │ │ │ └── MockStream │ │ │ │ └── MockStream.php │ │ └── LockHandlerTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── finder │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Comparator │ │ ├── Comparator.php │ │ ├── DateComparator.php │ │ └── NumberComparator.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ └── ExceptionInterface.php │ ├── Finder.php │ ├── Glob.php │ ├── Iterator │ │ ├── CustomFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── ExcludeDirectoryFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ ├── FilenameFilterIterator.php │ │ ├── FilterIterator.php │ │ ├── MultiplePcreFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── RecursiveDirectoryIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ └── SortableIterator.php │ ├── LICENSE │ ├── README.md │ ├── SplFileInfo.php │ ├── Tests │ │ ├── Comparator │ │ │ ├── ComparatorTest.php │ │ │ ├── DateComparatorTest.php │ │ │ └── NumberComparatorTest.php │ │ ├── FinderTest.php │ │ ├── Fixtures │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ └── a.dat │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ ├── dolor.txt │ │ │ ├── ipsum.txt │ │ │ ├── lorem.txt │ │ │ ├── one │ │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ └── with space │ │ │ │ └── foo.txt │ │ ├── GlobTest.php │ │ └── Iterator │ │ │ ├── CustomFilterIteratorTest.php │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ ├── FilterIteratorTest.php │ │ │ ├── Iterator.php │ │ │ ├── IteratorTestCase.php │ │ │ ├── MockFileListIterator.php │ │ │ ├── MockSplFileInfo.php │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ ├── PathFilterIteratorTest.php │ │ │ ├── RealIteratorTestCase.php │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ └── SortableIteratorTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── options-resolver │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Debug │ │ └── OptionsResolverIntrospector.php │ ├── Exception │ │ ├── AccessException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── MissingOptionsException.php │ │ ├── NoConfigurationException.php │ │ ├── NoSuchOptionException.php │ │ ├── OptionDefinitionException.php │ │ └── UndefinedOptionsException.php │ ├── LICENSE │ ├── Options.php │ ├── OptionsResolver.php │ ├── README.md │ ├── Tests │ │ ├── Debug │ │ │ └── OptionsResolverIntrospectorTest.php │ │ └── OptionsResolverTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-ctype │ ├── Ctype.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-iconv │ ├── Iconv.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── charset │ │ │ ├── from.big5.php │ │ │ ├── from.cp037.php │ │ │ ├── from.cp1006.php │ │ │ ├── from.cp1026.php │ │ │ ├── from.cp424.php │ │ │ ├── from.cp437.php │ │ │ ├── from.cp500.php │ │ │ ├── from.cp737.php │ │ │ ├── from.cp775.php │ │ │ ├── from.cp850.php │ │ │ ├── from.cp852.php │ │ │ ├── from.cp855.php │ │ │ ├── from.cp856.php │ │ │ ├── from.cp857.php │ │ │ ├── from.cp860.php │ │ │ ├── from.cp861.php │ │ │ ├── from.cp862.php │ │ │ ├── from.cp863.php │ │ │ ├── from.cp864.php │ │ │ ├── from.cp865.php │ │ │ ├── from.cp866.php │ │ │ ├── from.cp869.php │ │ │ ├── from.cp874.php │ │ │ ├── from.cp875.php │ │ │ ├── from.cp932.php │ │ │ ├── from.cp936.php │ │ │ ├── from.cp949.php │ │ │ ├── from.cp950.php │ │ │ ├── from.iso-8859-1.php │ │ │ ├── from.iso-8859-10.php │ │ │ ├── from.iso-8859-11.php │ │ │ ├── from.iso-8859-13.php │ │ │ ├── from.iso-8859-14.php │ │ │ ├── from.iso-8859-15.php │ │ │ ├── from.iso-8859-16.php │ │ │ ├── from.iso-8859-2.php │ │ │ ├── from.iso-8859-3.php │ │ │ ├── from.iso-8859-4.php │ │ │ ├── from.iso-8859-5.php │ │ │ ├── from.iso-8859-6.php │ │ │ ├── from.iso-8859-7.php │ │ │ ├── from.iso-8859-8.php │ │ │ ├── from.iso-8859-9.php │ │ │ ├── from.koi8-r.php │ │ │ ├── from.koi8-u.php │ │ │ ├── from.us-ascii.php │ │ │ ├── from.windows-1250.php │ │ │ ├── from.windows-1251.php │ │ │ ├── from.windows-1252.php │ │ │ ├── from.windows-1253.php │ │ │ ├── from.windows-1254.php │ │ │ ├── from.windows-1255.php │ │ │ ├── from.windows-1256.php │ │ │ ├── from.windows-1257.php │ │ │ ├── from.windows-1258.php │ │ │ └── translit.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-intl-idn │ ├── Idn.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-php70 │ ├── LICENSE │ ├── Php70.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── ArithmeticError.php │ │ │ ├── AssertionError.php │ │ │ ├── DivisionByZeroError.php │ │ │ ├── Error.php │ │ │ ├── ParseError.php │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ └── TypeError.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── process │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── InputStream.php │ ├── LICENSE │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Pipes │ │ ├── AbstractPipes.php │ │ ├── PipesInterface.php │ │ ├── UnixPipes.php │ │ └── WindowsPipes.php │ ├── Process.php │ ├── ProcessBuilder.php │ ├── ProcessUtils.php │ ├── README.md │ ├── Tests │ │ ├── ErrorProcessInitiator.php │ │ ├── ExecutableFinderTest.php │ │ ├── NonStopableProcess.php │ │ ├── PhpExecutableFinderTest.php │ │ ├── PhpProcessTest.php │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ ├── ProcessBuilderTest.php │ │ ├── ProcessFailedExceptionTest.php │ │ ├── ProcessTest.php │ │ ├── ProcessUtilsTest.php │ │ └── SignalListener.php │ ├── composer.json │ └── phpunit.xml.dist ├── stopwatch │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Section.php │ ├── Stopwatch.php │ ├── StopwatchEvent.php │ ├── StopwatchPeriod.php │ ├── Tests │ │ ├── StopwatchEventTest.php │ │ ├── StopwatchPeriodTest.php │ │ └── StopwatchTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── translation │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Catalogue │ │ ├── AbstractOperation.php │ │ ├── MergeOperation.php │ │ ├── OperationInterface.php │ │ └── TargetOperation.php │ ├── Command │ │ └── XliffLintCommand.php │ ├── DataCollector │ │ └── TranslationDataCollector.php │ ├── DataCollectorTranslator.php │ ├── DependencyInjection │ │ ├── TranslationDumperPass.php │ │ ├── TranslationExtractorPass.php │ │ └── TranslatorPass.php │ ├── Dumper │ │ ├── CsvFileDumper.php │ │ ├── DumperInterface.php │ │ ├── FileDumper.php │ │ ├── IcuResFileDumper.php │ │ ├── IniFileDumper.php │ │ ├── JsonFileDumper.php │ │ ├── MoFileDumper.php │ │ ├── PhpFileDumper.php │ │ ├── PoFileDumper.php │ │ ├── QtFileDumper.php │ │ ├── XliffFileDumper.php │ │ └── YamlFileDumper.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidResourceException.php │ │ ├── LogicException.php │ │ ├── NotFoundResourceException.php │ │ └── RuntimeException.php │ ├── Extractor │ │ ├── AbstractFileExtractor.php │ │ ├── ChainExtractor.php │ │ ├── ExtractorInterface.php │ │ ├── PhpExtractor.php │ │ └── PhpStringTokenParser.php │ ├── Formatter │ │ ├── ChoiceMessageFormatterInterface.php │ │ ├── MessageFormatter.php │ │ └── MessageFormatterInterface.php │ ├── IdentityTranslator.php │ ├── Interval.php │ ├── LICENSE │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CsvFileLoader.php │ │ ├── FileLoader.php │ │ ├── IcuDatFileLoader.php │ │ ├── IcuResFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── JsonFileLoader.php │ │ ├── LoaderInterface.php │ │ ├── MoFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── PoFileLoader.php │ │ ├── QtFileLoader.php │ │ ├── XliffFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── dic │ │ │ └── xliff-core │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ ├── LoggingTranslator.php │ ├── MessageCatalogue.php │ ├── MessageCatalogueInterface.php │ ├── MessageSelector.php │ ├── MetadataAwareInterface.php │ ├── PluralizationRules.php │ ├── README.md │ ├── Reader │ │ ├── TranslationReader.php │ │ └── TranslationReaderInterface.php │ ├── Resources │ │ ├── bin │ │ │ └── translation-status.php │ │ └── schemas │ │ │ └── xliff-core-1.2-strict.xsd │ ├── Tests │ │ ├── Catalogue │ │ │ ├── AbstractOperationTest.php │ │ │ ├── MergeOperationTest.php │ │ │ └── TargetOperationTest.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollectorTest.php │ │ ├── DataCollectorTranslatorTest.php │ │ ├── DependencyInjection │ │ │ ├── TranslationDumperPassTest.php │ │ │ ├── TranslationExtractorPassTest.php │ │ │ └── TranslationPassTest.php │ │ ├── Dumper │ │ │ ├── CsvFileDumperTest.php │ │ │ ├── FileDumperTest.php │ │ │ ├── IcuResFileDumperTest.php │ │ │ ├── IniFileDumperTest.php │ │ │ ├── JsonFileDumperTest.php │ │ │ ├── MoFileDumperTest.php │ │ │ ├── PhpFileDumperTest.php │ │ │ ├── PoFileDumperTest.php │ │ │ ├── QtFileDumperTest.php │ │ │ ├── XliffFileDumperTest.php │ │ │ └── YamlFileDumperTest.php │ │ ├── Extractor │ │ │ └── PhpExtractorTest.php │ │ ├── Formatter │ │ │ └── MessageFormatterTest.php │ │ ├── IdentityTranslatorTest.php │ │ ├── IntervalTest.php │ │ ├── Loader │ │ │ ├── CsvFileLoaderTest.php │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ ├── IcuResFileLoaderTest.php │ │ │ ├── IniFileLoaderTest.php │ │ │ ├── JsonFileLoaderTest.php │ │ │ ├── LocalizedTestCase.php │ │ │ ├── MoFileLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── PoFileLoaderTest.php │ │ │ ├── QtFileLoaderTest.php │ │ │ ├── XliffFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ ├── LoggingTranslatorTest.php │ │ ├── MessageCatalogueTest.php │ │ ├── MessageSelectorTest.php │ │ ├── PluralizationRulesTest.php │ │ ├── TranslatorCacheTest.php │ │ ├── TranslatorTest.php │ │ ├── Util │ │ │ └── ArrayConverterTest.php │ │ ├── Writer │ │ │ └── TranslationWriterTest.php │ │ └── fixtures │ │ │ ├── empty-translation.mo │ │ │ ├── empty-translation.po │ │ │ ├── empty.csv │ │ │ ├── empty.ini │ │ │ ├── empty.json │ │ │ ├── empty.mo │ │ │ ├── empty.po │ │ │ ├── empty.xlf │ │ │ ├── empty.yml │ │ │ ├── encoding.xlf │ │ │ ├── escaped-id-plurals.po │ │ │ ├── escaped-id.po │ │ │ ├── extractor │ │ │ ├── resource.format.engine │ │ │ ├── this.is.a.template.format.engine │ │ │ └── translation.html.php │ │ │ ├── fuzzy-translations.po │ │ │ ├── invalid-xml-resources.xlf │ │ │ ├── malformed.json │ │ │ ├── messages.yml │ │ │ ├── messages_linear.yml │ │ │ ├── missing-plurals.po │ │ │ ├── non-valid.xlf │ │ │ ├── non-valid.yml │ │ │ ├── plurals.mo │ │ │ ├── plurals.po │ │ │ ├── resname.xlf │ │ │ ├── resourcebundle │ │ │ ├── corrupted │ │ │ │ └── resources.dat │ │ │ ├── dat │ │ │ │ ├── en.res │ │ │ │ ├── en.txt │ │ │ │ ├── fr.res │ │ │ │ ├── fr.txt │ │ │ │ ├── packagelist.txt │ │ │ │ └── resources.dat │ │ │ └── res │ │ │ │ └── en.res │ │ │ ├── resources-2.0-clean.xlf │ │ │ ├── resources-2.0-multi-segment-unit.xlf │ │ │ ├── resources-2.0.xlf │ │ │ ├── resources-clean.xlf │ │ │ ├── resources-notes-meta.xlf │ │ │ ├── resources-target-attributes.xlf │ │ │ ├── resources-tool-info.xlf │ │ │ ├── resources.csv │ │ │ ├── resources.dump.json │ │ │ ├── resources.ini │ │ │ ├── resources.json │ │ │ ├── resources.mo │ │ │ ├── resources.php │ │ │ ├── resources.po │ │ │ ├── resources.ts │ │ │ ├── resources.xlf │ │ │ ├── resources.yml │ │ │ ├── valid.csv │ │ │ ├── with-attributes.xlf │ │ │ ├── withdoctype.xlf │ │ │ └── withnote.xlf │ ├── Translator.php │ ├── TranslatorBagInterface.php │ ├── TranslatorInterface.php │ ├── Util │ │ └── ArrayConverter.php │ ├── Writer │ │ ├── TranslationWriter.php │ │ └── TranslationWriterInterface.php │ ├── composer.json │ └── phpunit.xml.dist ├── validator │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Constraint.php │ ├── ConstraintValidator.php │ ├── ConstraintValidatorFactory.php │ ├── ConstraintValidatorFactoryInterface.php │ ├── ConstraintValidatorInterface.php │ ├── ConstraintViolation.php │ ├── ConstraintViolationInterface.php │ ├── ConstraintViolationList.php │ ├── ConstraintViolationListInterface.php │ ├── Constraints │ │ ├── AbstractComparison.php │ │ ├── AbstractComparisonValidator.php │ │ ├── All.php │ │ ├── AllValidator.php │ │ ├── Bic.php │ │ ├── BicValidator.php │ │ ├── Blank.php │ │ ├── BlankValidator.php │ │ ├── Callback.php │ │ ├── CallbackValidator.php │ │ ├── CardScheme.php │ │ ├── CardSchemeValidator.php │ │ ├── Choice.php │ │ ├── ChoiceValidator.php │ │ ├── Collection.php │ │ ├── CollectionValidator.php │ │ ├── Composite.php │ │ ├── Count.php │ │ ├── CountValidator.php │ │ ├── Country.php │ │ ├── CountryValidator.php │ │ ├── Currency.php │ │ ├── CurrencyValidator.php │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── DateTimeValidator.php │ │ ├── DateValidator.php │ │ ├── Email.php │ │ ├── EmailValidator.php │ │ ├── EqualTo.php │ │ ├── EqualToValidator.php │ │ ├── Existence.php │ │ ├── Expression.php │ │ ├── ExpressionValidator.php │ │ ├── File.php │ │ ├── FileValidator.php │ │ ├── GreaterThan.php │ │ ├── GreaterThanOrEqual.php │ │ ├── GreaterThanOrEqualValidator.php │ │ ├── GreaterThanValidator.php │ │ ├── GroupSequence.php │ │ ├── GroupSequenceProvider.php │ │ ├── Iban.php │ │ ├── IbanValidator.php │ │ ├── IdenticalTo.php │ │ ├── IdenticalToValidator.php │ │ ├── Image.php │ │ ├── ImageValidator.php │ │ ├── Ip.php │ │ ├── IpValidator.php │ │ ├── IsFalse.php │ │ ├── IsFalseValidator.php │ │ ├── IsNull.php │ │ ├── IsNullValidator.php │ │ ├── IsTrue.php │ │ ├── IsTrueValidator.php │ │ ├── Isbn.php │ │ ├── IsbnValidator.php │ │ ├── Issn.php │ │ ├── IssnValidator.php │ │ ├── Language.php │ │ ├── LanguageValidator.php │ │ ├── Length.php │ │ ├── LengthValidator.php │ │ ├── LessThan.php │ │ ├── LessThanOrEqual.php │ │ ├── LessThanOrEqualValidator.php │ │ ├── LessThanValidator.php │ │ ├── Locale.php │ │ ├── LocaleValidator.php │ │ ├── Luhn.php │ │ ├── LuhnValidator.php │ │ ├── NotBlank.php │ │ ├── NotBlankValidator.php │ │ ├── NotEqualTo.php │ │ ├── NotEqualToValidator.php │ │ ├── NotIdenticalTo.php │ │ ├── NotIdenticalToValidator.php │ │ ├── NotNull.php │ │ ├── NotNullValidator.php │ │ ├── Optional.php │ │ ├── Range.php │ │ ├── RangeValidator.php │ │ ├── Regex.php │ │ ├── RegexValidator.php │ │ ├── Required.php │ │ ├── Time.php │ │ ├── TimeValidator.php │ │ ├── Traverse.php │ │ ├── Type.php │ │ ├── TypeValidator.php │ │ ├── Url.php │ │ ├── UrlValidator.php │ │ ├── Uuid.php │ │ ├── UuidValidator.php │ │ ├── Valid.php │ │ └── ValidValidator.php │ ├── ContainerConstraintValidatorFactory.php │ ├── Context │ │ ├── ExecutionContext.php │ │ ├── ExecutionContextFactory.php │ │ ├── ExecutionContextFactoryInterface.php │ │ └── ExecutionContextInterface.php │ ├── DataCollector │ │ └── ValidatorDataCollector.php │ ├── DependencyInjection │ │ ├── AddConstraintValidatorsPass.php │ │ └── AddValidatorInitializersPass.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── ConstraintDefinitionException.php │ │ ├── ExceptionInterface.php │ │ ├── GroupDefinitionException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── MappingException.php │ │ ├── MissingOptionsException.php │ │ ├── NoSuchMetadataException.php │ │ ├── OutOfBoundsException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedTypeException.php │ │ ├── UnsupportedMetadataException.php │ │ └── ValidatorException.php │ ├── GroupSequenceProviderInterface.php │ ├── LICENSE │ ├── Mapping │ │ ├── Cache │ │ │ ├── CacheInterface.php │ │ │ ├── DoctrineCache.php │ │ │ └── Psr6Cache.php │ │ ├── CascadingStrategy.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataInterface.php │ │ ├── Factory │ │ │ ├── BlackHoleMetadataFactory.php │ │ │ ├── LazyLoadingMetadataFactory.php │ │ │ └── MetadataFactoryInterface.php │ │ ├── GenericMetadata.php │ │ ├── GetterMetadata.php │ │ ├── Loader │ │ │ ├── AbstractLoader.php │ │ │ ├── AnnotationLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── FilesLoader.php │ │ │ ├── LoaderChain.php │ │ │ ├── LoaderInterface.php │ │ │ ├── StaticMethodLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── XmlFilesLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ ├── YamlFilesLoader.php │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── constraint-mapping │ │ │ │ └── constraint-mapping-1.0.xsd │ │ ├── MemberMetadata.php │ │ ├── MetadataInterface.php │ │ ├── PropertyMetadata.php │ │ ├── PropertyMetadataInterface.php │ │ └── TraversalStrategy.php │ ├── ObjectInitializerInterface.php │ ├── README.md │ ├── Resources │ │ └── translations │ │ │ ├── validators.af.xlf │ │ │ ├── validators.ar.xlf │ │ │ ├── validators.az.xlf │ │ │ ├── validators.be.xlf │ │ │ ├── validators.bg.xlf │ │ │ ├── validators.ca.xlf │ │ │ ├── validators.cs.xlf │ │ │ ├── validators.cy.xlf │ │ │ ├── validators.da.xlf │ │ │ ├── validators.de.xlf │ │ │ ├── validators.el.xlf │ │ │ ├── validators.en.xlf │ │ │ ├── validators.es.xlf │ │ │ ├── validators.et.xlf │ │ │ ├── validators.eu.xlf │ │ │ ├── validators.fa.xlf │ │ │ ├── validators.fi.xlf │ │ │ ├── validators.fr.xlf │ │ │ ├── validators.gl.xlf │ │ │ ├── validators.he.xlf │ │ │ ├── validators.hr.xlf │ │ │ ├── validators.hu.xlf │ │ │ ├── validators.hy.xlf │ │ │ ├── validators.id.xlf │ │ │ ├── validators.it.xlf │ │ │ ├── validators.ja.xlf │ │ │ ├── validators.lb.xlf │ │ │ ├── validators.lt.xlf │ │ │ ├── validators.lv.xlf │ │ │ ├── validators.mn.xlf │ │ │ ├── validators.nb.xlf │ │ │ ├── validators.nl.xlf │ │ │ ├── validators.nn.xlf │ │ │ ├── validators.no.xlf │ │ │ ├── validators.pl.xlf │ │ │ ├── validators.pt.xlf │ │ │ ├── validators.pt_BR.xlf │ │ │ ├── validators.ro.xlf │ │ │ ├── validators.ru.xlf │ │ │ ├── validators.sk.xlf │ │ │ ├── validators.sl.xlf │ │ │ ├── validators.sq.xlf │ │ │ ├── validators.sr_Cyrl.xlf │ │ │ ├── validators.sr_Latn.xlf │ │ │ ├── validators.sv.xlf │ │ │ ├── validators.th.xlf │ │ │ ├── validators.tl.xlf │ │ │ ├── validators.tr.xlf │ │ │ ├── validators.uk.xlf │ │ │ ├── validators.vi.xlf │ │ │ ├── validators.zh_CN.xlf │ │ │ └── validators.zh_TW.xlf │ ├── Test │ │ ├── ConstraintValidatorTestCase.php │ │ └── ForwardCompatTestTrait.php │ ├── Tests │ │ ├── ConstraintTest.php │ │ ├── ConstraintValidatorTest.php │ │ ├── ConstraintViolationListTest.php │ │ ├── ConstraintViolationTest.php │ │ ├── Constraints │ │ │ ├── AbstractComparisonValidatorTestCase.php │ │ │ ├── AbstractConstraintValidatorTest.php │ │ │ ├── AllTest.php │ │ │ ├── AllValidatorTest.php │ │ │ ├── BicValidatorTest.php │ │ │ ├── BlankValidatorTest.php │ │ │ ├── CallbackValidatorTest.php │ │ │ ├── CardSchemeValidatorTest.php │ │ │ ├── ChoiceValidatorTest.php │ │ │ ├── CollectionTest.php │ │ │ ├── CollectionValidatorArrayObjectTest.php │ │ │ ├── CollectionValidatorArrayTest.php │ │ │ ├── CollectionValidatorCustomArrayObjectTest.php │ │ │ ├── CollectionValidatorTest.php │ │ │ ├── CompositeTest.php │ │ │ ├── CountValidatorArrayTest.php │ │ │ ├── CountValidatorCountableTest.php │ │ │ ├── CountValidatorTest.php │ │ │ ├── CountryValidatorTest.php │ │ │ ├── CurrencyValidatorTest.php │ │ │ ├── DateTimeValidatorTest.php │ │ │ ├── DateValidatorTest.php │ │ │ ├── EmailValidatorTest.php │ │ │ ├── EqualToValidatorTest.php │ │ │ ├── ExpressionValidatorTest.php │ │ │ ├── FileTest.php │ │ │ ├── FileValidatorObjectTest.php │ │ │ ├── FileValidatorPathTest.php │ │ │ ├── FileValidatorTest.php │ │ │ ├── Fixtures │ │ │ │ ├── ChildA.php │ │ │ │ ├── ChildB.php │ │ │ │ ├── foo │ │ │ │ ├── test.gif │ │ │ │ ├── test_4by3.gif │ │ │ │ ├── test_corrupted.gif │ │ │ │ ├── test_landscape.gif │ │ │ │ └── test_portrait.gif │ │ │ ├── GreaterThanOrEqualValidatorTest.php │ │ │ ├── GreaterThanValidatorTest.php │ │ │ ├── GroupSequenceTest.php │ │ │ ├── IbanValidatorTest.php │ │ │ ├── IdenticalToValidatorTest.php │ │ │ ├── ImageValidatorTest.php │ │ │ ├── IpValidatorTest.php │ │ │ ├── IsFalseValidatorTest.php │ │ │ ├── IsNullValidatorTest.php │ │ │ ├── IsTrueValidatorTest.php │ │ │ ├── IsbnValidatorTest.php │ │ │ ├── IssnValidatorTest.php │ │ │ ├── LanguageValidatorTest.php │ │ │ ├── LengthValidatorTest.php │ │ │ ├── LessThanOrEqualValidatorTest.php │ │ │ ├── LessThanValidatorTest.php │ │ │ ├── LocaleValidatorTest.php │ │ │ ├── LuhnValidatorTest.php │ │ │ ├── NotBlankValidatorTest.php │ │ │ ├── NotEqualToValidatorTest.php │ │ │ ├── NotIdenticalToValidatorTest.php │ │ │ ├── NotNullValidatorTest.php │ │ │ ├── RangeValidatorTest.php │ │ │ ├── RegexTest.php │ │ │ ├── RegexValidatorTest.php │ │ │ ├── TimeValidatorTest.php │ │ │ ├── TypeValidatorTest.php │ │ │ ├── UrlValidatorTest.php │ │ │ ├── UuidValidatorTest.php │ │ │ ├── ValidTest.php │ │ │ └── ValidValidatorTest.php │ │ ├── ContainerConstraintValidatorFactoryTest.php │ │ ├── DataCollector │ │ │ └── ValidatorDataCollectorTest.php │ │ ├── DependencyInjection │ │ │ ├── AddConstraintValidatorsPassTest.php │ │ │ └── AddValidatorInitializersPassTest.php │ │ ├── Fixtures │ │ │ ├── AbstractPropertyGetter.php │ │ │ ├── CallbackClass.php │ │ │ ├── ChildGetterInterface.php │ │ │ ├── ClassConstraint.php │ │ │ ├── ConstraintA.php │ │ │ ├── ConstraintB.php │ │ │ ├── ConstraintC.php │ │ │ ├── ConstraintWithValue.php │ │ │ ├── ConstraintWithValueAsDefault.php │ │ │ ├── Countable.php │ │ │ ├── CustomArrayObject.php │ │ │ ├── Entity.php │ │ │ ├── EntityInterfaceA.php │ │ │ ├── EntityInterfaceB.php │ │ │ ├── EntityParent.php │ │ │ ├── EntityParentInterface.php │ │ │ ├── EntityStaticCar.php │ │ │ ├── EntityStaticCarTurbo.php │ │ │ ├── EntityStaticVehicle.php │ │ │ ├── EntityWithGroupedConstraintOnMethods.php │ │ │ ├── Entity_74.php │ │ │ ├── Entity_74_Proxy.php │ │ │ ├── FailingConstraint.php │ │ │ ├── FailingConstraintValidator.php │ │ │ ├── FakeMetadataFactory.php │ │ │ ├── FilesLoader.php │ │ │ ├── GroupSequenceProviderChildEntity.php │ │ │ ├── GroupSequenceProviderEntity.php │ │ │ ├── InvalidConstraint.php │ │ │ ├── PropertyConstraint.php │ │ │ ├── PropertyGetter.php │ │ │ ├── PropertyGetterInterface.php │ │ │ ├── Reference.php │ │ │ └── ToString.php │ │ ├── Mapping │ │ │ ├── Cache │ │ │ │ ├── AbstractCacheTest.php │ │ │ │ ├── DoctrineCacheTest.php │ │ │ │ └── Psr6CacheTest.php │ │ │ ├── ClassMetadataTest.php │ │ │ ├── Factory │ │ │ │ ├── BlackHoleMetadataFactoryTest.php │ │ │ │ └── LazyLoadingMetadataFactoryTest.php │ │ │ ├── GetterMetadataTest.php │ │ │ ├── Loader │ │ │ │ ├── AbstractStaticMethodLoader.php │ │ │ │ ├── AnnotationLoaderTest.php │ │ │ │ ├── FilesLoaderTest.php │ │ │ │ ├── LoaderChainTest.php │ │ │ │ ├── StaticMethodLoaderTest.php │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ ├── YamlFileLoaderTest.php │ │ │ │ ├── bad-format.yml │ │ │ │ ├── constraint-mapping-non-strings.xml │ │ │ │ ├── constraint-mapping.xml │ │ │ │ ├── constraint-mapping.yml │ │ │ │ ├── empty-mapping.yml │ │ │ │ ├── mapping-with-constants.yml │ │ │ │ ├── nonvalid-mapping.yml │ │ │ │ └── withdoctype.xml │ │ │ ├── MemberMetadataTest.php │ │ │ └── PropertyMetadataTest.php │ │ ├── Resources │ │ │ └── TranslationFilesTest.php │ │ ├── Util │ │ │ └── PropertyPathTest.php │ │ ├── Validator │ │ │ ├── AbstractTest.php │ │ │ ├── AbstractValidatorTest.php │ │ │ ├── RecursiveValidatorTest.php │ │ │ └── TraceableValidatorTest.php │ │ ├── ValidatorBuilderTest.php │ │ └── Violation │ │ │ └── ConstraintViolationBuilderTest.php │ ├── Util │ │ └── PropertyPath.php │ ├── Validation.php │ ├── Validator │ │ ├── ContextualValidatorInterface.php │ │ ├── LazyProperty.php │ │ ├── RecursiveContextualValidator.php │ │ ├── RecursiveValidator.php │ │ ├── TraceableValidator.php │ │ └── ValidatorInterface.php │ ├── ValidatorBuilder.php │ ├── ValidatorBuilderInterface.php │ ├── Violation │ │ ├── ConstraintViolationBuilder.php │ │ └── ConstraintViolationBuilderInterface.php │ ├── composer.json │ └── phpunit.xml.dist └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tag │ └── TaggedValue.php │ ├── Tests │ ├── Command │ │ └── LintCommandTest.php │ ├── DumperTest.php │ ├── Fixtures │ │ ├── YtsAnchorAlias.yml │ │ ├── YtsBasicTests.yml │ │ ├── YtsBlockMapping.yml │ │ ├── YtsDocumentSeparator.yml │ │ ├── YtsErrorTests.yml │ │ ├── YtsFlowCollections.yml │ │ ├── YtsFoldedScalars.yml │ │ ├── YtsNullsAndEmpties.yml │ │ ├── YtsSpecificationExamples.yml │ │ ├── YtsTypeTransfers.yml │ │ ├── arrow.gif │ │ ├── booleanMappingKeys.yml │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── legacyBooleanMappingKeys.yml │ │ ├── legacyNonStringKeys.yml │ │ ├── legacyNullMappingKey.yml │ │ ├── multiple_lines_as_literal_block.yml │ │ ├── multiple_lines_as_literal_block_for_tagged_values.yml │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ ├── nonStringKeys.yml │ │ ├── not_readable.yml │ │ ├── nullMappingKey.yml │ │ ├── numericMappingKeys.yml │ │ ├── sfComments.yml │ │ ├── sfCompact.yml │ │ ├── sfMergeKey.yml │ │ ├── sfObjects.yml │ │ ├── sfQuotes.yml │ │ ├── sfTests.yml │ │ └── unindentedCollections.yml │ ├── InlineTest.php │ ├── ParseExceptionTest.php │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── tuupola └── slim-jwt-auth │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── Makefile │ ├── codecov.yml │ ├── composer.json │ └── src │ ├── JwtAuthentication.php │ └── JwtAuthentication │ ├── RequestMethodRule.php │ ├── RequestPathRule.php │ └── RuleInterface.php ├── vlucas └── phpdotenv │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Dotenv.php │ ├── Environment │ ├── AbstractVariables.php │ ├── Adapter │ │ ├── AdapterInterface.php │ │ ├── ApacheAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── EnvConstAdapter.php │ │ ├── PutenvAdapter.php │ │ └── ServerConstAdapter.php │ ├── DotenvFactory.php │ ├── DotenvVariables.php │ ├── FactoryInterface.php │ └── VariablesInterface.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidFileException.php │ ├── InvalidPathException.php │ └── ValidationException.php │ ├── Lines.php │ ├── Loader.php │ ├── Parser.php │ ├── Regex │ ├── Error.php │ ├── Regex.php │ ├── Result.php │ └── Success.php │ └── Validator.php ├── webmozart └── assert │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── psalm.xml │ └── src │ └── Assert.php ├── wikimedia └── composer-merge-plugin │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Logger.php │ ├── Merge │ ├── ExtraPackage.php │ ├── MissingFileException.php │ ├── NestedArray.php │ ├── PluginState.php │ └── StabilityFlags.php │ └── MergePlugin.php ├── zbateson ├── mail-mime-parser │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── src │ │ ├── Container.php │ │ ├── Header │ │ │ ├── AbstractHeader.php │ │ │ ├── AddressHeader.php │ │ │ ├── Consumer │ │ │ │ ├── AbstractConsumer.php │ │ │ │ ├── AddressBaseConsumer.php │ │ │ │ ├── AddressConsumer.php │ │ │ │ ├── AddressGroupConsumer.php │ │ │ │ ├── CommentConsumer.php │ │ │ │ ├── ConsumerService.php │ │ │ │ ├── DateConsumer.php │ │ │ │ ├── GenericConsumer.php │ │ │ │ ├── IdBaseConsumer.php │ │ │ │ ├── IdConsumer.php │ │ │ │ ├── ParameterConsumer.php │ │ │ │ ├── QuotedStringConsumer.php │ │ │ │ ├── Received │ │ │ │ │ ├── DomainConsumer.php │ │ │ │ │ ├── GenericReceivedConsumer.php │ │ │ │ │ └── ReceivedDateConsumer.php │ │ │ │ ├── ReceivedConsumer.php │ │ │ │ └── SubjectConsumer.php │ │ │ ├── DateHeader.php │ │ │ ├── GenericHeader.php │ │ │ ├── HeaderContainer.php │ │ │ ├── HeaderFactory.php │ │ │ ├── IdHeader.php │ │ │ ├── MimeEncodedHeader.php │ │ │ ├── ParameterHeader.php │ │ │ ├── Part │ │ │ │ ├── AddressGroupPart.php │ │ │ │ ├── AddressPart.php │ │ │ │ ├── CommentPart.php │ │ │ │ ├── DatePart.php │ │ │ │ ├── HeaderPart.php │ │ │ │ ├── HeaderPartFactory.php │ │ │ │ ├── LiteralPart.php │ │ │ │ ├── MimeLiteralPart.php │ │ │ │ ├── MimeLiteralPartFactory.php │ │ │ │ ├── ParameterPart.php │ │ │ │ ├── ReceivedDomainPart.php │ │ │ │ ├── ReceivedPart.php │ │ │ │ ├── SplitParameterToken.php │ │ │ │ └── Token.php │ │ │ ├── ReceivedHeader.php │ │ │ └── SubjectHeader.php │ │ ├── MailMimeParser.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── Helper │ │ │ │ ├── AbstractHelper.php │ │ │ │ ├── GenericHelper.php │ │ │ │ ├── MessageHelperService.php │ │ │ │ ├── MultipartHelper.php │ │ │ │ └── PrivacyHelper.php │ │ │ ├── MessageFactory.php │ │ │ ├── MessageParser.php │ │ │ ├── Part │ │ │ │ ├── Factory │ │ │ │ │ ├── MessagePartFactory.php │ │ │ │ │ ├── MimePartFactory.php │ │ │ │ │ ├── NonMimePartFactory.php │ │ │ │ │ ├── PartBuilderFactory.php │ │ │ │ │ ├── PartFactoryService.php │ │ │ │ │ ├── PartStreamFilterManagerFactory.php │ │ │ │ │ └── UUEncodedPartFactory.php │ │ │ │ ├── MessagePart.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── NonMimePart.php │ │ │ │ ├── ParentHeaderPart.php │ │ │ │ ├── ParentPart.php │ │ │ │ ├── PartBuilder.php │ │ │ │ ├── PartStreamFilterManager.php │ │ │ │ └── UUEncodedPart.php │ │ │ ├── PartFilter.php │ │ │ └── PartFilterFactory.php │ │ └── Stream │ │ │ ├── HeaderStream.php │ │ │ ├── MessagePartStream.php │ │ │ └── StreamFactory.php │ └── version.txt ├── mb-wrapper │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── src │ │ └── MbWrapper.php │ └── tests │ │ ├── MbWrapper │ │ └── MbWrapperTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml └── stream-decorators │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── src │ ├── Base64Stream.php │ ├── CharsetStream.php │ ├── ChunkSplitStream.php │ ├── NonClosingStream.php │ ├── PregReplaceFilterStream.php │ ├── QuotedPrintableStream.php │ ├── SeekingLimitStream.php │ └── UUStream.php └── zf1 ├── zend-cache ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Cache.php │ └── Cache │ ├── Backend.php │ ├── Backend │ ├── Apc.php │ ├── BlackHole.php │ ├── ExtendedInterface.php │ ├── File.php │ ├── Interface.php │ ├── Libmemcached.php │ ├── Memcached.php │ ├── Sqlite.php │ ├── Static.php │ ├── Test.php │ ├── TwoLevels.php │ ├── WinCache.php │ ├── Xcache.php │ ├── ZendPlatform.php │ ├── ZendServer.php │ └── ZendServer │ │ ├── Disk.php │ │ └── ShMem.php │ ├── Core.php │ ├── Exception.php │ ├── Frontend │ ├── Capture.php │ ├── Class.php │ ├── File.php │ ├── Function.php │ ├── Output.php │ └── Page.php │ └── Manager.php ├── zend-crypt ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Crypt.php │ └── Crypt │ ├── DiffieHellman.php │ ├── DiffieHellman │ └── Exception.php │ ├── Exception.php │ ├── Hmac.php │ ├── Hmac │ └── Exception.php │ ├── Math.php │ ├── Math │ ├── BigInteger.php │ ├── BigInteger │ │ ├── Bcmath.php │ │ ├── Exception.php │ │ ├── Gmp.php │ │ └── Interface.php │ └── Exception.php │ ├── Rsa.php │ └── Rsa │ ├── Exception.php │ ├── Key.php │ └── Key │ ├── Private.php │ └── Public.php ├── zend-exception ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Exception.php ├── zend-gdata ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Gdata.php │ └── Gdata │ ├── Analytics.php │ ├── Analytics │ ├── AccountEntry.php │ ├── AccountFeed.php │ ├── AccountQuery.php │ ├── DataEntry.php │ ├── DataFeed.php │ ├── DataQuery.php │ └── Extension │ │ ├── Dimension.php │ │ ├── Goal.php │ │ ├── Metric.php │ │ ├── Property.php │ │ └── TableId.php │ ├── App.php │ ├── App │ ├── AuthException.php │ ├── BadMethodCallException.php │ ├── Base.php │ ├── BaseMediaSource.php │ ├── CaptchaRequiredException.php │ ├── Entry.php │ ├── Exception.php │ ├── Extension.php │ ├── Extension │ │ ├── Author.php │ │ ├── Category.php │ │ ├── Content.php │ │ ├── Contributor.php │ │ ├── Control.php │ │ ├── Draft.php │ │ ├── Edited.php │ │ ├── Element.php │ │ ├── Email.php │ │ ├── Generator.php │ │ ├── Icon.php │ │ ├── Id.php │ │ ├── Link.php │ │ ├── Logo.php │ │ ├── Name.php │ │ ├── Person.php │ │ ├── Published.php │ │ ├── Rights.php │ │ ├── Source.php │ │ ├── Subtitle.php │ │ ├── Summary.php │ │ ├── Text.php │ │ ├── Title.php │ │ ├── Updated.php │ │ └── Uri.php │ ├── Feed.php │ ├── FeedEntryParent.php │ ├── FeedSourceParent.php │ ├── HttpException.php │ ├── IOException.php │ ├── InvalidArgumentException.php │ ├── LoggingHttpClientAdapterSocket.php │ ├── MediaEntry.php │ ├── MediaFileSource.php │ ├── MediaSource.php │ ├── Util.php │ └── VersionException.php │ ├── AuthSub.php │ ├── Books.php │ ├── Books │ ├── CollectionEntry.php │ ├── CollectionFeed.php │ ├── Extension │ │ ├── AnnotationLink.php │ │ ├── BooksCategory.php │ │ ├── BooksLink.php │ │ ├── Embeddability.php │ │ ├── InfoLink.php │ │ ├── PreviewLink.php │ │ ├── Review.php │ │ ├── ThumbnailLink.php │ │ └── Viewability.php │ ├── VolumeEntry.php │ ├── VolumeFeed.php │ └── VolumeQuery.php │ ├── Calendar.php │ ├── Calendar │ ├── EventEntry.php │ ├── EventFeed.php │ ├── EventQuery.php │ ├── Extension │ │ ├── AccessLevel.php │ │ ├── Color.php │ │ ├── Hidden.php │ │ ├── Link.php │ │ ├── QuickAdd.php │ │ ├── Selected.php │ │ ├── SendEventNotifications.php │ │ ├── Timezone.php │ │ └── WebContent.php │ ├── ListEntry.php │ └── ListFeed.php │ ├── ClientLogin.php │ ├── Docs.php │ ├── Docs │ ├── DocumentListEntry.php │ ├── DocumentListFeed.php │ └── Query.php │ ├── DublinCore.php │ ├── DublinCore │ └── Extension │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── Description.php │ │ ├── Format.php │ │ ├── Identifier.php │ │ ├── Language.php │ │ ├── Publisher.php │ │ ├── Rights.php │ │ ├── Subject.php │ │ └── Title.php │ ├── Entry.php │ ├── Exif.php │ ├── Exif │ ├── Entry.php │ ├── Extension │ │ ├── Distance.php │ │ ├── Exposure.php │ │ ├── FStop.php │ │ ├── Flash.php │ │ ├── FocalLength.php │ │ ├── ImageUniqueId.php │ │ ├── Iso.php │ │ ├── Make.php │ │ ├── Model.php │ │ ├── Tags.php │ │ └── Time.php │ └── Feed.php │ ├── Extension.php │ ├── Extension │ ├── AttendeeStatus.php │ ├── AttendeeType.php │ ├── Comments.php │ ├── EntryLink.php │ ├── EventStatus.php │ ├── ExtendedProperty.php │ ├── FeedLink.php │ ├── OpenSearchItemsPerPage.php │ ├── OpenSearchStartIndex.php │ ├── OpenSearchTotalResults.php │ ├── OriginalEvent.php │ ├── Rating.php │ ├── Recurrence.php │ ├── RecurrenceException.php │ ├── Reminder.php │ ├── Transparency.php │ ├── Visibility.php │ ├── When.php │ ├── Where.php │ └── Who.php │ ├── Feed.php │ ├── Gapps.php │ ├── Gapps │ ├── EmailListEntry.php │ ├── EmailListFeed.php │ ├── EmailListQuery.php │ ├── EmailListRecipientEntry.php │ ├── EmailListRecipientFeed.php │ ├── EmailListRecipientQuery.php │ ├── Error.php │ ├── Extension │ │ ├── EmailList.php │ │ ├── Login.php │ │ ├── Name.php │ │ ├── Nickname.php │ │ ├── Property.php │ │ └── Quota.php │ ├── GroupEntry.php │ ├── GroupFeed.php │ ├── GroupQuery.php │ ├── MemberEntry.php │ ├── MemberFeed.php │ ├── MemberQuery.php │ ├── NicknameEntry.php │ ├── NicknameFeed.php │ ├── NicknameQuery.php │ ├── OwnerEntry.php │ ├── OwnerFeed.php │ ├── OwnerQuery.php │ ├── Query.php │ ├── ServiceException.php │ ├── UserEntry.php │ ├── UserFeed.php │ └── UserQuery.php │ ├── Gbase.php │ ├── Gbase │ ├── Entry.php │ ├── Extension │ │ └── BaseAttribute.php │ ├── Feed.php │ ├── ItemEntry.php │ ├── ItemFeed.php │ ├── ItemQuery.php │ ├── Query.php │ ├── SnippetEntry.php │ ├── SnippetFeed.php │ └── SnippetQuery.php │ ├── Geo.php │ ├── Geo │ ├── Entry.php │ ├── Extension │ │ ├── GeoRssWhere.php │ │ ├── GmlPoint.php │ │ └── GmlPos.php │ └── Feed.php │ ├── Health.php │ ├── Health │ ├── Extension │ │ └── Ccr.php │ ├── ProfileEntry.php │ ├── ProfileFeed.php │ ├── ProfileListEntry.php │ ├── ProfileListFeed.php │ └── Query.php │ ├── HttpAdapterStreamingProxy.php │ ├── HttpAdapterStreamingSocket.php │ ├── HttpClient.php │ ├── Kind │ └── EventEntry.php │ ├── Media.php │ ├── Media │ ├── Entry.php │ ├── Extension │ │ ├── MediaCategory.php │ │ ├── MediaContent.php │ │ ├── MediaCopyright.php │ │ ├── MediaCredit.php │ │ ├── MediaDescription.php │ │ ├── MediaGroup.php │ │ ├── MediaHash.php │ │ ├── MediaKeywords.php │ │ ├── MediaPlayer.php │ │ ├── MediaRating.php │ │ ├── MediaRestriction.php │ │ ├── MediaText.php │ │ ├── MediaThumbnail.php │ │ └── MediaTitle.php │ └── Feed.php │ ├── MediaMimeStream.php │ ├── MimeBodyString.php │ ├── MimeFile.php │ ├── Photos.php │ ├── Photos │ ├── AlbumEntry.php │ ├── AlbumFeed.php │ ├── AlbumQuery.php │ ├── CommentEntry.php │ ├── Extension │ │ ├── Access.php │ │ ├── AlbumId.php │ │ ├── BytesUsed.php │ │ ├── Checksum.php │ │ ├── Client.php │ │ ├── CommentCount.php │ │ ├── CommentingEnabled.php │ │ ├── Height.php │ │ ├── Id.php │ │ ├── Location.php │ │ ├── MaxPhotosPerAlbum.php │ │ ├── Name.php │ │ ├── Nickname.php │ │ ├── NumPhotos.php │ │ ├── NumPhotosRemaining.php │ │ ├── PhotoId.php │ │ ├── Position.php │ │ ├── QuotaCurrent.php │ │ ├── QuotaLimit.php │ │ ├── Rotation.php │ │ ├── Size.php │ │ ├── Thumbnail.php │ │ ├── Timestamp.php │ │ ├── User.php │ │ ├── Version.php │ │ ├── Weight.php │ │ └── Width.php │ ├── PhotoEntry.php │ ├── PhotoFeed.php │ ├── PhotoQuery.php │ ├── TagEntry.php │ ├── UserEntry.php │ ├── UserFeed.php │ └── UserQuery.php │ ├── Query.php │ ├── Spreadsheets.php │ └── Spreadsheets │ ├── CellEntry.php │ ├── CellFeed.php │ ├── CellQuery.php │ ├── DocumentQuery.php │ ├── Extension │ ├── Cell.php │ ├── ColCount.php │ ├── Custom.php │ └── RowCount.php │ ├── ListEntry.php │ ├── ListFeed.php │ ├── ListQuery.php │ ├── SpreadsheetEntry.php │ ├── SpreadsheetFeed.php │ ├── WorksheetEntry.php │ └── WorksheetFeed.php ├── zend-http ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Http │ ├── Client.php │ ├── Client │ ├── Adapter │ │ ├── Curl.php │ │ ├── Exception.php │ │ ├── Interface.php │ │ ├── Proxy.php │ │ ├── Socket.php │ │ ├── Stream.php │ │ └── Test.php │ └── Exception.php │ ├── Cookie.php │ ├── CookieJar.php │ ├── Exception.php │ ├── Header │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── HeaderValue.php │ └── SetCookie.php │ ├── Response.php │ ├── Response │ └── Stream.php │ ├── UserAgent.php │ └── UserAgent │ ├── AbstractDevice.php │ ├── Bot.php │ ├── Checker.php │ ├── Console.php │ ├── Desktop.php │ ├── Device.php │ ├── Email.php │ ├── Exception.php │ ├── Features │ ├── Adapter.php │ ├── Adapter │ │ ├── Browscap.php │ │ ├── DeviceAtlas.php │ │ └── TeraWurfl.php │ └── Exception.php │ ├── Feed.php │ ├── Mobile.php │ ├── Offline.php │ ├── Probe.php │ ├── Spam.php │ ├── Storage.php │ ├── Storage │ ├── Exception.php │ ├── NonPersistent.php │ └── Session.php │ ├── Text.php │ └── Validator.php ├── zend-loader ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Loader.php │ └── Loader │ ├── Autoloader.php │ ├── Autoloader │ ├── Interface.php │ └── Resource.php │ ├── AutoloaderFactory.php │ ├── ClassMapAutoloader.php │ ├── Exception.php │ ├── Exception │ └── InvalidArgumentException.php │ ├── PluginLoader.php │ ├── PluginLoader │ ├── Exception.php │ └── Interface.php │ ├── SplAutoloader.php │ └── StandardAutoloader.php ├── zend-locale ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Locale.php │ └── Locale │ ├── Data.php │ ├── Data │ ├── Translation.php │ ├── aa.xml │ ├── aa_DJ.xml │ ├── aa_ER.xml │ ├── aa_ET.xml │ ├── af.xml │ ├── af_NA.xml │ ├── af_ZA.xml │ ├── agq.xml │ ├── agq_CM.xml │ ├── ak.xml │ ├── ak_GH.xml │ ├── am.xml │ ├── am_ET.xml │ ├── ar.xml │ ├── ar_001.xml │ ├── ar_AE.xml │ ├── ar_BH.xml │ ├── ar_DJ.xml │ ├── ar_DZ.xml │ ├── ar_EG.xml │ ├── ar_EH.xml │ ├── ar_ER.xml │ ├── ar_IL.xml │ ├── ar_IQ.xml │ ├── ar_JO.xml │ ├── ar_KM.xml │ ├── ar_KW.xml │ ├── ar_LB.xml │ ├── ar_LY.xml │ ├── ar_MA.xml │ ├── ar_MR.xml │ ├── ar_OM.xml │ ├── ar_PS.xml │ ├── ar_QA.xml │ ├── ar_SA.xml │ ├── ar_SD.xml │ ├── ar_SO.xml │ ├── ar_SS.xml │ ├── ar_SY.xml │ ├── ar_TD.xml │ ├── ar_TN.xml │ ├── ar_YE.xml │ ├── as.xml │ ├── as_IN.xml │ ├── asa.xml │ ├── asa_TZ.xml │ ├── ast.xml │ ├── ast_ES.xml │ ├── az.xml │ ├── az_Cyrl.xml │ ├── az_Cyrl_AZ.xml │ ├── az_Latn.xml │ ├── az_Latn_AZ.xml │ ├── bas.xml │ ├── bas_CM.xml │ ├── be.xml │ ├── be_BY.xml │ ├── bem.xml │ ├── bem_ZM.xml │ ├── bez.xml │ ├── bez_TZ.xml │ ├── bg.xml │ ├── bg_BG.xml │ ├── bm.xml │ ├── bm_ML.xml │ ├── bn.xml │ ├── bn_BD.xml │ ├── bn_IN.xml │ ├── bo.xml │ ├── bo_CN.xml │ ├── bo_IN.xml │ ├── br.xml │ ├── br_FR.xml │ ├── brx.xml │ ├── brx_IN.xml │ ├── bs.xml │ ├── bs_Cyrl.xml │ ├── bs_Cyrl_BA.xml │ ├── bs_Latn.xml │ ├── bs_Latn_BA.xml │ ├── byn.xml │ ├── byn_ER.xml │ ├── ca.xml │ ├── ca_AD.xml │ ├── ca_ES.xml │ ├── ca_ES_VALENCIA.xml │ ├── ca_FR.xml │ ├── ca_IT.xml │ ├── cgg.xml │ ├── cgg_UG.xml │ ├── characters.xml │ ├── chr.xml │ ├── chr_US.xml │ ├── coverageLevels.xml │ ├── cs.xml │ ├── cs_CZ.xml │ ├── cy.xml │ ├── cy_GB.xml │ ├── da.xml │ ├── da_DK.xml │ ├── da_GL.xml │ ├── dav.xml │ ├── dav_KE.xml │ ├── dayPeriods.xml │ ├── de.xml │ ├── de_AT.xml │ ├── de_BE.xml │ ├── de_CH.xml │ ├── de_DE.xml │ ├── de_LI.xml │ ├── de_LU.xml │ ├── dje.xml │ ├── dje_NE.xml │ ├── dua.xml │ ├── dua_CM.xml │ ├── dyo.xml │ ├── dyo_SN.xml │ ├── dz.xml │ ├── dz_BT.xml │ ├── ebu.xml │ ├── ebu_KE.xml │ ├── ee.xml │ ├── ee_GH.xml │ ├── ee_TG.xml │ ├── el.xml │ ├── el_CY.xml │ ├── el_GR.xml │ ├── en.xml │ ├── en_001.xml │ ├── en_150.xml │ ├── en_AG.xml │ ├── en_AI.xml │ ├── en_AS.xml │ ├── en_AU.xml │ ├── en_BB.xml │ ├── en_BE.xml │ ├── en_BM.xml │ ├── en_BS.xml │ ├── en_BW.xml │ ├── en_BZ.xml │ ├── en_CA.xml │ ├── en_CC.xml │ ├── en_CK.xml │ ├── en_CM.xml │ ├── en_CX.xml │ ├── en_DG.xml │ ├── en_DM.xml │ ├── en_Dsrt.xml │ ├── en_Dsrt_US.xml │ ├── en_ER.xml │ ├── en_FJ.xml │ ├── en_FK.xml │ ├── en_FM.xml │ ├── en_GB.xml │ ├── en_GD.xml │ ├── en_GG.xml │ ├── en_GH.xml │ ├── en_GI.xml │ ├── en_GM.xml │ ├── en_GU.xml │ ├── en_GY.xml │ ├── en_HK.xml │ ├── en_IE.xml │ ├── en_IM.xml │ ├── en_IN.xml │ ├── en_IO.xml │ ├── en_JE.xml │ ├── en_JM.xml │ ├── en_KE.xml │ ├── en_KI.xml │ ├── en_KN.xml │ ├── en_KY.xml │ ├── en_LC.xml │ ├── en_LR.xml │ ├── en_LS.xml │ ├── en_MG.xml │ ├── en_MH.xml │ ├── en_MO.xml │ ├── en_MP.xml │ ├── en_MS.xml │ ├── en_MT.xml │ ├── en_MU.xml │ ├── en_MW.xml │ ├── en_NA.xml │ ├── en_NF.xml │ ├── en_NG.xml │ ├── en_NR.xml │ ├── en_NU.xml │ ├── en_NZ.xml │ ├── en_PG.xml │ ├── en_PH.xml │ ├── en_PK.xml │ ├── en_PN.xml │ ├── en_PR.xml │ ├── en_PW.xml │ ├── en_RW.xml │ ├── en_SB.xml │ ├── en_SC.xml │ ├── en_SD.xml │ ├── en_SG.xml │ ├── en_SH.xml │ ├── en_SL.xml │ ├── en_SS.xml │ ├── en_SX.xml │ ├── en_SZ.xml │ ├── en_TC.xml │ ├── en_TK.xml │ ├── en_TO.xml │ ├── en_TT.xml │ ├── en_TV.xml │ ├── en_TZ.xml │ ├── en_UG.xml │ ├── en_UM.xml │ ├── en_US.xml │ ├── en_US_POSIX.xml │ ├── en_VC.xml │ ├── en_VG.xml │ ├── en_VI.xml │ ├── en_VU.xml │ ├── en_WS.xml │ ├── en_ZA.xml │ ├── en_ZM.xml │ ├── en_ZW.xml │ ├── eo.xml │ ├── eo_001.xml │ ├── es.xml │ ├── es_419.xml │ ├── es_AR.xml │ ├── es_BO.xml │ ├── es_CL.xml │ ├── es_CO.xml │ ├── es_CR.xml │ ├── es_CU.xml │ ├── es_DO.xml │ ├── es_EA.xml │ ├── es_EC.xml │ ├── es_ES.xml │ ├── es_GQ.xml │ ├── es_GT.xml │ ├── es_HN.xml │ ├── es_IC.xml │ ├── es_MX.xml │ ├── es_NI.xml │ ├── es_PA.xml │ ├── es_PE.xml │ ├── es_PH.xml │ ├── es_PR.xml │ ├── es_PY.xml │ ├── es_SV.xml │ ├── es_US.xml │ ├── es_UY.xml │ ├── es_VE.xml │ ├── et.xml │ ├── et_EE.xml │ ├── eu.xml │ ├── eu_ES.xml │ ├── ewo.xml │ ├── ewo_CM.xml │ ├── fa.xml │ ├── fa_AF.xml │ ├── fa_IR.xml │ ├── ff.xml │ ├── ff_CM.xml │ ├── ff_GN.xml │ ├── ff_MR.xml │ ├── ff_SN.xml │ ├── fi.xml │ ├── fi_FI.xml │ ├── fil.xml │ ├── fil_PH.xml │ ├── fo.xml │ ├── fo_FO.xml │ ├── fr.xml │ ├── fr_BE.xml │ ├── fr_BF.xml │ ├── fr_BI.xml │ ├── fr_BJ.xml │ ├── fr_BL.xml │ ├── fr_CA.xml │ ├── fr_CD.xml │ ├── fr_CF.xml │ ├── fr_CG.xml │ ├── fr_CH.xml │ ├── fr_CI.xml │ ├── fr_CM.xml │ ├── fr_DJ.xml │ ├── fr_DZ.xml │ ├── fr_FR.xml │ ├── fr_GA.xml │ ├── fr_GF.xml │ ├── fr_GN.xml │ ├── fr_GP.xml │ ├── fr_GQ.xml │ ├── fr_HT.xml │ ├── fr_KM.xml │ ├── fr_LU.xml │ ├── fr_MA.xml │ ├── fr_MC.xml │ ├── fr_MF.xml │ ├── fr_MG.xml │ ├── fr_ML.xml │ ├── fr_MQ.xml │ ├── fr_MR.xml │ ├── fr_MU.xml │ ├── fr_NC.xml │ ├── fr_NE.xml │ ├── fr_PF.xml │ ├── fr_PM.xml │ ├── fr_RE.xml │ ├── fr_RW.xml │ ├── fr_SC.xml │ ├── fr_SN.xml │ ├── fr_SY.xml │ ├── fr_TD.xml │ ├── fr_TG.xml │ ├── fr_TN.xml │ ├── fr_VU.xml │ ├── fr_WF.xml │ ├── fr_YT.xml │ ├── fur.xml │ ├── fur_IT.xml │ ├── fy.xml │ ├── fy_NL.xml │ ├── ga.xml │ ├── ga_IE.xml │ ├── gd.xml │ ├── gd_GB.xml │ ├── genderList.xml │ ├── gl.xml │ ├── gl_ES.xml │ ├── gsw.xml │ ├── gsw_CH.xml │ ├── gsw_LI.xml │ ├── gu.xml │ ├── gu_IN.xml │ ├── guz.xml │ ├── guz_KE.xml │ ├── gv.xml │ ├── gv_IM.xml │ ├── ha.xml │ ├── ha_Latn.xml │ ├── ha_Latn_GH.xml │ ├── ha_Latn_NE.xml │ ├── ha_Latn_NG.xml │ ├── haw.xml │ ├── haw_US.xml │ ├── he.xml │ ├── he_IL.xml │ ├── hi.xml │ ├── hi_IN.xml │ ├── hr.xml │ ├── hr_BA.xml │ ├── hr_HR.xml │ ├── hu.xml │ ├── hu_HU.xml │ ├── hy.xml │ ├── hy_AM.xml │ ├── ia.xml │ ├── ia_FR.xml │ ├── id.xml │ ├── id_ID.xml │ ├── ig.xml │ ├── ig_NG.xml │ ├── ii.xml │ ├── ii_CN.xml │ ├── is.xml │ ├── is_IS.xml │ ├── it.xml │ ├── it_CH.xml │ ├── it_IT.xml │ ├── it_SM.xml │ ├── ja.xml │ ├── ja_JP.xml │ ├── jgo.xml │ ├── jgo_CM.xml │ ├── jmc.xml │ ├── jmc_TZ.xml │ ├── ka.xml │ ├── ka_GE.xml │ ├── kab.xml │ ├── kab_DZ.xml │ ├── kam.xml │ ├── kam_KE.xml │ ├── kde.xml │ ├── kde_TZ.xml │ ├── kea.xml │ ├── kea_CV.xml │ ├── khq.xml │ ├── khq_ML.xml │ ├── ki.xml │ ├── ki_KE.xml │ ├── kk.xml │ ├── kk_Cyrl.xml │ ├── kk_Cyrl_KZ.xml │ ├── kkj.xml │ ├── kkj_CM.xml │ ├── kl.xml │ ├── kl_GL.xml │ ├── kln.xml │ ├── kln_KE.xml │ ├── km.xml │ ├── km_KH.xml │ ├── kn.xml │ ├── kn_IN.xml │ ├── ko.xml │ ├── ko_KP.xml │ ├── ko_KR.xml │ ├── kok.xml │ ├── kok_IN.xml │ ├── ks.xml │ ├── ks_Arab.xml │ ├── ks_Arab_IN.xml │ ├── ksb.xml │ ├── ksb_TZ.xml │ ├── ksf.xml │ ├── ksf_CM.xml │ ├── ksh.xml │ ├── ksh_DE.xml │ ├── kw.xml │ ├── kw_GB.xml │ ├── ky.xml │ ├── ky_Cyrl.xml │ ├── ky_Cyrl_KG.xml │ ├── lag.xml │ ├── lag_TZ.xml │ ├── languageInfo.xml │ ├── lg.xml │ ├── lg_UG.xml │ ├── likelySubtags.xml │ ├── lkt.xml │ ├── lkt_US.xml │ ├── ln.xml │ ├── ln_AO.xml │ ├── ln_CD.xml │ ├── ln_CF.xml │ ├── ln_CG.xml │ ├── lo.xml │ ├── lo_LA.xml │ ├── lt.xml │ ├── lt_LT.xml │ ├── lu.xml │ ├── lu_CD.xml │ ├── luo.xml │ ├── luo_KE.xml │ ├── luy.xml │ ├── luy_KE.xml │ ├── lv.xml │ ├── lv_LV.xml │ ├── mas.xml │ ├── mas_KE.xml │ ├── mas_TZ.xml │ ├── mer.xml │ ├── mer_KE.xml │ ├── metaZones.xml │ ├── mfe.xml │ ├── mfe_MU.xml │ ├── mg.xml │ ├── mg_MG.xml │ ├── mgh.xml │ ├── mgh_MZ.xml │ ├── mgo.xml │ ├── mgo_CM.xml │ ├── mk.xml │ ├── mk_MK.xml │ ├── ml.xml │ ├── ml_IN.xml │ ├── mn.xml │ ├── mn_Cyrl.xml │ ├── mn_Cyrl_MN.xml │ ├── mr.xml │ ├── mr_IN.xml │ ├── ms.xml │ ├── ms_Latn.xml │ ├── ms_Latn_BN.xml │ ├── ms_Latn_MY.xml │ ├── ms_Latn_SG.xml │ ├── mt.xml │ ├── mt_MT.xml │ ├── mua.xml │ ├── mua_CM.xml │ ├── my.xml │ ├── my_MM.xml │ ├── naq.xml │ ├── naq_NA.xml │ ├── nb.xml │ ├── nb_NO.xml │ ├── nb_SJ.xml │ ├── nd.xml │ ├── nd_ZW.xml │ ├── ne.xml │ ├── ne_IN.xml │ ├── ne_NP.xml │ ├── nl.xml │ ├── nl_AW.xml │ ├── nl_BE.xml │ ├── nl_BQ.xml │ ├── nl_CW.xml │ ├── nl_NL.xml │ ├── nl_SR.xml │ ├── nl_SX.xml │ ├── nmg.xml │ ├── nmg_CM.xml │ ├── nn.xml │ ├── nn_NO.xml │ ├── nnh.xml │ ├── nnh_CM.xml │ ├── nr.xml │ ├── nr_ZA.xml │ ├── nso.xml │ ├── nso_ZA.xml │ ├── numberingSystems.xml │ ├── nus.xml │ ├── nus_SD.xml │ ├── nyn.xml │ ├── nyn_UG.xml │ ├── om.xml │ ├── om_ET.xml │ ├── om_KE.xml │ ├── or.xml │ ├── or_IN.xml │ ├── ordinals.xml │ ├── os.xml │ ├── os_GE.xml │ ├── os_RU.xml │ ├── pa.xml │ ├── pa_Arab.xml │ ├── pa_Arab_PK.xml │ ├── pa_Guru.xml │ ├── pa_Guru_IN.xml │ ├── pl.xml │ ├── pl_PL.xml │ ├── plurals.xml │ ├── postalCodeData.xml │ ├── ps.xml │ ├── ps_AF.xml │ ├── pt.xml │ ├── pt_AO.xml │ ├── pt_BR.xml │ ├── pt_CV.xml │ ├── pt_GW.xml │ ├── pt_MO.xml │ ├── pt_MZ.xml │ ├── pt_PT.xml │ ├── pt_ST.xml │ ├── pt_TL.xml │ ├── rm.xml │ ├── rm_CH.xml │ ├── rn.xml │ ├── rn_BI.xml │ ├── ro.xml │ ├── ro_MD.xml │ ├── ro_RO.xml │ ├── rof.xml │ ├── rof_TZ.xml │ ├── root.xml │ ├── ru.xml │ ├── ru_BY.xml │ ├── ru_KG.xml │ ├── ru_KZ.xml │ ├── ru_MD.xml │ ├── ru_RU.xml │ ├── ru_UA.xml │ ├── rw.xml │ ├── rw_RW.xml │ ├── rwk.xml │ ├── rwk_TZ.xml │ ├── sah.xml │ ├── sah_RU.xml │ ├── saq.xml │ ├── saq_KE.xml │ ├── sbp.xml │ ├── sbp_TZ.xml │ ├── se.xml │ ├── se_FI.xml │ ├── se_NO.xml │ ├── seh.xml │ ├── seh_MZ.xml │ ├── ses.xml │ ├── ses_ML.xml │ ├── sg.xml │ ├── sg_CF.xml │ ├── shi.xml │ ├── shi_Latn.xml │ ├── shi_Latn_MA.xml │ ├── shi_Tfng.xml │ ├── shi_Tfng_MA.xml │ ├── si.xml │ ├── si_LK.xml │ ├── sk.xml │ ├── sk_SK.xml │ ├── sl.xml │ ├── sl_SI.xml │ ├── sn.xml │ ├── sn_ZW.xml │ ├── so.xml │ ├── so_DJ.xml │ ├── so_ET.xml │ ├── so_KE.xml │ ├── so_SO.xml │ ├── sq.xml │ ├── sq_AL.xml │ ├── sq_MK.xml │ ├── sq_XK.xml │ ├── sr.xml │ ├── sr_Cyrl.xml │ ├── sr_Cyrl_BA.xml │ ├── sr_Cyrl_ME.xml │ ├── sr_Cyrl_RS.xml │ ├── sr_Cyrl_XK.xml │ ├── sr_Latn.xml │ ├── sr_Latn_BA.xml │ ├── sr_Latn_ME.xml │ ├── sr_Latn_RS.xml │ ├── sr_Latn_XK.xml │ ├── ss.xml │ ├── ss_SZ.xml │ ├── ss_ZA.xml │ ├── ssy.xml │ ├── ssy_ER.xml │ ├── st.xml │ ├── st_LS.xml │ ├── st_ZA.xml │ ├── supplementalData.xml │ ├── supplementalMetadata.xml │ ├── sv.xml │ ├── sv_AX.xml │ ├── sv_FI.xml │ ├── sv_SE.xml │ ├── sw.xml │ ├── sw_KE.xml │ ├── sw_TZ.xml │ ├── sw_UG.xml │ ├── swc.xml │ ├── swc_CD.xml │ ├── ta.xml │ ├── ta_IN.xml │ ├── ta_LK.xml │ ├── ta_MY.xml │ ├── ta_SG.xml │ ├── te.xml │ ├── te_IN.xml │ ├── telephoneCodeData.xml │ ├── teo.xml │ ├── teo_KE.xml │ ├── teo_UG.xml │ ├── tg.xml │ ├── tg_Cyrl.xml │ ├── tg_Cyrl_TJ.xml │ ├── th.xml │ ├── th_TH.xml │ ├── ti.xml │ ├── ti_ER.xml │ ├── ti_ET.xml │ ├── tig.xml │ ├── tig_ER.xml │ ├── tn.xml │ ├── tn_BW.xml │ ├── tn_ZA.xml │ ├── to.xml │ ├── to_TO.xml │ ├── tr.xml │ ├── tr_CY.xml │ ├── tr_TR.xml │ ├── ts.xml │ ├── ts_ZA.xml │ ├── twq.xml │ ├── twq_NE.xml │ ├── tzm.xml │ ├── tzm_Latn.xml │ ├── tzm_Latn_MA.xml │ ├── ug.xml │ ├── ug_Arab.xml │ ├── ug_Arab_CN.xml │ ├── uk.xml │ ├── uk_UA.xml │ ├── ur.xml │ ├── ur_IN.xml │ ├── ur_PK.xml │ ├── uz.xml │ ├── uz_Arab.xml │ ├── uz_Arab_AF.xml │ ├── uz_Cyrl.xml │ ├── uz_Cyrl_UZ.xml │ ├── uz_Latn.xml │ ├── uz_Latn_UZ.xml │ ├── vai.xml │ ├── vai_Latn.xml │ ├── vai_Latn_LR.xml │ ├── vai_Vaii.xml │ ├── vai_Vaii_LR.xml │ ├── ve.xml │ ├── ve_ZA.xml │ ├── vi.xml │ ├── vi_VN.xml │ ├── vo.xml │ ├── vo_001.xml │ ├── vun.xml │ ├── vun_TZ.xml │ ├── wae.xml │ ├── wae_CH.xml │ ├── wal.xml │ ├── wal_ET.xml │ ├── windowsZones.xml │ ├── xh.xml │ ├── xh_ZA.xml │ ├── xog.xml │ ├── xog_UG.xml │ ├── yav.xml │ ├── yav_CM.xml │ ├── yo.xml │ ├── yo_BJ.xml │ ├── yo_NG.xml │ ├── zgh.xml │ ├── zgh_MA.xml │ ├── zh.xml │ ├── zh_Hans.xml │ ├── zh_Hans_CN.xml │ ├── zh_Hans_HK.xml │ ├── zh_Hans_MO.xml │ ├── zh_Hans_SG.xml │ ├── zh_Hant.xml │ ├── zh_Hant_HK.xml │ ├── zh_Hant_MO.xml │ ├── zh_Hant_TW.xml │ ├── zu.xml │ └── zu_ZA.xml │ ├── Exception.php │ ├── Format.php │ ├── Math.php │ └── Math │ ├── Exception.php │ └── PhpMath.php ├── zend-mime ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Mime.php │ └── Mime │ ├── Decode.php │ ├── Exception.php │ ├── Message.php │ └── Part.php ├── zend-oauth ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Oauth.php │ └── Oauth │ ├── Client.php │ ├── Config.php │ ├── Config │ └── ConfigInterface.php │ ├── Consumer.php │ ├── Exception.php │ ├── Http.php │ ├── Http │ ├── AccessToken.php │ ├── RequestToken.php │ ├── UserAuthorization.php │ └── Utility.php │ ├── Signature │ ├── Hmac.php │ ├── Plaintext.php │ ├── Rsa.php │ └── SignatureAbstract.php │ ├── Token.php │ └── Token │ ├── Access.php │ ├── AuthorizedRequest.php │ └── Request.php ├── zend-registry ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Registry.php ├── zend-search-lucene ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Search │ ├── Lucene.php │ └── Lucene │ ├── Analysis │ ├── Analyzer.php │ ├── Analyzer │ │ ├── Common.php │ │ └── Common │ │ │ ├── Text.php │ │ │ ├── Text │ │ │ └── CaseInsensitive.php │ │ │ ├── TextNum.php │ │ │ ├── TextNum │ │ │ └── CaseInsensitive.php │ │ │ ├── Utf8.php │ │ │ ├── Utf8 │ │ │ └── CaseInsensitive.php │ │ │ ├── Utf8Num.php │ │ │ └── Utf8Num │ │ │ └── CaseInsensitive.php │ ├── Token.php │ ├── TokenFilter.php │ └── TokenFilter │ │ ├── LowerCase.php │ │ ├── LowerCaseUtf8.php │ │ ├── ShortWords.php │ │ └── StopWords.php │ ├── Document.php │ ├── Document │ ├── Docx.php │ ├── Exception.php │ ├── Html.php │ ├── OpenXml.php │ ├── Pptx.php │ └── Xlsx.php │ ├── Exception.php │ ├── FSM.php │ ├── FSMAction.php │ ├── Field.php │ ├── Index │ ├── DictionaryLoader.php │ ├── DocsFilter.php │ ├── FieldInfo.php │ ├── SegmentInfo.php │ ├── SegmentMerger.php │ ├── SegmentWriter.php │ ├── SegmentWriter │ │ ├── DocumentWriter.php │ │ └── StreamWriter.php │ ├── Term.php │ ├── TermInfo.php │ ├── TermsPriorityQueue.php │ ├── TermsStream │ │ └── Interface.php │ └── Writer.php │ ├── Interface.php │ ├── Interface │ └── MultiSearcher.php │ ├── LockManager.php │ ├── MultiSearcher.php │ ├── PriorityQueue.php │ ├── Proxy.php │ ├── Search │ ├── BooleanExpressionRecognizer.php │ ├── Highlighter │ │ ├── Default.php │ │ └── Interface.php │ ├── Query.php │ ├── Query │ │ ├── Boolean.php │ │ ├── Empty.php │ │ ├── Fuzzy.php │ │ ├── Insignificant.php │ │ ├── MultiTerm.php │ │ ├── Phrase.php │ │ ├── Preprocessing.php │ │ ├── Preprocessing │ │ │ ├── Fuzzy.php │ │ │ ├── Phrase.php │ │ │ └── Term.php │ │ ├── Range.php │ │ ├── Term.php │ │ └── Wildcard.php │ ├── QueryEntry.php │ ├── QueryEntry │ │ ├── Phrase.php │ │ ├── Subquery.php │ │ └── Term.php │ ├── QueryHit.php │ ├── QueryLexer.php │ ├── QueryParser.php │ ├── QueryParserContext.php │ ├── QueryParserException.php │ ├── QueryToken.php │ ├── Similarity.php │ ├── Similarity │ │ └── Default.php │ ├── Weight.php │ └── Weight │ │ ├── Boolean.php │ │ ├── Empty.php │ │ ├── MultiTerm.php │ │ ├── Phrase.php │ │ └── Term.php │ ├── Storage │ ├── Directory.php │ ├── Directory │ │ └── Filesystem.php │ ├── File.php │ └── File │ │ ├── Filesystem.php │ │ └── Memory.php │ └── TermStreamsPriorityQueue.php ├── zend-search ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Search │ └── Exception.php ├── zend-uri ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Uri.php │ └── Uri │ ├── Exception.php │ └── Http.php ├── zend-validate ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ ├── Validate.php │ └── Validate │ ├── Abstract.php │ ├── Alnum.php │ ├── Alpha.php │ ├── Barcode.php │ ├── Barcode │ ├── AdapterAbstract.php │ ├── AdapterInterface.php │ ├── Code25.php │ ├── Code25interleaved.php │ ├── Code39.php │ ├── Code39ext.php │ ├── Code93.php │ ├── Code93ext.php │ ├── Ean12.php │ ├── Ean13.php │ ├── Ean14.php │ ├── Ean18.php │ ├── Ean2.php │ ├── Ean5.php │ ├── Ean8.php │ ├── Gtin12.php │ ├── Gtin13.php │ ├── Gtin14.php │ ├── Identcode.php │ ├── Intelligentmail.php │ ├── Issn.php │ ├── Itf14.php │ ├── Leitcode.php │ ├── Planet.php │ ├── Postnet.php │ ├── Royalmail.php │ ├── Sscc.php │ ├── Upca.php │ └── Upce.php │ ├── Between.php │ ├── Callback.php │ ├── Ccnum.php │ ├── CreditCard.php │ ├── Date.php │ ├── Db │ ├── Abstract.php │ ├── NoRecordExists.php │ └── RecordExists.php │ ├── Digits.php │ ├── EmailAddress.php │ ├── Exception.php │ ├── File │ ├── Count.php │ ├── Crc32.php │ ├── ExcludeExtension.php │ ├── ExcludeMimeType.php │ ├── Exists.php │ ├── Extension.php │ ├── FilesSize.php │ ├── Hash.php │ ├── ImageSize.php │ ├── IsCompressed.php │ ├── IsImage.php │ ├── Md5.php │ ├── MimeType.php │ ├── NotExists.php │ ├── Sha1.php │ ├── Size.php │ ├── Upload.php │ └── WordCount.php │ ├── Float.php │ ├── GreaterThan.php │ ├── Hex.php │ ├── Hostname.php │ ├── Hostname │ ├── Biz.php │ ├── Cn.php │ ├── Com.php │ └── Jp.php │ ├── Iban.php │ ├── Identical.php │ ├── InArray.php │ ├── Int.php │ ├── Interface.php │ ├── Ip.php │ ├── Isbn.php │ ├── Ldap │ └── Dn.php │ ├── LessThan.php │ ├── NotEmpty.php │ ├── PostCode.php │ ├── Regex.php │ ├── Sitemap │ ├── Changefreq.php │ ├── Lastmod.php │ ├── Loc.php │ └── Priority.php │ └── StringLength.php ├── zend-version ├── LICENSE.txt ├── README.md ├── composer.json └── library │ └── Zend │ └── Version.php └── zend-xml ├── LICENSE.txt ├── README.md ├── composer.json └── library └── Zend └── Xml ├── Exception.php └── Security.php /Api/Core/Config/slim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/Core/Config/slim.php -------------------------------------------------------------------------------- /Api/Core/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/Core/app.php -------------------------------------------------------------------------------- /Api/V8/Config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/Config/routes.php -------------------------------------------------------------------------------- /Api/V8/Config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/Config/services.php -------------------------------------------------------------------------------- /Api/V8/OAuth2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/OAuth2/.gitignore -------------------------------------------------------------------------------- /Api/V8/Param/BaseParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/Param/BaseParam.php -------------------------------------------------------------------------------- /Api/V8/Param/Options/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/Param/Options/Id.php -------------------------------------------------------------------------------- /Api/V8/Param/PageParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/V8/Param/PageParams.php -------------------------------------------------------------------------------- /Api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/Api/index.php -------------------------------------------------------------------------------- /BuildPackege.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/BuildPackege.php -------------------------------------------------------------------------------- /HandleAjaxCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/HandleAjaxCall.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/RoboFile.php -------------------------------------------------------------------------------- /SugarSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/SugarSecurity.php -------------------------------------------------------------------------------- /TreeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/TreeData.php -------------------------------------------------------------------------------- /XTemplate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/XTemplate/LICENSE -------------------------------------------------------------------------------- /XTemplate/xtpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/XTemplate/xtpl.php -------------------------------------------------------------------------------- /Zend/Exception.php: -------------------------------------------------------------------------------- 1 | Header line 2 | -------------------------------------------------------------------------------- /include/javascript/tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/javascript/tour.js -------------------------------------------------------------------------------- /include/javascript/yui/build/calendar/blank/calendar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/datatable/blank/datatable.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/layout/blank/layout.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/menu/blank/menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/paginator/blank/paginator.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/resize/blank/resize.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/tabview/blank/tabview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui/build/treeview/blank/treeview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui3/assets/dpSyntaxHighlighter.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/javascript/yui3/assets/yuiDistribution.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/json_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/json_config.php -------------------------------------------------------------------------------- /include/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/modules.php -------------------------------------------------------------------------------- /include/nusoap/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/nusoap/changelog -------------------------------------------------------------------------------- /include/nusoap/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/nusoap/license.txt -------------------------------------------------------------------------------- /include/nusoap/nusoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/nusoap/nusoap.php -------------------------------------------------------------------------------- /include/parsecsv.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/parsecsv.lib.php -------------------------------------------------------------------------------- /include/pclzip/gnu-lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/pclzip/gnu-lgpl.txt -------------------------------------------------------------------------------- /include/pclzip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/pclzip/readme.txt -------------------------------------------------------------------------------- /include/php-sql-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/php-sql-parser.php -------------------------------------------------------------------------------- /include/social/get_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/social/get_data.php -------------------------------------------------------------------------------- /include/social/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/social/hooks.php -------------------------------------------------------------------------------- /include/tabConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tabConfig.php -------------------------------------------------------------------------------- /include/tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tabs.php -------------------------------------------------------------------------------- /include/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tabs.tpl -------------------------------------------------------------------------------- /include/tcpdf/CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tcpdf/CHANGELOG.TXT -------------------------------------------------------------------------------- /include/tcpdf/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tcpdf/LICENSE.TXT -------------------------------------------------------------------------------- /include/tcpdf/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tcpdf/README.TXT -------------------------------------------------------------------------------- /include/tcpdf/barcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tcpdf/barcodes.php -------------------------------------------------------------------------------- /include/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /include/upload_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/upload_file.php -------------------------------------------------------------------------------- /include/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/utils.php -------------------------------------------------------------------------------- /include/utils/LogicHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/utils/LogicHook.php -------------------------------------------------------------------------------- /include/utils/db_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/utils/db_utils.php -------------------------------------------------------------------------------- /include/utils/mvc_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/utils/mvc_utils.php -------------------------------------------------------------------------------- /include/utils/zip_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/utils/zip_utils.php -------------------------------------------------------------------------------- /include/vCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/vCard.php -------------------------------------------------------------------------------- /include/ytree/ExtNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/ytree/ExtNode.php -------------------------------------------------------------------------------- /include/ytree/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/ytree/Node.php -------------------------------------------------------------------------------- /include/ytree/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/ytree/Tree.php -------------------------------------------------------------------------------- /include/ytree/treeutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/include/ytree/treeutil.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install.php -------------------------------------------------------------------------------- /install/TeamDemoData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/TeamDemoData.php -------------------------------------------------------------------------------- /install/UserDemoData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/UserDemoData.php -------------------------------------------------------------------------------- /install/checkDBSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/checkDBSettings.php -------------------------------------------------------------------------------- /install/dbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/dbConfig.js -------------------------------------------------------------------------------- /install/dbConfig_a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/dbConfig_a.php -------------------------------------------------------------------------------- /install/demoData.en_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/demoData.en_us.php -------------------------------------------------------------------------------- /install/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/install.css -------------------------------------------------------------------------------- /install/install2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/install2.css -------------------------------------------------------------------------------- /install/installCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/installCommon.js -------------------------------------------------------------------------------- /install/installConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/installConfig.php -------------------------------------------------------------------------------- /install/installHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/installHelp.php -------------------------------------------------------------------------------- /install/installType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/install/installType.php -------------------------------------------------------------------------------- /install/lang.config.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/pimple/pimple/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/slim/slim/phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: 1 3 | -------------------------------------------------------------------------------- /vendor/smarty/smarty/.cvsignore: -------------------------------------------------------------------------------- 1 | templates_c 2 | -------------------------------------------------------------------------------- /vendor/smarty/smarty/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidorkinAlex/Opportunities_kanban/HEAD/vendor/smarty/smarty/FAQ -------------------------------------------------------------------------------- /vendor/smarty/smarty/demo/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/dom-processing.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/invalid.txt: -------------------------------------------------------------------------------- 1 | Hello &nbsnbsp; world -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/nbsp.txt: -------------------------------------------------------------------------------- 1 | hello world & people < > &NBSP; -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/non-breaking-spaces.html: -------------------------------------------------------------------------------- 1 | these spaces are non-breaking -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/non-breaking-spaces.txt: -------------------------------------------------------------------------------- 1 | these spaces are non-breaking -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/test4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/utf8-example.txt: -------------------------------------------------------------------------------- 1 | - ÅÄÖ 2 | - åäö -------------------------------------------------------------------------------- /vendor/soundasleep/html2text/tests/windows-1252-example.txt: -------------------------------------------------------------------------------- 1 | - ÅÄÖ 2 | - åäö -------------------------------------------------------------------------------- /vendor/symfony/browser-kit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/stream_output_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/Throwing.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/validator/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/validator/Tests/Constraints/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/validator/Tests/Mapping/Loader/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/validator/Tests/Mapping/Loader/nonvalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/tuupola/slim-jwt-auth/codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | branch: 2.x 3 | comment: false -------------------------------------------------------------------------------- /vendor/zbateson/mail-mime-parser/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.1 2 | -------------------------------------------------------------------------------- /vendor/zbateson/mb-wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/zbateson/mb-wrapper/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |