gitextract_fnmcfrm8/ ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── behat.yml ├── docker/ │ ├── docker-entrypoint.sh │ ├── docker-newscoop.yml │ ├── import-newscoop.sh │ ├── newscoop-dev.conf │ └── newscoop.conf ├── docker-compose-dev.yml ├── docker-compose.yml ├── features/ │ ├── 0_api_articles.feature │ ├── 1_api_images.feature │ ├── 2_api_linkImage_to_article.feature │ ├── 3_api_articles_search.feature │ ├── 3_api_topics.feature │ ├── 4_api_link_unlink_topic_to_from_article.feature │ ├── 5_api_related_articles.feature │ ├── 6_api_link_unlink_topic.feature │ ├── bootstrap/ │ │ ├── FeatureContext.php │ │ └── RestContext.php │ ├── steps/ │ │ └── .gitignore │ └── support/ │ └── .gitignore ├── newscoop/ │ ├── .gitignore │ ├── .rmt.yml │ ├── DETAILED-CHANGELOG.txt │ ├── LICENSE_3RD_PARTY.txt │ ├── RMT │ ├── admin-files/ │ │ ├── ad.php │ │ ├── ad_popup.php │ │ ├── article_import/ │ │ │ ├── CampsiteArticleTemplate.stw │ │ │ ├── CommandProcessor.php │ │ │ ├── DocBookParser.php │ │ │ ├── DocbookFinalForm.xml │ │ │ ├── Installation.txt │ │ │ ├── index.php │ │ │ ├── stylesheet.css │ │ │ └── sxwToDocbook.xsl │ │ ├── article_types/ │ │ │ ├── add.php │ │ │ ├── do_add.php │ │ │ ├── do_comment_activation.php │ │ │ ├── do_del.php │ │ │ ├── do_filter.php │ │ │ ├── do_hide.php │ │ │ ├── do_rename.php │ │ │ ├── do_translate.php │ │ │ ├── fields/ │ │ │ │ ├── add.php │ │ │ │ ├── do_add.php │ │ │ │ ├── do_del.php │ │ │ │ ├── do_hide.php │ │ │ │ ├── do_rename.php │ │ │ │ ├── do_reorder.php │ │ │ │ ├── do_retype.php │ │ │ │ ├── do_translate.php │ │ │ │ ├── index.php │ │ │ │ ├── rename.php │ │ │ │ ├── retype.php │ │ │ │ ├── set_is_content.php │ │ │ │ └── set_show_in_editor.php │ │ │ ├── index.php │ │ │ ├── merge.php │ │ │ ├── merge2.php │ │ │ ├── merge3.php │ │ │ └── rename.php │ │ ├── articles/ │ │ │ ├── JSON.php │ │ │ ├── add.php │ │ │ ├── add_move.php │ │ │ ├── article_common.php │ │ │ ├── article_stylesheet.css │ │ │ ├── autopublish.php │ │ │ ├── autopublish_del.php │ │ │ ├── autopublish_do_add.php │ │ │ ├── comments/ │ │ │ │ ├── add_comment_form.php │ │ │ │ ├── reply.php │ │ │ │ └── show_comments.php │ │ │ ├── context_box/ │ │ │ │ └── popup.php │ │ │ ├── do_add.php │ │ │ ├── do_article_action.php │ │ │ ├── do_article_list_action.php │ │ │ ├── do_edit.php │ │ │ ├── do_position.php │ │ │ ├── do_translate.php │ │ │ ├── do_unlock.php │ │ │ ├── duplicate.php │ │ │ ├── edit.php │ │ │ ├── edit_comments_box.php │ │ │ ├── edit_context_box.php │ │ │ ├── edit_html.php │ │ │ ├── edit_html_authors.php │ │ │ ├── edit_info_box.php │ │ │ ├── edit_javascript.php │ │ │ ├── edit_locations_box.php │ │ │ ├── edit_main_box.php │ │ │ ├── edit_media_box.php │ │ │ ├── edit_multidate_box.php │ │ │ ├── edit_playlist.php │ │ │ ├── edit_schedule_box.php │ │ │ ├── edit_switches_box.php │ │ │ ├── edit_topics_box.php │ │ │ ├── editor_load_countable.php │ │ │ ├── editor_load_tinymce.php │ │ │ ├── empty.php │ │ │ ├── files/ │ │ │ │ ├── do_add.php │ │ │ │ ├── do_add_existing.php │ │ │ │ ├── do_del.php │ │ │ │ ├── do_edit.php │ │ │ │ ├── edit.php │ │ │ │ └── popup.php │ │ │ ├── get.php │ │ │ ├── images/ │ │ │ │ ├── add.php │ │ │ │ ├── do_link.php │ │ │ │ ├── do_unlink.php │ │ │ │ ├── popup.php │ │ │ │ ├── search.php │ │ │ │ └── view.php │ │ │ ├── index.php │ │ │ ├── la_import.php │ │ │ ├── locations/ │ │ │ │ ├── country_codes.php │ │ │ │ ├── do_unlink.php │ │ │ │ ├── filter.php │ │ │ │ ├── popup.php │ │ │ │ ├── preview.php │ │ │ │ └── search.php │ │ │ ├── multi_autopublish.php │ │ │ ├── multidate/ │ │ │ │ └── popup.php │ │ │ ├── playlist/ │ │ │ │ └── popup.php │ │ │ ├── post.php │ │ │ ├── preview.php │ │ │ └── translate.php │ │ ├── backup.php │ │ ├── bugreporter/ │ │ │ ├── bug_handler_main.php │ │ │ ├── emailus.php │ │ │ └── errormessage.php │ │ ├── camp_html.php │ │ ├── country/ │ │ │ ├── add.php │ │ │ ├── country_common.php │ │ │ ├── do_add.php │ │ │ ├── do_del.php │ │ │ ├── do_edit.php │ │ │ ├── do_translate.php │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ └── translate.php │ │ ├── home.php │ │ ├── html_head.php │ │ ├── index.php │ │ ├── issues/ │ │ │ ├── add_new.php │ │ │ ├── add_prev.php │ │ │ ├── autopublish.php │ │ │ ├── autopublish_del.php │ │ │ ├── autopublish_do_add.php │ │ │ ├── delete.php │ │ │ ├── do_add_new.php │ │ │ ├── do_add_prev.php │ │ │ ├── do_del.php │ │ │ ├── do_edit.php │ │ │ ├── do_status.php │ │ │ ├── do_translate.php │ │ │ ├── edit.php │ │ │ ├── empty.php │ │ │ ├── get_templates.php │ │ │ ├── index.php │ │ │ ├── issue_common.php │ │ │ ├── preview.php │ │ │ ├── qadd.php │ │ │ └── translate.php │ │ ├── javascript_common.php │ │ ├── json.php │ │ ├── languages/ │ │ │ ├── add_modify.php │ │ │ ├── do_add_modify.php │ │ │ ├── do_del.php │ │ │ └── index.php │ │ ├── languages.php │ │ ├── lib_campsite.php │ │ ├── libs/ │ │ │ ├── ArticleList/ │ │ │ │ ├── ArticleList.php │ │ │ │ ├── actions.php │ │ │ │ ├── do_action.php │ │ │ │ ├── do_data.php │ │ │ │ ├── do_order.php │ │ │ │ ├── filters.php │ │ │ │ └── table.php │ │ │ ├── BaseList/ │ │ │ │ ├── BaseList.php │ │ │ │ └── table.php │ │ │ ├── ContextList/ │ │ │ │ ├── ContextList.php │ │ │ │ ├── actions.php │ │ │ │ ├── do_action.php │ │ │ │ ├── do_data.php │ │ │ │ ├── do_order.php │ │ │ │ ├── filters.php │ │ │ │ └── table.php │ │ │ ├── ImageList/ │ │ │ │ └── ImageList.php │ │ │ ├── MediaList/ │ │ │ │ └── MediaList.php │ │ │ └── MediaPlayer/ │ │ │ ├── MediaPlayer.php │ │ │ ├── flash.phtml │ │ │ ├── player.phtml │ │ │ └── video.phtml │ │ ├── media-archive/ │ │ │ ├── add.php │ │ │ ├── add_file.php │ │ │ ├── ajax_save.php │ │ │ ├── do_del.php │ │ │ ├── do_edit-attachment.php │ │ │ ├── do_edit.php │ │ │ ├── do_multiedit.php │ │ │ ├── do_multiedit_file.php │ │ │ ├── do_upload.php │ │ │ ├── do_upload_file.php │ │ │ ├── edit-attachment.php │ │ │ ├── edit.php │ │ │ ├── editor_load_tinymce.php │ │ │ ├── index.php │ │ │ ├── multiedit.php │ │ │ ├── multiedit_file.php │ │ │ ├── uploader.php │ │ │ └── uploader_file.php │ │ ├── menu.php │ │ ├── pending_articles/ │ │ │ └── index.php │ │ ├── plugins/ │ │ │ └── manage.php │ │ ├── pub/ │ │ │ ├── add_alias.php │ │ │ ├── aliases.php │ │ │ ├── do_add_alias.php │ │ │ ├── do_del_alias.php │ │ │ ├── do_edit_alias.php │ │ │ ├── edit_alias.php │ │ │ └── pub_common.php │ │ ├── sections/ │ │ │ ├── add.php │ │ │ ├── del.php │ │ │ ├── do_add.php │ │ │ ├── do_del.php │ │ │ ├── do_duplicate.php │ │ │ ├── do_edit.php │ │ │ ├── duplicate.php │ │ │ ├── duplicate_complete.php │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ └── section_common.php │ │ ├── set-author.php │ │ ├── universal-list/ │ │ │ └── index.php │ │ ├── users/ │ │ │ ├── access_form.php │ │ │ ├── authors.php │ │ │ ├── authors_ajax/ │ │ │ │ ├── detail.php │ │ │ │ └── grid.php │ │ │ ├── do_add.php │ │ │ ├── do_del.php │ │ │ ├── do_edit.php │ │ │ ├── do_ipadd.php │ │ │ ├── do_ipdel.php │ │ │ ├── load_tinymce.php │ │ │ ├── permission_list.php │ │ │ └── users_common.php │ │ └── widgets.php │ ├── admin-style/ │ │ ├── ColVis.css │ │ ├── action_buttons.css │ │ ├── admin_stylesheet.css │ │ ├── admin_stylesheet_context.css │ │ ├── admin_stylesheet_new.css │ │ ├── app.css │ │ ├── buttons.css │ │ ├── calendar/ │ │ │ ├── fullcalendar.css │ │ │ └── timepicker.css │ │ ├── comments.css │ │ ├── common.css │ │ ├── content.css │ │ ├── fg-menu/ │ │ │ ├── fg.menu.css │ │ │ ├── fg.menu.js │ │ │ ├── menuContent.html │ │ │ └── theme/ │ │ │ ├── ui.accordion.css │ │ │ ├── ui.all.css │ │ │ ├── ui.base.css │ │ │ ├── ui.core.css │ │ │ ├── ui.datepicker.css │ │ │ ├── ui.dialog.css │ │ │ ├── ui.progressbar.css │ │ │ ├── ui.resizable.css │ │ │ ├── ui.slider.css │ │ │ ├── ui.tabs.css │ │ │ └── ui.theme.css │ │ ├── fg.menu.css │ │ ├── form.css │ │ ├── image_management.css │ │ ├── jScrollPane.css │ │ ├── jquery-ui-1.8.6.custom.css │ │ ├── jquery-ui-1.8.6.datepicker.css │ │ ├── layout.css │ │ ├── lists.css │ │ ├── map-filter.css │ │ ├── map-picking.css │ │ ├── map-preview.css │ │ ├── misc-pages.css │ │ ├── modal-custom.css │ │ ├── modal-window.css │ │ ├── multidate.css │ │ ├── pagination.css │ │ ├── renditions.css │ │ ├── sidebar.css │ │ ├── slideshow-list.css │ │ ├── slideshow.css │ │ ├── table.css │ │ ├── themes_list.css │ │ ├── widgets.css │ │ └── zend_admin_stylesheet.css │ ├── admin.php │ ├── application/ │ │ ├── AppKernel.php │ │ ├── Bootstrap.php │ │ ├── SymfonyRequirements.php │ │ ├── autoload.php │ │ ├── check.php │ │ ├── configs/ │ │ │ ├── parameters/ │ │ │ │ ├── parameters.yml │ │ │ │ ├── parameters_cli.yml │ │ │ │ ├── parameters_development.yml │ │ │ │ └── parameters_testing.yml │ │ │ ├── security/ │ │ │ │ └── .gitkeep │ │ │ ├── services/ │ │ │ │ ├── audit.yml │ │ │ │ ├── comment.yml │ │ │ │ ├── comment_notification.yml │ │ │ │ ├── services.yml │ │ │ │ ├── template_lists.yml │ │ │ │ ├── user_attributes.yml │ │ │ │ └── user_points.yml │ │ │ ├── subscriptions/ │ │ │ │ └── .gitignore │ │ │ └── symfony/ │ │ │ ├── config.yml │ │ │ ├── config_dev.yml │ │ │ ├── config_prod.yml │ │ │ ├── config_testing.yml │ │ │ ├── routing.yml │ │ │ ├── routing_dev.yml │ │ │ └── security.yml │ │ ├── console │ │ ├── controllers/ │ │ │ ├── AuthController.php │ │ │ ├── AuthorController.php │ │ │ ├── DashboardController.php │ │ │ ├── EmailController.php │ │ │ ├── ErrorController.php │ │ │ ├── FeedbackController.php │ │ │ ├── ImageController.php │ │ │ ├── LegacyController.php │ │ │ ├── MyTopicsController.php │ │ │ ├── OmniboxController.php │ │ │ ├── RatingController.php │ │ │ ├── RegisterController.php │ │ │ ├── SearchController.php │ │ │ ├── TopicController.php │ │ │ ├── UserController.php │ │ │ └── helpers/ │ │ │ ├── Acl.php │ │ │ ├── Article.php │ │ │ ├── Datatable.php │ │ │ ├── Em.php │ │ │ ├── Entity.php │ │ │ ├── Form.php │ │ │ ├── GenericDatatable.php │ │ │ ├── Log.php │ │ │ ├── Newsletter.php │ │ │ ├── Plupload.php │ │ │ ├── Service.php │ │ │ ├── Sidebar.php │ │ │ └── Smarty.php │ │ ├── forms/ │ │ │ ├── Confirm.php │ │ │ ├── Contact.php │ │ │ ├── Login.php │ │ │ ├── PasswordRestore.php │ │ │ ├── PasswordRestorePassword.php │ │ │ ├── Profile.php │ │ │ ├── Register.php │ │ │ ├── SendEmail.php │ │ │ ├── Social.php │ │ │ └── Topics.php │ │ ├── layouts/ │ │ │ └── scripts/ │ │ │ ├── admin.phtml │ │ │ ├── admin_menu.phtml │ │ │ ├── iframe.phtml │ │ │ └── modal.phtml │ │ ├── modules/ │ │ │ └── admin/ │ │ │ ├── Bootstrap.php │ │ │ ├── controllers/ │ │ │ │ ├── AclController.php │ │ │ │ ├── ApplicationController.php │ │ │ │ ├── AuthController.php │ │ │ │ ├── BlogController.php │ │ │ │ ├── CommentAcceptanceController.php │ │ │ │ ├── CommentCommenterController.php │ │ │ │ ├── CommentController.php │ │ │ │ ├── ErrorController.php │ │ │ │ ├── FeedbackController.php │ │ │ │ ├── ImageController.php │ │ │ │ ├── LanguagesController.php │ │ │ │ ├── LegacyController.php │ │ │ │ ├── LogController.php │ │ │ │ ├── MediaController.php │ │ │ │ ├── MultidateController.php │ │ │ │ ├── RenditionController.php │ │ │ │ ├── SlideshowController.php │ │ │ │ ├── SlideshowRestController.php │ │ │ │ ├── StaffController.php │ │ │ │ ├── SupportController.php │ │ │ │ ├── TemplateController.php │ │ │ │ ├── ThemesController.php │ │ │ │ ├── UserController.php │ │ │ │ ├── UserGroupController.php │ │ │ │ └── UserPointsController.php │ │ │ ├── forms/ │ │ │ │ ├── Ban.php │ │ │ │ ├── BanUser.php │ │ │ │ ├── Blog.php │ │ │ │ ├── Comment/ │ │ │ │ │ ├── EditForm.php │ │ │ │ │ └── ReplyForm.php │ │ │ │ ├── Comment.php │ │ │ │ ├── CommentAcceptance.php │ │ │ │ ├── Commenter.php │ │ │ │ ├── EditPassword.php │ │ │ │ ├── Geolocation.php │ │ │ │ ├── Language.php │ │ │ │ ├── Profile.php │ │ │ │ ├── RenameUser.php │ │ │ │ ├── ReplaceTemplate.php │ │ │ │ ├── Slideshow.php │ │ │ │ ├── SlideshowCreate.php │ │ │ │ ├── SlideshowItem.php │ │ │ │ ├── SlideshowVideoItem.php │ │ │ │ ├── Staff.php │ │ │ │ ├── Support.php │ │ │ │ ├── Template.php │ │ │ │ ├── Theme/ │ │ │ │ │ ├── OutputSettings.php │ │ │ │ │ └── Upload.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Upload.php │ │ │ │ ├── User.php │ │ │ │ ├── UserCriteria.php │ │ │ │ └── UserPoints.php │ │ │ └── views/ │ │ │ ├── helpers/ │ │ │ │ ├── Camelize.php │ │ │ │ ├── CommentAction.php │ │ │ │ ├── CommentArticle.php │ │ │ │ ├── CommentCommenter.php │ │ │ │ ├── CommentIndex.php │ │ │ │ ├── CommentMessage.php │ │ │ │ ├── FlashMsg.php │ │ │ │ ├── FormatBytes.php │ │ │ │ ├── GetAvatar.php │ │ │ │ ├── ImageArchive.php │ │ │ │ ├── ImageEditor.php │ │ │ │ ├── JQueryReady.php │ │ │ │ ├── JQueryUtils.php │ │ │ │ ├── Jsonified.php │ │ │ │ ├── LinkArticle.php │ │ │ │ ├── LinkArticleObj.php │ │ │ │ ├── LinkBan.php │ │ │ │ ├── LinkDelete.php │ │ │ │ ├── LinkEdit.php │ │ │ │ ├── MaxFileSize.php │ │ │ │ ├── ModerateBodyComment.php │ │ │ │ ├── ModerateSubjectComment.php │ │ │ │ ├── Plupload.php │ │ │ │ ├── RenderActions.php │ │ │ │ ├── RenderDatatable.php │ │ │ │ ├── RenderDate.php │ │ │ │ ├── RenderError.php │ │ │ │ ├── RenderFilter.php │ │ │ │ ├── RenderMessage.php │ │ │ │ ├── RenderNewsItem.php │ │ │ │ ├── RenderPackageItem.php │ │ │ │ ├── RenderPackageItemGroup.php │ │ │ │ ├── RenderPager.php │ │ │ │ ├── RenditionPreview.php │ │ │ │ ├── Slideshow.php │ │ │ │ ├── SlideshowItem.php │ │ │ │ ├── SlideshowItemPreview.php │ │ │ │ ├── SlideshowsJson.php │ │ │ │ ├── StringLimit.php │ │ │ │ ├── ToggleCheckbox.php │ │ │ │ └── VideoPreview.php │ │ │ └── scripts/ │ │ │ ├── _p/ │ │ │ │ └── generic-datatable.phtml │ │ │ ├── acl/ │ │ │ │ ├── edit.phtml │ │ │ │ └── form.phtml │ │ │ ├── actions.phtml │ │ │ ├── application/ │ │ │ │ └── help.phtml │ │ │ ├── auth/ │ │ │ │ └── login.phtml │ │ │ ├── blog/ │ │ │ │ ├── index.phtml │ │ │ │ └── nosection.phtml │ │ │ ├── comment/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit.phtml │ │ │ │ ├── list.phtml │ │ │ │ └── set-status.phtml │ │ │ ├── comment-acceptance/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit.phtml │ │ │ │ └── table.phtml │ │ │ ├── comment-commenter/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit.phtml │ │ │ │ ├── index.phtml │ │ │ │ └── toggle-ban.phtml │ │ │ ├── datatable.phtml │ │ │ ├── error/ │ │ │ │ ├── deny.phtml │ │ │ │ └── index.phtml │ │ │ ├── error.phtml │ │ │ ├── feedback/ │ │ │ │ ├── set-status.phtml │ │ │ │ └── table.phtml │ │ │ ├── filter.phtml │ │ │ ├── image/ │ │ │ │ ├── archive.phtml │ │ │ │ ├── article-attach.phtml │ │ │ │ ├── article.phtml │ │ │ │ ├── edit-image-data.phtml │ │ │ │ ├── edit.phtml │ │ │ │ ├── editor.phtml │ │ │ │ └── rendition.phtml │ │ │ ├── languages/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit.phtml │ │ │ │ └── index.phtml │ │ │ ├── legacy/ │ │ │ │ └── index.phtml │ │ │ ├── link-ban.phtml │ │ │ ├── link-delete.phtml │ │ │ ├── link-edit.phtml │ │ │ ├── log/ │ │ │ │ └── index.phtml │ │ │ ├── media/ │ │ │ │ ├── list-images.phtml │ │ │ │ └── list-slideshows.phtml │ │ │ ├── message.phtml │ │ │ ├── news-item.phtml │ │ │ ├── package/ │ │ │ │ └── item.phtml │ │ │ ├── package-item-group.phtml │ │ │ ├── package-item.phtml │ │ │ ├── pager.phtml │ │ │ ├── paginator-hash.phtml │ │ │ ├── paginator-template.phtml │ │ │ ├── paginator.phtml │ │ │ ├── plupload.phtml │ │ │ ├── rendition/ │ │ │ │ ├── index.phtml │ │ │ │ └── preview.phtml │ │ │ ├── slideshow/ │ │ │ │ ├── add-video-item.phtml │ │ │ │ ├── attach.phtml │ │ │ │ ├── create.phtml │ │ │ │ ├── edit-item.phtml │ │ │ │ ├── edit.phtml │ │ │ │ ├── item-preview.phtml │ │ │ │ ├── item.phtml │ │ │ │ ├── slideshow.phtml │ │ │ │ ├── vimeo-preview.phtml │ │ │ │ └── youtube-preview.phtml │ │ │ ├── slideshow-attach-template.phtml │ │ │ ├── slideshow-box.phtml │ │ │ ├── slideshow-list.phtml │ │ │ ├── slideshow-template.phtml │ │ │ ├── staff/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit-access.phtml │ │ │ │ ├── edit.phtml │ │ │ │ └── table.phtml │ │ │ ├── support/ │ │ │ │ ├── close.phtml │ │ │ │ └── index.phtml │ │ │ ├── template/ │ │ │ │ ├── edit-image.phtml │ │ │ │ ├── edit-other.phtml │ │ │ │ ├── edit-template.phtml │ │ │ │ ├── index.phtml │ │ │ │ └── upload.phtml │ │ │ ├── test/ │ │ │ │ ├── index.phtml │ │ │ │ ├── test-api-follow.phtml │ │ │ │ └── test-api.phtml │ │ │ ├── themes/ │ │ │ │ ├── advanced-theme-settings.phtml │ │ │ │ ├── index.phtml │ │ │ │ ├── output-edit.phtml │ │ │ │ ├── wizard-theme-article-types.adv.phtml │ │ │ │ ├── wizard-theme-article-types.phtml │ │ │ │ ├── wizard-theme-files.adv.phtml │ │ │ │ ├── wizard-theme-playlists.phtml │ │ │ │ ├── wizard-theme-settings.adv.phtml │ │ │ │ ├── wizard-theme-settings.phtml │ │ │ │ ├── wizard-theme-template-settings.adv.phtml │ │ │ │ └── wizard-theme-template-settings.phtml │ │ │ ├── toggle-checkbox.phtml │ │ │ ├── user/ │ │ │ │ ├── create.phtml │ │ │ │ ├── edit-password.phtml │ │ │ │ ├── edit.phtml │ │ │ │ ├── geolocation.phtml │ │ │ │ ├── index.phtml │ │ │ │ ├── list-inactive.phtml │ │ │ │ ├── profile.phtml │ │ │ │ ├── rename.phtml │ │ │ │ └── toggle-ban.phtml │ │ │ ├── user-group/ │ │ │ │ ├── add.phtml │ │ │ │ ├── edit-access.phtml │ │ │ │ └── index.phtml │ │ │ └── user-points/ │ │ │ └── index.phtml │ │ ├── phpunit.bootstrap.php │ │ ├── phpunit.xml.dist │ │ ├── plugins/ │ │ │ ├── Acl.php │ │ │ ├── Auth.php │ │ │ ├── Bootstrap.php │ │ │ ├── CampPluginAutoload.php │ │ │ ├── ContentType.php │ │ │ └── Upgrade.php │ │ └── views/ │ │ └── scripts/ │ │ ├── auth_index.tpl │ │ ├── auth_password-restore-after.tpl │ │ ├── auth_password-restore-finish.tpl │ │ ├── auth_password-restore.tpl │ │ ├── author_profile.tpl │ │ ├── comments/ │ │ │ └── index.phtml │ │ ├── dashboard_index.tpl │ │ ├── email_comment-notify.tpl │ │ ├── email_confirm.tpl │ │ ├── email_password-restore.tpl │ │ ├── error/ │ │ │ └── error.phtml │ │ ├── error_error.tpl │ │ ├── layout.tpl │ │ ├── legacy/ │ │ │ └── index.phtml │ │ ├── legacy_index.tpl │ │ ├── omnibox_index.tpl │ │ ├── paginator_control.tpl │ │ ├── register_after.tpl │ │ ├── register_confirm.tpl │ │ ├── register_index.tpl │ │ ├── register_pending.tpl │ │ ├── register_social.tpl │ │ ├── search_index.tpl │ │ ├── topic_articles.tpl │ │ ├── user_index.tpl │ │ └── user_profile.tpl │ ├── application.php │ ├── bin/ │ │ ├── .htaccess │ │ ├── UpdateApplicationVersionCurrentVersion.php │ │ ├── cli_script_lib.php │ │ ├── events-notifier │ │ ├── newscoop-autopublish │ │ ├── newscoop-backup │ │ ├── newscoop-indexer │ │ ├── newscoop-restore │ │ ├── newscoop-statistics │ │ ├── newscoop-stats │ │ ├── newscoop-utf8-converter │ │ ├── newscoop_bootstrap.php │ │ ├── post-install.sh │ │ ├── subscription-notifier │ │ └── webcode_generate_all.sh │ ├── cache/ │ │ ├── .gitignore │ │ └── .htaccess │ ├── classes/ │ │ ├── Alias.php │ │ ├── Article.php │ │ ├── ArticleAttachment.php │ │ ├── ArticleAuthor.php │ │ ├── ArticleData.php │ │ ├── ArticleImage.php │ │ ├── ArticleIndex.php │ │ ├── ArticlePublish.php │ │ ├── ArticleTopic.php │ │ ├── ArticleType.php │ │ ├── ArticleTypeField.php │ │ ├── Attachment.php │ │ ├── Author.php │ │ ├── AuthorAlias.php │ │ ├── AuthorAssignedType.php │ │ ├── AuthorBiography.php │ │ ├── AuthorType.php │ │ ├── Browser.php │ │ ├── BugReporter.php │ │ ├── CampCache.php │ │ ├── CampCacheList.php │ │ ├── CampMail.php │ │ ├── CampPlugin.php │ │ ├── CampTemplateCache.php │ │ ├── ContextBox.php │ │ ├── ContextBoxArticle.php │ │ ├── Country.php │ │ ├── DatabaseObject.php │ │ ├── DbObjectArray.php │ │ ├── DbReplication.php │ │ ├── Event.php │ │ ├── Exceptions.php │ │ ├── Extension/ │ │ │ ├── Extension.php │ │ │ ├── FeedWidget.php │ │ │ ├── File.php │ │ │ ├── IWidget.php │ │ │ ├── IWidgetContext.php │ │ │ ├── Index.php │ │ │ ├── Widget.php │ │ │ ├── WidgetContext.php │ │ │ ├── WidgetManager.php │ │ │ ├── WidgetManagerDecorator.php │ │ │ └── WidgetRendererDecorator.php │ │ ├── FileTextSearch.php │ │ ├── GeoLocation.php │ │ ├── GeoMap.php │ │ ├── GeoMapLocation.php │ │ ├── GeoMapLocationContent.php │ │ ├── GeoMapLocationLanguage.php │ │ ├── GeoMultimedia.php │ │ ├── GeoNames.php │ │ ├── GeoPreferences.php │ │ ├── IGeoLocation.php │ │ ├── IGeoMap.php │ │ ├── IGeoMapLocation.php │ │ ├── IGeoMapLocationContent.php │ │ ├── IGeoMapLocationLanguage.php │ │ ├── IGeoMultimedia.php │ │ ├── IPAccess.php │ │ ├── Image.php │ │ ├── ImageSearch.php │ │ ├── Input.php │ │ ├── Issue.php │ │ ├── IssuePublish.php │ │ ├── Language.php │ │ ├── LiveUserMock.php │ │ ├── Log.php │ │ ├── LoginAttempts.php │ │ ├── ModuleConfiguration.php │ │ ├── ObjectType.php │ │ ├── Plupload.php │ │ ├── Publication.php │ │ ├── Request.php │ │ ├── RequestObject.php │ │ ├── RequestStats.php │ │ ├── SQLSelectClause.php │ │ ├── SaaS.php │ │ ├── Section.php │ │ ├── SecurityToken.php │ │ ├── ServerRequest.php │ │ ├── Session.php │ │ ├── SessionRequest.php │ │ ├── ShortURL.php │ │ ├── SimplePager.php │ │ ├── Statistics.php │ │ ├── Subscription.php │ │ ├── SubscriptionDefaultTime.php │ │ ├── SubscriptionSection.php │ │ ├── Template.php │ │ ├── TemplateConverter.php │ │ ├── TemplateConverterHelper.php │ │ ├── TemplateConverterIfBlock.php │ │ ├── TemplateConverterListObject.php │ │ ├── TemplateConverterNewscoop.php │ │ ├── TimeUnit.php │ │ ├── Translation.php │ │ ├── UrlType.php │ │ ├── User.php │ │ ├── UserType.php │ │ ├── XR_CcClient.php │ │ ├── browser_detection.php │ │ └── cache/ │ │ ├── CacheEngine.php │ │ ├── CacheEngine_APC.php │ │ ├── TemplateCacheHandler.php │ │ └── TemplateCacheHandler_DB.php │ ├── composer.json │ ├── conf/ │ │ ├── install_conf.php │ │ └── saas_config_sample.php │ ├── constants.php │ ├── db_connect.php │ ├── docs/ │ │ ├── INSTALL-ubuntu.md │ │ ├── README.md │ │ ├── UPGRADE_4_3.md │ │ ├── UPGRADE_4_4.md │ │ └── UPGRADE_BELOW_4_2_3.md │ ├── extensions/ │ │ ├── article-lists/ │ │ │ ├── ArticleDiagramsWidget.php │ │ │ ├── ArticlesWidget.php │ │ │ ├── MostPopularArticlesWidget.php │ │ │ ├── PendingArticlesWidget.php │ │ │ ├── RecentlyModifiedArticlesWidget.php │ │ │ ├── RecentlyPublishedArticlesWidget.php │ │ │ ├── SubmittedArticlesWidget.php │ │ │ ├── YourArticlesWidget.php │ │ │ ├── article-lists.ini │ │ │ └── diagrams.phtml │ │ ├── feed-reader/ │ │ │ ├── FeedReader.php │ │ │ └── feed-reader.ini │ │ ├── hello-world/ │ │ │ └── HelloWorld.php │ │ ├── media-archive/ │ │ │ ├── ImageListWidget.php │ │ │ ├── MediaListWidget.php │ │ │ └── media-archive.ini │ │ ├── sourcefabric/ │ │ │ ├── SourcefabricDevFeed.php │ │ │ ├── SourcefabricFeed.php │ │ │ ├── SourcefabricNewsletter.php │ │ │ ├── newsletterbox.phtml │ │ │ └── sourcefabric.ini │ │ └── wikipedia/ │ │ ├── SearchWikipedia.php │ │ └── search.phtml │ ├── htaccess.dist │ ├── images/ │ │ └── .gitignore │ ├── include/ │ │ ├── Archive/ │ │ │ └── Tar.php │ │ ├── Console/ │ │ │ └── Getopt.php │ │ ├── Date/ │ │ │ ├── Calc.php │ │ │ ├── Human.php │ │ │ ├── Span.php │ │ │ └── TimeZone.php │ │ ├── Date.php │ │ ├── Event/ │ │ │ ├── Dispatcher.php │ │ │ └── Notification.php │ │ ├── File/ │ │ │ ├── CSV.php │ │ │ ├── Find.php │ │ │ └── Util.php │ │ ├── File.php │ │ ├── Mail/ │ │ │ ├── RFC822.php │ │ │ ├── mail.php │ │ │ ├── mime.php │ │ │ ├── mimeDecode.php │ │ │ ├── mimePart.php │ │ │ ├── mock.php │ │ │ ├── null.php │ │ │ ├── sendmail.php │ │ │ ├── smtp.php │ │ │ └── smtpmx.php │ │ ├── Mail.php │ │ ├── Net/ │ │ │ ├── SMTP.php │ │ │ ├── Socket.php │ │ │ └── URL.php │ │ ├── OS/ │ │ │ └── Guess.php │ │ ├── PEAR/ │ │ │ ├── Autoloader.php │ │ │ ├── Builder.php │ │ │ ├── ChannelFile/ │ │ │ │ └── Parser.php │ │ │ ├── ChannelFile.php │ │ │ ├── Command/ │ │ │ │ ├── Auth.php │ │ │ │ ├── Auth.xml │ │ │ │ ├── Build.php │ │ │ │ ├── Build.xml │ │ │ │ ├── Channels.php │ │ │ │ ├── Channels.xml │ │ │ │ ├── Common.php │ │ │ │ ├── Config.php │ │ │ │ ├── Config.xml │ │ │ │ ├── Install.php │ │ │ │ ├── Install.xml │ │ │ │ ├── Mirror.php │ │ │ │ ├── Mirror.xml │ │ │ │ ├── Package.php │ │ │ │ ├── Package.xml │ │ │ │ ├── Pickle.php │ │ │ │ ├── Pickle.xml │ │ │ │ ├── Registry.php │ │ │ │ ├── Registry.xml │ │ │ │ ├── Remote.php │ │ │ │ ├── Remote.xml │ │ │ │ ├── Test.php │ │ │ │ └── Test.xml │ │ │ ├── Command.php │ │ │ ├── Common.php │ │ │ ├── Config.php │ │ │ ├── Dependency2.php │ │ │ ├── DependencyDB.php │ │ │ ├── Downloader/ │ │ │ │ └── Package.php │ │ │ ├── Downloader.php │ │ │ ├── ErrorStack.php │ │ │ ├── Exception.php │ │ │ ├── FixPHP5PEARWarnings.php │ │ │ ├── Frontend/ │ │ │ │ └── CLI.php │ │ │ ├── Frontend.php │ │ │ ├── Installer/ │ │ │ │ ├── Role/ │ │ │ │ │ ├── Cfg.php │ │ │ │ │ ├── Cfg.xml │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── Data.php │ │ │ │ │ ├── Data.xml │ │ │ │ │ ├── Doc.php │ │ │ │ │ ├── Doc.xml │ │ │ │ │ ├── Ext.php │ │ │ │ │ ├── Ext.xml │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Php.xml │ │ │ │ │ ├── Script.php │ │ │ │ │ ├── Script.xml │ │ │ │ │ ├── Src.php │ │ │ │ │ ├── Src.xml │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── Test.xml │ │ │ │ │ ├── Www.php │ │ │ │ │ └── Www.xml │ │ │ │ └── Role.php │ │ │ ├── Installer.php │ │ │ ├── PackageFile/ │ │ │ │ ├── Generator/ │ │ │ │ │ ├── v1.php │ │ │ │ │ └── v2.php │ │ │ │ ├── Parser/ │ │ │ │ │ ├── v1.php │ │ │ │ │ └── v2.php │ │ │ │ ├── v1.php │ │ │ │ ├── v2/ │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── rw.php │ │ │ │ └── v2.php │ │ │ ├── PackageFile.php │ │ │ ├── Packager.php │ │ │ ├── REST/ │ │ │ │ ├── 10.php │ │ │ │ ├── 11.php │ │ │ │ └── 13.php │ │ │ ├── REST.php │ │ │ ├── Registry.php │ │ │ ├── RunTest.php │ │ │ ├── Task/ │ │ │ │ ├── Common.php │ │ │ │ ├── Postinstallscript/ │ │ │ │ │ └── rw.php │ │ │ │ ├── Postinstallscript.php │ │ │ │ ├── Replace/ │ │ │ │ │ └── rw.php │ │ │ │ ├── Replace.php │ │ │ │ ├── Unixeol/ │ │ │ │ │ └── rw.php │ │ │ │ ├── Unixeol.php │ │ │ │ ├── Windowseol/ │ │ │ │ │ └── rw.php │ │ │ │ └── Windowseol.php │ │ │ ├── Validate.php │ │ │ ├── Validator/ │ │ │ │ └── PECL.php │ │ │ └── XMLParser.php │ │ ├── PEAR.php │ │ ├── PEAR5.php │ │ ├── System.php │ │ ├── XML/ │ │ │ ├── Parser/ │ │ │ │ └── Simple.php │ │ │ ├── Parser.php │ │ │ ├── Serializer.php │ │ │ ├── Unserializer.php │ │ │ └── Util.php │ │ ├── campsite_constants.php │ │ ├── campsite_init.php │ │ ├── captcha/ │ │ │ ├── fonts/ │ │ │ │ ├── COPYRIGHT.TXT │ │ │ │ ├── README.TXT │ │ │ │ ├── RELEASENOTES.TXT │ │ │ │ └── local.conf │ │ │ ├── image.php │ │ │ └── php-captcha.inc.php │ │ ├── crypto/ │ │ │ └── rc4Encrypt.php │ │ ├── data/ │ │ │ ├── Mail_Mime/ │ │ │ │ ├── xmail.dtd │ │ │ │ └── xmail.xsl │ │ │ ├── PEAR/ │ │ │ │ ├── package.dtd │ │ │ │ └── template.spec │ │ │ └── XML_Serializer/ │ │ │ └── doc/ │ │ │ └── todo.txt │ │ ├── html2pdf/ │ │ │ ├── _LGPL.txt │ │ │ ├── _changelog.txt │ │ │ ├── _class/ │ │ │ │ ├── exception.class.php │ │ │ │ ├── locale.class.php │ │ │ │ ├── myPdf.class.php │ │ │ │ ├── parsingCss.class.php │ │ │ │ ├── parsingHtml.class.php │ │ │ │ └── tcpdfConfig.php │ │ │ ├── _lisez_moi.txt │ │ │ ├── _read_me.txt │ │ │ ├── _tcpdf_5.0.002/ │ │ │ │ ├── 2dbarcodes.php │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── README.TXT │ │ │ │ ├── barcodes.php │ │ │ │ ├── cache/ │ │ │ │ │ ├── chapter_demo_1.txt │ │ │ │ │ ├── chapter_demo_2.txt │ │ │ │ │ ├── table_data_demo.txt │ │ │ │ │ └── utf8test.txt │ │ │ │ ├── config/ │ │ │ │ │ ├── lang/ │ │ │ │ │ │ ├── bra.php │ │ │ │ │ │ ├── eng.php │ │ │ │ │ │ ├── ger.php │ │ │ │ │ │ └── ita.php │ │ │ │ │ ├── tcpdf_config.php │ │ │ │ │ └── tcpdf_config_alt.php │ │ │ │ ├── doc/ │ │ │ │ │ └── read_me.txt │ │ │ │ ├── examples/ │ │ │ │ │ └── read_me.txt │ │ │ │ ├── fonts/ │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── ZarBold.ctg.z │ │ │ │ │ ├── ZarBold.z │ │ │ │ │ ├── almohanad.ctg.z │ │ │ │ │ ├── almohanad.php │ │ │ │ │ ├── almohanad.z │ │ │ │ │ ├── arialunicid0.php │ │ │ │ │ ├── courier.php │ │ │ │ │ ├── dejavu-fonts-ttf-2.30/ │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── BUGS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NEWS │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── langcover.txt │ │ │ │ │ │ ├── status.txt │ │ │ │ │ │ └── unicover.txt │ │ │ │ │ ├── dejavusans.ctg.z │ │ │ │ │ ├── dejavusans.php │ │ │ │ │ ├── dejavusans.z │ │ │ │ │ ├── dejavusansb.ctg.z │ │ │ │ │ ├── dejavusansb.php │ │ │ │ │ ├── dejavusansb.z │ │ │ │ │ ├── dejavusansbi.ctg.z │ │ │ │ │ ├── dejavusansbi.php │ │ │ │ │ ├── dejavusansbi.z │ │ │ │ │ ├── dejavusanscondensed.ctg.z │ │ │ │ │ ├── dejavusanscondensed.php │ │ │ │ │ ├── dejavusanscondensed.z │ │ │ │ │ ├── dejavusanscondensedb.ctg.z │ │ │ │ │ ├── dejavusanscondensedb.php │ │ │ │ │ ├── dejavusanscondensedb.z │ │ │ │ │ ├── dejavusanscondensedbi.ctg.z │ │ │ │ │ ├── dejavusanscondensedbi.php │ │ │ │ │ ├── dejavusanscondensedbi.z │ │ │ │ │ ├── dejavusanscondensedi.ctg.z │ │ │ │ │ ├── dejavusanscondensedi.php │ │ │ │ │ ├── dejavusanscondensedi.z │ │ │ │ │ ├── dejavusansi.ctg.z │ │ │ │ │ ├── dejavusansi.php │ │ │ │ │ ├── dejavusansi.z │ │ │ │ │ ├── dejavusansmono.ctg.z │ │ │ │ │ ├── dejavusansmono.php │ │ │ │ │ ├── dejavusansmono.z │ │ │ │ │ ├── dejavusansmonob.ctg.z │ │ │ │ │ ├── dejavusansmonob.php │ │ │ │ │ ├── dejavusansmonob.z │ │ │ │ │ ├── dejavusansmonobi.ctg.z │ │ │ │ │ ├── dejavusansmonobi.php │ │ │ │ │ ├── dejavusansmonobi.z │ │ │ │ │ ├── dejavusansmonoi.ctg.z │ │ │ │ │ ├── dejavusansmonoi.php │ │ │ │ │ ├── dejavusansmonoi.z │ │ │ │ │ ├── dejavuserif.ctg.z │ │ │ │ │ ├── dejavuserif.php │ │ │ │ │ ├── dejavuserif.z │ │ │ │ │ ├── dejavuserifb.ctg.z │ │ │ │ │ ├── dejavuserifb.php │ │ │ │ │ ├── dejavuserifb.z │ │ │ │ │ ├── dejavuserifbi.ctg.z │ │ │ │ │ ├── dejavuserifbi.php │ │ │ │ │ ├── dejavuserifbi.z │ │ │ │ │ ├── dejavuserifcondensed.ctg.z │ │ │ │ │ ├── dejavuserifcondensed.php │ │ │ │ │ ├── dejavuserifcondensed.z │ │ │ │ │ ├── dejavuserifcondensedb.ctg.z │ │ │ │ │ ├── dejavuserifcondensedb.php │ │ │ │ │ ├── dejavuserifcondensedb.z │ │ │ │ │ ├── dejavuserifcondensedbi.ctg.z │ │ │ │ │ ├── dejavuserifcondensedbi.php │ │ │ │ │ ├── dejavuserifcondensedbi.z │ │ │ │ │ ├── dejavuserifcondensedi.ctg.z │ │ │ │ │ ├── dejavuserifcondensedi.php │ │ │ │ │ ├── dejavuserifcondensedi.z │ │ │ │ │ ├── dejavuserifi.ctg.z │ │ │ │ │ ├── dejavuserifi.php │ │ │ │ │ ├── dejavuserifi.z │ │ │ │ │ ├── freefont-20090104/ │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── CREDITS │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── INSTALL │ │ │ │ │ │ └── README │ │ │ │ │ ├── freemono.ctg.z │ │ │ │ │ ├── freemono.php │ │ │ │ │ ├── freemono.z │ │ │ │ │ ├── freemonob.ctg.z │ │ │ │ │ ├── freemonob.php │ │ │ │ │ ├── freemonob.z │ │ │ │ │ ├── freemonobi.ctg.z │ │ │ │ │ ├── freemonobi.php │ │ │ │ │ ├── freemonobi.z │ │ │ │ │ ├── freemonoi.ctg.z │ │ │ │ │ ├── freemonoi.php │ │ │ │ │ ├── freemonoi.z │ │ │ │ │ ├── freesans.ctg.z │ │ │ │ │ ├── freesans.php │ │ │ │ │ ├── freesans.z │ │ │ │ │ ├── freesansb.ctg.z │ │ │ │ │ ├── freesansb.php │ │ │ │ │ ├── freesansb.z │ │ │ │ │ ├── freesansbi.ctg.z │ │ │ │ │ ├── freesansbi.php │ │ │ │ │ ├── freesansbi.z │ │ │ │ │ ├── freesansi.ctg.z │ │ │ │ │ ├── freesansi.php │ │ │ │ │ ├── freesansi.z │ │ │ │ │ ├── freeserif.ctg.z │ │ │ │ │ ├── freeserif.php │ │ │ │ │ ├── freeserif.z │ │ │ │ │ ├── freeserifb.ctg.z │ │ │ │ │ ├── freeserifb.php │ │ │ │ │ ├── freeserifb.z │ │ │ │ │ ├── freeserifbi.ctg.z │ │ │ │ │ ├── freeserifbi.php │ │ │ │ │ ├── freeserifbi.z │ │ │ │ │ ├── freeserifi.ctg.z │ │ │ │ │ ├── freeserifi.php │ │ │ │ │ ├── freeserifi.z │ │ │ │ │ ├── helvetica.php │ │ │ │ │ ├── helveticab.php │ │ │ │ │ ├── helveticabi.php │ │ │ │ │ ├── helveticai.php │ │ │ │ │ ├── hysmyeongjostdmedium.php │ │ │ │ │ ├── kozgopromedium.php │ │ │ │ │ ├── kozminproregular.php │ │ │ │ │ ├── msungstdlight.php │ │ │ │ │ ├── stsongstdlight.php │ │ │ │ │ ├── symbol.php │ │ │ │ │ ├── times.php │ │ │ │ │ ├── timesb.php │ │ │ │ │ ├── timesbi.php │ │ │ │ │ ├── timesi.php │ │ │ │ │ ├── uni2cid_ac15.php │ │ │ │ │ ├── uni2cid_ag15.php │ │ │ │ │ ├── uni2cid_aj16.php │ │ │ │ │ ├── uni2cid_ak12.php │ │ │ │ │ ├── zapfdingbats.php │ │ │ │ │ └── zarbold.php │ │ │ │ ├── htmlcolors.php │ │ │ │ ├── images/ │ │ │ │ │ └── read_me.txt │ │ │ │ ├── qrcode.php │ │ │ │ ├── tcpdf.crt │ │ │ │ ├── tcpdf.fdf │ │ │ │ ├── tcpdf.php │ │ │ │ └── unicode_data.php │ │ │ ├── html2pdf.class.php │ │ │ └── locale/ │ │ │ ├── ca.csv │ │ │ ├── cs.csv │ │ │ ├── da.csv │ │ │ ├── de.csv │ │ │ ├── en.csv │ │ │ ├── es.csv │ │ │ ├── fr.csv │ │ │ ├── it.csv │ │ │ ├── nl.csv │ │ │ ├── pt.csv │ │ │ └── tr.csv │ │ ├── mime_content_type.php │ │ ├── pearcmd.php │ │ ├── peclcmd.php │ │ ├── smarty/ │ │ │ └── campsite_plugins/ │ │ │ ├── block.assetic.php │ │ │ ├── block.comment_form.php │ │ │ ├── block.dynamic.php │ │ │ ├── block.form_topics.php │ │ │ ├── block.image.php │ │ │ ├── block.list_article_attachments.php │ │ │ ├── block.list_article_authors.php │ │ │ ├── block.list_article_comments.php │ │ │ ├── block.list_article_images.php │ │ │ ├── block.list_article_locations.php │ │ │ ├── block.list_article_topics.php │ │ │ ├── block.list_articles.php │ │ │ ├── block.list_images.php │ │ │ ├── block.list_issues.php │ │ │ ├── block.list_languages.php │ │ │ ├── block.list_map_articles.php │ │ │ ├── block.list_map_locations.php │ │ │ ├── block.list_playlist_articles.php │ │ │ ├── block.list_related_articles.php │ │ │ ├── block.list_search_results.php │ │ │ ├── block.list_section_authors.php │ │ │ ├── block.list_sections.php │ │ │ ├── block.list_slideshow_items.php │ │ │ ├── block.list_slideshows.php │ │ │ ├── block.list_subtitles.php │ │ │ ├── block.list_subtopics.php │ │ │ ├── block.list_user_comments.php │ │ │ ├── block.list_user_topics.php │ │ │ ├── block.list_users.php │ │ │ ├── block.local.php │ │ │ ├── block.login_form.php │ │ │ ├── block.search_form.php │ │ │ ├── block.subscription_form.php │ │ │ ├── block.tr.php │ │ │ ├── block.user_form.php │ │ │ ├── cacheresource.newscoop.php │ │ │ ├── function.article_pdf.php │ │ │ ├── function.breadcrumb.php │ │ │ ├── function.calendar.php │ │ │ ├── function.camp_edit.php │ │ │ ├── function.camp_select.php │ │ │ ├── function.captcha_image_link.php │ │ │ ├── function.count.php │ │ │ ├── function.disable_html_encoding.php │ │ │ ├── function.enable_html_encoding.php │ │ │ ├── function.form_hidden.php │ │ │ ├── function.form_register.php │ │ │ ├── function.form_submit.php │ │ │ ├── function.form_text.php │ │ │ ├── function.formparameters.php │ │ │ ├── function.generate_edit_uri.php │ │ │ ├── function.generate_url.php │ │ │ ├── function.get_request_param.php │ │ │ ├── function.get_resource_id.php │ │ │ ├── function.link_follow_topic.php │ │ │ ├── function.listpagination.php │ │ │ ├── function.map.php │ │ │ ├── function.omnibox.php │ │ │ ├── function.render.php │ │ │ ├── function.set_article.php │ │ │ ├── function.set_current_issue.php │ │ │ ├── function.set_default_article.php │ │ │ ├── function.set_default_issue.php │ │ │ ├── function.set_default_language.php │ │ │ ├── function.set_default_publication.php │ │ │ ├── function.set_default_section.php │ │ │ ├── function.set_default_topic.php │ │ │ ├── function.set_http_response_code.php │ │ │ ├── function.set_issue.php │ │ │ ├── function.set_language.php │ │ │ ├── function.set_map.php │ │ │ ├── function.set_placeholder.php │ │ │ ├── function.set_publication.php │ │ │ ├── function.set_section.php │ │ │ ├── function.set_topic.php │ │ │ ├── function.unset_article.php │ │ │ ├── function.unset_comment.php │ │ │ ├── function.unset_issue.php │ │ │ ├── function.unset_language.php │ │ │ ├── function.unset_map.php │ │ │ ├── function.unset_publication.php │ │ │ ├── function.unset_section.php │ │ │ ├── function.unset_topic.php │ │ │ ├── function.uri.php │ │ │ ├── function.uripath.php │ │ │ ├── function.url.php │ │ │ ├── function.urlparameters.php │ │ │ ├── function.video_player.php │ │ │ ├── function.wrap_in_element.php │ │ │ ├── modifier.bbcode.php │ │ │ ├── modifier.camp_date_format.php │ │ │ ├── modifier.camp_filesize_format.php │ │ │ ├── modifier.create_links.php │ │ │ ├── modifier.dump.php │ │ │ ├── modifier.obfuscate_email.php │ │ │ ├── modifier.teaser.php │ │ │ ├── modifier.translate.php │ │ │ └── modifier.truncate_utf8.php │ │ └── versions.txt │ ├── index.php │ ├── install/ │ │ ├── .htaccess │ │ ├── Resources/ │ │ │ ├── assets/ │ │ │ │ └── css/ │ │ │ │ └── main.css │ │ │ ├── sample_data/ │ │ │ │ └── files/ │ │ │ │ ├── 0000/ │ │ │ │ │ └── 0000/ │ │ │ │ │ ├── 000000007.oga │ │ │ │ │ ├── 000000008.flv │ │ │ │ │ ├── 000000009.flv │ │ │ │ │ └── 000000010.ogv │ │ │ │ └── placeholder │ │ │ ├── sql/ │ │ │ │ ├── CityLocations.csv │ │ │ │ ├── CityNames.csv │ │ │ │ ├── campsite_core.sql │ │ │ │ ├── campsite_demo_data.sql │ │ │ │ ├── geonames.sql │ │ │ │ └── upgrade/ │ │ │ │ ├── 4.2.x/ │ │ │ │ │ ├── 2013-02-19/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.03.06/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.05.06/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.05.28/ │ │ │ │ │ │ ├── move_files.php │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.05.29/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ └── 2013.06.13/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 4.3.x/ │ │ │ │ │ ├── 2013.08.20/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.11.21/ │ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2013.12.16/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.01.11/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.01.13/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.01.14/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.01.21/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.01.24/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.02.07/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.02.11/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.03.04/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.03.10/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.03.12/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.04.11/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.05.09/ │ │ │ │ │ │ └── data-required.sql │ │ │ │ │ ├── 2014.05.13/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.05.21/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.06.06/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.06.10/ │ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.06.11/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.06.12/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.07.21/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.07.28/ │ │ │ │ │ │ └── data-required.sql │ │ │ │ │ ├── 2014.07.29/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.07.30/ │ │ │ │ │ │ ├── cronjobs.php │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.08.11/ │ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.09.22/ │ │ │ │ │ │ ├── auto_delete_diff.txt │ │ │ │ │ │ ├── delete_diff.txt │ │ │ │ │ │ ├── tables.sql │ │ │ │ │ │ └── upgrade.php │ │ │ │ │ ├── 2014.09.23/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.09.24/ │ │ │ │ │ │ ├── plugins.php │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.09.25/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.10.14/ │ │ │ │ │ │ ├── htaccess.php │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2014.10.16/ │ │ │ │ │ │ └── data-required.sql │ │ │ │ │ ├── 2014.12.01/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ ├── 2015.01.21/ │ │ │ │ │ │ └── tables.sql │ │ │ │ │ └── 2015.03.23/ │ │ │ │ │ └── data-required.sql │ │ │ │ └── 4.4.x/ │ │ │ │ ├── 2014.11.05/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2014.11.17/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2014.11.22/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2014.12.02/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2014.12.17/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.02.12/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.02.19/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.02.24/ │ │ │ │ │ ├── add_client.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.03.02/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.03.11/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ ├── tables.sql │ │ │ │ │ └── topics.php │ │ │ │ ├── 2015.03.12/ │ │ │ │ │ ├── authors.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.03.13/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.03.14/ │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── diff.txt │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.03.18/ │ │ │ │ │ └── data-required.sql │ │ │ │ ├── 2015.03.19/ │ │ │ │ │ ├── init_order_in_playlists.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.04.13/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.04.15/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.04.16/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ ├── playlist.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.04.21/ │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── diff.txt │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.05.07/ │ │ │ │ │ ├── client.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.05.15/ │ │ │ │ │ └── data-required.sql │ │ │ │ ├── 2015.05.16/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.05.28/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.03/ │ │ │ │ │ ├── playlist_article.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.08/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.09/ │ │ │ │ │ ├── remove_index.php │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.15/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.16/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.24/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.06.30/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.08.10/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.08.24/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2015.09.11/ │ │ │ │ │ └── data-required.sql │ │ │ │ ├── 2015.09.15/ │ │ │ │ │ └── data-required.sql │ │ │ │ ├── 2015.10.15/ │ │ │ │ │ ├── data-required.sql │ │ │ │ │ ├── tables.sql │ │ │ │ │ └── topic_translations.php │ │ │ │ ├── 2015.10.29/ │ │ │ │ │ └── tables.sql │ │ │ │ ├── 2016.03.30/ │ │ │ │ │ └── tables.sql │ │ │ │ └── 2016.05.04/ │ │ │ │ └── tables.sql │ │ │ ├── templates/ │ │ │ │ ├── _configuration.twig │ │ │ │ └── _database_conf.twig │ │ │ └── views/ │ │ │ ├── botstrap_errors.twig │ │ │ ├── demo.twig │ │ │ ├── index.twig │ │ │ ├── layout.twig │ │ │ ├── license.twig │ │ │ ├── post-process.twig │ │ │ ├── prepare.twig │ │ │ ├── process.twig │ │ │ ├── upgrade/ │ │ │ │ ├── errors.twig │ │ │ │ └── success.twig │ │ │ └── upgrade_layout.twig │ │ ├── SymfonyRequirements.php │ │ └── index.php │ ├── js/ │ │ ├── admin.js │ │ ├── app/ │ │ │ ├── .htaccess │ │ │ ├── 404.js │ │ │ └── admin/ │ │ │ ├── _shared.js │ │ │ └── themes/ │ │ │ ├── advanced-theme-settings.js │ │ │ └── index.js │ │ ├── apps/ │ │ │ └── users.js │ │ ├── backbone.js │ │ ├── base64.js │ │ ├── bootstrap.js │ │ ├── campsite-audiosearch.js │ │ ├── campsite-checkbox.js │ │ ├── campsite.js │ │ ├── crypt.js │ │ ├── domTT/ │ │ │ ├── .ant-targets-build.xml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── alphaAPI.js │ │ │ ├── domLib.js │ │ │ ├── domTT.js │ │ │ ├── domTT_drag.js │ │ │ └── fadomatic.js │ │ ├── editarea/ │ │ │ ├── change_log.txt │ │ │ ├── edit_area/ │ │ │ │ ├── autocompletion.js │ │ │ │ ├── edit_area.css │ │ │ │ ├── edit_area.js │ │ │ │ ├── edit_area_compressor.php │ │ │ │ ├── edit_area_full.js │ │ │ │ ├── edit_area_functions.js │ │ │ │ ├── edit_area_loader.js │ │ │ │ ├── elements_functions.js │ │ │ │ ├── highlight.js │ │ │ │ ├── keyboard.js │ │ │ │ ├── langs/ │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ ├── license_apache.txt │ │ │ │ ├── license_bsd.txt │ │ │ │ ├── license_lgpl.txt │ │ │ │ ├── manage_area.js │ │ │ │ ├── plugins/ │ │ │ │ │ ├── charmap/ │ │ │ │ │ │ ├── charmap.js │ │ │ │ │ │ ├── css/ │ │ │ │ │ │ │ └── charmap.css │ │ │ │ │ │ ├── jscripts/ │ │ │ │ │ │ │ └── map.js │ │ │ │ │ │ ├── langs/ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── dk.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── popup.html │ │ │ │ │ └── test/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── test.css │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── dk.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── test.js │ │ │ │ │ └── test2.js │ │ │ │ ├── reg_syntax/ │ │ │ │ │ ├── basic.js │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── coldfusion.js │ │ │ │ │ ├── cpp.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── html.js │ │ │ │ │ ├── java.js │ │ │ │ │ ├── js.js │ │ │ │ │ ├── pas.js │ │ │ │ │ ├── perl.js │ │ │ │ │ ├── php.js │ │ │ │ │ ├── python.js │ │ │ │ │ ├── robotstxt.js │ │ │ │ │ ├── ruby.js │ │ │ │ │ ├── smarty.js │ │ │ │ │ ├── sql.js │ │ │ │ │ ├── tsql.js │ │ │ │ │ ├── vb.js │ │ │ │ │ └── xml.js │ │ │ │ ├── reg_syntax.js │ │ │ │ ├── regexp.js │ │ │ │ ├── resize_area.js │ │ │ │ ├── search_replace.js │ │ │ │ └── template.html │ │ │ ├── license_apache.txt │ │ │ ├── license_bsd.txt │ │ │ ├── license_lgpl.txt │ │ │ ├── smarty.js │ │ │ └── todo.txt │ │ ├── fValidate/ │ │ │ ├── fValidate.basic.js │ │ │ ├── fValidate.config.js │ │ │ ├── fValidate.controls.js │ │ │ ├── fValidate.core.js │ │ │ ├── fValidate.datetime.js │ │ │ ├── fValidate.ecommerce.js │ │ │ ├── fValidate.extended.js │ │ │ ├── fValidate.international.js │ │ │ ├── fValidate.lang-enUS.js │ │ │ ├── fValidate.logical.js │ │ │ ├── fValidate.numbers.js │ │ │ ├── fValidate.special.js │ │ │ ├── fValidate.validators.js │ │ │ ├── fValidate.web.js │ │ │ └── readme.txt │ │ ├── flowplayer/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── example/ │ │ │ │ ├── index.html │ │ │ │ └── style.css │ │ │ ├── flowplayer-3.2.5.swf │ │ │ └── flowplayer.controls-3.2.3.swf │ │ ├── geocoding/ │ │ │ ├── country_cens.js │ │ │ ├── country_codes.js │ │ │ ├── geonames/ │ │ │ │ ├── notice.txt │ │ │ │ └── search.js │ │ │ ├── location_chooser.js │ │ │ ├── map_filter.js │ │ │ ├── map_popups.js │ │ │ ├── map_preview.js │ │ │ ├── map_search.js │ │ │ ├── markers/ │ │ │ │ ├── marker-blue.ini │ │ │ │ ├── marker-gold.ini │ │ │ │ ├── marker-green.ini │ │ │ │ ├── marker-red.ini │ │ │ │ └── special/ │ │ │ │ └── unknown.ini │ │ │ ├── openlayers/ │ │ │ │ ├── OLlocals.js │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── license.txt │ │ │ │ └── theme/ │ │ │ │ └── default/ │ │ │ │ ├── framedCloud.css │ │ │ │ ├── google.css │ │ │ │ ├── ie6-style.css │ │ │ │ └── style.css │ │ │ └── styles/ │ │ │ └── map-info.css │ │ ├── jquery/ │ │ │ ├── doT.js │ │ │ ├── fancybox/ │ │ │ │ ├── jquery.fancybox-1.3.4.css │ │ │ │ └── jquery.fancybox-1.3.4.pack.js │ │ │ ├── feedback.js │ │ │ ├── fg.menu.js │ │ │ ├── i18n/ │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de-CH.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-en.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jCountable/ │ │ │ │ ├── jquery.jCountable.css │ │ │ │ └── jquery.jCountable.js │ │ │ ├── jquery-ui-required.txt │ │ │ ├── jquery.ba-iff.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.tmpl.js │ │ │ ├── jquery.version.js │ │ │ └── jquery.widgets.js │ │ ├── json2.js │ │ ├── newscoop_rest_api.js │ │ ├── omnibox.js │ │ ├── plupload/ │ │ │ ├── changelog.txt │ │ │ ├── js/ │ │ │ │ ├── jquery.plupload.queue/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── jquery.plupload.queue.css │ │ │ │ │ └── jquery.plupload.queue.js │ │ │ │ ├── jquery.ui.plupload/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── jquery.ui.plupload.css │ │ │ │ │ └── jquery.ui.plupload.js │ │ │ │ ├── plupload.browserplus.js │ │ │ │ ├── plupload.flash.js │ │ │ │ ├── plupload.flash.swf │ │ │ │ ├── plupload.full.js │ │ │ │ ├── plupload.gears.js │ │ │ │ ├── plupload.html4.js │ │ │ │ ├── plupload.html5.js │ │ │ │ ├── plupload.js │ │ │ │ ├── plupload.silverlight.js │ │ │ │ └── plupload.silverlight.xap │ │ │ ├── license.txt │ │ │ └── readme.md │ │ ├── raphael-min.js │ │ ├── scriptaculous/ │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── prototype.js │ │ │ ├── scriptaculous.js │ │ │ ├── unittest.js │ │ │ └── util.js │ │ ├── select2/ │ │ │ ├── select2.css │ │ │ └── select2.js │ │ ├── sha1.js │ │ ├── syntaxhighlighter/ │ │ │ ├── compass/ │ │ │ │ ├── _theme_template.scss │ │ │ │ ├── config.rb │ │ │ │ ├── shCore.scss │ │ │ │ ├── shCoreDefault.scss │ │ │ │ ├── shCoreDjango.scss │ │ │ │ ├── shCoreEclipse.scss │ │ │ │ ├── shCoreEmacs.scss │ │ │ │ ├── shCoreFadeToGrey.scss │ │ │ │ ├── shCoreMDUltra.scss │ │ │ │ ├── shCoreMidnight.scss │ │ │ │ ├── shCoreRDark.scss │ │ │ │ ├── shThemeDefault.scss │ │ │ │ ├── shThemeDjango.scss │ │ │ │ ├── shThemeEclipse.scss │ │ │ │ ├── shThemeEmacs.scss │ │ │ │ ├── shThemeFadeToGrey.scss │ │ │ │ ├── shThemeMDUltra.scss │ │ │ │ ├── shThemeMidnight.scss │ │ │ │ └── shThemeRDark.scss │ │ │ ├── scripts/ │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushAS3.js │ │ │ │ ├── shBrushAppleScript.js │ │ │ │ ├── shBrushBash.js │ │ │ │ ├── shBrushCSharp.js │ │ │ │ ├── shBrushColdFusion.js │ │ │ │ ├── shBrushCpp.js │ │ │ │ ├── shBrushCss.js │ │ │ │ ├── shBrushDelphi.js │ │ │ │ ├── shBrushDiff.js │ │ │ │ ├── shBrushErlang.js │ │ │ │ ├── shBrushGroovy.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ ├── shBrushJava.js │ │ │ │ ├── shBrushJavaFX.js │ │ │ │ ├── shBrushPerl.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shBrushPlain.js │ │ │ │ ├── shBrushPowerShell.js │ │ │ │ ├── shBrushPython.js │ │ │ │ ├── shBrushRuby.js │ │ │ │ ├── shBrushSass.js │ │ │ │ ├── shBrushScala.js │ │ │ │ ├── shBrushSql.js │ │ │ │ ├── shBrushVb.js │ │ │ │ ├── shBrushXml.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── src/ │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ └── styles/ │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ │ ├── tapmodo-Jcrop-5e58bc9/ │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── build/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── minimize.bash │ │ │ │ └── pre-commit.bash │ │ │ ├── css/ │ │ │ │ └── jquery.Jcrop.css │ │ │ ├── demos/ │ │ │ │ ├── crop.php │ │ │ │ ├── demo_files/ │ │ │ │ │ └── demos.css │ │ │ │ ├── tutorial1.html │ │ │ │ ├── tutorial2.html │ │ │ │ ├── tutorial3.html │ │ │ │ ├── tutorial4.html │ │ │ │ └── tutorial5.html │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── jquery.Jcrop.js │ │ │ └── jquery.color.js │ │ ├── tinymce/ │ │ │ ├── jquery.tinymce.js │ │ │ ├── langs/ │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── it.js │ │ │ │ ├── ka.js │ │ │ │ ├── ko.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── zh-tw.js │ │ │ │ └── zh.js │ │ │ ├── license.txt │ │ │ ├── plugins/ │ │ │ │ ├── advhr/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── advhr.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── rule.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── rule.htm │ │ │ │ ├── advimage/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── advimage.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── image.htm │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── image.js │ │ │ │ │ └── langs/ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── advlink/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── advlink.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── advlink.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_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 │ │ │ │ │ └── langs/ │ │ │ │ │ └── en.js │ │ │ │ ├── bbcode/ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── campsiteattachment/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── images.js │ │ │ │ │ │ ├── manager.js │ │ │ │ │ │ └── popup.js │ │ │ │ │ ├── attachments.php │ │ │ │ │ ├── classes/ │ │ │ │ │ │ ├── AttachmentManager.php │ │ │ │ │ │ └── Files.php │ │ │ │ │ ├── config.inc.php │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── attachmentlist.css │ │ │ │ │ │ └── campsiteattachment.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── campsiteattachment.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── popup.php │ │ │ │ ├── campsitebreak/ │ │ │ │ │ ├── campsitebreak.htm │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── campsitebreak.js │ │ │ │ │ └── langs/ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ └── sr_dlg.js │ │ │ │ ├── campsiteimage/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── images.js │ │ │ │ │ │ ├── manager.js │ │ │ │ │ │ └── popup.js │ │ │ │ │ ├── classes/ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ └── ImageManager.php │ │ │ │ │ ├── config.inc.php │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── campsiteimage.css │ │ │ │ │ │ ├── campsiteinternallink.css │ │ │ │ │ │ └── imagelist.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── images.php │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── campsiteimage.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── popup.php │ │ │ │ ├── campsiteinternallink/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── campsiteinternallink.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── campsiteinternallink.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── link.php │ │ │ │ ├── campsitemedia/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── images.js │ │ │ │ │ │ ├── manager.js │ │ │ │ │ │ └── popup.js │ │ │ │ │ ├── attachments.php │ │ │ │ │ ├── classes/ │ │ │ │ │ │ ├── AttachmentManager.php │ │ │ │ │ │ └── Files.php │ │ │ │ │ ├── config.inc.php │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── attachmentlist.css │ │ │ │ │ │ └── campsitemedia.css │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── campsitemedia.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ └── sr_dlg.js │ │ │ │ │ └── popup.php │ │ │ │ ├── codehighlighting/ │ │ │ │ │ ├── codehighlighting.htm │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── codehighlighting.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── codehighlighting.js │ │ │ │ │ └── langs/ │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh.js │ │ │ │ │ └── zh_TW.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 │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── emotions.js │ │ │ │ │ └── langs/ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── example/ │ │ │ │ │ ├── dialog.htm │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── 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/ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── fullscreen/ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── fullscreen.htm │ │ │ │ ├── iespell/ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── iframe/ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ └── zh_TW.js │ │ │ │ │ └── window.html │ │ │ │ ├── inlinepopups/ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── skins/ │ │ │ │ │ │ └── clearlooks2/ │ │ │ │ │ │ └── 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/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_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/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_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/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── searchreplace.htm │ │ │ │ ├── spellchecker/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── content.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── style/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── props.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── props.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── props.htm │ │ │ │ ├── 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/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_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/ │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ └── template.htm │ │ │ │ ├── textbox/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── textbox.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── js/ │ │ │ │ │ │ └── textbox.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── textbox.htm │ │ │ │ ├── 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/ │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ └── zh_dlg.js │ │ │ ├── themes/ │ │ │ │ ├── advanced/ │ │ │ │ │ ├── about.htm │ │ │ │ │ ├── anchor.htm │ │ │ │ │ ├── charmap.htm │ │ │ │ │ ├── color_picker.htm │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ ├── image.htm │ │ │ │ │ ├── js/ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ ├── charmap.js │ │ │ │ │ │ ├── color_picker.js │ │ │ │ │ │ ├── image.js │ │ │ │ │ │ ├── link.js │ │ │ │ │ │ └── source_editor.js │ │ │ │ │ ├── langs/ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ └── zh_dlg.js │ │ │ │ │ ├── link.htm │ │ │ │ │ ├── shortcuts.htm │ │ │ │ │ ├── skins/ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ │ ├── highcontrast/ │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ │ └── o2k7/ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ │ └── source_editor.htm │ │ │ │ └── simple/ │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── langs/ │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ └── zh.js │ │ │ │ └── skins/ │ │ │ │ ├── default/ │ │ │ │ │ ├── content.css │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7/ │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils/ │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ │ ├── underscore.js │ │ └── views/ │ │ └── PaginatorView.js │ ├── library/ │ │ ├── Newscoop/ │ │ │ ├── Acl/ │ │ │ │ ├── Assertions/ │ │ │ │ │ └── SaasAssertion.php │ │ │ │ └── Storage.php │ │ │ ├── Annotations/ │ │ │ │ └── Acl.php │ │ │ ├── Article/ │ │ │ │ ├── LinkService.php │ │ │ │ └── SearchService.php │ │ │ ├── ArticleDatetime.php │ │ │ ├── Auth/ │ │ │ │ └── Adapter.php │ │ │ ├── Cache/ │ │ │ │ └── CacheKey.php │ │ │ ├── Command.php │ │ │ ├── Comment/ │ │ │ │ └── SearchService.php │ │ │ ├── Composer/ │ │ │ │ └── ScriptHandler.php │ │ │ ├── Content/ │ │ │ │ ├── ContentTypeService.php │ │ │ │ ├── PublicationService.php │ │ │ │ └── SectionService.php │ │ │ ├── Controller/ │ │ │ │ ├── Action/ │ │ │ │ │ └── Helper/ │ │ │ │ │ └── Datatable/ │ │ │ │ │ ├── ADatatable.php │ │ │ │ │ ├── Adapter/ │ │ │ │ │ │ ├── AAdapter.php │ │ │ │ │ │ ├── Doctrine.php │ │ │ │ │ │ ├── Theme.php │ │ │ │ │ │ └── ThemeFiles.php │ │ │ │ │ └── Row.php │ │ │ │ ├── Helper/ │ │ │ │ │ └── FlashMessenger.php │ │ │ │ └── Plugin/ │ │ │ │ └── Js.php │ │ │ ├── Criteria/ │ │ │ │ ├── ArticleSearchCriteria.php │ │ │ │ ├── SlideshowCriteria.php │ │ │ │ └── SlideshowItemCriteria.php │ │ │ ├── Criteria.php │ │ │ ├── Datatable/ │ │ │ │ ├── ISource.php │ │ │ │ └── Source.php │ │ │ ├── DependencyInjection/ │ │ │ │ └── ContainerBuilder.php │ │ │ ├── Doctrine/ │ │ │ │ ├── AdoDbAdapter.php │ │ │ │ ├── AdoDbInteface.php │ │ │ │ ├── AdoDbStatement.php │ │ │ │ └── EventDispatcherProxy.php │ │ │ ├── EditorInterface.php │ │ │ ├── Entity/ │ │ │ │ ├── AbstractEntity.php │ │ │ │ ├── Acl/ │ │ │ │ │ ├── Permission.php │ │ │ │ │ ├── Role.php │ │ │ │ │ └── Rule.php │ │ │ │ ├── Aliases.php │ │ │ │ ├── Article.php │ │ │ │ ├── ArticleAuthor.php │ │ │ │ ├── ArticleDatetime.php │ │ │ │ ├── ArticleImage.php │ │ │ │ ├── ArticleIndex.php │ │ │ │ ├── ArticleTopic.php │ │ │ │ ├── ArticleType.php │ │ │ │ ├── ArticleTypeField.php │ │ │ │ ├── Attachment.php │ │ │ │ ├── AuditEvent.php │ │ │ │ ├── Author.php │ │ │ │ ├── AuthorType.php │ │ │ │ ├── AutoId.php │ │ │ │ ├── Comment/ │ │ │ │ │ ├── Acceptance.php │ │ │ │ │ ├── Commenter.php │ │ │ │ │ └── Preference/ │ │ │ │ │ ├── Article.php │ │ │ │ │ └── Publication.php │ │ │ │ ├── Comment.php │ │ │ │ ├── Country.php │ │ │ │ ├── CronJob.php │ │ │ │ ├── Event.php │ │ │ │ ├── Feedback.php │ │ │ │ ├── Hierarchable.php │ │ │ │ ├── Issue.php │ │ │ │ ├── KeywordIndex.php │ │ │ │ ├── Language.php │ │ │ │ ├── Log.php │ │ │ │ ├── Notification.php │ │ │ │ ├── Output/ │ │ │ │ │ ├── OutputSettingsIssue.php │ │ │ │ │ ├── OutputSettingsPublication.php │ │ │ │ │ ├── OutputSettingsSection.php │ │ │ │ │ └── OutputSettingsTheme.php │ │ │ │ ├── Output.php │ │ │ │ ├── OutputSettings.php │ │ │ │ ├── Picture.php │ │ │ │ ├── Playlist.php │ │ │ │ ├── PlaylistArticle.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Publication.php │ │ │ │ ├── Rating.php │ │ │ │ ├── RelatedArticle.php │ │ │ │ ├── RelatedArticles.php │ │ │ │ ├── Repository/ │ │ │ │ │ ├── Acl/ │ │ │ │ │ │ └── RuleRepository.php │ │ │ │ │ ├── ArticleAuthorRepository.php │ │ │ │ │ ├── ArticleDatetimeRepository.php │ │ │ │ │ ├── ArticleRepository.php │ │ │ │ │ ├── ArticleTopicRepository.php │ │ │ │ │ ├── ArticleTypeFieldRepository.php │ │ │ │ │ ├── ArticleTypeRepository.php │ │ │ │ │ ├── AttachmentRepository.php │ │ │ │ │ ├── AuditRepository.php │ │ │ │ │ ├── AuthorRepository.php │ │ │ │ │ ├── AuthorTypeRepository.php │ │ │ │ │ ├── AutoIdRepository.php │ │ │ │ │ ├── Comment/ │ │ │ │ │ │ ├── AcceptanceRepository.php │ │ │ │ │ │ └── CommenterRepository.php │ │ │ │ │ ├── CommentRepository.php │ │ │ │ │ ├── DatatableRepository.php │ │ │ │ │ ├── FeedbackRepository.php │ │ │ │ │ ├── ImageRepository.php │ │ │ │ │ ├── IssueRepository.php │ │ │ │ │ ├── LanguageRepository.php │ │ │ │ │ ├── NotificationRepository.php │ │ │ │ │ ├── PlaylistArticleRepository.php │ │ │ │ │ ├── PlaylistRepository.php │ │ │ │ │ ├── PluginRepository.php │ │ │ │ │ ├── PublicationRepository.php │ │ │ │ │ ├── RatingRepository.php │ │ │ │ │ ├── RelatedArticleRepository.php │ │ │ │ │ ├── RelatedArticlesRepository.php │ │ │ │ │ ├── SectionRepository.php │ │ │ │ │ ├── Snippet/ │ │ │ │ │ │ └── SnippetTemplateRepository.php │ │ │ │ │ ├── SnippetRepository.php │ │ │ │ │ ├── SubscriptionArticleRepository.php │ │ │ │ │ ├── SubscriptionIssueRepository.php │ │ │ │ │ ├── SubscriptionSectionRepository.php │ │ │ │ │ ├── TemplateRepository.php │ │ │ │ │ ├── ThemeRepository.php │ │ │ │ │ ├── User/ │ │ │ │ │ │ ├── GroupRepository.php │ │ │ │ │ │ └── StaffRepository.php │ │ │ │ │ ├── UserPointsRepository.php │ │ │ │ │ ├── UserRepository.php │ │ │ │ │ └── UserTopicRepository.php │ │ │ │ ├── Request.php │ │ │ │ ├── Resource.php │ │ │ │ ├── Section.php │ │ │ │ ├── Session.php │ │ │ │ ├── Snippet/ │ │ │ │ │ ├── SnippetField.php │ │ │ │ │ ├── SnippetTemplate/ │ │ │ │ │ │ └── SnippetTemplateField.php │ │ │ │ │ └── SnippetTemplate.php │ │ │ │ ├── Snippet.php │ │ │ │ ├── Template.php │ │ │ │ ├── Theme/ │ │ │ │ │ └── Loader/ │ │ │ │ │ ├── Loader.php │ │ │ │ │ └── LocalLoader.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Translation.php │ │ │ │ ├── User/ │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── Ip.php │ │ │ │ │ └── Staff.php │ │ │ │ ├── User.php │ │ │ │ ├── UserAttribute.php │ │ │ │ ├── UserIdentity.php │ │ │ │ ├── UserPoints.php │ │ │ │ ├── UserToken.php │ │ │ │ ├── UserTopic.php │ │ │ │ └── Webcode.php │ │ │ ├── EventDispatcher/ │ │ │ │ └── Events/ │ │ │ │ ├── CollectObjectsDataEvent.php │ │ │ │ ├── GenericEvent.php │ │ │ │ ├── PluginHooksEvent.php │ │ │ │ └── PluginPermissionsEvent.php │ │ │ ├── Exception/ │ │ │ │ ├── AuthenticationException.php │ │ │ │ ├── InvalidParametersException.php │ │ │ │ ├── ResourceIsEmptyException.php │ │ │ │ ├── ResourceNotModifiedException.php │ │ │ │ └── ResourcesConflictException.php │ │ │ ├── File/ │ │ │ │ └── Manager/ │ │ │ │ ├── LocalManager.php │ │ │ │ └── Manager.php │ │ │ ├── Form/ │ │ │ │ ├── Decorator/ │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── HtmlTag.php │ │ │ │ │ └── Label.php │ │ │ │ ├── Element/ │ │ │ │ │ └── OldHash.php │ │ │ │ └── FormServiceInterface.php │ │ │ ├── Form.php │ │ │ ├── Gimme/ │ │ │ │ ├── Json.php │ │ │ │ ├── Pagination.php │ │ │ │ ├── PaginatorService.php │ │ │ │ ├── PartialResponse.php │ │ │ │ └── PropertyMatcher.php │ │ │ ├── Image/ │ │ │ │ ├── ArticleImage.php │ │ │ │ ├── ArticleImageCaption.php │ │ │ │ ├── ArticleRendition.php │ │ │ │ ├── ArticleRenditionCollection.php │ │ │ │ ├── DefaultArticleRendition.php │ │ │ │ ├── ImageInterface.php │ │ │ │ ├── ImageSearchService.php │ │ │ │ ├── ImageService.php │ │ │ │ ├── LocalImage.php │ │ │ │ ├── Rendition.php │ │ │ │ ├── RenditionService.php │ │ │ │ ├── RenditionViewHelper.php │ │ │ │ ├── Thumbnail.php │ │ │ │ ├── ThumbnailViewHelper.php │ │ │ │ └── UpdateStorageService.php │ │ │ ├── Installer/ │ │ │ │ └── Services/ │ │ │ │ ├── BootstrapService.php │ │ │ │ ├── DatabaseService.php │ │ │ │ ├── DemositeService.php │ │ │ │ ├── FinishService.php │ │ │ │ └── UpgradeService.php │ │ │ ├── IssueServiceInterface.php │ │ │ ├── ListResult.php │ │ │ ├── Log/ │ │ │ │ └── Writer.php │ │ │ ├── NewscoopException.php │ │ │ ├── Package/ │ │ │ │ ├── Article.php │ │ │ │ ├── ArticlePackage.php │ │ │ │ ├── Item.php │ │ │ │ ├── ItemRepository.php │ │ │ │ ├── Package.php │ │ │ │ ├── PackageRepository.php │ │ │ │ ├── PackageSearchService.php │ │ │ │ ├── PackageService.php │ │ │ │ └── RemoteVideo.php │ │ │ ├── PaginatedCollection.php │ │ │ ├── Persistence/ │ │ │ │ └── ObjectRepository.php │ │ │ ├── Query/ │ │ │ │ ├── MysqlDateFormat.php │ │ │ │ ├── MysqlDayOfMonth.php │ │ │ │ ├── MysqlDayOfWeek.php │ │ │ │ ├── MysqlDayOfYear.php │ │ │ │ ├── MysqlField.php │ │ │ │ ├── MysqlRandom.php │ │ │ │ └── SqliteRandom.php │ │ │ ├── Random.php │ │ │ ├── Router/ │ │ │ │ └── RouterFactory.php │ │ │ ├── SchedulerServiceInterface.php │ │ │ ├── Search/ │ │ │ │ ├── DefaultIndexClient.php │ │ │ │ ├── DocumentInterface.php │ │ │ │ ├── IndexClientInterface.php │ │ │ │ ├── IndexException.php │ │ │ │ ├── Indexer.php │ │ │ │ ├── RepositoryInterface.php │ │ │ │ └── ServiceInterface.php │ │ │ ├── Service/ │ │ │ │ ├── Error/ │ │ │ │ │ └── ThemeErrors.php │ │ │ │ ├── Exception/ │ │ │ │ │ ├── DuplicateNameException.php │ │ │ │ │ └── RemoveThemeException.php │ │ │ │ ├── IArticleTypeService.php │ │ │ │ ├── IAuditService.php │ │ │ │ ├── IEntityBaseService.php │ │ │ │ ├── IEntityService.php │ │ │ │ ├── IErrorHandler.php │ │ │ │ ├── IIssueService.php │ │ │ │ ├── ILanguageService.php │ │ │ │ ├── IOutputService.php │ │ │ │ ├── IOutputSettingIssueService.php │ │ │ │ ├── IOutputSettingSectionService.php │ │ │ │ ├── IPublicationService.php │ │ │ │ ├── ISectionService.php │ │ │ │ ├── ISyncResourceService.php │ │ │ │ ├── ITemplateSearchService.php │ │ │ │ ├── IThemeManagementService.php │ │ │ │ ├── IThemeService.php │ │ │ │ ├── Implementation/ │ │ │ │ │ ├── AEntityBaseServiceDoctrine.php │ │ │ │ │ ├── AEntityServiceDoctrine.php │ │ │ │ │ ├── ArticleTypeServiceDoctrine.php │ │ │ │ │ ├── ErrorHandlerOnLog.php │ │ │ │ │ ├── Exception/ │ │ │ │ │ │ ├── FailedException.php │ │ │ │ │ │ └── XMLMissingAttribueException.php │ │ │ │ │ ├── IssueServiceDoctrine.php │ │ │ │ │ ├── LanguageServiceDoctrine.php │ │ │ │ │ ├── OutputServiceDoctrine.php │ │ │ │ │ ├── OutputSettingIssueServiceDoctrine.php │ │ │ │ │ ├── OutputSettingSectionServiceDoctrine.php │ │ │ │ │ ├── PublicationServiceDoctrine.php │ │ │ │ │ ├── SectionServiceDoctrine.php │ │ │ │ │ ├── SyncResourceServiceDoctrine.php │ │ │ │ │ ├── TemplateSearchServiceDoctrine.php │ │ │ │ │ ├── ThemeManagementServiceLocal.php │ │ │ │ │ └── ThemeServiceLocalFileSystem.php │ │ │ │ ├── Model/ │ │ │ │ │ ├── Search/ │ │ │ │ │ │ ├── Column.php │ │ │ │ │ │ ├── ColumnOrder.php │ │ │ │ │ │ ├── ColumnOrderLike.php │ │ │ │ │ │ └── Search.php │ │ │ │ │ ├── SearchIssue.php │ │ │ │ │ ├── SearchLanguage.php │ │ │ │ │ ├── SearchOutput.php │ │ │ │ │ ├── SearchPublication.php │ │ │ │ │ ├── SearchResource.php │ │ │ │ │ ├── SearchSection.php │ │ │ │ │ └── SearchTheme.php │ │ │ │ ├── Resource/ │ │ │ │ │ ├── ResourceId.php │ │ │ │ │ └── ResourceRepository.php │ │ │ │ ├── Template.php │ │ │ │ └── configs/ │ │ │ │ └── ResourceRepository.properties │ │ │ ├── Services/ │ │ │ │ ├── ArticleService.php │ │ │ │ ├── AttachmentService.php │ │ │ │ ├── AuditMaintenanceService.php │ │ │ │ ├── AuditService.php │ │ │ │ ├── Auth/ │ │ │ │ │ ├── DoctrineAuthService.php │ │ │ │ │ └── SocialAuthService.php │ │ │ │ ├── AuthorService.php │ │ │ │ ├── BlogService.php │ │ │ │ ├── CacheService.php │ │ │ │ ├── CommentNotificationService.php │ │ │ │ ├── CommentService.php │ │ │ │ ├── EditorService.php │ │ │ │ ├── EmailService.php │ │ │ │ ├── FilesystemService.php │ │ │ │ ├── GarbageCollectionService.php │ │ │ │ ├── InputManipulator.php │ │ │ │ ├── IssueService.php │ │ │ │ ├── ListPaginatorService.php │ │ │ │ ├── ListUserService.php │ │ │ │ ├── NotificationService.php │ │ │ │ ├── PlaceholdersService.php │ │ │ │ ├── PlaylistsService.php │ │ │ │ ├── Plugins/ │ │ │ │ │ ├── ManagerService.php │ │ │ │ │ └── PluginsService.php │ │ │ │ ├── PublicationService.php │ │ │ │ ├── RelatedArticlesService.php │ │ │ │ ├── SchedulerService.php │ │ │ │ ├── StatService.php │ │ │ │ ├── SubscriptionService.php │ │ │ │ ├── TemplatesService.php │ │ │ │ ├── ThemesService.php │ │ │ │ ├── UserAttributeService.php │ │ │ │ ├── UserPointsService.php │ │ │ │ ├── UserSearchService.php │ │ │ │ ├── UserService.php │ │ │ │ ├── UserTokenService.php │ │ │ │ ├── UserTopicService.php │ │ │ │ └── UserTypeService.php │ │ │ ├── SmartyView.php │ │ │ ├── Storage/ │ │ │ │ ├── Item.php │ │ │ │ └── StorageService.php │ │ │ ├── Storage.php │ │ │ ├── Subscription/ │ │ │ │ ├── Article.php │ │ │ │ ├── IpFacade.php │ │ │ │ ├── Issue.php │ │ │ │ ├── Section.php │ │ │ │ ├── SectionFacade.php │ │ │ │ ├── Subscription.php │ │ │ │ ├── SubscriptionData.php │ │ │ │ ├── SubscriptionFacade.php │ │ │ │ └── SubscriptionRepository.php │ │ │ ├── TemplateList/ │ │ │ │ ├── BaseList.php │ │ │ │ ├── Meta/ │ │ │ │ │ ├── MetaBase.php │ │ │ │ │ ├── SlideshowItemMeta.php │ │ │ │ │ └── SlideshowsMeta.php │ │ │ │ ├── PaginatedBaseList.php │ │ │ │ ├── SlideshowItemsList.php │ │ │ │ ├── SlideshowsList.php │ │ │ │ └── UsersList.php │ │ │ ├── ThemesServiceInterface.php │ │ │ ├── Tools/ │ │ │ │ └── Console/ │ │ │ │ ├── Command/ │ │ │ │ │ ├── AbstractIndexCommand.php │ │ │ │ │ ├── AssignThemeCommand.php │ │ │ │ │ ├── AutopublishCommand.php │ │ │ │ │ ├── ClearIndexCommand.php │ │ │ │ │ ├── ClearOldStatisticsCommand.php │ │ │ │ │ ├── CreateOAuthClientCommand.php │ │ │ │ │ ├── CreateUserCommand.php │ │ │ │ │ ├── DispatchEventForPluginCommand.php │ │ │ │ │ ├── EventsNotifierCommand.php │ │ │ │ │ ├── GenerateORMSchemaCommand.php │ │ │ │ │ ├── GenerateWebcodeCommand.php │ │ │ │ │ ├── IndexerCommand.php │ │ │ │ │ ├── InstallNewscoopCommand.php │ │ │ │ │ ├── InstallPluginCommand.php │ │ │ │ │ ├── LogMaintenanceCommand.php │ │ │ │ │ ├── ReloadRenditionsCommand.php │ │ │ │ │ ├── RemovePluginCommand.php │ │ │ │ │ ├── SchedulerManagerCommand.php │ │ │ │ │ ├── SendStatsCommand.php │ │ │ │ │ ├── SubscriptionsNotifierCommand.php │ │ │ │ │ ├── UpdateAutoloadCommand.php │ │ │ │ │ ├── UpdateImageStorageCommand.php │ │ │ │ │ ├── UpdateIndexCommand.php │ │ │ │ │ ├── UpdatePluginCommand.php │ │ │ │ │ ├── UpgradePluginsCommand.php │ │ │ │ │ └── UserGarbageCollectionCommand.php │ │ │ │ └── Helper/ │ │ │ │ └── ServiceContainerHelper.php │ │ │ ├── Topic/ │ │ │ │ └── SaveUserTopicsCommand.php │ │ │ ├── User/ │ │ │ │ ├── SearchService.php │ │ │ │ ├── UserCriteria.php │ │ │ │ └── UserManager.php │ │ │ ├── Utils/ │ │ │ │ ├── Exception.php │ │ │ │ ├── PermissionToAcl.php │ │ │ │ └── Validation.php │ │ │ ├── ValueObject.php │ │ │ ├── Version.php │ │ │ ├── View/ │ │ │ │ ├── ArticleView.php │ │ │ │ ├── AuthorView.php │ │ │ │ ├── PackageView.php │ │ │ │ ├── TopicView.php │ │ │ │ ├── UserView.php │ │ │ │ ├── View.php │ │ │ │ ├── ViewCollection.php │ │ │ │ └── ViewFactory.php │ │ │ └── WebcodeFacade.php │ │ ├── Proxy/ │ │ │ └── .gitignore │ │ └── Resource/ │ │ ├── Acl/ │ │ │ ├── Annotation/ │ │ │ │ └── Acl.php │ │ │ ├── RuleInterface.php │ │ │ └── StorageInterface.php │ │ └── Acl.php │ ├── log/ │ │ ├── .gitignore │ │ └── .htaccess │ ├── plugins/ │ │ └── .gitignore │ ├── public/ │ │ ├── .htaccess │ │ ├── bundles/ │ │ │ └── .gitignore │ │ ├── css/ │ │ │ ├── jquery.qtip.css │ │ │ └── omnibox.css │ │ ├── files/ │ │ │ └── .gitignore │ │ ├── index.php │ │ ├── js/ │ │ │ ├── fos_js_routes.js │ │ │ ├── jquery.wobscalendar.js │ │ │ └── user_profile.js │ │ ├── pdf/ │ │ │ └── .gitignore │ │ └── videos/ │ │ ├── example.flv │ │ └── player.swf │ ├── robots.txt │ ├── scripts/ │ │ ├── doctrine.php │ │ ├── file_processing.php │ │ ├── fixer.php │ │ └── newscoop.php │ ├── src/ │ │ └── Newscoop/ │ │ ├── ArticlesBundle/ │ │ │ ├── DependencyInjection/ │ │ │ │ ├── Configuration.php │ │ │ │ └── NewscoopArticlesExtension.php │ │ │ ├── Entity/ │ │ │ │ ├── EditorialComment.php │ │ │ │ └── Repository/ │ │ │ │ └── EditorialCommentRepository.php │ │ │ ├── EventListener/ │ │ │ │ └── HookListener.php │ │ │ ├── Form/ │ │ │ │ └── Type/ │ │ │ │ └── EditorialCommentType.php │ │ │ ├── NewscoopArticlesBundle.php │ │ │ ├── Resources/ │ │ │ │ ├── config/ │ │ │ │ │ └── services.yml │ │ │ │ ├── public/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── comments-ctrl.js │ │ │ │ │ │ ├── loading-bar.css │ │ │ │ │ │ ├── loading-bar.js │ │ │ │ │ │ └── services/ │ │ │ │ │ │ └── comments.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── editorial-comments.css │ │ │ │ │ └── views/ │ │ │ │ │ └── main.html │ │ │ │ └── views/ │ │ │ │ └── Hook/ │ │ │ │ └── editorialComments.html.twig │ │ │ └── Services/ │ │ │ └── EditorialCommentsService.php │ │ ├── CommunityTickerBundle/ │ │ │ ├── Command/ │ │ │ │ └── MigrateTablesCommand.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── Configuration.php │ │ │ │ └── NewscoopCommunityTickerExtension.php │ │ │ ├── Entity/ │ │ │ │ ├── CommunityTickerEvent.php │ │ │ │ └── Repository/ │ │ │ │ └── CommunityTickerEventRepository.php │ │ │ ├── EventListener/ │ │ │ │ ├── LifecycleSubscriber.php │ │ │ │ └── ListObjectsListener.php │ │ │ ├── Meta/ │ │ │ │ └── MetaCommunityTicker.php │ │ │ ├── NewscoopCommunityTickerBundle.php │ │ │ ├── Resources/ │ │ │ │ ├── config/ │ │ │ │ │ └── services.yml │ │ │ │ └── smartyPlugins/ │ │ │ │ └── block.list_community_feeds.php │ │ │ ├── Services/ │ │ │ │ └── CommunityFeedService.php │ │ │ └── TemplateList/ │ │ │ ├── CommunityFeedsList.php │ │ │ └── ListCriteria.php │ │ ├── GimmeBundle/ │ │ │ ├── Controller/ │ │ │ │ ├── ArticleTypesController.php │ │ │ │ ├── ArticlesController.php │ │ │ │ ├── ArticlesListController.php │ │ │ │ ├── AttachmentsController.php │ │ │ │ ├── AuthorizeController.php │ │ │ │ ├── AuthorsController.php │ │ │ │ ├── CommentsController.php │ │ │ │ ├── ConfigureApiController.php │ │ │ │ ├── EditorialCommentsApiController.php │ │ │ │ ├── ExceptionController.php │ │ │ │ ├── ImagesController.php │ │ │ │ ├── IssuesController.php │ │ │ │ ├── OauthController.php │ │ │ │ ├── PublicationsController.php │ │ │ │ ├── SectionsController.php │ │ │ │ ├── SlideshowsController.php │ │ │ │ ├── SnippetTemplatesController.php │ │ │ │ ├── SnippetsController.php │ │ │ │ ├── TopicsController.php │ │ │ │ ├── UserTopicsController.php │ │ │ │ └── UsersController.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── Configuration.php │ │ │ │ └── NewscoopGimmeExtension.php │ │ │ ├── Entity/ │ │ │ │ ├── AccessToken.php │ │ │ │ ├── AuthCode.php │ │ │ │ ├── Client.php │ │ │ │ ├── PublicApiResource.php │ │ │ │ └── RefreshToken.php │ │ │ ├── EventListener/ │ │ │ │ ├── AllowOriginListener.php │ │ │ │ ├── ExceptionListener.php │ │ │ │ ├── FormatJsonResponseListener.php │ │ │ │ ├── LinkRequestListener.php │ │ │ │ ├── OAuthEventListener.php │ │ │ │ ├── PaginationExtraDataSubscriber.php │ │ │ │ ├── PaginationListener.php │ │ │ │ ├── PublicResourcesListener.php │ │ │ │ ├── QuerySubscriber.php │ │ │ │ ├── Selectable/ │ │ │ │ │ └── Doctrine/ │ │ │ │ │ └── ORM/ │ │ │ │ │ └── Query/ │ │ │ │ │ └── SelectWalker.php │ │ │ │ ├── SerializerSubscriber.php │ │ │ │ └── Sortable/ │ │ │ │ └── Doctrine/ │ │ │ │ └── ORM/ │ │ │ │ └── Query/ │ │ │ │ └── OrderByWalker.php │ │ │ ├── Form/ │ │ │ │ ├── DataTransformer/ │ │ │ │ │ └── StringToArrayTransformer.php │ │ │ │ ├── Handler/ │ │ │ │ │ └── AuthorizeFormHandler.php │ │ │ │ ├── Model/ │ │ │ │ │ └── Authorize.php │ │ │ │ └── Type/ │ │ │ │ ├── ArticleFieldsType.php │ │ │ │ ├── ArticleType.php │ │ │ │ ├── AttachmentType.php │ │ │ │ ├── AuthorizeFormType.php │ │ │ │ ├── ClientType.php │ │ │ │ ├── CommentType.php │ │ │ │ ├── ImageType.php │ │ │ │ ├── PlaylistType.php │ │ │ │ ├── PublicResourcesType.php │ │ │ │ ├── SnippetFieldType.php │ │ │ │ ├── SnippetTemplateFieldType.php │ │ │ │ ├── SnippetTemplateType.php │ │ │ │ └── SnippetType.php │ │ │ ├── NewscoopGimmeBundle.php │ │ │ ├── Node/ │ │ │ │ ├── Node.php │ │ │ │ └── NodeTree.php │ │ │ ├── Resources/ │ │ │ │ ├── config/ │ │ │ │ │ ├── routing.yml │ │ │ │ │ ├── serializer/ │ │ │ │ │ │ └── newscoop/ │ │ │ │ │ │ ├── Article.yml │ │ │ │ │ │ ├── ArticleAuthor.yml │ │ │ │ │ │ ├── ArticleType.yml │ │ │ │ │ │ ├── ArticleTypeField.yml │ │ │ │ │ │ ├── Attachment.yml │ │ │ │ │ │ ├── Author.yml │ │ │ │ │ │ ├── AuthorType.yml │ │ │ │ │ │ ├── Comment.yml │ │ │ │ │ │ ├── Commenter.yml │ │ │ │ │ │ ├── EditorialComment.yml │ │ │ │ │ │ ├── Issue.yml │ │ │ │ │ │ ├── Item.yml │ │ │ │ │ │ ├── Language.yml │ │ │ │ │ │ ├── LocalImage.yml │ │ │ │ │ │ ├── Package.yml │ │ │ │ │ │ ├── Playlist.yml │ │ │ │ │ │ ├── Publication.yml │ │ │ │ │ │ ├── Section.yml │ │ │ │ │ │ ├── Snippet.yml │ │ │ │ │ │ ├── SnippetField.yml │ │ │ │ │ │ ├── SnippetTemplate.yml │ │ │ │ │ │ ├── SnippetTemplateField.yml │ │ │ │ │ │ ├── Template.yml │ │ │ │ │ │ ├── Topic.yml │ │ │ │ │ │ ├── TopicTranslation.yml │ │ │ │ │ │ ├── User.yml │ │ │ │ │ │ └── UserTopic.yml │ │ │ │ │ └── services.yml │ │ │ │ ├── public/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── jquery.dynatable.css │ │ │ │ │ └── js/ │ │ │ │ │ └── jquery.dynatable.js │ │ │ │ └── views/ │ │ │ │ ├── ConfigureApi/ │ │ │ │ │ └── configure.html.twig │ │ │ │ └── Oauth/ │ │ │ │ └── login.html.twig │ │ │ └── Serializer/ │ │ │ ├── Article/ │ │ │ │ ├── AuthorHandler.php │ │ │ │ ├── CommentsCountHandler.php │ │ │ │ ├── CommentsLinkHandler.php │ │ │ │ ├── FieldsHandler.php │ │ │ │ ├── RenditionsHandler.php │ │ │ │ ├── TranslationsHandler.php │ │ │ │ └── UrlHandler.php │ │ │ ├── Image/ │ │ │ │ ├── ImageUriHandler.php │ │ │ │ └── ThumbnailUriHandler.php │ │ │ ├── Package/ │ │ │ │ └── ItemsLinkHandler.php │ │ │ └── Topic/ │ │ │ └── TopicPathHandler.php │ │ ├── NewscoopBundle/ │ │ │ ├── Controller/ │ │ │ │ ├── AttachmentsController.php │ │ │ │ ├── AuthorsController.php │ │ │ │ ├── BackendArticleImagesController.php │ │ │ │ ├── BackendJournalistDashboardController.php │ │ │ │ ├── BackendPublicationsController.php │ │ │ │ ├── CommentsController.php │ │ │ │ ├── EmbedlyController.php │ │ │ │ ├── FeedController.php │ │ │ │ ├── ImagesController.php │ │ │ │ ├── LanguageController.php │ │ │ │ ├── PasswordRecoveryController.php │ │ │ │ ├── PlaylistsController.php │ │ │ │ ├── PluginsController.php │ │ │ │ ├── SecurityController.php │ │ │ │ ├── SnippetControllerInterface.php │ │ │ │ ├── SystemPrefController.php │ │ │ │ ├── TopicsController.php │ │ │ │ ├── UsersController.php │ │ │ │ └── WebcodeRedirectController.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── Configuration.php │ │ │ │ └── NewscoopNewscoopExtension.php │ │ │ ├── Entity/ │ │ │ │ ├── CityLocations.php │ │ │ │ ├── CityNames.php │ │ │ │ ├── Repository/ │ │ │ │ │ └── TopicRepository.php │ │ │ │ ├── SystemPreferences.php │ │ │ │ ├── Topic.php │ │ │ │ └── TopicTranslation.php │ │ │ ├── Event/ │ │ │ │ └── ConfigureMenuEvent.php │ │ │ ├── EventListener/ │ │ │ │ ├── AccessDeniedExceptionListener.php │ │ │ │ ├── ArticleListener.php │ │ │ │ ├── CaptchaUsernamePasswordFormAuthenticationListener.php │ │ │ │ ├── IssueListener.php │ │ │ │ ├── ListObjectsListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── NoCacheListener.php │ │ │ │ ├── OldPluginsTranslationListener.php │ │ │ │ ├── PublicationListener.php │ │ │ │ ├── RouteListener.php │ │ │ │ └── UserIpListener.php │ │ │ ├── Form/ │ │ │ │ └── Type/ │ │ │ │ ├── ArticleImageType.php │ │ │ │ ├── CommentSearchType.php │ │ │ │ ├── CommentsFilterType.php │ │ │ │ ├── PasswordCheckType.php │ │ │ │ ├── PasswordRecoveryType.php │ │ │ │ ├── PreferencesType.php │ │ │ │ ├── PrivatePluginUploadType.php │ │ │ │ ├── PublicationType.php │ │ │ │ ├── RecaptchaType.php │ │ │ │ ├── RemovePublicationType.php │ │ │ │ ├── TopicTranslationType.php │ │ │ │ └── TopicType.php │ │ │ ├── Menu/ │ │ │ │ └── Builder.php │ │ │ ├── NewscoopNewscoopBundle.php │ │ │ ├── ORM/ │ │ │ │ ├── Point.php │ │ │ │ ├── PointType.php │ │ │ │ └── UTCDateTimeType.php │ │ │ ├── Resources/ │ │ │ │ ├── config/ │ │ │ │ │ ├── routing.yml │ │ │ │ │ └── services.yml │ │ │ │ ├── doc/ │ │ │ │ │ └── index.rst │ │ │ │ ├── public/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── DT_bootstrap.css │ │ │ │ │ │ ├── bootstrap-custom-comments.css │ │ │ │ │ │ ├── bootstrap-custom.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── comments.css │ │ │ │ │ │ ├── jquery.dynatable.css │ │ │ │ │ │ ├── new-design.css │ │ │ │ │ │ ├── playlists.css │ │ │ │ │ │ └── plugin.css │ │ │ │ │ ├── js/ │ │ │ │ │ │ ├── DT_bootstrap.js │ │ │ │ │ │ ├── Sortable.js │ │ │ │ │ │ ├── angular-moment.js │ │ │ │ │ │ ├── angular-ui-tree.js │ │ │ │ │ │ ├── checklist-model.js │ │ │ │ │ │ ├── jquery.dynatable.js │ │ │ │ │ │ ├── moment-with-locales.js │ │ │ │ │ │ ├── ng-sortable.js │ │ │ │ │ │ ├── playlists/ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── controllers/ │ │ │ │ │ │ │ │ ├── articles-filters.js │ │ │ │ │ │ │ │ ├── featured-articles.js │ │ │ │ │ │ │ │ └── playlists.js │ │ │ │ │ │ │ ├── directives/ │ │ │ │ │ │ │ │ ├── loading-container.js │ │ │ │ │ │ │ │ └── sf-iframe.js │ │ │ │ │ │ │ ├── filters/ │ │ │ │ │ │ │ │ └── lists-search.js │ │ │ │ │ │ │ └── services/ │ │ │ │ │ │ │ ├── auth-interceptor.js │ │ │ │ │ │ │ ├── filters-service.js │ │ │ │ │ │ │ ├── modal-factory.js │ │ │ │ │ │ │ ├── playlists.js │ │ │ │ │ │ │ └── user-auth.js │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── sanitize.js │ │ │ │ │ │ ├── tree.js │ │ │ │ │ │ └── ui-bootstrap-modal.js │ │ │ │ │ └── views/ │ │ │ │ │ ├── modal-confirm.html │ │ │ │ │ ├── modal-danger.html │ │ │ │ │ └── modal-login.html │ │ │ │ ├── translations/ │ │ │ │ │ ├── api.ar.yml │ │ │ │ │ ├── api.az.yml │ │ │ │ │ ├── api.be.yml │ │ │ │ │ ├── api.bn.yml │ │ │ │ │ ├── api.cs.yml │ │ │ │ │ ├── api.da.yml │ │ │ │ │ ├── api.de.yml │ │ │ │ │ ├── api.de_AT.yml │ │ │ │ │ ├── api.el.yml │ │ │ │ │ ├── api.en.yml │ │ │ │ │ ├── api.en_GB.yml │ │ │ │ │ ├── api.es.yml │ │ │ │ │ ├── api.es_AR.yml │ │ │ │ │ ├── api.fa.yml │ │ │ │ │ ├── api.fa_AF.yml │ │ │ │ │ ├── api.fr.yml │ │ │ │ │ ├── api.he.yml │ │ │ │ │ ├── api.hr.yml │ │ │ │ │ ├── api.hu.yml │ │ │ │ │ ├── api.hy.yml │ │ │ │ │ ├── api.hy_AM.yml │ │ │ │ │ ├── api.id.yml │ │ │ │ │ ├── api.it.yml │ │ │ │ │ ├── api.ka.yml │ │ │ │ │ ├── api.ko.yml │ │ │ │ │ ├── api.ku.yml │ │ │ │ │ ├── api.lv.yml │ │ │ │ │ ├── api.mr.yml │ │ │ │ │ ├── api.nb_NO.yml │ │ │ │ │ ├── api.nl.yml │ │ │ │ │ ├── api.pa.yml │ │ │ │ │ ├── api.pl.yml │ │ │ │ │ ├── api.ps.yml │ │ │ │ │ ├── api.pt.yml │ │ │ │ │ ├── api.pt_BR.yml │ │ │ │ │ ├── api.ro.yml │ │ │ │ │ ├── api.ru.yml │ │ │ │ │ ├── api.sh.yml │ │ │ │ │ ├── api.sq.yml │ │ │ │ │ ├── api.sr.yml │ │ │ │ │ ├── api.sv.yml │ │ │ │ │ ├── api.tr.yml │ │ │ │ │ ├── api.uk.yml │ │ │ │ │ ├── api.vi.yml │ │ │ │ │ ├── api.zh.yml │ │ │ │ │ ├── api.zh_TW.yml │ │ │ │ │ ├── article_comments.ar.yml │ │ │ │ │ ├── article_comments.az.yml │ │ │ │ │ ├── article_comments.be.yml │ │ │ │ │ ├── article_comments.bn.yml │ │ │ │ │ ├── article_comments.cs.yml │ │ │ │ │ ├── article_comments.da.yml │ │ │ │ │ ├── article_comments.de.yml │ │ │ │ │ ├── article_comments.de_AT.yml │ │ │ │ │ ├── article_comments.el.yml │ │ │ │ │ ├── article_comments.en.yml │ │ │ │ │ ├── article_comments.en_GB.yml │ │ │ │ │ ├── article_comments.es.yml │ │ │ │ │ ├── article_comments.es_AR.yml │ │ │ │ │ ├── article_comments.fa.yml │ │ │ │ │ ├── article_comments.fa_AF.yml │ │ │ │ │ ├── article_comments.fr.yml │ │ │ │ │ ├── article_comments.he.yml │ │ │ │ │ ├── article_comments.hr.yml │ │ │ │ │ ├── article_comments.hu.yml │ │ │ │ │ ├── article_comments.hy.yml │ │ │ │ │ ├── article_comments.hy_AM.yml │ │ │ │ │ ├── article_comments.id.yml │ │ │ │ │ ├── article_comments.it.yml │ │ │ │ │ ├── article_comments.ka.yml │ │ │ │ │ ├── article_comments.ko.yml │ │ │ │ │ ├── article_comments.ku.yml │ │ │ │ │ ├── article_comments.lv.yml │ │ │ │ │ ├── article_comments.mr.yml │ │ │ │ │ ├── article_comments.nb_NO.yml │ │ │ │ │ ├── article_comments.nl.yml │ │ │ │ │ ├── article_comments.pa.yml │ │ │ │ │ ├── article_comments.pl.yml │ │ │ │ │ ├── article_comments.ps.yml │ │ │ │ │ ├── article_comments.pt.yml │ │ │ │ │ ├── article_comments.pt_BR.yml │ │ │ │ │ ├── article_comments.ro.yml │ │ │ │ │ ├── article_comments.ru.yml │ │ │ │ │ ├── article_comments.sh.yml │ │ │ │ │ ├── article_comments.sq.yml │ │ │ │ │ ├── article_comments.sr.yml │ │ │ │ │ ├── article_comments.sv.yml │ │ │ │ │ ├── article_comments.tr.yml │ │ │ │ │ ├── article_comments.uk.yml │ │ │ │ │ ├── article_comments.vi.yml │ │ │ │ │ ├── article_comments.zh.yml │ │ │ │ │ ├── article_comments.zh_TW.yml │ │ │ │ │ ├── article_files.ar.yml │ │ │ │ │ ├── article_files.az.yml │ │ │ │ │ ├── article_files.be.yml │ │ │ │ │ ├── article_files.bn.yml │ │ │ │ │ ├── article_files.cs.yml │ │ │ │ │ ├── article_files.da.yml │ │ │ │ │ ├── article_files.de.yml │ │ │ │ │ ├── article_files.de_AT.yml │ │ │ │ │ ├── article_files.el.yml │ │ │ │ │ ├── article_files.en.yml │ │ │ │ │ ├── article_files.en_GB.yml │ │ │ │ │ ├── article_files.es.yml │ │ │ │ │ ├── article_files.es_AR.yml │ │ │ │ │ ├── article_files.fa.yml │ │ │ │ │ ├── article_files.fa_AF.yml │ │ │ │ │ ├── article_files.fr.yml │ │ │ │ │ ├── article_files.he.yml │ │ │ │ │ ├── article_files.hr.yml │ │ │ │ │ ├── article_files.hu.yml │ │ │ │ │ ├── article_files.hy.yml │ │ │ │ │ ├── article_files.hy_AM.yml │ │ │ │ │ ├── article_files.id.yml │ │ │ │ │ ├── article_files.it.yml │ │ │ │ │ ├── article_files.ka.yml │ │ │ │ │ ├── article_files.ko.yml │ │ │ │ │ ├── article_files.ku.yml │ │ │ │ │ ├── article_files.lv.yml │ │ │ │ │ ├── article_files.mr.yml │ │ │ │ │ ├── article_files.nb_NO.yml │ │ │ │ │ ├── article_files.nl.yml │ │ │ │ │ ├── article_files.pa.yml │ │ │ │ │ ├── article_files.pl.yml │ │ │ │ │ ├── article_files.ps.yml │ │ │ │ │ ├── article_files.pt.yml │ │ │ │ │ ├── article_files.pt_BR.yml │ │ │ │ │ ├── article_files.ro.yml │ │ │ │ │ ├── article_files.ru.yml │ │ │ │ │ ├── article_files.sh.yml │ │ │ │ │ ├── article_files.sq.yml │ │ │ │ │ ├── article_files.sr.yml │ │ │ │ │ ├── article_files.sv.yml │ │ │ │ │ ├── article_files.tr.yml │ │ │ │ │ ├── article_files.uk.yml │ │ │ │ │ ├── article_files.vi.yml │ │ │ │ │ ├── article_files.zh.yml │ │ │ │ │ ├── article_files.zh_TW.yml │ │ │ │ │ ├── article_images.ar.yml │ │ │ │ │ ├── article_images.az.yml │ │ │ │ │ ├── article_images.be.yml │ │ │ │ │ ├── article_images.bn.yml │ │ │ │ │ ├── article_images.cs.yml │ │ │ │ │ ├── article_images.da.yml │ │ │ │ │ ├── article_images.de.yml │ │ │ │ │ ├── article_images.de_AT.yml │ │ │ │ │ ├── article_images.el.yml │ │ │ │ │ ├── article_images.en.yml │ │ │ │ │ ├── article_images.en_GB.yml │ │ │ │ │ ├── article_images.es.yml │ │ │ │ │ ├── article_images.es_AR.yml │ │ │ │ │ ├── article_images.fa.yml │ │ │ │ │ ├── article_images.fa_AF.yml │ │ │ │ │ ├── article_images.fr.yml │ │ │ │ │ ├── article_images.he.yml │ │ │ │ │ ├── article_images.hr.yml │ │ │ │ │ ├── article_images.hu.yml │ │ │ │ │ ├── article_images.hy.yml │ │ │ │ │ ├── article_images.hy_AM.yml │ │ │ │ │ ├── article_images.id.yml │ │ │ │ │ ├── article_images.it.yml │ │ │ │ │ ├── article_images.ka.yml │ │ │ │ │ ├── article_images.ko.yml │ │ │ │ │ ├── article_images.ku.yml │ │ │ │ │ ├── article_images.lv.yml │ │ │ │ │ ├── article_images.mr.yml │ │ │ │ │ ├── article_images.nb_NO.yml │ │ │ │ │ ├── article_images.nl.yml │ │ │ │ │ ├── article_images.pa.yml │ │ │ │ │ ├── article_images.pl.yml │ │ │ │ │ ├── article_images.ps.yml │ │ │ │ │ ├── article_images.pt.yml │ │ │ │ │ ├── article_images.pt_BR.yml │ │ │ │ │ ├── article_images.ro.yml │ │ │ │ │ ├── article_images.ru.yml │ │ │ │ │ ├── article_images.sh.yml │ │ │ │ │ ├── article_images.sq.yml │ │ │ │ │ ├── article_images.sr.yml │ │ │ │ │ ├── article_images.sv.yml │ │ │ │ │ ├── article_images.tr.yml │ │ │ │ │ ├── article_images.uk.yml │ │ │ │ │ ├── article_images.vi.yml │ │ │ │ │ ├── article_images.zh.yml │ │ │ │ │ ├── article_images.zh_TW.yml │ │ │ │ │ ├── article_topics.ar.yml │ │ │ │ │ ├── article_topics.az.yml │ │ │ │ │ ├── article_topics.be.yml │ │ │ │ │ ├── article_topics.bn.yml │ │ │ │ │ ├── article_topics.cs.yml │ │ │ │ │ ├── article_topics.da.yml │ │ │ │ │ ├── article_topics.de.yml │ │ │ │ │ ├── article_topics.de_AT.yml │ │ │ │ │ ├── article_topics.el.yml │ │ │ │ │ ├── article_topics.en.yml │ │ │ │ │ ├── article_topics.en_GB.yml │ │ │ │ │ ├── article_topics.es.yml │ │ │ │ │ ├── article_topics.es_AR.yml │ │ │ │ │ ├── article_topics.fa.yml │ │ │ │ │ ├── article_topics.fa_AF.yml │ │ │ │ │ ├── article_topics.fr.yml │ │ │ │ │ ├── article_topics.he.yml │ │ │ │ │ ├── article_topics.hr.yml │ │ │ │ │ ├── article_topics.hu.yml │ │ │ │ │ ├── article_topics.hy.yml │ │ │ │ │ ├── article_topics.hy_AM.yml │ │ │ │ │ ├── article_topics.id.yml │ │ │ │ │ ├── article_topics.it.yml │ │ │ │ │ ├── article_topics.ka.yml │ │ │ │ │ ├── article_topics.ko.yml │ │ │ │ │ ├── article_topics.ku.yml │ │ │ │ │ ├── article_topics.lv.yml │ │ │ │ │ ├── article_topics.mr.yml │ │ │ │ │ ├── article_topics.nb_NO.yml │ │ │ │ │ ├── article_topics.nl.yml │ │ │ │ │ ├── article_topics.pa.yml │ │ │ │ │ ├── article_topics.pl.yml │ │ │ │ │ ├── article_topics.ps.yml │ │ │ │ │ ├── article_topics.pt.yml │ │ │ │ │ ├── article_topics.pt_BR.yml │ │ │ │ │ ├── article_topics.ro.yml │ │ │ │ │ ├── article_topics.ru.yml │ │ │ │ │ ├── article_topics.sh.yml │ │ │ │ │ ├── article_topics.sq.yml │ │ │ │ │ ├── article_topics.sr.yml │ │ │ │ │ ├── article_topics.sv.yml │ │ │ │ │ ├── article_topics.tr.yml │ │ │ │ │ ├── article_topics.uk.yml │ │ │ │ │ ├── article_topics.vi.yml │ │ │ │ │ ├── article_topics.zh.yml │ │ │ │ │ ├── article_topics.zh_TW.yml │ │ │ │ │ ├── article_type_fields.ar.yml │ │ │ │ │ ├── article_type_fields.az.yml │ │ │ │ │ ├── article_type_fields.be.yml │ │ │ │ │ ├── article_type_fields.bn.yml │ │ │ │ │ ├── article_type_fields.cs.yml │ │ │ │ │ ├── article_type_fields.da.yml │ │ │ │ │ ├── article_type_fields.de.yml │ │ │ │ │ ├── article_type_fields.de_AT.yml │ │ │ │ │ ├── article_type_fields.el.yml │ │ │ │ │ ├── article_type_fields.en.yml │ │ │ │ │ ├── article_type_fields.en_GB.yml │ │ │ │ │ ├── article_type_fields.es.yml │ │ │ │ │ ├── article_type_fields.es_AR.yml │ │ │ │ │ ├── article_type_fields.fa.yml │ │ │ │ │ ├── article_type_fields.fa_AF.yml │ │ │ │ │ ├── article_type_fields.fr.yml │ │ │ │ │ ├── article_type_fields.he.yml │ │ │ │ │ ├── article_type_fields.hr.yml │ │ │ │ │ ├── article_type_fields.hu.yml │ │ │ │ │ ├── article_type_fields.hy.yml │ │ │ │ │ ├── article_type_fields.hy_AM.yml │ │ │ │ │ ├── article_type_fields.id.yml │ │ │ │ │ ├── article_type_fields.it.yml │ │ │ │ │ ├── article_type_fields.ka.yml │ │ │ │ │ ├── article_type_fields.ko.yml │ │ │ │ │ ├── article_type_fields.ku.yml │ │ │ │ │ ├── article_type_fields.lv.yml │ │ │ │ │ ├── article_type_fields.mr.yml │ │ │ │ │ ├── article_type_fields.nb_NO.yml │ │ │ │ │ ├── article_type_fields.nl.yml │ │ │ │ │ ├── article_type_fields.pa.yml │ │ │ │ │ ├── article_type_fields.pl.yml │ │ │ │ │ ├── article_type_fields.ps.yml │ │ │ │ │ ├── article_type_fields.pt.yml │ │ │ │ │ ├── article_type_fields.pt_BR.yml │ │ │ │ │ ├── article_type_fields.ro.yml │ │ │ │ │ ├── article_type_fields.ru.yml │ │ │ │ │ ├── article_type_fields.sh.yml │ │ │ │ │ ├── article_type_fields.sq.yml │ │ │ │ │ ├── article_type_fields.sr.yml │ │ │ │ │ ├── article_type_fields.sv.yml │ │ │ │ │ ├── article_type_fields.tr.yml │ │ │ │ │ ├── article_type_fields.uk.yml │ │ │ │ │ ├── article_type_fields.vi.yml │ │ │ │ │ ├── article_type_fields.zh.yml │ │ │ │ │ ├── article_type_fields.zh_TW.yml │ │ │ │ │ ├── article_types.ar.yml │ │ │ │ │ ├── article_types.az.yml │ │ │ │ │ ├── article_types.be.yml │ │ │ │ │ ├── article_types.bn.yml │ │ │ │ │ ├── article_types.cs.yml │ │ │ │ │ ├── article_types.da.yml │ │ │ │ │ ├── article_types.de.yml │ │ │ │ │ ├── article_types.de_AT.yml │ │ │ │ │ ├── article_types.el.yml │ │ │ │ │ ├── article_types.en.yml │ │ │ │ │ ├── article_types.en.yml~ │ │ │ │ │ ├── article_types.en_GB.yml │ │ │ │ │ ├── article_types.es.yml │ │ │ │ │ ├── article_types.es_AR.yml │ │ │ │ │ ├── article_types.fa.yml │ │ │ │ │ ├── article_types.fa_AF.yml │ │ │ │ │ ├── article_types.fr.yml │ │ │ │ │ ├── article_types.he.yml │ │ │ │ │ ├── article_types.hr.yml │ │ │ │ │ ├── article_types.hu.yml │ │ │ │ │ ├── article_types.hy.yml │ │ │ │ │ ├── article_types.hy_AM.yml │ │ │ │ │ ├── article_types.id.yml │ │ │ │ │ ├── article_types.it.yml │ │ │ │ │ ├── article_types.ka.yml │ │ │ │ │ ├── article_types.ko.yml │ │ │ │ │ ├── article_types.ku.yml │ │ │ │ │ ├── article_types.lv.yml │ │ │ │ │ ├── article_types.mr.yml │ │ │ │ │ ├── article_types.nb_NO.yml │ │ │ │ │ ├── article_types.nl.yml │ │ │ │ │ ├── article_types.pa.yml │ │ │ │ │ ├── article_types.pl.yml │ │ │ │ │ ├── article_types.ps.yml │ │ │ │ │ ├── article_types.pt.yml │ │ │ │ │ ├── article_types.pt_BR.yml │ │ │ │ │ ├── article_types.ro.yml │ │ │ │ │ ├── article_types.ru.yml │ │ │ │ │ ├── article_types.sh.yml │ │ │ │ │ ├── article_types.sq.yml │ │ │ │ │ ├── article_types.sr.yml │ │ │ │ │ ├── article_types.sv.yml │ │ │ │ │ ├── article_types.tr.yml │ │ │ │ │ ├── article_types.uk.yml │ │ │ │ │ ├── article_types.vi.yml │ │ │ │ │ ├── article_types.zh.yml │ │ │ │ │ ├── article_types.zh_TW.yml │ │ │ │ │ ├── articles.ar.yml │ │ │ │ │ ├── articles.az.yml │ │ │ │ │ ├── articles.be.yml │ │ │ │ │ ├── articles.bn.yml │ │ │ │ │ ├── articles.cs.yml │ │ │ │ │ ├── articles.da.yml │ │ │ │ │ ├── articles.de.yml │ │ │ │ │ ├── articles.de_AT.yml │ │ │ │ │ ├── articles.el.yml │ │ │ │ │ ├── articles.en.yml │ │ │ │ │ ├── articles.en_GB.yml │ │ │ │ │ ├── articles.es.yml │ │ │ │ │ ├── articles.es_AR.yml │ │ │ │ │ ├── articles.fa.yml │ │ │ │ │ ├── articles.fa_AF.yml │ │ │ │ │ ├── articles.fr.yml │ │ │ │ │ ├── articles.he.yml │ │ │ │ │ ├── articles.hr.yml │ │ │ │ │ ├── articles.hu.yml │ │ │ │ │ ├── articles.hy.yml │ │ │ │ │ ├── articles.hy_AM.yml │ │ │ │ │ ├── articles.id.yml │ │ │ │ │ ├── articles.it.yml │ │ │ │ │ ├── articles.ka.yml │ │ │ │ │ ├── articles.ko.yml │ │ │ │ │ ├── articles.ku.yml │ │ │ │ │ ├── articles.lv.yml │ │ │ │ │ ├── articles.mr.yml │ │ │ │ │ ├── articles.nb_NO.yml │ │ │ │ │ ├── articles.nl.yml │ │ │ │ │ ├── articles.pa.yml │ │ │ │ │ ├── articles.pl.yml │ │ │ │ │ ├── articles.ps.yml │ │ │ │ │ ├── articles.pt.yml │ │ │ │ │ ├── articles.pt_BR.yml │ │ │ │ │ ├── articles.ro.yml │ │ │ │ │ ├── articles.ru.yml │ │ │ │ │ ├── articles.sh.yml │ │ │ │ │ ├── articles.sq.yml │ │ │ │ │ ├── articles.sr.yml │ │ │ │ │ ├── articles.sv.yml │ │ │ │ │ ├── articles.tr.yml │ │ │ │ │ ├── articles.uk.yml │ │ │ │ │ ├── articles.vi.yml │ │ │ │ │ ├── articles.zh.yml │ │ │ │ │ ├── articles.zh_TW.yml │ │ │ │ │ ├── authors.ar.yml │ │ │ │ │ ├── authors.az.yml │ │ │ │ │ ├── authors.be.yml │ │ │ │ │ ├── authors.bn.yml │ │ │ │ │ ├── authors.cs.yml │ │ │ │ │ ├── authors.da.yml │ │ │ │ │ ├── authors.de.yml │ │ │ │ │ ├── authors.de_AT.yml │ │ │ │ │ ├── authors.el.yml │ │ │ │ │ ├── authors.en.yml │ │ │ │ │ ├── authors.en_GB.yml │ │ │ │ │ ├── authors.es.yml │ │ │ │ │ ├── authors.es_AR.yml │ │ │ │ │ ├── authors.fa.yml │ │ │ │ │ ├── authors.fa_AF.yml │ │ │ │ │ ├── authors.fr.yml │ │ │ │ │ ├── authors.he.yml │ │ │ │ │ ├── authors.hr.yml │ │ │ │ │ ├── authors.hu.yml │ │ │ │ │ ├── authors.hy.yml │ │ │ │ │ ├── authors.hy_AM.yml │ │ │ │ │ ├── authors.id.yml │ │ │ │ │ ├── authors.it.yml │ │ │ │ │ ├── authors.ka.yml │ │ │ │ │ ├── authors.ko.yml │ │ │ │ │ ├── authors.ku.yml │ │ │ │ │ ├── authors.lv.yml │ │ │ │ │ ├── authors.mr.yml │ │ │ │ │ ├── authors.nb_NO.yml │ │ │ │ │ ├── authors.nl.yml │ │ │ │ │ ├── authors.pa.yml │ │ │ │ │ ├── authors.pl.yml │ │ │ │ │ ├── authors.ps.yml │ │ │ │ │ ├── authors.pt.yml │ │ │ │ │ ├── authors.pt_BR.yml │ │ │ │ │ ├── authors.ro.yml │ │ │ │ │ ├── authors.ru.yml │ │ │ │ │ ├── authors.sh.yml │ │ │ │ │ ├── authors.sq.yml │ │ │ │ │ ├── authors.sr.yml │ │ │ │ │ ├── authors.sv.yml │ │ │ │ │ ├── authors.tr.yml │ │ │ │ │ ├── authors.uk.yml │ │ │ │ │ ├── authors.vi.yml │ │ │ │ │ ├── authors.zh.yml │ │ │ │ │ ├── authors.zh_TW.yml │ │ │ │ │ ├── bug_reporting.ar.yml │ │ │ │ │ ├── bug_reporting.az.yml │ │ │ │ │ ├── bug_reporting.be.yml │ │ │ │ │ ├── bug_reporting.bn.yml │ │ │ │ │ ├── bug_reporting.cs.yml │ │ │ │ │ ├── bug_reporting.da.yml │ │ │ │ │ ├── bug_reporting.de.yml │ │ │ │ │ ├── bug_reporting.de_AT.yml │ │ │ │ │ ├── bug_reporting.el.yml │ │ │ │ │ ├── bug_reporting.en.yml │ │ │ │ │ ├── bug_reporting.en_GB.yml │ │ │ │ │ ├── bug_reporting.es.yml │ │ │ │ │ ├── bug_reporting.es_AR.yml │ │ │ │ │ ├── bug_reporting.fa.yml │ │ │ │ │ ├── bug_reporting.fa_AF.yml │ │ │ │ │ ├── bug_reporting.fr.yml │ │ │ │ │ ├── bug_reporting.he.yml │ │ │ │ │ ├── bug_reporting.hr.yml │ │ │ │ │ ├── bug_reporting.hu.yml │ │ │ │ │ ├── bug_reporting.hy.yml │ │ │ │ │ ├── bug_reporting.hy_AM.yml │ │ │ │ │ ├── bug_reporting.id.yml │ │ │ │ │ ├── bug_reporting.it.yml │ │ │ │ │ ├── bug_reporting.ka.yml │ │ │ │ │ ├── bug_reporting.ko.yml │ │ │ │ │ ├── bug_reporting.ku.yml │ │ │ │ │ ├── bug_reporting.lv.yml │ │ │ │ │ ├── bug_reporting.mr.yml │ │ │ │ │ ├── bug_reporting.nb_NO.yml │ │ │ │ │ ├── bug_reporting.nl.yml │ │ │ │ │ ├── bug_reporting.pa.yml │ │ │ │ │ ├── bug_reporting.pl.yml │ │ │ │ │ ├── bug_reporting.ps.yml │ │ │ │ │ ├── bug_reporting.pt.yml │ │ │ │ │ ├── bug_reporting.pt_BR.yml │ │ │ │ │ ├── bug_reporting.ro.yml │ │ │ │ │ ├── bug_reporting.ru.yml │ │ │ │ │ ├── bug_reporting.sh.yml │ │ │ │ │ ├── bug_reporting.sq.yml │ │ │ │ │ ├── bug_reporting.sr.yml │ │ │ │ │ ├── bug_reporting.sv.yml │ │ │ │ │ ├── bug_reporting.tr.yml │ │ │ │ │ ├── bug_reporting.uk.yml │ │ │ │ │ ├── bug_reporting.vi.yml │ │ │ │ │ ├── bug_reporting.zh.yml │ │ │ │ │ ├── bug_reporting.zh_TW.yml │ │ │ │ │ ├── comments.ar.yml │ │ │ │ │ ├── comments.az.yml │ │ │ │ │ ├── comments.be.yml │ │ │ │ │ ├── comments.bn.yml │ │ │ │ │ ├── comments.cs.yml │ │ │ │ │ ├── comments.da.yml │ │ │ │ │ ├── comments.de.yml │ │ │ │ │ ├── comments.de_AT.yml │ │ │ │ │ ├── comments.el.yml │ │ │ │ │ ├── comments.en.yml │ │ │ │ │ ├── comments.en_GB.yml │ │ │ │ │ ├── comments.es.yml │ │ │ │ │ ├── comments.es_AR.yml │ │ │ │ │ ├── comments.fa.yml │ │ │ │ │ ├── comments.fa_AF.yml │ │ │ │ │ ├── comments.fr.yml │ │ │ │ │ ├── comments.he.yml │ │ │ │ │ ├── comments.hr.yml │ │ │ │ │ ├── comments.hu.yml │ │ │ │ │ ├── comments.hy.yml │ │ │ │ │ ├── comments.hy_AM.yml │ │ │ │ │ ├── comments.id.yml │ │ │ │ │ ├── comments.it.yml │ │ │ │ │ ├── comments.ka.yml │ │ │ │ │ ├── comments.ko.yml │ │ │ │ │ ├── comments.ku.yml │ │ │ │ │ ├── comments.lv.yml │ │ │ │ │ ├── comments.mr.yml │ │ │ │ │ ├── comments.nb_NO.yml │ │ │ │ │ ├── comments.nl.yml │ │ │ │ │ ├── comments.pa.yml │ │ │ │ │ ├── comments.pl.yml │ │ │ │ │ ├── comments.ps.yml │ │ │ │ │ ├── comments.pt.yml │ │ │ │ │ ├── comments.pt_BR.yml │ │ │ │ │ ├── comments.ro.yml │ │ │ │ │ ├── comments.ru.yml │ │ │ │ │ ├── comments.sh.yml │ │ │ │ │ ├── comments.sq.yml │ │ │ │ │ ├── comments.sr.yml │ │ │ │ │ ├── comments.sv.yml │ │ │ │ │ ├── comments.tr.yml │ │ │ │ │ ├── comments.uk.yml │ │ │ │ │ ├── comments.vi.yml │ │ │ │ │ ├── comments.zh.yml │ │ │ │ │ ├── comments.zh_TW.yml │ │ │ │ │ ├── country.ar.yml │ │ │ │ │ ├── country.az.yml │ │ │ │ │ ├── country.be.yml │ │ │ │ │ ├── country.bn.yml │ │ │ │ │ ├── country.cs.yml │ │ │ │ │ ├── country.da.yml │ │ │ │ │ ├── country.de.yml │ │ │ │ │ ├── country.de_AT.yml │ │ │ │ │ ├── country.el.yml │ │ │ │ │ ├── country.en.yml │ │ │ │ │ ├── country.en_GB.yml │ │ │ │ │ ├── country.es.yml │ │ │ │ │ ├── country.es_AR.yml │ │ │ │ │ ├── country.fa.yml │ │ │ │ │ ├── country.fa_AF.yml │ │ │ │ │ ├── country.fr.yml │ │ │ │ │ ├── country.he.yml │ │ │ │ │ ├── country.hr.yml │ │ │ │ │ ├── country.hu.yml │ │ │ │ │ ├── country.hy.yml │ │ │ │ │ ├── country.hy_AM.yml │ │ │ │ │ ├── country.id.yml │ │ │ │ │ ├── country.it.yml │ │ │ │ │ ├── country.ka.yml │ │ │ │ │ ├── country.ko.yml │ │ │ │ │ ├── country.ku.yml │ │ │ │ │ ├── country.lv.yml │ │ │ │ │ ├── country.mr.yml │ │ │ │ │ ├── country.nb_NO.yml │ │ │ │ │ ├── country.nl.yml │ │ │ │ │ ├── country.pa.yml │ │ │ │ │ ├── country.pl.yml │ │ │ │ │ ├── country.ps.yml │ │ │ │ │ ├── country.pt.yml │ │ │ │ │ ├── country.pt_BR.yml │ │ │ │ │ ├── country.ro.yml │ │ │ │ │ ├── country.ru.yml │ │ │ │ │ ├── country.sh.yml │ │ │ │ │ ├── country.sq.yml │ │ │ │ │ ├── country.sr.yml │ │ │ │ │ ├── country.sv.yml │ │ │ │ │ ├── country.tr.yml │ │ │ │ │ ├── country.uk.yml │ │ │ │ │ ├── country.vi.yml │ │ │ │ │ ├── country.zh.yml │ │ │ │ │ ├── country.zh_TW.yml │ │ │ │ │ ├── extensions.ar.yml │ │ │ │ │ ├── extensions.az.yml │ │ │ │ │ ├── extensions.be.yml │ │ │ │ │ ├── extensions.bn.yml │ │ │ │ │ ├── extensions.cs.yml │ │ │ │ │ ├── extensions.da.yml │ │ │ │ │ ├── extensions.de.yml │ │ │ │ │ ├── extensions.de_AT.yml │ │ │ │ │ ├── extensions.el.yml │ │ │ │ │ ├── extensions.en.yml │ │ │ │ │ ├── extensions.en_GB.yml │ │ │ │ │ ├── extensions.es.yml │ │ │ │ │ ├── extensions.es_AR.yml │ │ │ │ │ ├── extensions.fa.yml │ │ │ │ │ ├── extensions.fa_AF.yml │ │ │ │ │ ├── extensions.fr.yml │ │ │ │ │ ├── extensions.he.yml │ │ │ │ │ ├── extensions.hr.yml │ │ │ │ │ ├── extensions.hu.yml │ │ │ │ │ ├── extensions.hy.yml │ │ │ │ │ ├── extensions.hy_AM.yml │ │ │ │ │ ├── extensions.id.yml │ │ │ │ │ ├── extensions.it.yml │ │ │ │ │ ├── extensions.ka.yml │ │ │ │ │ ├── extensions.ko.yml │ │ │ │ │ ├── extensions.ku.yml │ │ │ │ │ ├── extensions.lv.yml │ │ │ │ │ ├── extensions.mr.yml │ │ │ │ │ ├── extensions.nb_NO.yml │ │ │ │ │ ├── extensions.nl.yml │ │ │ │ │ ├── extensions.pa.yml │ │ │ │ │ ├── extensions.pl.yml │ │ │ │ │ ├── extensions.ps.yml │ │ │ │ │ ├── extensions.pt.yml │ │ │ │ │ ├── extensions.pt_BR.yml │ │ │ │ │ ├── extensions.ro.yml │ │ │ │ │ ├── extensions.ru.yml │ │ │ │ │ ├── extensions.sh.yml │ │ │ │ │ ├── extensions.sq.yml │ │ │ │ │ ├── extensions.sr.yml │ │ │ │ │ ├── extensions.sv.yml │ │ │ │ │ ├── extensions.tr.yml │ │ │ │ │ ├── extensions.uk.yml │ │ │ │ │ ├── extensions.vi.yml │ │ │ │ │ ├── extensions.zh.yml │ │ │ │ │ ├── extensions.zh_TW.yml │ │ │ │ │ ├── feedback.ar.yml │ │ │ │ │ ├── feedback.az.yml │ │ │ │ │ ├── feedback.be.yml │ │ │ │ │ ├── feedback.bn.yml │ │ │ │ │ ├── feedback.cs.yml │ │ │ │ │ ├── feedback.da.yml │ │ │ │ │ ├── feedback.de.yml │ │ │ │ │ ├── feedback.de_AT.yml │ │ │ │ │ ├── feedback.el.yml │ │ │ │ │ ├── feedback.en.yml │ │ │ │ │ ├── feedback.en_GB.yml │ │ │ │ │ ├── feedback.es.yml │ │ │ │ │ ├── feedback.es_AR.yml │ │ │ │ │ ├── feedback.fa.yml │ │ │ │ │ ├── feedback.fa_AF.yml │ │ │ │ │ ├── feedback.fr.yml │ │ │ │ │ ├── feedback.he.yml │ │ │ │ │ ├── feedback.hr.yml │ │ │ │ │ ├── feedback.hu.yml │ │ │ │ │ ├── feedback.hy.yml │ │ │ │ │ ├── feedback.hy_AM.yml │ │ │ │ │ ├── feedback.id.yml │ │ │ │ │ ├── feedback.it.yml │ │ │ │ │ ├── feedback.ka.yml │ │ │ │ │ ├── feedback.ko.yml │ │ │ │ │ ├── feedback.ku.yml │ │ │ │ │ ├── feedback.lv.yml │ │ │ │ │ ├── feedback.mr.yml │ │ │ │ │ ├── feedback.nb_NO.yml │ │ │ │ │ ├── feedback.nl.yml │ │ │ │ │ ├── feedback.pa.yml │ │ │ │ │ ├── feedback.pl.yml │ │ │ │ │ ├── feedback.ps.yml │ │ │ │ │ ├── feedback.pt.yml │ │ │ │ │ ├── feedback.pt_BR.yml │ │ │ │ │ ├── feedback.ro.yml │ │ │ │ │ ├── feedback.ru.yml │ │ │ │ │ ├── feedback.sh.yml │ │ │ │ │ ├── feedback.sq.yml │ │ │ │ │ ├── feedback.sr.yml │ │ │ │ │ ├── feedback.sv.yml │ │ │ │ │ ├── feedback.tr.yml │ │ │ │ │ ├── feedback.uk.yml │ │ │ │ │ ├── feedback.vi.yml │ │ │ │ │ ├── feedback.zh.yml │ │ │ │ │ ├── feedback.zh_TW.yml │ │ │ │ │ ├── geolocation.ar.yml │ │ │ │ │ ├── geolocation.az.yml │ │ │ │ │ ├── geolocation.be.yml │ │ │ │ │ ├── geolocation.bn.yml │ │ │ │ │ ├── geolocation.cs.yml │ │ │ │ │ ├── geolocation.da.yml │ │ │ │ │ ├── geolocation.de.yml │ │ │ │ │ ├── geolocation.de_AT.yml │ │ │ │ │ ├── geolocation.el.yml │ │ │ │ │ ├── geolocation.en.yml │ │ │ │ │ ├── geolocation.en_GB.yml │ │ │ │ │ ├── geolocation.es.yml │ │ │ │ │ ├── geolocation.es_AR.yml │ │ │ │ │ ├── geolocation.fa.yml │ │ │ │ │ ├── geolocation.fa_AF.yml │ │ │ │ │ ├── geolocation.fr.yml │ │ │ │ │ ├── geolocation.he.yml │ │ │ │ │ ├── geolocation.hr.yml │ │ │ │ │ ├── geolocation.hu.yml │ │ │ │ │ ├── geolocation.hy.yml │ │ │ │ │ ├── geolocation.hy_AM.yml │ │ │ │ │ ├── geolocation.id.yml │ │ │ │ │ ├── geolocation.it.yml │ │ │ │ │ ├── geolocation.ka.yml │ │ │ │ │ ├── geolocation.ko.yml │ │ │ │ │ ├── geolocation.ku.yml │ │ │ │ │ ├── geolocation.lv.yml │ │ │ │ │ ├── geolocation.mr.yml │ │ │ │ │ ├── geolocation.nb_NO.yml │ │ │ │ │ ├── geolocation.nl.yml │ │ │ │ │ ├── geolocation.pa.yml │ │ │ │ │ ├── geolocation.pl.yml │ │ │ │ │ ├── geolocation.ps.yml │ │ │ │ │ ├── geolocation.pt.yml │ │ │ │ │ ├── geolocation.pt_BR.yml │ │ │ │ │ ├── geolocation.ro.yml │ │ │ │ │ ├── geolocation.ru.yml │ │ │ │ │ ├── geolocation.sh.yml │ │ │ │ │ ├── geolocation.sq.yml │ │ │ │ │ ├── geolocation.sr.yml │ │ │ │ │ ├── geolocation.sv.yml │ │ │ │ │ ├── geolocation.tr.yml │ │ │ │ │ ├── geolocation.uk.yml │ │ │ │ │ ├── geolocation.vi.yml │ │ │ │ │ ├── geolocation.zh.yml │ │ │ │ │ ├── geolocation.zh_TW.yml │ │ │ │ │ ├── help.ar.yml │ │ │ │ │ ├── help.az.yml │ │ │ │ │ ├── help.be.yml │ │ │ │ │ ├── help.bn.yml │ │ │ │ │ ├── help.cs.yml │ │ │ │ │ ├── help.da.yml │ │ │ │ │ ├── help.de.yml │ │ │ │ │ ├── help.de_AT.yml │ │ │ │ │ ├── help.el.yml │ │ │ │ │ ├── help.en.yml │ │ │ │ │ ├── help.en_GB.yml │ │ │ │ │ ├── help.es.yml │ │ │ │ │ ├── help.es_AR.yml │ │ │ │ │ ├── help.fa.yml │ │ │ │ │ ├── help.fa_AF.yml │ │ │ │ │ ├── help.fr.yml │ │ │ │ │ ├── help.he.yml │ │ │ │ │ ├── help.hr.yml │ │ │ │ │ ├── help.hu.yml │ │ │ │ │ ├── help.hy.yml │ │ │ │ │ ├── help.hy_AM.yml │ │ │ │ │ ├── help.id.yml │ │ │ │ │ ├── help.it.yml │ │ │ │ │ ├── help.ka.yml │ │ │ │ │ ├── help.ko.yml │ │ │ │ │ ├── help.ku.yml │ │ │ │ │ ├── help.lv.yml │ │ │ │ │ ├── help.mr.yml │ │ │ │ │ ├── help.nb_NO.yml │ │ │ │ │ ├── help.nl.yml │ │ │ │ │ ├── help.pa.yml │ │ │ │ │ ├── help.pl.yml │ │ │ │ │ ├── help.ps.yml │ │ │ │ │ ├── help.pt.yml │ │ │ │ │ ├── help.pt_BR.yml │ │ │ │ │ ├── help.ro.yml │ │ │ │ │ ├── help.ru.yml │ │ │ │ │ ├── help.sh.yml │ │ │ │ │ ├── help.sq.yml │ │ │ │ │ ├── help.sr.yml │ │ │ │ │ ├── help.sv.yml │ │ │ │ │ ├── help.tr.yml │ │ │ │ │ ├── help.uk.yml │ │ │ │ │ ├── help.vi.yml │ │ │ │ │ ├── help.zh.yml │ │ │ │ │ ├── help.zh_TW.yml │ │ │ │ │ ├── helpers.ar.yml │ │ │ │ │ ├── helpers.az.yml │ │ │ │ │ ├── helpers.be.yml │ │ │ │ │ ├── helpers.bn.yml │ │ │ │ │ ├── helpers.cs.yml │ │ │ │ │ ├── helpers.da.yml │ │ │ │ │ ├── helpers.de.yml │ │ │ │ │ ├── helpers.de_AT.yml │ │ │ │ │ ├── helpers.el.yml │ │ │ │ │ ├── helpers.en.yml │ │ │ │ │ ├── helpers.en_GB.yml │ │ │ │ │ ├── helpers.es.yml │ │ │ │ │ ├── helpers.es_AR.yml │ │ │ │ │ ├── helpers.fa.yml │ │ │ │ │ ├── helpers.fa_AF.yml │ │ │ │ │ ├── helpers.fr.yml │ │ │ │ │ ├── helpers.he.yml │ │ │ │ │ ├── helpers.hr.yml │ │ │ │ │ ├── helpers.hu.yml │ │ │ │ │ ├── helpers.hy.yml │ │ │ │ │ ├── helpers.hy_AM.yml │ │ │ │ │ ├── helpers.id.yml │ │ │ │ │ ├── helpers.it.yml │ │ │ │ │ ├── helpers.ka.yml │ │ │ │ │ ├── helpers.ko.yml │ │ │ │ │ ├── helpers.ku.yml │ │ │ │ │ ├── helpers.lv.yml │ │ │ │ │ ├── helpers.mr.yml │ │ │ │ │ ├── helpers.nb_NO.yml │ │ │ │ │ ├── helpers.nl.yml │ │ │ │ │ ├── helpers.pa.yml │ │ │ │ │ ├── helpers.pl.yml │ │ │ │ │ ├── helpers.ps.yml │ │ │ │ │ ├── helpers.pt.yml │ │ │ │ │ ├── helpers.pt_BR.yml │ │ │ │ │ ├── helpers.ro.yml │ │ │ │ │ ├── helpers.ru.yml │ │ │ │ │ ├── helpers.sh.yml │ │ │ │ │ ├── helpers.sq.yml │ │ │ │ │ ├── helpers.sr.yml │ │ │ │ │ ├── helpers.sv.yml │ │ │ │ │ ├── helpers.tr.yml │ │ │ │ │ ├── helpers.uk.yml │ │ │ │ │ ├── helpers.vi.yml │ │ │ │ │ ├── helpers.zh.yml │ │ │ │ │ ├── helpers.zh_TW.yml │ │ │ │ │ ├── home.ar.yml │ │ │ │ │ ├── home.az.yml │ │ │ │ │ ├── home.be.yml │ │ │ │ │ ├── home.bn.yml │ │ │ │ │ ├── home.cs.yml │ │ │ │ │ ├── home.da.yml │ │ │ │ │ ├── home.de.yml │ │ │ │ │ ├── home.de_AT.yml │ │ │ │ │ ├── home.el.yml │ │ │ │ │ ├── home.en.yml │ │ │ │ │ ├── home.en.yml~ │ │ │ │ │ ├── home.en_GB.yml │ │ │ │ │ ├── home.es.yml │ │ │ │ │ ├── home.es_AR.yml │ │ │ │ │ ├── home.fa.yml │ │ │ │ │ ├── home.fa_AF.yml │ │ │ │ │ ├── home.fr.yml │ │ │ │ │ ├── home.he.yml │ │ │ │ │ ├── home.hr.yml │ │ │ │ │ ├── home.hu.yml │ │ │ │ │ ├── home.hy.yml │ │ │ │ │ ├── home.hy_AM.yml │ │ │ │ │ ├── home.id.yml │ │ │ │ │ ├── home.it.yml │ │ │ │ │ ├── home.ka.yml │ │ │ │ │ ├── home.ko.yml │ │ │ │ │ ├── home.ku.yml │ │ │ │ │ ├── home.lv.yml │ │ │ │ │ ├── home.mr.yml │ │ │ │ │ ├── home.nb_NO.yml │ │ │ │ │ ├── home.nl.yml │ │ │ │ │ ├── home.pa.yml │ │ │ │ │ ├── home.pl.yml │ │ │ │ │ ├── home.ps.yml │ │ │ │ │ ├── home.pt.yml │ │ │ │ │ ├── home.pt_BR.yml │ │ │ │ │ ├── home.ro.yml │ │ │ │ │ ├── home.ru.yml │ │ │ │ │ ├── home.sh.yml │ │ │ │ │ ├── home.sq.yml │ │ │ │ │ ├── home.sr.yml │ │ │ │ │ ├── home.sv.yml │ │ │ │ │ ├── home.tr.yml │ │ │ │ │ ├── home.uk.yml │ │ │ │ │ ├── home.vi.yml │ │ │ │ │ ├── home.zh.yml │ │ │ │ │ ├── home.zh_TW.yml │ │ │ │ │ ├── issues.ar.yml │ │ │ │ │ ├── issues.az.yml │ │ │ │ │ ├── issues.be.yml │ │ │ │ │ ├── issues.bn.yml │ │ │ │ │ ├── issues.cs.yml │ │ │ │ │ ├── issues.da.yml │ │ │ │ │ ├── issues.de.yml │ │ │ │ │ ├── issues.de_AT.yml │ │ │ │ │ ├── issues.el.yml │ │ │ │ │ ├── issues.en.yml │ │ │ │ │ ├── issues.en_GB.yml │ │ │ │ │ ├── issues.es.yml │ │ │ │ │ ├── issues.es_AR.yml │ │ │ │ │ ├── issues.fa.yml │ │ │ │ │ ├── issues.fa_AF.yml │ │ │ │ │ ├── issues.fr.yml │ │ │ │ │ ├── issues.he.yml │ │ │ │ │ ├── issues.hr.yml │ │ │ │ │ ├── issues.hu.yml │ │ │ │ │ ├── issues.hy.yml │ │ │ │ │ ├── issues.hy_AM.yml │ │ │ │ │ ├── issues.id.yml │ │ │ │ │ ├── issues.it.yml │ │ │ │ │ ├── issues.ka.yml │ │ │ │ │ ├── issues.ko.yml │ │ │ │ │ ├── issues.ku.yml │ │ │ │ │ ├── issues.lv.yml │ │ │ │ │ ├── issues.mr.yml │ │ │ │ │ ├── issues.nb_NO.yml │ │ │ │ │ ├── issues.nl.yml │ │ │ │ │ ├── issues.pa.yml │ │ │ │ │ ├── issues.pl.yml │ │ │ │ │ ├── issues.ps.yml │ │ │ │ │ ├── issues.pt.yml │ │ │ │ │ ├── issues.pt_BR.yml │ │ │ │ │ ├── issues.ro.yml │ │ │ │ │ ├── issues.ru.yml │ │ │ │ │ ├── issues.sh.yml │ │ │ │ │ ├── issues.sq.yml │ │ │ │ │ ├── issues.sr.yml │ │ │ │ │ ├── issues.sv.yml │ │ │ │ │ ├── issues.tr.yml │ │ │ │ │ ├── issues.uk.yml │ │ │ │ │ ├── issues.vi.yml │ │ │ │ │ ├── issues.zh.yml │ │ │ │ │ ├── issues.zh_TW.yml │ │ │ │ │ ├── languages.ar.yml │ │ │ │ │ ├── languages.az.yml │ │ │ │ │ ├── languages.be.yml │ │ │ │ │ ├── languages.bn.yml │ │ │ │ │ ├── languages.cs.yml │ │ │ │ │ ├── languages.da.yml │ │ │ │ │ ├── languages.de.yml │ │ │ │ │ ├── languages.de_AT.yml │ │ │ │ │ ├── languages.el.yml │ │ │ │ │ ├── languages.en.yml │ │ │ │ │ ├── languages.en_GB.yml │ │ │ │ │ ├── languages.es.yml │ │ │ │ │ ├── languages.es_AR.yml │ │ │ │ │ ├── languages.fa.yml │ │ │ │ │ ├── languages.fa_AF.yml │ │ │ │ │ ├── languages.fr.yml │ │ │ │ │ ├── languages.he.yml │ │ │ │ │ ├── languages.hr.yml │ │ │ │ │ ├── languages.hu.yml │ │ │ │ │ ├── languages.hy.yml │ │ │ │ │ ├── languages.hy_AM.yml │ │ │ │ │ ├── languages.id.yml │ │ │ │ │ ├── languages.it.yml │ │ │ │ │ ├── languages.ka.yml │ │ │ │ │ ├── languages.ko.yml │ │ │ │ │ ├── languages.ku.yml │ │ │ │ │ ├── languages.lv.yml │ │ │ │ │ ├── languages.mr.yml │ │ │ │ │ ├── languages.nb_NO.yml │ │ │ │ │ ├── languages.nl.yml │ │ │ │ │ ├── languages.pa.yml │ │ │ │ │ ├── languages.pl.yml │ │ │ │ │ ├── languages.ps.yml │ │ │ │ │ ├── languages.pt.yml │ │ │ │ │ ├── languages.pt_BR.yml │ │ │ │ │ ├── languages.ro.yml │ │ │ │ │ ├── languages.ru.yml │ │ │ │ │ ├── languages.sh.yml │ │ │ │ │ ├── languages.sq.yml │ │ │ │ │ ├── languages.sr.yml │ │ │ │ │ ├── languages.sv.yml │ │ │ │ │ ├── languages.tr.yml │ │ │ │ │ ├── languages.uk.yml │ │ │ │ │ ├── languages.vi.yml │ │ │ │ │ ├── languages.zh.yml │ │ │ │ │ ├── languages.zh_TW.yml │ │ │ │ │ ├── library.ar.yml │ │ │ │ │ ├── library.az.yml │ │ │ │ │ ├── library.be.yml │ │ │ │ │ ├── library.bn.yml │ │ │ │ │ ├── library.cs.yml │ │ │ │ │ ├── library.da.yml │ │ │ │ │ ├── library.de.yml │ │ │ │ │ ├── library.de_AT.yml │ │ │ │ │ ├── library.el.yml │ │ │ │ │ ├── library.en.yml │ │ │ │ │ ├── library.en_GB.yml │ │ │ │ │ ├── library.es.yml │ │ │ │ │ ├── library.es_AR.yml │ │ │ │ │ ├── library.fa.yml │ │ │ │ │ ├── library.fa_AF.yml │ │ │ │ │ ├── library.fr.yml │ │ │ │ │ ├── library.he.yml │ │ │ │ │ ├── library.hr.yml │ │ │ │ │ ├── library.hu.yml │ │ │ │ │ ├── library.hy.yml │ │ │ │ │ ├── library.hy_AM.yml │ │ │ │ │ ├── library.id.yml │ │ │ │ │ ├── library.it.yml │ │ │ │ │ ├── library.ka.yml │ │ │ │ │ ├── library.ko.yml │ │ │ │ │ ├── library.ku.yml │ │ │ │ │ ├── library.lv.yml │ │ │ │ │ ├── library.mr.yml │ │ │ │ │ ├── library.nb_NO.yml │ │ │ │ │ ├── library.nl.yml │ │ │ │ │ ├── library.pa.yml │ │ │ │ │ ├── library.pl.yml │ │ │ │ │ ├── library.ps.yml │ │ │ │ │ ├── library.pt.yml │ │ │ │ │ ├── library.pt_BR.yml │ │ │ │ │ ├── library.ro.yml │ │ │ │ │ ├── library.ru.yml │ │ │ │ │ ├── library.sh.yml │ │ │ │ │ ├── library.sq.yml │ │ │ │ │ ├── library.sr.yml │ │ │ │ │ ├── library.sv.yml │ │ │ │ │ ├── library.tr.yml │ │ │ │ │ ├── library.uk.yml │ │ │ │ │ ├── library.vi.yml │ │ │ │ │ ├── library.zh.yml │ │ │ │ │ ├── library.zh_TW.yml │ │ │ │ │ ├── logs.ar.yml │ │ │ │ │ ├── logs.az.yml │ │ │ │ │ ├── logs.be.yml │ │ │ │ │ ├── logs.bn.yml │ │ │ │ │ ├── logs.cs.yml │ │ │ │ │ ├── logs.da.yml │ │ │ │ │ ├── logs.de.yml │ │ │ │ │ ├── logs.de_AT.yml │ │ │ │ │ ├── logs.el.yml │ │ │ │ │ ├── logs.en.yml │ │ │ │ │ ├── logs.en_GB.yml │ │ │ │ │ ├── logs.es.yml │ │ │ │ │ ├── logs.es_AR.yml │ │ │ │ │ ├── logs.fa.yml │ │ │ │ │ ├── logs.fa_AF.yml │ │ │ │ │ ├── logs.fr.yml │ │ │ │ │ ├── logs.he.yml │ │ │ │ │ ├── logs.hr.yml │ │ │ │ │ ├── logs.hu.yml │ │ │ │ │ ├── logs.hy.yml │ │ │ │ │ ├── logs.hy_AM.yml │ │ │ │ │ ├── logs.id.yml │ │ │ │ │ ├── logs.it.yml │ │ │ │ │ ├── logs.ka.yml │ │ │ │ │ ├── logs.ko.yml │ │ │ │ │ ├── logs.ku.yml │ │ │ │ │ ├── logs.lv.yml │ │ │ │ │ ├── logs.mr.yml │ │ │ │ │ ├── logs.nb_NO.yml │ │ │ │ │ ├── logs.nl.yml │ │ │ │ │ ├── logs.pa.yml │ │ │ │ │ ├── logs.pl.yml │ │ │ │ │ ├── logs.ps.yml │ │ │ │ │ ├── logs.pt.yml │ │ │ │ │ ├── logs.pt_BR.yml │ │ │ │ │ ├── logs.ro.yml │ │ │ │ │ ├── logs.ru.yml │ │ │ │ │ ├── logs.sh.yml │ │ │ │ │ ├── logs.sq.yml │ │ │ │ │ ├── logs.sr.yml │ │ │ │ │ ├── logs.sv.yml │ │ │ │ │ ├── logs.tr.yml │ │ │ │ │ ├── logs.uk.yml │ │ │ │ │ ├── logs.vi.yml │ │ │ │ │ ├── logs.zh.yml │ │ │ │ │ ├── logs.zh_TW.yml │ │ │ │ │ ├── media_archive.ar.yml │ │ │ │ │ ├── media_archive.az.yml │ │ │ │ │ ├── media_archive.be.yml │ │ │ │ │ ├── media_archive.bn.yml │ │ │ │ │ ├── media_archive.cs.yml │ │ │ │ │ ├── media_archive.da.yml │ │ │ │ │ ├── media_archive.de.yml │ │ │ │ │ ├── media_archive.de_AT.yml │ │ │ │ │ ├── media_archive.el.yml │ │ │ │ │ ├── media_archive.en.yml │ │ │ │ │ ├── media_archive.en_GB.yml │ │ │ │ │ ├── media_archive.es.yml │ │ │ │ │ ├── media_archive.es_AR.yml │ │ │ │ │ ├── media_archive.fa.yml │ │ │ │ │ ├── media_archive.fa_AF.yml │ │ │ │ │ ├── media_archive.fr.yml │ │ │ │ │ ├── media_archive.he.yml │ │ │ │ │ ├── media_archive.hr.yml │ │ │ │ │ ├── media_archive.hu.yml │ │ │ │ │ ├── media_archive.hy.yml │ │ │ │ │ ├── media_archive.hy_AM.yml │ │ │ │ │ ├── media_archive.id.yml │ │ │ │ │ ├── media_archive.it.yml │ │ │ │ │ ├── media_archive.ka.yml │ │ │ │ │ ├── media_archive.ko.yml │ │ │ │ │ ├── media_archive.ku.yml │ │ │ │ │ ├── media_archive.lv.yml │ │ │ │ │ ├── media_archive.mr.yml │ │ │ │ │ ├── media_archive.nb_NO.yml │ │ │ │ │ ├── media_archive.nl.yml │ │ │ │ │ ├── media_archive.pa.yml │ │ │ │ │ ├── media_archive.pl.yml │ │ │ │ │ ├── media_archive.ps.yml │ │ │ │ │ ├── media_archive.pt.yml │ │ │ │ │ ├── media_archive.pt_BR.yml │ │ │ │ │ ├── media_archive.ro.yml │ │ │ │ │ ├── media_archive.ru.yml │ │ │ │ │ ├── media_archive.sh.yml │ │ │ │ │ ├── media_archive.sq.yml │ │ │ │ │ ├── media_archive.sr.yml │ │ │ │ │ ├── media_archive.sv.yml │ │ │ │ │ ├── media_archive.tr.yml │ │ │ │ │ ├── media_archive.uk.yml │ │ │ │ │ ├── media_archive.vi.yml │ │ │ │ │ ├── media_archive.zh.yml │ │ │ │ │ ├── media_archive.zh_TW.yml │ │ │ │ │ ├── messages.ar.yml │ │ │ │ │ ├── messages.az.yml │ │ │ │ │ ├── messages.be.yml │ │ │ │ │ ├── messages.bn.yml │ │ │ │ │ ├── messages.cs.yml │ │ │ │ │ ├── messages.da.yml │ │ │ │ │ ├── messages.de.yml │ │ │ │ │ ├── messages.de_AT.yml │ │ │ │ │ ├── messages.el.yml │ │ │ │ │ ├── messages.en.yml │ │ │ │ │ ├── messages.en.yml~ │ │ │ │ │ ├── messages.en_GB.yml │ │ │ │ │ ├── messages.es.yml │ │ │ │ │ ├── messages.es_AR.yml │ │ │ │ │ ├── messages.fa.yml │ │ │ │ │ ├── messages.fa_AF.yml │ │ │ │ │ ├── messages.fr.yml │ │ │ │ │ ├── messages.he.yml │ │ │ │ │ ├── messages.hr.yml │ │ │ │ │ ├── messages.hu.yml │ │ │ │ │ ├── messages.hy.yml │ │ │ │ │ ├── messages.hy_AM.yml │ │ │ │ │ ├── messages.id.yml │ │ │ │ │ ├── messages.it.yml │ │ │ │ │ ├── messages.ka.yml │ │ │ │ │ ├── messages.ko.yml │ │ │ │ │ ├── messages.ku.yml │ │ │ │ │ ├── messages.lv.yml │ │ │ │ │ ├── messages.mr.yml │ │ │ │ │ ├── messages.nb_NO.yml │ │ │ │ │ ├── messages.nl.yml │ │ │ │ │ ├── messages.pa.yml │ │ │ │ │ ├── messages.pl.yml │ │ │ │ │ ├── messages.pl.yml~ │ │ │ │ │ ├── messages.ps.yml │ │ │ │ │ ├── messages.pt.yml │ │ │ │ │ ├── messages.pt_BR.yml │ │ │ │ │ ├── messages.ro.yml │ │ │ │ │ ├── messages.ru.yml │ │ │ │ │ ├── messages.sh.yml │ │ │ │ │ ├── messages.sq.yml │ │ │ │ │ ├── messages.sr.yml │ │ │ │ │ ├── messages.sv.yml │ │ │ │ │ ├── messages.tr.yml │ │ │ │ │ ├── messages.uk.yml │ │ │ │ │ ├── messages.vi.yml │ │ │ │ │ ├── messages.zh.yml │ │ │ │ │ ├── messages.zh_TW.yml │ │ │ │ │ ├── new_comments.ar.yml │ │ │ │ │ ├── new_comments.az.yml │ │ │ │ │ ├── new_comments.be.yml │ │ │ │ │ ├── new_comments.bn.yml │ │ │ │ │ ├── new_comments.cs.yml │ │ │ │ │ ├── new_comments.da.yml │ │ │ │ │ ├── new_comments.de.yml │ │ │ │ │ ├── new_comments.de_AT.yml │ │ │ │ │ ├── new_comments.el.yml │ │ │ │ │ ├── new_comments.en.yml │ │ │ │ │ ├── new_comments.en_GB.yml │ │ │ │ │ ├── new_comments.es.yml │ │ │ │ │ ├── new_comments.es_AR.yml │ │ │ │ │ ├── new_comments.fa.yml │ │ │ │ │ ├── new_comments.fa_AF.yml │ │ │ │ │ ├── new_comments.fr.yml │ │ │ │ │ ├── new_comments.he.yml │ │ │ │ │ ├── new_comments.hr.yml │ │ │ │ │ ├── new_comments.hu.yml │ │ │ │ │ ├── new_comments.hy.yml │ │ │ │ │ ├── new_comments.hy_AM.yml │ │ │ │ │ ├── new_comments.id.yml │ │ │ │ │ ├── new_comments.it.yml │ │ │ │ │ ├── new_comments.ka.yml │ │ │ │ │ ├── new_comments.ko.yml │ │ │ │ │ ├── new_comments.ku.yml │ │ │ │ │ ├── new_comments.lv.yml │ │ │ │ │ ├── new_comments.mr.yml │ │ │ │ │ ├── new_comments.nb_NO.yml │ │ │ │ │ ├── new_comments.nl.yml │ │ │ │ │ ├── new_comments.pa.yml │ │ │ │ │ ├── new_comments.pl.yml │ │ │ │ │ ├── new_comments.ps.yml │ │ │ │ │ ├── new_comments.pt.yml │ │ │ │ │ ├── new_comments.pt_BR.yml │ │ │ │ │ ├── new_comments.ro.yml │ │ │ │ │ ├── new_comments.ru.yml │ │ │ │ │ ├── new_comments.sh.yml │ │ │ │ │ ├── new_comments.sq.yml │ │ │ │ │ ├── new_comments.sr.yml │ │ │ │ │ ├── new_comments.sv.yml │ │ │ │ │ ├── new_comments.tr.yml │ │ │ │ │ ├── new_comments.uk.yml │ │ │ │ │ ├── new_comments.vi.yml │ │ │ │ │ ├── new_comments.zh.yml │ │ │ │ │ ├── new_comments.zh_TW.yml │ │ │ │ │ ├── plugins.ar.yml │ │ │ │ │ ├── plugins.az.yml │ │ │ │ │ ├── plugins.be.yml │ │ │ │ │ ├── plugins.bn.yml │ │ │ │ │ ├── plugins.cs.yml │ │ │ │ │ ├── plugins.da.yml │ │ │ │ │ ├── plugins.de.yml │ │ │ │ │ ├── plugins.de_AT.yml │ │ │ │ │ ├── plugins.el.yml │ │ │ │ │ ├── plugins.en.yml │ │ │ │ │ ├── plugins.en_GB.yml │ │ │ │ │ ├── plugins.es.yml │ │ │ │ │ ├── plugins.es_AR.yml │ │ │ │ │ ├── plugins.fa.yml │ │ │ │ │ ├── plugins.fa_AF.yml │ │ │ │ │ ├── plugins.fr.yml │ │ │ │ │ ├── plugins.he.yml │ │ │ │ │ ├── plugins.hr.yml │ │ │ │ │ ├── plugins.hu.yml │ │ │ │ │ ├── plugins.hy.yml │ │ │ │ │ ├── plugins.hy_AM.yml │ │ │ │ │ ├── plugins.id.yml │ │ │ │ │ ├── plugins.it.yml │ │ │ │ │ ├── plugins.ka.yml │ │ │ │ │ ├── plugins.ko.yml │ │ │ │ │ ├── plugins.ku.yml │ │ │ │ │ ├── plugins.lv.yml │ │ │ │ │ ├── plugins.mr.yml │ │ │ │ │ ├── plugins.nb_NO.yml │ │ │ │ │ ├── plugins.nl.yml │ │ │ │ │ ├── plugins.pa.yml │ │ │ │ │ ├── plugins.pl.yml │ │ │ │ │ ├── plugins.ps.yml │ │ │ │ │ ├── plugins.pt.yml │ │ │ │ │ ├── plugins.pt_BR.yml │ │ │ │ │ ├── plugins.ro.yml │ │ │ │ │ ├── plugins.ru.yml │ │ │ │ │ ├── plugins.sh.yml │ │ │ │ │ ├── plugins.sq.yml │ │ │ │ │ ├── plugins.sr.yml │ │ │ │ │ ├── plugins.sv.yml │ │ │ │ │ ├── plugins.tr.yml │ │ │ │ │ ├── plugins.uk.yml │ │ │ │ │ ├── plugins.vi.yml │ │ │ │ │ ├── plugins.zh.yml │ │ │ │ │ ├── plugins.zh_TW.yml │ │ │ │ │ ├── plugins_manager.ar.yml │ │ │ │ │ ├── plugins_manager.az.yml │ │ │ │ │ ├── plugins_manager.be.yml │ │ │ │ │ ├── plugins_manager.bn.yml │ │ │ │ │ ├── plugins_manager.cs.yml │ │ │ │ │ ├── plugins_manager.da.yml │ │ │ │ │ ├── plugins_manager.de.yml │ │ │ │ │ ├── plugins_manager.de_AT.yml │ │ │ │ │ ├── plugins_manager.el.yml │ │ │ │ │ ├── plugins_manager.en.yml │ │ │ │ │ ├── plugins_manager.en_GB.yml │ │ │ │ │ ├── plugins_manager.es.yml │ │ │ │ │ ├── plugins_manager.es_AR.yml │ │ │ │ │ ├── plugins_manager.fa.yml │ │ │ │ │ ├── plugins_manager.fa_AF.yml │ │ │ │ │ ├── plugins_manager.fr.yml │ │ │ │ │ ├── plugins_manager.he.yml │ │ │ │ │ ├── plugins_manager.hr.yml │ │ │ │ │ ├── plugins_manager.hu.yml │ │ │ │ │ ├── plugins_manager.hy.yml │ │ │ │ │ ├── plugins_manager.hy_AM.yml │ │ │ │ │ ├── plugins_manager.id.yml │ │ │ │ │ ├── plugins_manager.it.yml │ │ │ │ │ ├── plugins_manager.ka.yml │ │ │ │ │ ├── plugins_manager.ko.yml │ │ │ │ │ ├── plugins_manager.ku.yml │ │ │ │ │ ├── plugins_manager.lv.yml │ │ │ │ │ ├── plugins_manager.mr.yml │ │ │ │ │ ├── plugins_manager.nb_NO.yml │ │ │ │ │ ├── plugins_manager.nl.yml │ │ │ │ │ ├── plugins_manager.pa.yml │ │ │ │ │ ├── plugins_manager.pl.yml │ │ │ │ │ ├── plugins_manager.ps.yml │ │ │ │ │ ├── plugins_manager.pt.yml │ │ │ │ │ ├── plugins_manager.pt_BR.yml │ │ │ │ │ ├── plugins_manager.ro.yml │ │ │ │ │ ├── plugins_manager.ru.yml │ │ │ │ │ ├── plugins_manager.sh.yml │ │ │ │ │ ├── plugins_manager.sq.yml │ │ │ │ │ ├── plugins_manager.sr.yml │ │ │ │ │ ├── plugins_manager.sv.yml │ │ │ │ │ ├── plugins_manager.tr.yml │ │ │ │ │ ├── plugins_manager.uk.yml │ │ │ │ │ ├── plugins_manager.vi.yml │ │ │ │ │ ├── plugins_manager.zh.yml │ │ │ │ │ ├── plugins_manager.zh_TW.yml │ │ │ │ │ ├── preview.ar.yml │ │ │ │ │ ├── preview.az.yml │ │ │ │ │ ├── preview.be.yml │ │ │ │ │ ├── preview.bn.yml │ │ │ │ │ ├── preview.cs.yml │ │ │ │ │ ├── preview.da.yml │ │ │ │ │ ├── preview.de.yml │ │ │ │ │ ├── preview.de_AT.yml │ │ │ │ │ ├── preview.el.yml │ │ │ │ │ ├── preview.en.yml │ │ │ │ │ ├── preview.en_GB.yml │ │ │ │ │ ├── preview.es.yml │ │ │ │ │ ├── preview.es_AR.yml │ │ │ │ │ ├── preview.fa.yml │ │ │ │ │ ├── preview.fa_AF.yml │ │ │ │ │ ├── preview.fr.yml │ │ │ │ │ ├── preview.he.yml │ │ │ │ │ ├── preview.hr.yml │ │ │ │ │ ├── preview.hu.yml │ │ │ │ │ ├── preview.hy.yml │ │ │ │ │ ├── preview.hy_AM.yml │ │ │ │ │ ├── preview.id.yml │ │ │ │ │ ├── preview.it.yml │ │ │ │ │ ├── preview.ka.yml │ │ │ │ │ ├── preview.ko.yml │ │ │ │ │ ├── preview.ku.yml │ │ │ │ │ ├── preview.lv.yml │ │ │ │ │ ├── preview.mr.yml │ │ │ │ │ ├── preview.nb_NO.yml │ │ │ │ │ ├── preview.nl.yml │ │ │ │ │ ├── preview.pa.yml │ │ │ │ │ ├── preview.pl.yml │ │ │ │ │ ├── preview.ps.yml │ │ │ │ │ ├── preview.pt.yml │ │ │ │ │ ├── preview.pt_BR.yml │ │ │ │ │ ├── preview.ro.yml │ │ │ │ │ ├── preview.ru.yml │ │ │ │ │ ├── preview.sh.yml │ │ │ │ │ ├── preview.sq.yml │ │ │ │ │ ├── preview.sr.yml │ │ │ │ │ ├── preview.sv.yml │ │ │ │ │ ├── preview.tr.yml │ │ │ │ │ ├── preview.uk.yml │ │ │ │ │ ├── preview.vi.yml │ │ │ │ │ ├── preview.zh.yml │ │ │ │ │ ├── preview.zh_TW.yml │ │ │ │ │ ├── pub.ar.yml │ │ │ │ │ ├── pub.az.yml │ │ │ │ │ ├── pub.be.yml │ │ │ │ │ ├── pub.bn.yml │ │ │ │ │ ├── pub.cs.yml │ │ │ │ │ ├── pub.da.yml │ │ │ │ │ ├── pub.de.yml │ │ │ │ │ ├── pub.de_AT.yml │ │ │ │ │ ├── pub.el.yml │ │ │ │ │ ├── pub.en.yml │ │ │ │ │ ├── pub.en_GB.yml │ │ │ │ │ ├── pub.es.yml │ │ │ │ │ ├── pub.es_AR.yml │ │ │ │ │ ├── pub.fa.yml │ │ │ │ │ ├── pub.fa_AF.yml │ │ │ │ │ ├── pub.fr.yml │ │ │ │ │ ├── pub.he.yml │ │ │ │ │ ├── pub.hr.yml │ │ │ │ │ ├── pub.hu.yml │ │ │ │ │ ├── pub.hy.yml │ │ │ │ │ ├── pub.hy_AM.yml │ │ │ │ │ ├── pub.id.yml │ │ │ │ │ ├── pub.it.yml │ │ │ │ │ ├── pub.ka.yml │ │ │ │ │ ├── pub.ko.yml │ │ │ │ │ ├── pub.ku.yml │ │ │ │ │ ├── pub.lv.yml │ │ │ │ │ ├── pub.mr.yml │ │ │ │ │ ├── pub.nb_NO.yml │ │ │ │ │ ├── pub.nl.yml │ │ │ │ │ ├── pub.pa.yml │ │ │ │ │ ├── pub.pl.yml │ │ │ │ │ ├── pub.ps.yml │ │ │ │ │ ├── pub.pt.yml │ │ │ │ │ ├── pub.pt_BR.yml │ │ │ │ │ ├── pub.ro.yml │ │ │ │ │ ├── pub.ru.yml │ │ │ │ │ ├── pub.sh.yml │ │ │ │ │ ├── pub.sq.yml │ │ │ │ │ ├── pub.sr.yml │ │ │ │ │ ├── pub.sv.yml │ │ │ │ │ ├── pub.tr.yml │ │ │ │ │ ├── pub.uk.yml │ │ │ │ │ ├── pub.vi.yml │ │ │ │ │ ├── pub.zh.yml │ │ │ │ │ ├── pub.zh_TW.yml │ │ │ │ │ ├── sections.ar.yml │ │ │ │ │ ├── sections.az.yml │ │ │ │ │ ├── sections.be.yml │ │ │ │ │ ├── sections.bn.yml │ │ │ │ │ ├── sections.cs.yml │ │ │ │ │ ├── sections.da.yml │ │ │ │ │ ├── sections.de.yml │ │ │ │ │ ├── sections.de_AT.yml │ │ │ │ │ ├── sections.el.yml │ │ │ │ │ ├── sections.en.yml │ │ │ │ │ ├── sections.en_GB.yml │ │ │ │ │ ├── sections.es.yml │ │ │ │ │ ├── sections.es_AR.yml │ │ │ │ │ ├── sections.fa.yml │ │ │ │ │ ├── sections.fa_AF.yml │ │ │ │ │ ├── sections.fr.yml │ │ │ │ │ ├── sections.he.yml │ │ │ │ │ ├── sections.hr.yml │ │ │ │ │ ├── sections.hu.yml │ │ │ │ │ ├── sections.hy.yml │ │ │ │ │ ├── sections.hy_AM.yml │ │ │ │ │ ├── sections.id.yml │ │ │ │ │ ├── sections.it.yml │ │ │ │ │ ├── sections.ka.yml │ │ │ │ │ ├── sections.ko.yml │ │ │ │ │ ├── sections.ku.yml │ │ │ │ │ ├── sections.lv.yml │ │ │ │ │ ├── sections.mr.yml │ │ │ │ │ ├── sections.nb_NO.yml │ │ │ │ │ ├── sections.nl.yml │ │ │ │ │ ├── sections.pa.yml │ │ │ │ │ ├── sections.pl.yml │ │ │ │ │ ├── sections.ps.yml │ │ │ │ │ ├── sections.pt.yml │ │ │ │ │ ├── sections.pt_BR.yml │ │ │ │ │ ├── sections.ro.yml │ │ │ │ │ ├── sections.ru.yml │ │ │ │ │ ├── sections.sh.yml │ │ │ │ │ ├── sections.sq.yml │ │ │ │ │ ├── sections.sr.yml │ │ │ │ │ ├── sections.sv.yml │ │ │ │ │ ├── sections.tr.yml │ │ │ │ │ ├── sections.uk.yml │ │ │ │ │ ├── sections.vi.yml │ │ │ │ │ ├── sections.zh.yml │ │ │ │ │ ├── sections.zh_TW.yml │ │ │ │ │ ├── support.ar.yml │ │ │ │ │ ├── support.az.yml │ │ │ │ │ ├── support.be.yml │ │ │ │ │ ├── support.bn.yml │ │ │ │ │ ├── support.cs.yml │ │ │ │ │ ├── support.da.yml │ │ │ │ │ ├── support.de.yml │ │ │ │ │ ├── support.de_AT.yml │ │ │ │ │ ├── support.el.yml │ │ │ │ │ ├── support.en.yml │ │ │ │ │ ├── support.en_GB.yml │ │ │ │ │ ├── support.es.yml │ │ │ │ │ ├── support.es_AR.yml │ │ │ │ │ ├── support.fa.yml │ │ │ │ │ ├── support.fa_AF.yml │ │ │ │ │ ├── support.fr.yml │ │ │ │ │ ├── support.he.yml │ │ │ │ │ ├── support.hr.yml │ │ │ │ │ ├── support.hu.yml │ │ │ │ │ ├── support.hy.yml │ │ │ │ │ ├── support.hy_AM.yml │ │ │ │ │ ├── support.id.yml │ │ │ │ │ ├── support.it.yml │ │ │ │ │ ├── support.ka.yml │ │ │ │ │ ├── support.ko.yml │ │ │ │ │ ├── support.ku.yml │ │ │ │ │ ├── support.lv.yml │ │ │ │ │ ├── support.mr.yml │ │ │ │ │ ├── support.nb_NO.yml │ │ │ │ │ ├── support.nl.yml │ │ │ │ │ ├── support.pa.yml │ │ │ │ │ ├── support.pl.yml │ │ │ │ │ ├── support.ps.yml │ │ │ │ │ ├── support.pt.yml │ │ │ │ │ ├── support.pt_BR.yml │ │ │ │ │ ├── support.ro.yml │ │ │ │ │ ├── support.ru.yml │ │ │ │ │ ├── support.sh.yml │ │ │ │ │ ├── support.sq.yml │ │ │ │ │ ├── support.sr.yml │ │ │ │ │ ├── support.sv.yml │ │ │ │ │ ├── support.tr.yml │ │ │ │ │ ├── support.uk.yml │ │ │ │ │ ├── support.vi.yml │ │ │ │ │ ├── support.zh.yml │ │ │ │ │ ├── support.zh_TW.yml │ │ │ │ │ ├── system_pref.ar.yml │ │ │ │ │ ├── system_pref.az.yml │ │ │ │ │ ├── system_pref.be.yml │ │ │ │ │ ├── system_pref.bn.yml │ │ │ │ │ ├── system_pref.cs.yml │ │ │ │ │ ├── system_pref.da.yml │ │ │ │ │ ├── system_pref.de.yml │ │ │ │ │ ├── system_pref.de_AT.yml │ │ │ │ │ ├── system_pref.el.yml │ │ │ │ │ ├── system_pref.en.yml │ │ │ │ │ ├── system_pref.en_GB.yml │ │ │ │ │ ├── system_pref.es.yml │ │ │ │ │ ├── system_pref.es_AR.yml │ │ │ │ │ ├── system_pref.fa.yml │ │ │ │ │ ├── system_pref.fa_AF.yml │ │ │ │ │ ├── system_pref.fr.yml │ │ │ │ │ ├── system_pref.he.yml │ │ │ │ │ ├── system_pref.hr.yml │ │ │ │ │ ├── system_pref.hu.yml │ │ │ │ │ ├── system_pref.hy.yml │ │ │ │ │ ├── system_pref.hy_AM.yml │ │ │ │ │ ├── system_pref.id.yml │ │ │ │ │ ├── system_pref.it.yml │ │ │ │ │ ├── system_pref.ka.yml │ │ │ │ │ ├── system_pref.ko.yml │ │ │ │ │ ├── system_pref.ku.yml │ │ │ │ │ ├── system_pref.lv.yml │ │ │ │ │ ├── system_pref.mr.yml │ │ │ │ │ ├── system_pref.nb_NO.yml │ │ │ │ │ ├── system_pref.nl.yml │ │ │ │ │ ├── system_pref.pa.yml │ │ │ │ │ ├── system_pref.pl.yml │ │ │ │ │ ├── system_pref.ps.yml │ │ │ │ │ ├── system_pref.pt.yml │ │ │ │ │ ├── system_pref.pt_BR.yml │ │ │ │ │ ├── system_pref.ro.yml │ │ │ │ │ ├── system_pref.ru.yml │ │ │ │ │ ├── system_pref.sh.yml │ │ │ │ │ ├── system_pref.sq.yml │ │ │ │ │ ├── system_pref.sr.yml │ │ │ │ │ ├── system_pref.sv.yml │ │ │ │ │ ├── system_pref.tr.yml │ │ │ │ │ ├── system_pref.uk.yml │ │ │ │ │ ├── system_pref.vi.yml │ │ │ │ │ ├── system_pref.zh.yml │ │ │ │ │ ├── system_pref.zh_TW.yml │ │ │ │ │ ├── themes.ar.yml │ │ │ │ │ ├── themes.az.yml │ │ │ │ │ ├── themes.be.yml │ │ │ │ │ ├── themes.bn.yml │ │ │ │ │ ├── themes.cs.yml │ │ │ │ │ ├── themes.da.yml │ │ │ │ │ ├── themes.de.yml │ │ │ │ │ ├── themes.de_AT.yml │ │ │ │ │ ├── themes.el.yml │ │ │ │ │ ├── themes.en.yml │ │ │ │ │ ├── themes.en_GB.yml │ │ │ │ │ ├── themes.es.yml │ │ │ │ │ ├── themes.es_AR.yml │ │ │ │ │ ├── themes.fa.yml │ │ │ │ │ ├── themes.fa_AF.yml │ │ │ │ │ ├── themes.fr.yml │ │ │ │ │ ├── themes.he.yml │ │ │ │ │ ├── themes.hr.yml │ │ │ │ │ ├── themes.hu.yml │ │ │ │ │ ├── themes.hy.yml │ │ │ │ │ ├── themes.hy_AM.yml │ │ │ │ │ ├── themes.id.yml │ │ │ │ │ ├── themes.it.yml │ │ │ │ │ ├── themes.ka.yml │ │ │ │ │ ├── themes.ko.yml │ │ │ │ │ ├── themes.ku.yml │ │ │ │ │ ├── themes.lv.yml │ │ │ │ │ ├── themes.mr.yml │ │ │ │ │ ├── themes.nb_NO.yml │ │ │ │ │ ├── themes.nl.yml │ │ │ │ │ ├── themes.pa.yml │ │ │ │ │ ├── themes.pl.yml │ │ │ │ │ ├── themes.ps.yml │ │ │ │ │ ├── themes.pt.yml │ │ │ │ │ ├── themes.pt_BR.yml │ │ │ │ │ ├── themes.ro.yml │ │ │ │ │ ├── themes.ru.yml │ │ │ │ │ ├── themes.sh.yml │ │ │ │ │ ├── themes.sq.yml │ │ │ │ │ ├── themes.sr.yml │ │ │ │ │ ├── themes.sv.yml │ │ │ │ │ ├── themes.tr.yml │ │ │ │ │ ├── themes.uk.yml │ │ │ │ │ ├── themes.vi.yml │ │ │ │ │ ├── themes.zh.yml │ │ │ │ │ ├── themes.zh_TW.yml │ │ │ │ │ ├── tiny_media_plugin.ar.yml │ │ │ │ │ ├── tiny_media_plugin.az.yml │ │ │ │ │ ├── tiny_media_plugin.be.yml │ │ │ │ │ ├── tiny_media_plugin.bn.yml │ │ │ │ │ ├── tiny_media_plugin.cs.yml │ │ │ │ │ ├── tiny_media_plugin.da.yml │ │ │ │ │ ├── tiny_media_plugin.de.yml │ │ │ │ │ ├── tiny_media_plugin.de_AT.yml │ │ │ │ │ ├── tiny_media_plugin.el.yml │ │ │ │ │ ├── tiny_media_plugin.en.yml │ │ │ │ │ ├── tiny_media_plugin.en_GB.yml │ │ │ │ │ ├── tiny_media_plugin.es.yml │ │ │ │ │ ├── tiny_media_plugin.es_AR.yml │ │ │ │ │ ├── tiny_media_plugin.fa.yml │ │ │ │ │ ├── tiny_media_plugin.fa_AF.yml │ │ │ │ │ ├── tiny_media_plugin.fr.yml │ │ │ │ │ ├── tiny_media_plugin.he.yml │ │ │ │ │ ├── tiny_media_plugin.hr.yml │ │ │ │ │ ├── tiny_media_plugin.hu.yml │ │ │ │ │ ├── tiny_media_plugin.hy.yml │ │ │ │ │ ├── tiny_media_plugin.hy_AM.yml │ │ │ │ │ ├── tiny_media_plugin.id.yml │ │ │ │ │ ├── tiny_media_plugin.it.yml │ │ │ │ │ ├── tiny_media_plugin.ka.yml │ │ │ │ │ ├── tiny_media_plugin.ko.yml │ │ │ │ │ ├── tiny_media_plugin.ku.yml │ │ │ │ │ ├── tiny_media_plugin.lv.yml │ │ │ │ │ ├── tiny_media_plugin.mr.yml │ │ │ │ │ ├── tiny_media_plugin.nb_NO.yml │ │ │ │ │ ├── tiny_media_plugin.nl.yml │ │ │ │ │ ├── tiny_media_plugin.pa.yml │ │ │ │ │ ├── tiny_media_plugin.pl.yml │ │ │ │ │ ├── tiny_media_plugin.ps.yml │ │ │ │ │ ├── tiny_media_plugin.pt.yml │ │ │ │ │ ├── tiny_media_plugin.pt_BR.yml │ │ │ │ │ ├── tiny_media_plugin.ro.yml │ │ │ │ │ ├── tiny_media_plugin.ru.yml │ │ │ │ │ ├── tiny_media_plugin.sh.yml │ │ │ │ │ ├── tiny_media_plugin.sq.yml │ │ │ │ │ ├── tiny_media_plugin.sr.yml │ │ │ │ │ ├── tiny_media_plugin.sv.yml │ │ │ │ │ ├── tiny_media_plugin.tr.yml │ │ │ │ │ ├── tiny_media_plugin.uk.yml │ │ │ │ │ ├── tiny_media_plugin.vi.yml │ │ │ │ │ ├── tiny_media_plugin.zh.yml │ │ │ │ │ ├── tiny_media_plugin.zh_TW.yml │ │ │ │ │ ├── topics.ar.yml │ │ │ │ │ ├── topics.az.yml │ │ │ │ │ ├── topics.be.yml │ │ │ │ │ ├── topics.bn.yml │ │ │ │ │ ├── topics.cs.yml │ │ │ │ │ ├── topics.da.yml │ │ │ │ │ ├── topics.de.yml │ │ │ │ │ ├── topics.de_AT.yml │ │ │ │ │ ├── topics.el.yml │ │ │ │ │ ├── topics.en.yml │ │ │ │ │ ├── topics.en_GB.yml │ │ │ │ │ ├── topics.es.yml │ │ │ │ │ ├── topics.es_AR.yml │ │ │ │ │ ├── topics.fa.yml │ │ │ │ │ ├── topics.fa_AF.yml │ │ │ │ │ ├── topics.fr.yml │ │ │ │ │ ├── topics.he.yml │ │ │ │ │ ├── topics.hr.yml │ │ │ │ │ ├── topics.hu.yml │ │ │ │ │ ├── topics.hy.yml │ │ │ │ │ ├── topics.hy_AM.yml │ │ │ │ │ ├── topics.id.yml │ │ │ │ │ ├── topics.it.yml │ │ │ │ │ ├── topics.ka.yml │ │ │ │ │ ├── topics.ko.yml │ │ │ │ │ ├── topics.ku.yml │ │ │ │ │ ├── topics.lv.yml │ │ │ │ │ ├── topics.mr.yml │ │ │ │ │ ├── topics.nb_NO.yml │ │ │ │ │ ├── topics.nl.yml │ │ │ │ │ ├── topics.pa.yml │ │ │ │ │ ├── topics.pl.yml │ │ │ │ │ ├── topics.ps.yml │ │ │ │ │ ├── topics.pt.yml │ │ │ │ │ ├── topics.pt_BR.yml │ │ │ │ │ ├── topics.ro.yml │ │ │ │ │ ├── topics.ru.yml │ │ │ │ │ ├── topics.sh.yml │ │ │ │ │ ├── topics.sq.yml │ │ │ │ │ ├── topics.sr.yml │ │ │ │ │ ├── topics.sv.yml │ │ │ │ │ ├── topics.tr.yml │ │ │ │ │ ├── topics.uk.yml │ │ │ │ │ ├── topics.vi.yml │ │ │ │ │ ├── topics.zh.yml │ │ │ │ │ ├── topics.zh_TW.yml │ │ │ │ │ ├── user_subscription_sections.ar.yml │ │ │ │ │ ├── user_subscription_sections.az.yml │ │ │ │ │ ├── user_subscription_sections.be.yml │ │ │ │ │ ├── user_subscription_sections.bn.yml │ │ │ │ │ ├── user_subscription_sections.cs.yml │ │ │ │ │ ├── user_subscription_sections.da.yml │ │ │ │ │ ├── user_subscription_sections.de.yml │ │ │ │ │ ├── user_subscription_sections.de_AT.yml │ │ │ │ │ ├── user_subscription_sections.el.yml │ │ │ │ │ ├── user_subscription_sections.en.yml │ │ │ │ │ ├── user_subscription_sections.en_GB.yml │ │ │ │ │ ├── user_subscription_sections.es.yml │ │ │ │ │ ├── user_subscription_sections.es_AR.yml │ │ │ │ │ ├── user_subscription_sections.fa.yml │ │ │ │ │ ├── user_subscription_sections.fa_AF.yml │ │ │ │ │ ├── user_subscription_sections.fr.yml │ │ │ │ │ ├── user_subscription_sections.he.yml │ │ │ │ │ ├── user_subscription_sections.hr.yml │ │ │ │ │ ├── user_subscription_sections.hu.yml │ │ │ │ │ ├── user_subscription_sections.hy.yml │ │ │ │ │ ├── user_subscription_sections.hy_AM.yml │ │ │ │ │ ├── user_subscription_sections.id.yml │ │ │ │ │ ├── user_subscription_sections.it.yml │ │ │ │ │ ├── user_subscription_sections.ka.yml │ │ │ │ │ ├── user_subscription_sections.ko.yml │ │ │ │ │ ├── user_subscription_sections.ku.yml │ │ │ │ │ ├── user_subscription_sections.lv.yml │ │ │ │ │ ├── user_subscription_sections.mr.yml │ │ │ │ │ ├── user_subscription_sections.nb_NO.yml │ │ │ │ │ ├── user_subscription_sections.nl.yml │ │ │ │ │ ├── user_subscription_sections.pa.yml │ │ │ │ │ ├── user_subscription_sections.pl.yml │ │ │ │ │ ├── user_subscription_sections.ps.yml │ │ │ │ │ ├── user_subscription_sections.pt.yml │ │ │ │ │ ├── user_subscription_sections.pt_BR.yml │ │ │ │ │ ├── user_subscription_sections.ro.yml │ │ │ │ │ ├── user_subscription_sections.ru.yml │ │ │ │ │ ├── user_subscription_sections.sh.yml │ │ │ │ │ ├── user_subscription_sections.sq.yml │ │ │ │ │ ├── user_subscription_sections.sr.yml │ │ │ │ │ ├── user_subscription_sections.sv.yml │ │ │ │ │ ├── user_subscription_sections.tr.yml │ │ │ │ │ ├── user_subscription_sections.uk.yml │ │ │ │ │ ├── user_subscription_sections.vi.yml │ │ │ │ │ ├── user_subscription_sections.zh.yml │ │ │ │ │ ├── user_subscription_sections.zh_TW.yml │ │ │ │ │ ├── user_subscriptions.ar.yml │ │ │ │ │ ├── user_subscriptions.az.yml │ │ │ │ │ ├── user_subscriptions.be.yml │ │ │ │ │ ├── user_subscriptions.bn.yml │ │ │ │ │ ├── user_subscriptions.cs.yml │ │ │ │ │ ├── user_subscriptions.da.yml │ │ │ │ │ ├── user_subscriptions.de.yml │ │ │ │ │ ├── user_subscriptions.de_AT.yml │ │ │ │ │ ├── user_subscriptions.el.yml │ │ │ │ │ ├── user_subscriptions.en.yml │ │ │ │ │ ├── user_subscriptions.en_GB.yml │ │ │ │ │ ├── user_subscriptions.es.yml │ │ │ │ │ ├── user_subscriptions.es_AR.yml │ │ │ │ │ ├── user_subscriptions.fa.yml │ │ │ │ │ ├── user_subscriptions.fa_AF.yml │ │ │ │ │ ├── user_subscriptions.fr.yml │ │ │ │ │ ├── user_subscriptions.he.yml │ │ │ │ │ ├── user_subscriptions.hr.yml │ │ │ │ │ ├── user_subscriptions.hu.yml │ │ │ │ │ ├── user_subscriptions.hy.yml │ │ │ │ │ ├── user_subscriptions.hy_AM.yml │ │ │ │ │ ├── user_subscriptions.id.yml │ │ │ │ │ ├── user_subscriptions.it.yml │ │ │ │ │ ├── user_subscriptions.ka.yml │ │ │ │ │ ├── user_subscriptions.ko.yml │ │ │ │ │ ├── user_subscriptions.ku.yml │ │ │ │ │ ├── user_subscriptions.lv.yml │ │ │ │ │ ├── user_subscriptions.mr.yml │ │ │ │ │ ├── user_subscriptions.nb_NO.yml │ │ │ │ │ ├── user_subscriptions.nl.yml │ │ │ │ │ ├── user_subscriptions.pa.yml │ │ │ │ │ ├── user_subscriptions.pl.yml │ │ │ │ │ ├── user_subscriptions.ps.yml │ │ │ │ │ ├── user_subscriptions.pt.yml │ │ │ │ │ ├── user_subscriptions.pt_BR.yml │ │ │ │ │ ├── user_subscriptions.ro.yml │ │ │ │ │ ├── user_subscriptions.ru.yml │ │ │ │ │ ├── user_subscriptions.sh.yml │ │ │ │ │ ├── user_subscriptions.sq.yml │ │ │ │ │ ├── user_subscriptions.sr.yml │ │ │ │ │ ├── user_subscriptions.sv.yml │ │ │ │ │ ├── user_subscriptions.tr.yml │ │ │ │ │ ├── user_subscriptions.uk.yml │ │ │ │ │ ├── user_subscriptions.vi.yml │ │ │ │ │ ├── user_subscriptions.zh.yml │ │ │ │ │ ├── user_subscriptions.zh_TW.yml │ │ │ │ │ ├── user_types.ar.yml │ │ │ │ │ ├── user_types.az.yml │ │ │ │ │ ├── user_types.be.yml │ │ │ │ │ ├── user_types.bn.yml │ │ │ │ │ ├── user_types.cs.yml │ │ │ │ │ ├── user_types.da.yml │ │ │ │ │ ├── user_types.de.yml │ │ │ │ │ ├── user_types.de_AT.yml │ │ │ │ │ ├── user_types.el.yml │ │ │ │ │ ├── user_types.en.yml │ │ │ │ │ ├── user_types.en_GB.yml │ │ │ │ │ ├── user_types.es.yml │ │ │ │ │ ├── user_types.es_AR.yml │ │ │ │ │ ├── user_types.fa.yml │ │ │ │ │ ├── user_types.fa_AF.yml │ │ │ │ │ ├── user_types.fr.yml │ │ │ │ │ ├── user_types.he.yml │ │ │ │ │ ├── user_types.hr.yml │ │ │ │ │ ├── user_types.hu.yml │ │ │ │ │ ├── user_types.hy.yml │ │ │ │ │ ├── user_types.hy_AM.yml │ │ │ │ │ ├── user_types.id.yml │ │ │ │ │ ├── user_types.it.yml │ │ │ │ │ ├── user_types.ka.yml │ │ │ │ │ ├── user_types.ko.yml │ │ │ │ │ ├── user_types.ku.yml │ │ │ │ │ ├── user_types.lv.yml │ │ │ │ │ ├── user_types.mr.yml │ │ │ │ │ ├── user_types.nb_NO.yml │ │ │ │ │ ├── user_types.nl.yml │ │ │ │ │ ├── user_types.pa.yml │ │ │ │ │ ├── user_types.pl.yml │ │ │ │ │ ├── user_types.ps.yml │ │ │ │ │ ├── user_types.pt.yml │ │ │ │ │ ├── user_types.pt_BR.yml │ │ │ │ │ ├── user_types.ro.yml │ │ │ │ │ ├── user_types.ru.yml │ │ │ │ │ ├── user_types.sh.yml │ │ │ │ │ ├── user_types.sq.yml │ │ │ │ │ ├── user_types.sr.yml │ │ │ │ │ ├── user_types.sv.yml │ │ │ │ │ ├── user_types.tr.yml │ │ │ │ │ ├── user_types.uk.yml │ │ │ │ │ ├── user_types.vi.yml │ │ │ │ │ ├── user_types.zh.yml │ │ │ │ │ ├── user_types.zh_TW.yml │ │ │ │ │ ├── users.ar.yml │ │ │ │ │ ├── users.az.yml │ │ │ │ │ ├── users.be.yml │ │ │ │ │ ├── users.bn.yml │ │ │ │ │ ├── users.cs.yml │ │ │ │ │ ├── users.da.yml │ │ │ │ │ ├── users.de.yml │ │ │ │ │ ├── users.de_AT.yml │ │ │ │ │ ├── users.el.yml │ │ │ │ │ ├── users.en.yml │ │ │ │ │ ├── users.en_GB.yml │ │ │ │ │ ├── users.es.yml │ │ │ │ │ ├── users.es_AR.yml │ │ │ │ │ ├── users.fa.yml │ │ │ │ │ ├── users.fa_AF.yml │ │ │ │ │ ├── users.fr.yml │ │ │ │ │ ├── users.he.yml │ │ │ │ │ ├── users.hr.yml │ │ │ │ │ ├── users.hu.yml │ │ │ │ │ ├── users.hy.yml │ │ │ │ │ ├── users.hy_AM.yml │ │ │ │ │ ├── users.id.yml │ │ │ │ │ ├── users.it.yml │ │ │ │ │ ├── users.ka.yml │ │ │ │ │ ├── users.ko.yml │ │ │ │ │ ├── users.ku.yml │ │ │ │ │ ├── users.lv.yml │ │ │ │ │ ├── users.mr.yml │ │ │ │ │ ├── users.nb_NO.yml │ │ │ │ │ ├── users.nl.yml │ │ │ │ │ ├── users.pa.yml │ │ │ │ │ ├── users.pl.yml │ │ │ │ │ ├── users.ps.yml │ │ │ │ │ ├── users.pt.yml │ │ │ │ │ ├── users.pt_BR.yml │ │ │ │ │ ├── users.ro.yml │ │ │ │ │ ├── users.ru.yml │ │ │ │ │ ├── users.sh.yml │ │ │ │ │ ├── users.sq.yml │ │ │ │ │ ├── users.sr.yml │ │ │ │ │ ├── users.sv.yml │ │ │ │ │ ├── users.tr.yml │ │ │ │ │ ├── users.uk.yml │ │ │ │ │ ├── users.vi.yml │ │ │ │ │ ├── users.zh.yml │ │ │ │ │ ├── users.zh_TW.yml │ │ │ │ │ ├── validators.ar.yml │ │ │ │ │ ├── validators.az.yml │ │ │ │ │ ├── validators.be.yml │ │ │ │ │ ├── validators.bn.yml │ │ │ │ │ ├── validators.cs.yml │ │ │ │ │ ├── validators.da.yml │ │ │ │ │ ├── validators.de.yml │ │ │ │ │ ├── validators.de_AT.yml │ │ │ │ │ ├── validators.el.yml │ │ │ │ │ ├── validators.en.yml │ │ │ │ │ ├── validators.en_GB.yml │ │ │ │ │ ├── validators.es.yml │ │ │ │ │ ├── validators.es_AR.yml │ │ │ │ │ ├── validators.fa.yml │ │ │ │ │ ├── validators.fa_AF.yml │ │ │ │ │ ├── validators.fr.yml │ │ │ │ │ ├── validators.he.yml │ │ │ │ │ ├── validators.hr.yml │ │ │ │ │ ├── validators.hu.yml │ │ │ │ │ ├── validators.hy.yml │ │ │ │ │ ├── validators.hy_AM.yml │ │ │ │ │ ├── validators.id.yml │ │ │ │ │ ├── validators.it.yml │ │ │ │ │ ├── validators.ka.yml │ │ │ │ │ ├── validators.ko.yml │ │ │ │ │ ├── validators.ku.yml │ │ │ │ │ ├── validators.lv.yml │ │ │ │ │ ├── validators.mr.yml │ │ │ │ │ ├── validators.nb_NO.yml │ │ │ │ │ ├── validators.nl.yml │ │ │ │ │ ├── validators.pa.yml │ │ │ │ │ ├── validators.pl.yml │ │ │ │ │ ├── validators.ps.yml │ │ │ │ │ ├── validators.pt.yml │ │ │ │ │ ├── validators.pt_BR.yml │ │ │ │ │ ├── validators.ro.yml │ │ │ │ │ ├── validators.ru.yml │ │ │ │ │ ├── validators.sh.yml │ │ │ │ │ ├── validators.sq.yml │ │ │ │ │ ├── validators.sr.yml │ │ │ │ │ ├── validators.sv.yml │ │ │ │ │ ├── validators.tr.yml │ │ │ │ │ ├── validators.uk.yml │ │ │ │ │ ├── validators.vi.yml │ │ │ │ │ ├── validators.zh.yml │ │ │ │ │ └── validators.zh_TW.yml │ │ │ │ └── views/ │ │ │ │ ├── BackendArticleImages/ │ │ │ │ │ └── edit.html.twig │ │ │ │ ├── BackendJournalistDashboard/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── BackendPublications/ │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ └── remove.html.twig │ │ │ │ ├── Comments/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Exception/ │ │ │ │ │ └── exception.html.twig │ │ │ │ ├── Images/ │ │ │ │ │ ├── createFilter.html.twig │ │ │ │ │ └── filterOptions.html.twig │ │ │ │ ├── Menu/ │ │ │ │ │ └── knp_menu.html.twig │ │ │ │ ├── Pagination/ │ │ │ │ │ └── pagination_bootstrap3.html.twig │ │ │ │ ├── PasswordRecovery/ │ │ │ │ │ ├── check.html.twig │ │ │ │ │ ├── email.txt.twig │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Playlists/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Plugins/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Security/ │ │ │ │ │ └── login.html.twig │ │ │ │ ├── SystemPref/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Topics/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── Users/ │ │ │ │ │ └── index.html.twig │ │ │ │ ├── admin_layout.html.twig │ │ │ │ ├── admin_menu.html.twig │ │ │ │ ├── form_fields.html.twig │ │ │ │ ├── forms.html.twig │ │ │ │ └── tooltip.html.twig │ │ │ ├── Routing/ │ │ │ │ └── PluginsLoader.php │ │ │ ├── Security/ │ │ │ │ ├── Encoder/ │ │ │ │ │ └── NewscoopPasswordEncoder.php │ │ │ │ ├── Http/ │ │ │ │ │ └── Authentication/ │ │ │ │ │ ├── AbstractAuthenticationHandler.php │ │ │ │ │ ├── AbstractLogoutHandler.php │ │ │ │ │ ├── AuthenticationFailedHandler.php │ │ │ │ │ ├── AuthenticationFrontendSuccessHandler.php │ │ │ │ │ ├── AuthenticationSuccessHandler.php │ │ │ │ │ ├── FrontendLogoutSuccessHandler.php │ │ │ │ │ ├── InteractiveDoctrineAuthService.php │ │ │ │ │ ├── InteractiveLogin.php │ │ │ │ │ ├── LogoutSuccessHandler.php │ │ │ │ │ ├── OAuthLogoutSuccessHandler.php │ │ │ │ │ └── OAuthSuccessHandler.php │ │ │ │ └── User/ │ │ │ │ └── SimpleUserProvider.php │ │ │ ├── Services/ │ │ │ │ ├── SystemPreferencesService.php │ │ │ │ └── TopicService.php │ │ │ ├── Session/ │ │ │ │ └── Storage.php │ │ │ ├── Tests/ │ │ │ │ └── Controller/ │ │ │ │ └── DefaultControllerTest.php │ │ │ └── Twig/ │ │ │ ├── IncludeAsVerbatimExtension.php │ │ │ └── NewscoopExtension.php │ │ ├── PluginGeneratorBundle/ │ │ │ ├── Command/ │ │ │ │ ├── GeneratePluginBundleCommand.php │ │ │ │ ├── GeneratorPluginCommand.php │ │ │ │ └── Validators.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── Configuration.php │ │ │ │ └── NewscoopPluginGeneratorExtension.php │ │ │ ├── Generator/ │ │ │ │ ├── BundleGenerator.php │ │ │ │ └── Generator.php │ │ │ ├── NewscoopPluginGeneratorBundle.php │ │ │ ├── Resources/ │ │ │ │ ├── config/ │ │ │ │ │ ├── routing.yml │ │ │ │ │ └── services.yml │ │ │ │ ├── skeleton/ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ ├── AdminController.php.twig │ │ │ │ │ │ ├── Bundle.php.twig │ │ │ │ │ │ ├── Configuration.php.twig │ │ │ │ │ │ ├── ConfigurationMenuListener.php.twig │ │ │ │ │ │ ├── DefaultController.php.twig │ │ │ │ │ │ ├── DefaultControllerTest.php.twig │ │ │ │ │ │ ├── Extension.php.twig │ │ │ │ │ │ ├── LifecycleSubscriber.php.twig │ │ │ │ │ │ ├── admin.index.html.twig.twig │ │ │ │ │ │ ├── composer.json.twig │ │ │ │ │ │ ├── index.html.twig.twig │ │ │ │ │ │ ├── messages.fr.xlf │ │ │ │ │ │ ├── routing.php.twig │ │ │ │ │ │ ├── routing.xml.twig │ │ │ │ │ │ ├── routing.yml.twig │ │ │ │ │ │ ├── services.php.twig │ │ │ │ │ │ ├── services.xml.twig │ │ │ │ │ │ └── services.yml.twig │ │ │ │ │ ├── controller/ │ │ │ │ │ │ ├── Controller.php.twig │ │ │ │ │ │ ├── ControllerTest.php.twig │ │ │ │ │ │ ├── Template.html.php.twig │ │ │ │ │ │ └── Template.html.twig.twig │ │ │ │ │ ├── crud/ │ │ │ │ │ │ ├── actions/ │ │ │ │ │ │ │ ├── create.php.twig │ │ │ │ │ │ │ ├── delete.php.twig │ │ │ │ │ │ │ ├── edit.php.twig │ │ │ │ │ │ │ ├── index.php.twig │ │ │ │ │ │ │ ├── new.php.twig │ │ │ │ │ │ │ ├── show.php.twig │ │ │ │ │ │ │ └── update.php.twig │ │ │ │ │ │ ├── config/ │ │ │ │ │ │ │ ├── routing.php.twig │ │ │ │ │ │ │ ├── routing.xml.twig │ │ │ │ │ │ │ └── routing.yml.twig │ │ │ │ │ │ ├── controller.php.twig │ │ │ │ │ │ ├── tests/ │ │ │ │ │ │ │ ├── others/ │ │ │ │ │ │ │ │ ├── full_scenario.php.twig │ │ │ │ │ │ │ │ └── short_scenario.php.twig │ │ │ │ │ │ │ └── test.php.twig │ │ │ │ │ │ └── views/ │ │ │ │ │ │ ├── edit.html.twig.twig │ │ │ │ │ │ ├── index.html.twig.twig │ │ │ │ │ │ ├── new.html.twig.twig │ │ │ │ │ │ ├── others/ │ │ │ │ │ │ │ ├── actions.html.twig.twig │ │ │ │ │ │ │ └── record_actions.html.twig.twig │ │ │ │ │ │ └── show.html.twig.twig │ │ │ │ │ └── form/ │ │ │ │ │ └── FormType.php.twig │ │ │ │ └── views/ │ │ │ │ └── Default/ │ │ │ │ └── index.html.twig │ │ │ └── Tests/ │ │ │ └── Controller/ │ │ │ └── DefaultControllerTest.php │ │ └── ZendBridgeBundle/ │ │ ├── Controller/ │ │ │ └── BridgeController.php │ │ ├── DependencyInjection/ │ │ │ ├── Configuration.php │ │ │ └── NewscoopZendBridgeExtension.php │ │ ├── EventListener/ │ │ │ └── ZendApplicationListener.php │ │ ├── NewscoopZendBridgeBundle.php │ │ └── Resources/ │ │ └── config/ │ │ ├── routing.yml │ │ └── services.yml │ ├── template_engine/ │ │ ├── classes/ │ │ │ ├── ArticleAttachmentsList.php │ │ │ ├── ArticleAuthorsList.php │ │ │ ├── ArticleCommentsList.php │ │ │ ├── ArticleImagesList.php │ │ │ ├── ArticleLocationsList.php │ │ │ ├── ArticleTopicsList.php │ │ │ ├── ArticlesList.php │ │ │ ├── BoxArticlesList.php │ │ │ ├── CampConfig.php │ │ │ ├── CampContext.php │ │ │ ├── CampGetImage.php │ │ │ ├── CampHTMLDocument.php │ │ │ ├── CampRequest.php │ │ │ ├── CampSession.php │ │ │ ├── CampSite.php │ │ │ ├── CampSystem.php │ │ │ ├── CampTemplate.php │ │ │ ├── CampURI.php │ │ │ ├── CampURIShortNames.php │ │ │ ├── CampURITemplatePath.php │ │ │ ├── CampVersion.php │ │ │ ├── Captcha.php │ │ │ ├── ComparisonOperation.php │ │ │ ├── Exceptions.php │ │ │ ├── ImagesList.php │ │ │ ├── IssuesList.php │ │ │ ├── LanguagesList.php │ │ │ ├── ListObject.php │ │ │ ├── MapArticlesList.php │ │ │ ├── MapLocationsList.php │ │ │ ├── Operator.php │ │ │ ├── PlaylistList.php │ │ │ ├── SearchResultsList.php │ │ │ ├── SearchResultsSolrList.php │ │ │ ├── SectionAuthorsList.php │ │ │ ├── SectionsList.php │ │ │ ├── SubtitlesList.php │ │ │ ├── SubtopicsList.php │ │ │ ├── SyntaxError.php │ │ │ ├── UserCommentsList.php │ │ │ └── UsersList.php │ │ └── metaclasses/ │ │ ├── MetaAction.php │ │ ├── MetaActionLogin.php │ │ ├── MetaActionPreview_Comment.php │ │ ├── MetaActionSearch_Articles.php │ │ ├── MetaActionSubmit_Comment.php │ │ ├── MetaArticle.php │ │ ├── MetaArticleBodyField.php │ │ ├── MetaArticleDatetime.php │ │ ├── MetaArticleSlideshowList.php │ │ ├── MetaAttachment.php │ │ ├── MetaAuthor.php │ │ ├── MetaAuthorBiography.php │ │ ├── MetaBoolean.php │ │ ├── MetaComment.php │ │ ├── MetaDate.php │ │ ├── MetaDatetime.php │ │ ├── MetaDbObject.php │ │ ├── MetaEntity.php │ │ ├── MetaImage.php │ │ ├── MetaInteger.php │ │ ├── MetaIssue.php │ │ ├── MetaLanguage.php │ │ ├── MetaMap.php │ │ ├── MetaMapLocation.php │ │ ├── MetaMapLocationMultimedia.php │ │ ├── MetaOrder.php │ │ ├── MetaPlaylist.php │ │ ├── MetaPublication.php │ │ ├── MetaSection.php │ │ ├── MetaSlideshow.php │ │ ├── MetaSlideshowItem.php │ │ ├── MetaSlideshowItemList.php │ │ ├── MetaString.php │ │ ├── MetaSubscription.php │ │ ├── MetaSubscriptions.php │ │ ├── MetaSubtitle.php │ │ ├── MetaSwitch.php │ │ ├── MetaTemplate.php │ │ ├── MetaTime.php │ │ ├── MetaTopic.php │ │ ├── MetaURL.php │ │ └── MetaUser.php │ ├── themes/ │ │ └── system_templates/ │ │ ├── _campsite_error.tpl │ │ ├── _campsite_message.tpl │ │ ├── _campsite_offline.tpl │ │ ├── _events_notifier.tpl │ │ ├── _feed/ │ │ │ └── default.tpl │ │ ├── _pagination/ │ │ │ ├── twitter_bootstrap_v2_pagination.tpl │ │ │ └── twitter_bootstrap_v3_pagination.tpl │ │ ├── _subscription_notifier.tpl │ │ ├── css/ │ │ │ ├── _style_offline.css │ │ │ └── main.css │ │ ├── editor_image.tpl │ │ ├── oauth_authorize.tpl │ │ ├── oauth_login.tpl │ │ └── oauth_result.tpl │ └── upgrade.php ├── old_features/ │ ├── 0_endpoints.feature.unfinished │ ├── 10_images.feature │ ├── 11_attachments.feature │ ├── 12_snippet.feature │ ├── 1_article.feature │ ├── 2_author.feature │ ├── 3_comments.feature │ ├── 4_user.feature │ ├── 5_topic.feature │ ├── 6_slideshow.feature │ ├── 7_section.feature │ ├── 8_articles_lists.feature │ ├── 99_functions.feature │ └── bootstrap/ │ ├── FeatureContext.php │ └── PublicationListener.php ├── phpspec.yml └── spec/ └── Newscoop/ ├── Gimme/ │ └── PaginatorServiceSpec.php ├── GimmeBundle/ │ ├── Controller/ │ │ ├── ArticlesControllerSpec.php │ │ ├── EditorialCommentsApiControllerSpec.php │ │ ├── SlideshowsControllerSpec.php │ │ ├── TopicsControllerSpec.php │ │ └── UserTopicsControllerSpec.php │ ├── EventListener/ │ │ └── HookListenerSpec.php │ ├── Serializer/ │ │ └── Topic/ │ │ └── TopicPathHandlerSpec.php │ └── Services/ │ └── EditorialCommentsServiceSpec.php ├── Image/ │ └── ImageServiceSpec.php ├── Installer/ │ └── Services/ │ └── BootstrapServiceSpec.php ├── NewscoopBundle/ │ ├── Controller/ │ │ ├── BackendPublicationsControllerSpec.php │ │ └── TopicsControllerSpec.php │ └── EventListener/ │ └── IssueListenerSpec.php └── Services/ ├── ArticleServiceSpec.php ├── AttachmentServiceSpec.php ├── CommentServiceSpec.php ├── EditorServiceSpec.php ├── IssueServiceSpec.php ├── RelatedArticlesServiceSpec.php └── ThemesServiceSpec.php