├── .bowerrc ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── PRIVACY.md ├── README.md ├── SECURITY.md ├── config.example.js ├── content ├── apps │ └── README.md ├── data │ └── README.md ├── images │ └── README.md └── storage │ └── qiniu-store │ └── index.js ├── core ├── client │ ├── .ember-cli │ ├── .gitignore │ ├── .jshintrc │ ├── Brocfile.js │ ├── app │ │ ├── README.md │ │ ├── _config.yml │ │ ├── adapters │ │ │ ├── application.js │ │ │ ├── base.js │ │ │ ├── embedded-relation-adapter.js │ │ │ ├── setting.js │ │ │ └── user.js │ │ ├── app.js │ │ ├── assets │ │ │ └── lib │ │ │ │ └── uploader.js │ │ ├── components │ │ │ ├── gh-activating-list-item.js │ │ │ ├── gh-blog-url.js │ │ │ ├── gh-cm-editor.js │ │ │ ├── gh-dropdown-button.js │ │ │ ├── gh-dropdown.js │ │ │ ├── gh-ed-editor.js │ │ │ ├── gh-ed-preview.js │ │ │ ├── gh-file-upload.js │ │ │ ├── gh-form.js │ │ │ ├── gh-input.js │ │ │ ├── gh-modal-dialog.js │ │ │ ├── gh-navitem-url-input.js │ │ │ ├── gh-navitem.js │ │ │ ├── gh-notification.js │ │ │ ├── gh-notifications.js │ │ │ ├── gh-popover-button.js │ │ │ ├── gh-popover.js │ │ │ ├── gh-role-selector.js │ │ │ ├── gh-select.js │ │ │ ├── gh-tab-pane.js │ │ │ ├── gh-tab.js │ │ │ ├── gh-tabs-manager.js │ │ │ ├── gh-textarea.js │ │ │ ├── gh-trim-focus-input.js │ │ │ ├── gh-upload-modal.js │ │ │ ├── gh-uploader.js │ │ │ └── gh-url-preview.js │ │ ├── controllers │ │ │ ├── application.js │ │ │ ├── editor │ │ │ │ ├── edit.js │ │ │ │ └── new.js │ │ │ ├── error.js │ │ │ ├── feature.js │ │ │ ├── forgotten.js │ │ │ ├── modals │ │ │ │ ├── copy-html.js │ │ │ │ ├── delete-all.js │ │ │ │ ├── delete-post.js │ │ │ │ ├── delete-tag.js │ │ │ │ ├── delete-user.js │ │ │ │ ├── invite-new-user.js │ │ │ │ ├── leave-editor.js │ │ │ │ ├── signin.js │ │ │ │ ├── transfer-owner.js │ │ │ │ └── upload.js │ │ │ ├── post-settings-menu.js │ │ │ ├── post-tags-input.js │ │ │ ├── posts.js │ │ │ ├── posts │ │ │ │ └── post.js │ │ │ ├── reset.js │ │ │ ├── settings.js │ │ │ ├── settings │ │ │ │ ├── about.js │ │ │ │ ├── app.js │ │ │ │ ├── code-injection.js │ │ │ │ ├── general.js │ │ │ │ ├── labs.js │ │ │ │ ├── navigation.js │ │ │ │ ├── tags.js │ │ │ │ └── users │ │ │ │ │ ├── index.js │ │ │ │ │ └── user.js │ │ │ ├── setup.js │ │ │ ├── signin.js │ │ │ └── signup.js │ │ ├── helpers │ │ │ ├── gh-count-characters.js │ │ │ ├── gh-count-down-characters.js │ │ │ ├── gh-count-words.js │ │ │ ├── gh-format-html.js │ │ │ ├── gh-format-markdown.js │ │ │ ├── gh-format-timeago.js │ │ │ └── gh-path.js │ │ ├── html │ │ │ ├── permalinks.html │ │ │ └── scrollbars.html │ │ ├── index.html │ │ ├── initializers │ │ │ ├── authentication.js │ │ │ ├── dropdown.js │ │ │ ├── ghost-config.js │ │ │ ├── ghost-paths.js │ │ │ ├── notifications.js │ │ │ ├── store-injector.js │ │ │ └── trailing-history.js │ │ ├── mixins │ │ │ ├── body-event-listener.js │ │ │ ├── current-user-settings.js │ │ │ ├── dropdown-mixin.js │ │ │ ├── ed-editor-api.js │ │ │ ├── ed-editor-scroll.js │ │ │ ├── ed-editor-shortcuts.js │ │ │ ├── editor-base-controller.js │ │ │ ├── editor-base-route.js │ │ │ ├── editor-base-view.js │ │ │ ├── loading-indicator.js │ │ │ ├── nprogress-save.js │ │ │ ├── pagination-controller.js │ │ │ ├── pagination-route.js │ │ │ ├── pagination-view-infinite-scroll.js │ │ │ ├── selective-save.js │ │ │ ├── settings-menu-controller.js │ │ │ ├── shortcuts-route.js │ │ │ ├── style-body.js │ │ │ ├── text-input.js │ │ │ └── validation-engine.js │ │ ├── models │ │ │ ├── notification.js │ │ │ ├── post.js │ │ │ ├── role.js │ │ │ ├── setting.js │ │ │ ├── slug-generator.js │ │ │ ├── tag.js │ │ │ └── user.js │ │ ├── router.js │ │ ├── routes │ │ │ ├── application.js │ │ │ ├── authenticated.js │ │ │ ├── content.js │ │ │ ├── debug.js │ │ │ ├── editor │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── new.js │ │ │ ├── error404.js │ │ │ ├── forgotten.js │ │ │ ├── mobile-index-route.js │ │ │ ├── posts.js │ │ │ ├── posts │ │ │ │ ├── index.js │ │ │ │ └── post.js │ │ │ ├── reset.js │ │ │ ├── settings.js │ │ │ ├── settings │ │ │ │ ├── about.js │ │ │ │ ├── apps.js │ │ │ │ ├── code-injection.js │ │ │ │ ├── general.js │ │ │ │ ├── index.js │ │ │ │ ├── labs.js │ │ │ │ ├── navigation.js │ │ │ │ ├── tags.js │ │ │ │ ├── users.js │ │ │ │ └── users │ │ │ │ │ ├── index.js │ │ │ │ │ └── user.js │ │ │ ├── setup.js │ │ │ ├── signin.js │ │ │ ├── signout.js │ │ │ └── signup.js │ │ ├── serializers │ │ │ ├── application.js │ │ │ ├── post.js │ │ │ ├── setting.js │ │ │ ├── tag.js │ │ │ └── user.js │ │ ├── styles │ │ │ ├── app.scss │ │ │ ├── components │ │ │ │ ├── badges.scss │ │ │ │ ├── dropdowns.scss │ │ │ │ ├── modals.scss │ │ │ │ ├── navigation.scss │ │ │ │ ├── notifications.scss │ │ │ │ ├── pagination.scss │ │ │ │ ├── popovers.scss │ │ │ │ ├── settings-menu.scss │ │ │ │ ├── splitbuttons.scss │ │ │ │ ├── uploader.scss │ │ │ │ └── url-preview.scss │ │ │ ├── layouts │ │ │ │ ├── about.scss │ │ │ │ ├── auth.scss │ │ │ │ ├── content.scss │ │ │ │ ├── default.scss │ │ │ │ ├── editor.scss │ │ │ │ ├── error.scss │ │ │ │ ├── settings.scss │ │ │ │ ├── setup.scss │ │ │ │ ├── tags.scss │ │ │ │ ├── user.scss │ │ │ │ └── users.scss │ │ │ ├── modules │ │ │ │ ├── animations.scss │ │ │ │ ├── icons.scss │ │ │ │ ├── mixins.scss │ │ │ │ └── variables.scss │ │ │ ├── patterns │ │ │ │ ├── _shame.scss │ │ │ │ ├── buttons.scss │ │ │ │ ├── forms.scss │ │ │ │ ├── global.scss │ │ │ │ ├── labels.scss │ │ │ │ ├── navlist.scss │ │ │ │ └── tables.scss │ │ │ └── vendor │ │ │ │ ├── nanoscroller.scss │ │ │ │ └── nprogress.scss │ │ ├── templates │ │ │ ├── -import-errors.hbs │ │ │ ├── -navbar.hbs │ │ │ ├── -publish-bar.hbs │ │ │ ├── -user-actions-menu.hbs │ │ │ ├── application.hbs │ │ │ ├── components │ │ │ │ ├── gh-activating-list-item.hbs │ │ │ │ ├── gh-blog-url.hbs │ │ │ │ ├── gh-ed-preview.hbs │ │ │ │ ├── gh-file-upload.hbs │ │ │ │ ├── gh-modal-dialog.hbs │ │ │ │ ├── gh-navitem.hbs │ │ │ │ ├── gh-notification.hbs │ │ │ │ ├── gh-notifications.hbs │ │ │ │ ├── gh-role-selector.hbs │ │ │ │ ├── gh-uploader.hbs │ │ │ │ └── gh-url-preview.hbs │ │ │ ├── editor-save-button.hbs │ │ │ ├── editor │ │ │ │ └── edit.hbs │ │ │ ├── error.hbs │ │ │ ├── forgotten.hbs │ │ │ ├── modals │ │ │ │ ├── copy-html.hbs │ │ │ │ ├── delete-all.hbs │ │ │ │ ├── delete-post.hbs │ │ │ │ ├── delete-tag.hbs │ │ │ │ ├── delete-user.hbs │ │ │ │ ├── invite-new-user.hbs │ │ │ │ ├── leave-editor.hbs │ │ │ │ ├── markdown.hbs │ │ │ │ ├── signin.hbs │ │ │ │ ├── transfer-owner.hbs │ │ │ │ └── upload.hbs │ │ │ ├── post-settings-menu.hbs │ │ │ ├── post-tags-input.hbs │ │ │ ├── posts.hbs │ │ │ ├── posts │ │ │ │ ├── index.hbs │ │ │ │ └── post.hbs │ │ │ ├── reset.hbs │ │ │ ├── settings.hbs │ │ │ ├── settings │ │ │ │ ├── about.hbs │ │ │ │ ├── apps.hbs │ │ │ │ ├── code-injection.hbs │ │ │ │ ├── general.hbs │ │ │ │ ├── labs.hbs │ │ │ │ ├── navigation.hbs │ │ │ │ ├── tags.hbs │ │ │ │ ├── tags │ │ │ │ │ └── settings-menu.hbs │ │ │ │ ├── users.hbs │ │ │ │ └── users │ │ │ │ │ ├── index.hbs │ │ │ │ │ └── user.hbs │ │ │ ├── setup.hbs │ │ │ ├── signin.hbs │ │ │ └── signup.hbs │ │ ├── transforms │ │ │ └── moment-date.js │ │ ├── utils │ │ │ ├── ajax.js │ │ │ ├── bind.js │ │ │ ├── bound-one-way.js │ │ │ ├── caja-sanitizers.js │ │ │ ├── config-parser.js │ │ │ ├── ctrl-or-cmd.js │ │ │ ├── date-formatting.js │ │ │ ├── document-title.js │ │ │ ├── dropdown-service.js │ │ │ ├── ed-image-manager.js │ │ │ ├── editor-shortcuts.js │ │ │ ├── ghost-paths.js │ │ │ ├── isFinite.js │ │ │ ├── isNumber.js │ │ │ ├── link-view.js │ │ │ ├── mobile.js │ │ │ ├── notifications.js │ │ │ ├── random-password.js │ │ │ ├── set-scroll-classname.js │ │ │ ├── text-field.js │ │ │ ├── titleize.js │ │ │ ├── validator-extensions.js │ │ │ └── word-count.js │ │ ├── validators │ │ │ ├── forgotten.js │ │ │ ├── new-user.js │ │ │ ├── post.js │ │ │ ├── reset.js │ │ │ ├── setting.js │ │ │ ├── setup.js │ │ │ ├── signin.js │ │ │ ├── signup.js │ │ │ ├── tag-settings.js │ │ │ └── user.js │ │ └── views │ │ │ ├── application.js │ │ │ ├── content-preview-content-view.js │ │ │ ├── editor-save-button.js │ │ │ ├── editor │ │ │ ├── edit.js │ │ │ └── new.js │ │ │ ├── mobile │ │ │ ├── content-view.js │ │ │ ├── index-view.js │ │ │ └── parent-view.js │ │ │ ├── paginated-scroll-box.js │ │ │ ├── post-item-view.js │ │ │ ├── post-tags-input.js │ │ │ ├── posts.js │ │ │ ├── posts │ │ │ ├── index.js │ │ │ └── post.js │ │ │ ├── settings.js │ │ │ └── settings │ │ │ ├── about.js │ │ │ ├── apps.js │ │ │ ├── code-injection.js │ │ │ ├── content-base.js │ │ │ ├── general.js │ │ │ ├── index.js │ │ │ ├── labs.js │ │ │ ├── navigation.js │ │ │ ├── pass-protect.js │ │ │ ├── tags.js │ │ │ ├── tags │ │ │ └── settings-menu.js │ │ │ ├── users.js │ │ │ └── users │ │ │ ├── user.js │ │ │ └── users-list-view.js │ ├── bower.json │ ├── config │ │ └── environment.js │ ├── lib │ │ ├── .jshintrc │ │ └── asset-delivery │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ ├── public │ │ └── assets │ │ │ ├── fonts │ │ │ ├── icons.svg │ │ │ └── icons.woff │ │ │ └── img │ │ │ ├── 404-ghost.png │ │ │ ├── 404-ghost@2x.png │ │ │ ├── large.png │ │ │ ├── loadingcat.gif │ │ │ ├── medium.png │ │ │ ├── small.png │ │ │ ├── touch-icon-ipad.png │ │ │ └── touch-icon-iphone.png │ ├── testem.json │ └── tests │ │ ├── .jshintrc │ │ ├── helpers │ │ ├── resolver.js │ │ └── start-app.js │ │ ├── index.html │ │ ├── test-helper.js │ │ └── unit │ │ ├── .gitkeep │ │ ├── components │ │ ├── gh-trim-focus-input_test.js │ │ └── gh-url-preview_test.js │ │ ├── controllers │ │ ├── post-settings-menu_test.js │ │ └── settings-general_test.js │ │ ├── models │ │ ├── post_test.js │ │ ├── role_test.js │ │ ├── setting_test.js │ │ ├── tag_test.js │ │ └── user_test.js │ │ └── utils │ │ └── ghost-paths_test.js ├── index.js ├── server │ ├── api │ │ ├── authentication.js │ │ ├── configuration.js │ │ ├── db.js │ │ ├── index.js │ │ ├── mail.js │ │ ├── notifications.js │ │ ├── posts.js │ │ ├── roles.js │ │ ├── settings.js │ │ ├── slugs.js │ │ ├── tags.js │ │ ├── themes.js │ │ ├── upload.js │ │ ├── users.js │ │ └── utils.js │ ├── apps │ │ ├── dependencies.js │ │ ├── index.js │ │ ├── loader.js │ │ ├── permissions.js │ │ ├── proxy.js │ │ └── sandbox.js │ ├── config │ │ ├── index.js │ │ └── url.js │ ├── controllers │ │ ├── admin.js │ │ └── frontend.js │ ├── data │ │ ├── default-settings.json │ │ ├── export │ │ │ └── index.js │ │ ├── fixtures │ │ │ ├── fixtures.json │ │ │ ├── index.js │ │ │ └── permissions │ │ │ │ ├── index.js │ │ │ │ └── permissions.json │ │ ├── import │ │ │ ├── data-importer.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── importer │ │ │ ├── handlers │ │ │ │ ├── image.js │ │ │ │ ├── json.js │ │ │ │ └── markdown.js │ │ │ ├── importers │ │ │ │ ├── data.js │ │ │ │ └── image.js │ │ │ └── index.js │ │ ├── migration │ │ │ ├── commands.js │ │ │ └── index.js │ │ ├── schema.js │ │ ├── utils │ │ │ ├── clients │ │ │ │ ├── index.js │ │ │ │ ├── mysql.js │ │ │ │ ├── pg.js │ │ │ │ └── sqlite3.js │ │ │ └── index.js │ │ ├── validation │ │ │ └── index.js │ │ ├── versioning │ │ │ └── index.js │ │ └── xml │ │ │ ├── rss │ │ │ └── index.js │ │ │ ├── sitemap │ │ │ ├── base-generator.js │ │ │ ├── handler.js │ │ │ ├── index-generator.js │ │ │ ├── index.js │ │ │ ├── manager.js │ │ │ ├── page-generator.js │ │ │ ├── post-generator.js │ │ │ ├── tag-generator.js │ │ │ ├── user-generator.js │ │ │ └── utils.js │ │ │ └── xmlrpc.js │ ├── email-templates │ │ ├── invite-user.html │ │ ├── raw │ │ │ ├── invite-user.html │ │ │ ├── reset-password.html │ │ │ ├── test.html │ │ │ └── welcome.html │ │ ├── reset-password.html │ │ ├── test.html │ │ └── welcome.html │ ├── errors │ │ ├── bad-request-error.js │ │ ├── data-import-error.js │ │ ├── email-error.js │ │ ├── index.js │ │ ├── internal-server-error.js │ │ ├── no-permission-error.js │ │ ├── not-found-error.js │ │ ├── request-too-large-error.js │ │ ├── unauthorized-error.js │ │ ├── unsupported-media-type-error.js │ │ └── validation-error.js │ ├── events │ │ └── index.js │ ├── filters.js │ ├── ghost-server.js │ ├── helpers │ │ ├── asset.js │ │ ├── author.js │ │ ├── body_class.js │ │ ├── content.js │ │ ├── date.js │ │ ├── encode.js │ │ ├── excerpt.js │ │ ├── foreach.js │ │ ├── ghost_foot.js │ │ ├── ghost_head.js │ │ ├── has.js │ │ ├── image.js │ │ ├── index.js │ │ ├── input_password.js │ │ ├── is.js │ │ ├── meta_description.js │ │ ├── meta_title.js │ │ ├── navigation.js │ │ ├── page_url.js │ │ ├── pagination.js │ │ ├── plural.js │ │ ├── post_class.js │ │ ├── prev_next.js │ │ ├── tags.js │ │ ├── template.js │ │ ├── title.js │ │ ├── tpl │ │ │ ├── navigation.hbs │ │ │ └── pagination.hbs │ │ ├── url.js │ │ └── utils.js │ ├── index.js │ ├── mail.js │ ├── middleware │ │ ├── auth-strategies.js │ │ ├── ghost-busboy.js │ │ ├── index.js │ │ ├── middleware.js │ │ └── oauth.js │ ├── models │ │ ├── accesstoken.js │ │ ├── app-field.js │ │ ├── app-setting.js │ │ ├── app.js │ │ ├── base.js │ │ ├── basetoken.js │ │ ├── client.js │ │ ├── index.js │ │ ├── permission.js │ │ ├── post.js │ │ ├── refreshtoken.js │ │ ├── role.js │ │ ├── settings.js │ │ ├── tag.js │ │ └── user.js │ ├── permissions │ │ ├── effective.js │ │ └── index.js │ ├── require-tree.js │ ├── routes │ │ ├── admin.js │ │ ├── api.js │ │ ├── frontend.js │ │ └── index.js │ ├── storage │ │ ├── base.js │ │ ├── index.js │ │ └── local-file-store.js │ ├── update-check.js │ ├── utils │ │ ├── downzero.js │ │ ├── index.js │ │ ├── pipeline.js │ │ ├── sequence.js │ │ └── startup-check.js │ └── views │ │ ├── error.hbs │ │ ├── private.hbs │ │ └── user-error.hbs ├── shared │ ├── favicon.ico │ ├── img │ │ ├── user-cover.png │ │ └── user-image.png │ ├── private-robots.txt │ ├── robots.txt │ └── sitemap.xsl └── test │ ├── .jshintrc │ ├── functional │ ├── base.js │ ├── client │ │ ├── app_test.js │ │ ├── content_test.js │ │ ├── editor_test.js │ │ ├── psm_test.js │ │ ├── settings_about_test.js │ │ ├── settings_test.js │ │ ├── signin_test.js │ │ ├── signout_test.js │ │ └── signup_test.js │ ├── module │ │ └── module_spec.js │ ├── routes │ │ ├── admin_spec.js │ │ ├── api │ │ │ ├── authentication_spec.js │ │ │ ├── db_spec.js │ │ │ ├── error_spec.js │ │ │ ├── notifications_spec.js │ │ │ ├── posts_spec.js │ │ │ ├── settings_spec.js │ │ │ ├── slugs_spec.js │ │ │ ├── tags_spec.js │ │ │ └── users_spec.js │ │ └── frontend_spec.js │ └── setup │ │ └── setup_test.js │ ├── integration │ ├── api │ │ ├── api_authentication_spec.js │ │ ├── api_configuration_spec.js │ │ ├── api_db_spec.js │ │ ├── api_mail_spec.js │ │ ├── api_notifications_spec.js │ │ ├── api_posts_spec.js │ │ ├── api_roles_spec.js │ │ ├── api_settings_spec.js │ │ ├── api_slugs_spec.js │ │ ├── api_tags_spec.js │ │ ├── api_themes_spec.js │ │ ├── api_upload_spec.js │ │ └── api_users_spec.js │ ├── export_spec.js │ ├── import_spec.js │ ├── model │ │ ├── model_app-fields_spec.js │ │ ├── model_app-settings_spec.js │ │ ├── model_apps_spec.js │ │ ├── model_permissions_spec.js │ │ ├── model_posts_spec.js │ │ ├── model_roles_spec.js │ │ ├── model_settings_spec.js │ │ ├── model_tags_spec.js │ │ └── model_users_spec.js │ └── update_check_spec.js │ ├── unit │ ├── apps_spec.js │ ├── config_spec.js │ ├── error_handling_spec.js │ ├── filters_spec.js │ ├── frontend_spec.js │ ├── importer_spec.js │ ├── mail_spec.js │ ├── middleware_spec.js │ ├── migration_spec.js │ ├── permissions_spec.js │ ├── server_helpers │ │ ├── asset_spec.js │ │ ├── author_spec.js │ │ ├── body_class_spec.js │ │ ├── content_spec.js │ │ ├── date_spec.js │ │ ├── encode_spec.js │ │ ├── excerpt_spec.js │ │ ├── foreach_spec.js │ │ ├── ghost_foot_spec.js │ │ ├── ghost_head_spec.js │ │ ├── has_spec.js │ │ ├── image_spec.js │ │ ├── input_password_spec.js │ │ ├── is_spec.js │ │ ├── meta_description_spec.js │ │ ├── meta_title_spec.js │ │ ├── navigation_spec.js │ │ ├── next_post_spec.js │ │ ├── page_url_spec.js │ │ ├── pagination_spec.js │ │ ├── plural_spec.js │ │ ├── post_class_spec.js │ │ ├── prev_post_spec.js │ │ ├── tags_spec.js │ │ ├── test_tpl │ │ │ ├── navigation.hbs │ │ │ └── pagination.hbs │ │ ├── title_spec.js │ │ ├── url_spec.js │ │ └── utils.js │ ├── server_helpers_index_spec.js │ ├── server_helpers_template_spec.js │ ├── server_spec.js │ ├── showdown_client_integrated_spec.js │ ├── sitemap_spec.js │ ├── storage_local-file-store_spec.js │ └── xmlrpc_spec.js │ └── utils │ ├── api.js │ ├── fixtures │ ├── app │ │ ├── badinstall.js │ │ ├── badlib.js │ │ ├── badoutside.js │ │ ├── badrequire.js │ │ ├── badtop.js │ │ ├── good.js │ │ ├── goodlib.js │ │ └── nested │ │ │ └── goodnested.js │ ├── data-generator.js │ ├── example.js │ ├── export │ │ ├── export-000.json │ │ ├── export-001.json │ │ ├── export-002.json │ │ ├── export-003-api-wrapper-bad.json │ │ ├── export-003-api-wrapper.json │ │ ├── export-003-badValidation.json │ │ ├── export-003-dbErrors.json │ │ ├── export-003-duplicate-posts.json │ │ ├── export-003-duplicate-tags.json │ │ ├── export-003-minimal.json │ │ ├── export-003-mu-noOwner.json │ │ ├── export-003-mu-unknownAuthor.json │ │ ├── export-003-mu.json │ │ ├── export-003-nullPosts.json │ │ ├── export-003-nullTags.json │ │ ├── export-003-wrongUUID.json │ │ └── export-003.json │ ├── import │ │ ├── deleted-2014-12-19-test-1.md │ │ ├── draft-2014-12-19-test-1.md │ │ ├── draft-2014-12-19-test-2.md │ │ ├── draft-2014-12-19-test-3.md │ │ ├── import-data-1.json │ │ ├── published-2014-12-19-test-1.md │ │ └── zips │ │ │ ├── zip-image-dir │ │ │ └── images │ │ │ │ └── image.jpg │ │ │ ├── zip-old-roon-export │ │ │ └── Roon-Export │ │ │ │ └── published │ │ │ │ └── test.md │ │ │ ├── zip-with-base-dir │ │ │ └── basedir │ │ │ │ └── test.json │ │ │ ├── zip-with-double-base-dir │ │ │ └── basedir │ │ │ │ └── basedir │ │ │ │ └── test.json │ │ │ └── zip-without-base-dir │ │ │ └── test.json │ ├── test.hbs │ └── theme │ │ └── partials │ │ └── test.hbs │ ├── fork.js │ ├── index.js │ └── jscs-rules │ └── disallow-object-controller.js ├── index.js └── package.json /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/config.example.js -------------------------------------------------------------------------------- /content/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/content/apps/README.md -------------------------------------------------------------------------------- /content/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/content/data/README.md -------------------------------------------------------------------------------- /content/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/content/images/README.md -------------------------------------------------------------------------------- /content/storage/qiniu-store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/content/storage/qiniu-store/index.js -------------------------------------------------------------------------------- /core/client/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/.ember-cli -------------------------------------------------------------------------------- /core/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/.gitignore -------------------------------------------------------------------------------- /core/client/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/.jshintrc -------------------------------------------------------------------------------- /core/client/Brocfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/Brocfile.js -------------------------------------------------------------------------------- /core/client/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/README.md -------------------------------------------------------------------------------- /core/client/app/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/_config.yml -------------------------------------------------------------------------------- /core/client/app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/adapters/application.js -------------------------------------------------------------------------------- /core/client/app/adapters/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/adapters/base.js -------------------------------------------------------------------------------- /core/client/app/adapters/embedded-relation-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/adapters/embedded-relation-adapter.js -------------------------------------------------------------------------------- /core/client/app/adapters/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/adapters/setting.js -------------------------------------------------------------------------------- /core/client/app/adapters/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/adapters/user.js -------------------------------------------------------------------------------- /core/client/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/app.js -------------------------------------------------------------------------------- /core/client/app/assets/lib/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/assets/lib/uploader.js -------------------------------------------------------------------------------- /core/client/app/components/gh-activating-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-activating-list-item.js -------------------------------------------------------------------------------- /core/client/app/components/gh-blog-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-blog-url.js -------------------------------------------------------------------------------- /core/client/app/components/gh-cm-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-cm-editor.js -------------------------------------------------------------------------------- /core/client/app/components/gh-dropdown-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-dropdown-button.js -------------------------------------------------------------------------------- /core/client/app/components/gh-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-dropdown.js -------------------------------------------------------------------------------- /core/client/app/components/gh-ed-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-ed-editor.js -------------------------------------------------------------------------------- /core/client/app/components/gh-ed-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-ed-preview.js -------------------------------------------------------------------------------- /core/client/app/components/gh-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-file-upload.js -------------------------------------------------------------------------------- /core/client/app/components/gh-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-form.js -------------------------------------------------------------------------------- /core/client/app/components/gh-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-input.js -------------------------------------------------------------------------------- /core/client/app/components/gh-modal-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-modal-dialog.js -------------------------------------------------------------------------------- /core/client/app/components/gh-navitem-url-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-navitem-url-input.js -------------------------------------------------------------------------------- /core/client/app/components/gh-navitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-navitem.js -------------------------------------------------------------------------------- /core/client/app/components/gh-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-notification.js -------------------------------------------------------------------------------- /core/client/app/components/gh-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-notifications.js -------------------------------------------------------------------------------- /core/client/app/components/gh-popover-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-popover-button.js -------------------------------------------------------------------------------- /core/client/app/components/gh-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-popover.js -------------------------------------------------------------------------------- /core/client/app/components/gh-role-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-role-selector.js -------------------------------------------------------------------------------- /core/client/app/components/gh-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-select.js -------------------------------------------------------------------------------- /core/client/app/components/gh-tab-pane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-tab-pane.js -------------------------------------------------------------------------------- /core/client/app/components/gh-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-tab.js -------------------------------------------------------------------------------- /core/client/app/components/gh-tabs-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-tabs-manager.js -------------------------------------------------------------------------------- /core/client/app/components/gh-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-textarea.js -------------------------------------------------------------------------------- /core/client/app/components/gh-trim-focus-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-trim-focus-input.js -------------------------------------------------------------------------------- /core/client/app/components/gh-upload-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-upload-modal.js -------------------------------------------------------------------------------- /core/client/app/components/gh-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-uploader.js -------------------------------------------------------------------------------- /core/client/app/components/gh-url-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/components/gh-url-preview.js -------------------------------------------------------------------------------- /core/client/app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/application.js -------------------------------------------------------------------------------- /core/client/app/controllers/editor/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/editor/edit.js -------------------------------------------------------------------------------- /core/client/app/controllers/editor/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/editor/new.js -------------------------------------------------------------------------------- /core/client/app/controllers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/error.js -------------------------------------------------------------------------------- /core/client/app/controllers/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/feature.js -------------------------------------------------------------------------------- /core/client/app/controllers/forgotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/forgotten.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/copy-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/copy-html.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/delete-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/delete-all.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/delete-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/delete-post.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/delete-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/delete-tag.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/delete-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/delete-user.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/invite-new-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/invite-new-user.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/leave-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/leave-editor.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/signin.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/transfer-owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/transfer-owner.js -------------------------------------------------------------------------------- /core/client/app/controllers/modals/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/modals/upload.js -------------------------------------------------------------------------------- /core/client/app/controllers/post-settings-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/post-settings-menu.js -------------------------------------------------------------------------------- /core/client/app/controllers/post-tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/post-tags-input.js -------------------------------------------------------------------------------- /core/client/app/controllers/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/posts.js -------------------------------------------------------------------------------- /core/client/app/controllers/posts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/posts/post.js -------------------------------------------------------------------------------- /core/client/app/controllers/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/reset.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/about.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/app.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/code-injection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/code-injection.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/general.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/labs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/labs.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/navigation.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/tags.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/users/index.js -------------------------------------------------------------------------------- /core/client/app/controllers/settings/users/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/settings/users/user.js -------------------------------------------------------------------------------- /core/client/app/controllers/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/setup.js -------------------------------------------------------------------------------- /core/client/app/controllers/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/signin.js -------------------------------------------------------------------------------- /core/client/app/controllers/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/controllers/signup.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-count-characters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-count-characters.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-count-down-characters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-count-down-characters.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-count-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-count-words.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-format-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-format-html.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-format-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-format-markdown.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-format-timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-format-timeago.js -------------------------------------------------------------------------------- /core/client/app/helpers/gh-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/helpers/gh-path.js -------------------------------------------------------------------------------- /core/client/app/html/permalinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/html/permalinks.html -------------------------------------------------------------------------------- /core/client/app/html/scrollbars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/html/scrollbars.html -------------------------------------------------------------------------------- /core/client/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/index.html -------------------------------------------------------------------------------- /core/client/app/initializers/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/authentication.js -------------------------------------------------------------------------------- /core/client/app/initializers/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/dropdown.js -------------------------------------------------------------------------------- /core/client/app/initializers/ghost-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/ghost-config.js -------------------------------------------------------------------------------- /core/client/app/initializers/ghost-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/ghost-paths.js -------------------------------------------------------------------------------- /core/client/app/initializers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/notifications.js -------------------------------------------------------------------------------- /core/client/app/initializers/store-injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/store-injector.js -------------------------------------------------------------------------------- /core/client/app/initializers/trailing-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/initializers/trailing-history.js -------------------------------------------------------------------------------- /core/client/app/mixins/body-event-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/body-event-listener.js -------------------------------------------------------------------------------- /core/client/app/mixins/current-user-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/current-user-settings.js -------------------------------------------------------------------------------- /core/client/app/mixins/dropdown-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/dropdown-mixin.js -------------------------------------------------------------------------------- /core/client/app/mixins/ed-editor-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/ed-editor-api.js -------------------------------------------------------------------------------- /core/client/app/mixins/ed-editor-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/ed-editor-scroll.js -------------------------------------------------------------------------------- /core/client/app/mixins/ed-editor-shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/ed-editor-shortcuts.js -------------------------------------------------------------------------------- /core/client/app/mixins/editor-base-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/editor-base-controller.js -------------------------------------------------------------------------------- /core/client/app/mixins/editor-base-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/editor-base-route.js -------------------------------------------------------------------------------- /core/client/app/mixins/editor-base-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/editor-base-view.js -------------------------------------------------------------------------------- /core/client/app/mixins/loading-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/loading-indicator.js -------------------------------------------------------------------------------- /core/client/app/mixins/nprogress-save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/nprogress-save.js -------------------------------------------------------------------------------- /core/client/app/mixins/pagination-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/pagination-controller.js -------------------------------------------------------------------------------- /core/client/app/mixins/pagination-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/pagination-route.js -------------------------------------------------------------------------------- /core/client/app/mixins/pagination-view-infinite-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/pagination-view-infinite-scroll.js -------------------------------------------------------------------------------- /core/client/app/mixins/selective-save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/selective-save.js -------------------------------------------------------------------------------- /core/client/app/mixins/settings-menu-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/settings-menu-controller.js -------------------------------------------------------------------------------- /core/client/app/mixins/shortcuts-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/shortcuts-route.js -------------------------------------------------------------------------------- /core/client/app/mixins/style-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/style-body.js -------------------------------------------------------------------------------- /core/client/app/mixins/text-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/text-input.js -------------------------------------------------------------------------------- /core/client/app/mixins/validation-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/mixins/validation-engine.js -------------------------------------------------------------------------------- /core/client/app/models/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/notification.js -------------------------------------------------------------------------------- /core/client/app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/post.js -------------------------------------------------------------------------------- /core/client/app/models/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/role.js -------------------------------------------------------------------------------- /core/client/app/models/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/setting.js -------------------------------------------------------------------------------- /core/client/app/models/slug-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/slug-generator.js -------------------------------------------------------------------------------- /core/client/app/models/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/tag.js -------------------------------------------------------------------------------- /core/client/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/models/user.js -------------------------------------------------------------------------------- /core/client/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/router.js -------------------------------------------------------------------------------- /core/client/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/application.js -------------------------------------------------------------------------------- /core/client/app/routes/authenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/authenticated.js -------------------------------------------------------------------------------- /core/client/app/routes/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/content.js -------------------------------------------------------------------------------- /core/client/app/routes/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/debug.js -------------------------------------------------------------------------------- /core/client/app/routes/editor/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/editor/edit.js -------------------------------------------------------------------------------- /core/client/app/routes/editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/editor/index.js -------------------------------------------------------------------------------- /core/client/app/routes/editor/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/editor/new.js -------------------------------------------------------------------------------- /core/client/app/routes/error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/error404.js -------------------------------------------------------------------------------- /core/client/app/routes/forgotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/forgotten.js -------------------------------------------------------------------------------- /core/client/app/routes/mobile-index-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/mobile-index-route.js -------------------------------------------------------------------------------- /core/client/app/routes/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/posts.js -------------------------------------------------------------------------------- /core/client/app/routes/posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/posts/index.js -------------------------------------------------------------------------------- /core/client/app/routes/posts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/posts/post.js -------------------------------------------------------------------------------- /core/client/app/routes/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/reset.js -------------------------------------------------------------------------------- /core/client/app/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/about.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/apps.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/code-injection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/code-injection.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/general.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/index.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/labs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/labs.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/navigation.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/tags.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/users.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/users/index.js -------------------------------------------------------------------------------- /core/client/app/routes/settings/users/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/settings/users/user.js -------------------------------------------------------------------------------- /core/client/app/routes/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/setup.js -------------------------------------------------------------------------------- /core/client/app/routes/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/signin.js -------------------------------------------------------------------------------- /core/client/app/routes/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/signout.js -------------------------------------------------------------------------------- /core/client/app/routes/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/routes/signup.js -------------------------------------------------------------------------------- /core/client/app/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/serializers/application.js -------------------------------------------------------------------------------- /core/client/app/serializers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/serializers/post.js -------------------------------------------------------------------------------- /core/client/app/serializers/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/serializers/setting.js -------------------------------------------------------------------------------- /core/client/app/serializers/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/serializers/tag.js -------------------------------------------------------------------------------- /core/client/app/serializers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/serializers/user.js -------------------------------------------------------------------------------- /core/client/app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/app.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/badges.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/dropdowns.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/modals.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/navigation.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/notifications.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/pagination.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/popovers.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/settings-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/settings-menu.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/splitbuttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/splitbuttons.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/uploader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/uploader.scss -------------------------------------------------------------------------------- /core/client/app/styles/components/url-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/components/url-preview.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/about.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/auth.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/content.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/default.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/editor.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/error.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/settings.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/setup.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/tags.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/user.scss -------------------------------------------------------------------------------- /core/client/app/styles/layouts/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/layouts/users.scss -------------------------------------------------------------------------------- /core/client/app/styles/modules/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/modules/animations.scss -------------------------------------------------------------------------------- /core/client/app/styles/modules/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/modules/icons.scss -------------------------------------------------------------------------------- /core/client/app/styles/modules/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/modules/mixins.scss -------------------------------------------------------------------------------- /core/client/app/styles/modules/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/modules/variables.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/_shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/_shame.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/buttons.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/forms.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/global.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/labels.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/navlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/navlist.scss -------------------------------------------------------------------------------- /core/client/app/styles/patterns/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/patterns/tables.scss -------------------------------------------------------------------------------- /core/client/app/styles/vendor/nanoscroller.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/vendor/nanoscroller.scss -------------------------------------------------------------------------------- /core/client/app/styles/vendor/nprogress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/styles/vendor/nprogress.scss -------------------------------------------------------------------------------- /core/client/app/templates/-import-errors.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/-import-errors.hbs -------------------------------------------------------------------------------- /core/client/app/templates/-navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/-navbar.hbs -------------------------------------------------------------------------------- /core/client/app/templates/-publish-bar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/-publish-bar.hbs -------------------------------------------------------------------------------- /core/client/app/templates/-user-actions-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/-user-actions-menu.hbs -------------------------------------------------------------------------------- /core/client/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/application.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-activating-list-item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-activating-list-item.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-blog-url.hbs: -------------------------------------------------------------------------------- 1 | {{{config.blogUrl}}} -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-ed-preview.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-ed-preview.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-file-upload.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-file-upload.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-modal-dialog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-modal-dialog.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-navitem.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-navitem.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-notification.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-notification.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-notifications.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-notifications.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-role-selector.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-role-selector.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-uploader.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/components/gh-uploader.hbs -------------------------------------------------------------------------------- /core/client/app/templates/components/gh-url-preview.hbs: -------------------------------------------------------------------------------- 1 | {{url}} 2 | -------------------------------------------------------------------------------- /core/client/app/templates/editor-save-button.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/editor-save-button.hbs -------------------------------------------------------------------------------- /core/client/app/templates/editor/edit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/editor/edit.hbs -------------------------------------------------------------------------------- /core/client/app/templates/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/error.hbs -------------------------------------------------------------------------------- /core/client/app/templates/forgotten.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/forgotten.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/copy-html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/copy-html.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/delete-all.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/delete-all.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/delete-post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/delete-post.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/delete-tag.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/delete-tag.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/delete-user.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/delete-user.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/invite-new-user.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/invite-new-user.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/leave-editor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/leave-editor.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/markdown.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/markdown.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/signin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/signin.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/transfer-owner.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/transfer-owner.hbs -------------------------------------------------------------------------------- /core/client/app/templates/modals/upload.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/modals/upload.hbs -------------------------------------------------------------------------------- /core/client/app/templates/post-settings-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/post-settings-menu.hbs -------------------------------------------------------------------------------- /core/client/app/templates/post-tags-input.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/post-tags-input.hbs -------------------------------------------------------------------------------- /core/client/app/templates/posts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/posts.hbs -------------------------------------------------------------------------------- /core/client/app/templates/posts/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/posts/index.hbs -------------------------------------------------------------------------------- /core/client/app/templates/posts/post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/posts/post.hbs -------------------------------------------------------------------------------- /core/client/app/templates/reset.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/reset.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/about.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/about.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/apps.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/apps.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/code-injection.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/code-injection.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/general.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/general.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/labs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/labs.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/navigation.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/tags.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/tags.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/tags/settings-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/tags/settings-menu.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/users.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/users.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/users/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/users/index.hbs -------------------------------------------------------------------------------- /core/client/app/templates/settings/users/user.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/settings/users/user.hbs -------------------------------------------------------------------------------- /core/client/app/templates/setup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/setup.hbs -------------------------------------------------------------------------------- /core/client/app/templates/signin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/signin.hbs -------------------------------------------------------------------------------- /core/client/app/templates/signup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/templates/signup.hbs -------------------------------------------------------------------------------- /core/client/app/transforms/moment-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/transforms/moment-date.js -------------------------------------------------------------------------------- /core/client/app/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/ajax.js -------------------------------------------------------------------------------- /core/client/app/utils/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/bind.js -------------------------------------------------------------------------------- /core/client/app/utils/bound-one-way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/bound-one-way.js -------------------------------------------------------------------------------- /core/client/app/utils/caja-sanitizers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/caja-sanitizers.js -------------------------------------------------------------------------------- /core/client/app/utils/config-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/config-parser.js -------------------------------------------------------------------------------- /core/client/app/utils/ctrl-or-cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/ctrl-or-cmd.js -------------------------------------------------------------------------------- /core/client/app/utils/date-formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/date-formatting.js -------------------------------------------------------------------------------- /core/client/app/utils/document-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/document-title.js -------------------------------------------------------------------------------- /core/client/app/utils/dropdown-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/dropdown-service.js -------------------------------------------------------------------------------- /core/client/app/utils/ed-image-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/ed-image-manager.js -------------------------------------------------------------------------------- /core/client/app/utils/editor-shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/editor-shortcuts.js -------------------------------------------------------------------------------- /core/client/app/utils/ghost-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/ghost-paths.js -------------------------------------------------------------------------------- /core/client/app/utils/isFinite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/isFinite.js -------------------------------------------------------------------------------- /core/client/app/utils/isNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/isNumber.js -------------------------------------------------------------------------------- /core/client/app/utils/link-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/link-view.js -------------------------------------------------------------------------------- /core/client/app/utils/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/mobile.js -------------------------------------------------------------------------------- /core/client/app/utils/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/notifications.js -------------------------------------------------------------------------------- /core/client/app/utils/random-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/random-password.js -------------------------------------------------------------------------------- /core/client/app/utils/set-scroll-classname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/set-scroll-classname.js -------------------------------------------------------------------------------- /core/client/app/utils/text-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/text-field.js -------------------------------------------------------------------------------- /core/client/app/utils/titleize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/titleize.js -------------------------------------------------------------------------------- /core/client/app/utils/validator-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/validator-extensions.js -------------------------------------------------------------------------------- /core/client/app/utils/word-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/utils/word-count.js -------------------------------------------------------------------------------- /core/client/app/validators/forgotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/forgotten.js -------------------------------------------------------------------------------- /core/client/app/validators/new-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/new-user.js -------------------------------------------------------------------------------- /core/client/app/validators/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/post.js -------------------------------------------------------------------------------- /core/client/app/validators/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/reset.js -------------------------------------------------------------------------------- /core/client/app/validators/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/setting.js -------------------------------------------------------------------------------- /core/client/app/validators/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/setup.js -------------------------------------------------------------------------------- /core/client/app/validators/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/signin.js -------------------------------------------------------------------------------- /core/client/app/validators/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/signup.js -------------------------------------------------------------------------------- /core/client/app/validators/tag-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/tag-settings.js -------------------------------------------------------------------------------- /core/client/app/validators/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/validators/user.js -------------------------------------------------------------------------------- /core/client/app/views/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/application.js -------------------------------------------------------------------------------- /core/client/app/views/content-preview-content-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/content-preview-content-view.js -------------------------------------------------------------------------------- /core/client/app/views/editor-save-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/editor-save-button.js -------------------------------------------------------------------------------- /core/client/app/views/editor/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/editor/edit.js -------------------------------------------------------------------------------- /core/client/app/views/editor/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/editor/new.js -------------------------------------------------------------------------------- /core/client/app/views/mobile/content-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/mobile/content-view.js -------------------------------------------------------------------------------- /core/client/app/views/mobile/index-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/mobile/index-view.js -------------------------------------------------------------------------------- /core/client/app/views/mobile/parent-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/mobile/parent-view.js -------------------------------------------------------------------------------- /core/client/app/views/paginated-scroll-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/paginated-scroll-box.js -------------------------------------------------------------------------------- /core/client/app/views/post-item-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/post-item-view.js -------------------------------------------------------------------------------- /core/client/app/views/post-tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/post-tags-input.js -------------------------------------------------------------------------------- /core/client/app/views/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/posts.js -------------------------------------------------------------------------------- /core/client/app/views/posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/posts/index.js -------------------------------------------------------------------------------- /core/client/app/views/posts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/posts/post.js -------------------------------------------------------------------------------- /core/client/app/views/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings.js -------------------------------------------------------------------------------- /core/client/app/views/settings/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/about.js -------------------------------------------------------------------------------- /core/client/app/views/settings/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/apps.js -------------------------------------------------------------------------------- /core/client/app/views/settings/code-injection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/code-injection.js -------------------------------------------------------------------------------- /core/client/app/views/settings/content-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/content-base.js -------------------------------------------------------------------------------- /core/client/app/views/settings/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/general.js -------------------------------------------------------------------------------- /core/client/app/views/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/index.js -------------------------------------------------------------------------------- /core/client/app/views/settings/labs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/labs.js -------------------------------------------------------------------------------- /core/client/app/views/settings/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/navigation.js -------------------------------------------------------------------------------- /core/client/app/views/settings/pass-protect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/pass-protect.js -------------------------------------------------------------------------------- /core/client/app/views/settings/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/tags.js -------------------------------------------------------------------------------- /core/client/app/views/settings/tags/settings-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/tags/settings-menu.js -------------------------------------------------------------------------------- /core/client/app/views/settings/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/users.js -------------------------------------------------------------------------------- /core/client/app/views/settings/users/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/users/user.js -------------------------------------------------------------------------------- /core/client/app/views/settings/users/users-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/app/views/settings/users/users-list-view.js -------------------------------------------------------------------------------- /core/client/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/bower.json -------------------------------------------------------------------------------- /core/client/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/config/environment.js -------------------------------------------------------------------------------- /core/client/lib/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/lib/.jshintrc -------------------------------------------------------------------------------- /core/client/lib/asset-delivery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/lib/asset-delivery/index.js -------------------------------------------------------------------------------- /core/client/lib/asset-delivery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/lib/asset-delivery/package.json -------------------------------------------------------------------------------- /core/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/package.json -------------------------------------------------------------------------------- /core/client/public/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/fonts/icons.svg -------------------------------------------------------------------------------- /core/client/public/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/fonts/icons.woff -------------------------------------------------------------------------------- /core/client/public/assets/img/404-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/404-ghost.png -------------------------------------------------------------------------------- /core/client/public/assets/img/404-ghost@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/404-ghost@2x.png -------------------------------------------------------------------------------- /core/client/public/assets/img/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/large.png -------------------------------------------------------------------------------- /core/client/public/assets/img/loadingcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/loadingcat.gif -------------------------------------------------------------------------------- /core/client/public/assets/img/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/medium.png -------------------------------------------------------------------------------- /core/client/public/assets/img/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/small.png -------------------------------------------------------------------------------- /core/client/public/assets/img/touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/touch-icon-ipad.png -------------------------------------------------------------------------------- /core/client/public/assets/img/touch-icon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/public/assets/img/touch-icon-iphone.png -------------------------------------------------------------------------------- /core/client/testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/testem.json -------------------------------------------------------------------------------- /core/client/tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/.jshintrc -------------------------------------------------------------------------------- /core/client/tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/helpers/resolver.js -------------------------------------------------------------------------------- /core/client/tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/helpers/start-app.js -------------------------------------------------------------------------------- /core/client/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/index.html -------------------------------------------------------------------------------- /core/client/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/test-helper.js -------------------------------------------------------------------------------- /core/client/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/client/tests/unit/components/gh-trim-focus-input_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/components/gh-trim-focus-input_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/components/gh-url-preview_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/components/gh-url-preview_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/controllers/post-settings-menu_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/controllers/post-settings-menu_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/controllers/settings-general_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/controllers/settings-general_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/models/post_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/models/post_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/models/role_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/models/role_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/models/setting_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/models/setting_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/models/tag_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/models/tag_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/models/user_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/models/user_test.js -------------------------------------------------------------------------------- /core/client/tests/unit/utils/ghost-paths_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/client/tests/unit/utils/ghost-paths_test.js -------------------------------------------------------------------------------- /core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/index.js -------------------------------------------------------------------------------- /core/server/api/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/authentication.js -------------------------------------------------------------------------------- /core/server/api/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/configuration.js -------------------------------------------------------------------------------- /core/server/api/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/db.js -------------------------------------------------------------------------------- /core/server/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/index.js -------------------------------------------------------------------------------- /core/server/api/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/mail.js -------------------------------------------------------------------------------- /core/server/api/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/notifications.js -------------------------------------------------------------------------------- /core/server/api/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/posts.js -------------------------------------------------------------------------------- /core/server/api/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/roles.js -------------------------------------------------------------------------------- /core/server/api/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/settings.js -------------------------------------------------------------------------------- /core/server/api/slugs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/slugs.js -------------------------------------------------------------------------------- /core/server/api/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/tags.js -------------------------------------------------------------------------------- /core/server/api/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/themes.js -------------------------------------------------------------------------------- /core/server/api/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/upload.js -------------------------------------------------------------------------------- /core/server/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/users.js -------------------------------------------------------------------------------- /core/server/api/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/api/utils.js -------------------------------------------------------------------------------- /core/server/apps/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/dependencies.js -------------------------------------------------------------------------------- /core/server/apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/index.js -------------------------------------------------------------------------------- /core/server/apps/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/loader.js -------------------------------------------------------------------------------- /core/server/apps/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/permissions.js -------------------------------------------------------------------------------- /core/server/apps/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/proxy.js -------------------------------------------------------------------------------- /core/server/apps/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/apps/sandbox.js -------------------------------------------------------------------------------- /core/server/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/config/index.js -------------------------------------------------------------------------------- /core/server/config/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/config/url.js -------------------------------------------------------------------------------- /core/server/controllers/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/controllers/admin.js -------------------------------------------------------------------------------- /core/server/controllers/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/controllers/frontend.js -------------------------------------------------------------------------------- /core/server/data/default-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/default-settings.json -------------------------------------------------------------------------------- /core/server/data/export/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/export/index.js -------------------------------------------------------------------------------- /core/server/data/fixtures/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/fixtures/fixtures.json -------------------------------------------------------------------------------- /core/server/data/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/fixtures/index.js -------------------------------------------------------------------------------- /core/server/data/fixtures/permissions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/fixtures/permissions/index.js -------------------------------------------------------------------------------- /core/server/data/fixtures/permissions/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/fixtures/permissions/permissions.json -------------------------------------------------------------------------------- /core/server/data/import/data-importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/import/data-importer.js -------------------------------------------------------------------------------- /core/server/data/import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/import/index.js -------------------------------------------------------------------------------- /core/server/data/import/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/import/utils.js -------------------------------------------------------------------------------- /core/server/data/importer/handlers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/handlers/image.js -------------------------------------------------------------------------------- /core/server/data/importer/handlers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/handlers/json.js -------------------------------------------------------------------------------- /core/server/data/importer/handlers/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/handlers/markdown.js -------------------------------------------------------------------------------- /core/server/data/importer/importers/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/importers/data.js -------------------------------------------------------------------------------- /core/server/data/importer/importers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/importers/image.js -------------------------------------------------------------------------------- /core/server/data/importer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/importer/index.js -------------------------------------------------------------------------------- /core/server/data/migration/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/migration/commands.js -------------------------------------------------------------------------------- /core/server/data/migration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/migration/index.js -------------------------------------------------------------------------------- /core/server/data/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/schema.js -------------------------------------------------------------------------------- /core/server/data/utils/clients/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/utils/clients/index.js -------------------------------------------------------------------------------- /core/server/data/utils/clients/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/utils/clients/mysql.js -------------------------------------------------------------------------------- /core/server/data/utils/clients/pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/utils/clients/pg.js -------------------------------------------------------------------------------- /core/server/data/utils/clients/sqlite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/utils/clients/sqlite3.js -------------------------------------------------------------------------------- /core/server/data/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/utils/index.js -------------------------------------------------------------------------------- /core/server/data/validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/validation/index.js -------------------------------------------------------------------------------- /core/server/data/versioning/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/versioning/index.js -------------------------------------------------------------------------------- /core/server/data/xml/rss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/rss/index.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/base-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/base-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/handler.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/index-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/index-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/index.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/manager.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/page-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/page-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/post-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/post-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/tag-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/tag-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/user-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/user-generator.js -------------------------------------------------------------------------------- /core/server/data/xml/sitemap/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/sitemap/utils.js -------------------------------------------------------------------------------- /core/server/data/xml/xmlrpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/data/xml/xmlrpc.js -------------------------------------------------------------------------------- /core/server/email-templates/invite-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/invite-user.html -------------------------------------------------------------------------------- /core/server/email-templates/raw/invite-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/raw/invite-user.html -------------------------------------------------------------------------------- /core/server/email-templates/raw/reset-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/raw/reset-password.html -------------------------------------------------------------------------------- /core/server/email-templates/raw/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/raw/test.html -------------------------------------------------------------------------------- /core/server/email-templates/raw/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/raw/welcome.html -------------------------------------------------------------------------------- /core/server/email-templates/reset-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/reset-password.html -------------------------------------------------------------------------------- /core/server/email-templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/test.html -------------------------------------------------------------------------------- /core/server/email-templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/email-templates/welcome.html -------------------------------------------------------------------------------- /core/server/errors/bad-request-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/bad-request-error.js -------------------------------------------------------------------------------- /core/server/errors/data-import-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/data-import-error.js -------------------------------------------------------------------------------- /core/server/errors/email-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/email-error.js -------------------------------------------------------------------------------- /core/server/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/index.js -------------------------------------------------------------------------------- /core/server/errors/internal-server-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/internal-server-error.js -------------------------------------------------------------------------------- /core/server/errors/no-permission-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/no-permission-error.js -------------------------------------------------------------------------------- /core/server/errors/not-found-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/not-found-error.js -------------------------------------------------------------------------------- /core/server/errors/request-too-large-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/request-too-large-error.js -------------------------------------------------------------------------------- /core/server/errors/unauthorized-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/unauthorized-error.js -------------------------------------------------------------------------------- /core/server/errors/unsupported-media-type-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/unsupported-media-type-error.js -------------------------------------------------------------------------------- /core/server/errors/validation-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/errors/validation-error.js -------------------------------------------------------------------------------- /core/server/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/events/index.js -------------------------------------------------------------------------------- /core/server/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/filters.js -------------------------------------------------------------------------------- /core/server/ghost-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/ghost-server.js -------------------------------------------------------------------------------- /core/server/helpers/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/asset.js -------------------------------------------------------------------------------- /core/server/helpers/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/author.js -------------------------------------------------------------------------------- /core/server/helpers/body_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/body_class.js -------------------------------------------------------------------------------- /core/server/helpers/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/content.js -------------------------------------------------------------------------------- /core/server/helpers/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/date.js -------------------------------------------------------------------------------- /core/server/helpers/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/encode.js -------------------------------------------------------------------------------- /core/server/helpers/excerpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/excerpt.js -------------------------------------------------------------------------------- /core/server/helpers/foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/foreach.js -------------------------------------------------------------------------------- /core/server/helpers/ghost_foot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/ghost_foot.js -------------------------------------------------------------------------------- /core/server/helpers/ghost_head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/ghost_head.js -------------------------------------------------------------------------------- /core/server/helpers/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/has.js -------------------------------------------------------------------------------- /core/server/helpers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/image.js -------------------------------------------------------------------------------- /core/server/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/index.js -------------------------------------------------------------------------------- /core/server/helpers/input_password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/input_password.js -------------------------------------------------------------------------------- /core/server/helpers/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/is.js -------------------------------------------------------------------------------- /core/server/helpers/meta_description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/meta_description.js -------------------------------------------------------------------------------- /core/server/helpers/meta_title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/meta_title.js -------------------------------------------------------------------------------- /core/server/helpers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/navigation.js -------------------------------------------------------------------------------- /core/server/helpers/page_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/page_url.js -------------------------------------------------------------------------------- /core/server/helpers/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/pagination.js -------------------------------------------------------------------------------- /core/server/helpers/plural.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/plural.js -------------------------------------------------------------------------------- /core/server/helpers/post_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/post_class.js -------------------------------------------------------------------------------- /core/server/helpers/prev_next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/prev_next.js -------------------------------------------------------------------------------- /core/server/helpers/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/tags.js -------------------------------------------------------------------------------- /core/server/helpers/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/template.js -------------------------------------------------------------------------------- /core/server/helpers/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/title.js -------------------------------------------------------------------------------- /core/server/helpers/tpl/navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/tpl/navigation.hbs -------------------------------------------------------------------------------- /core/server/helpers/tpl/pagination.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/tpl/pagination.hbs -------------------------------------------------------------------------------- /core/server/helpers/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/url.js -------------------------------------------------------------------------------- /core/server/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/helpers/utils.js -------------------------------------------------------------------------------- /core/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/index.js -------------------------------------------------------------------------------- /core/server/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/mail.js -------------------------------------------------------------------------------- /core/server/middleware/auth-strategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/middleware/auth-strategies.js -------------------------------------------------------------------------------- /core/server/middleware/ghost-busboy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/middleware/ghost-busboy.js -------------------------------------------------------------------------------- /core/server/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/middleware/index.js -------------------------------------------------------------------------------- /core/server/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/middleware/middleware.js -------------------------------------------------------------------------------- /core/server/middleware/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/middleware/oauth.js -------------------------------------------------------------------------------- /core/server/models/accesstoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/accesstoken.js -------------------------------------------------------------------------------- /core/server/models/app-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/app-field.js -------------------------------------------------------------------------------- /core/server/models/app-setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/app-setting.js -------------------------------------------------------------------------------- /core/server/models/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/app.js -------------------------------------------------------------------------------- /core/server/models/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/base.js -------------------------------------------------------------------------------- /core/server/models/basetoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/basetoken.js -------------------------------------------------------------------------------- /core/server/models/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/client.js -------------------------------------------------------------------------------- /core/server/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/index.js -------------------------------------------------------------------------------- /core/server/models/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/permission.js -------------------------------------------------------------------------------- /core/server/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/post.js -------------------------------------------------------------------------------- /core/server/models/refreshtoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/refreshtoken.js -------------------------------------------------------------------------------- /core/server/models/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/role.js -------------------------------------------------------------------------------- /core/server/models/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/settings.js -------------------------------------------------------------------------------- /core/server/models/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/tag.js -------------------------------------------------------------------------------- /core/server/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/models/user.js -------------------------------------------------------------------------------- /core/server/permissions/effective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/permissions/effective.js -------------------------------------------------------------------------------- /core/server/permissions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/permissions/index.js -------------------------------------------------------------------------------- /core/server/require-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/require-tree.js -------------------------------------------------------------------------------- /core/server/routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/routes/admin.js -------------------------------------------------------------------------------- /core/server/routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/routes/api.js -------------------------------------------------------------------------------- /core/server/routes/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/routes/frontend.js -------------------------------------------------------------------------------- /core/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/routes/index.js -------------------------------------------------------------------------------- /core/server/storage/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/storage/base.js -------------------------------------------------------------------------------- /core/server/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/storage/index.js -------------------------------------------------------------------------------- /core/server/storage/local-file-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/storage/local-file-store.js -------------------------------------------------------------------------------- /core/server/update-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/update-check.js -------------------------------------------------------------------------------- /core/server/utils/downzero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/utils/downzero.js -------------------------------------------------------------------------------- /core/server/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/utils/index.js -------------------------------------------------------------------------------- /core/server/utils/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/utils/pipeline.js -------------------------------------------------------------------------------- /core/server/utils/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/utils/sequence.js -------------------------------------------------------------------------------- /core/server/utils/startup-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/utils/startup-check.js -------------------------------------------------------------------------------- /core/server/views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/views/error.hbs -------------------------------------------------------------------------------- /core/server/views/private.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/views/private.hbs -------------------------------------------------------------------------------- /core/server/views/user-error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/server/views/user-error.hbs -------------------------------------------------------------------------------- /core/shared/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/shared/favicon.ico -------------------------------------------------------------------------------- /core/shared/img/user-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/shared/img/user-cover.png -------------------------------------------------------------------------------- /core/shared/img/user-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/shared/img/user-image.png -------------------------------------------------------------------------------- /core/shared/private-robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /core/shared/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/shared/robots.txt -------------------------------------------------------------------------------- /core/shared/sitemap.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/shared/sitemap.xsl -------------------------------------------------------------------------------- /core/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/.jshintrc -------------------------------------------------------------------------------- /core/test/functional/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/base.js -------------------------------------------------------------------------------- /core/test/functional/client/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/app_test.js -------------------------------------------------------------------------------- /core/test/functional/client/content_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/content_test.js -------------------------------------------------------------------------------- /core/test/functional/client/editor_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/editor_test.js -------------------------------------------------------------------------------- /core/test/functional/client/psm_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/psm_test.js -------------------------------------------------------------------------------- /core/test/functional/client/settings_about_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/settings_about_test.js -------------------------------------------------------------------------------- /core/test/functional/client/settings_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/settings_test.js -------------------------------------------------------------------------------- /core/test/functional/client/signin_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/signin_test.js -------------------------------------------------------------------------------- /core/test/functional/client/signout_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/signout_test.js -------------------------------------------------------------------------------- /core/test/functional/client/signup_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/client/signup_test.js -------------------------------------------------------------------------------- /core/test/functional/module/module_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/module/module_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/admin_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/admin_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/authentication_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/authentication_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/db_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/db_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/error_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/error_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/notifications_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/notifications_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/posts_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/posts_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/settings_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/settings_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/slugs_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/slugs_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/tags_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/tags_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/api/users_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/api/users_spec.js -------------------------------------------------------------------------------- /core/test/functional/routes/frontend_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/routes/frontend_spec.js -------------------------------------------------------------------------------- /core/test/functional/setup/setup_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/functional/setup/setup_test.js -------------------------------------------------------------------------------- /core/test/integration/api/api_authentication_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_authentication_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_configuration_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_configuration_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_db_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_db_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_mail_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_mail_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_notifications_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_notifications_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_posts_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_posts_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_roles_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_roles_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_settings_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_settings_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_slugs_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_slugs_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_tags_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_tags_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_themes_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_themes_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_upload_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_upload_spec.js -------------------------------------------------------------------------------- /core/test/integration/api/api_users_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/api/api_users_spec.js -------------------------------------------------------------------------------- /core/test/integration/export_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/export_spec.js -------------------------------------------------------------------------------- /core/test/integration/import_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/import_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_app-fields_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_app-fields_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_app-settings_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_app-settings_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_apps_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_apps_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_permissions_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_permissions_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_posts_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_posts_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_roles_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_roles_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_settings_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_settings_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_tags_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_tags_spec.js -------------------------------------------------------------------------------- /core/test/integration/model/model_users_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/model/model_users_spec.js -------------------------------------------------------------------------------- /core/test/integration/update_check_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/integration/update_check_spec.js -------------------------------------------------------------------------------- /core/test/unit/apps_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/apps_spec.js -------------------------------------------------------------------------------- /core/test/unit/config_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/config_spec.js -------------------------------------------------------------------------------- /core/test/unit/error_handling_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/error_handling_spec.js -------------------------------------------------------------------------------- /core/test/unit/filters_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/filters_spec.js -------------------------------------------------------------------------------- /core/test/unit/frontend_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/frontend_spec.js -------------------------------------------------------------------------------- /core/test/unit/importer_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/importer_spec.js -------------------------------------------------------------------------------- /core/test/unit/mail_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/mail_spec.js -------------------------------------------------------------------------------- /core/test/unit/middleware_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/middleware_spec.js -------------------------------------------------------------------------------- /core/test/unit/migration_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/migration_spec.js -------------------------------------------------------------------------------- /core/test/unit/permissions_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/permissions_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/asset_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/asset_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/author_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/author_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/body_class_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/body_class_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/content_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/content_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/date_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/date_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/encode_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/encode_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/excerpt_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/excerpt_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/foreach_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/foreach_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/ghost_foot_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/ghost_foot_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/ghost_head_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/ghost_head_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/has_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/has_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/image_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/image_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/input_password_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/input_password_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/is_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/is_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/meta_description_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/meta_description_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/meta_title_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/meta_title_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/navigation_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/navigation_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/next_post_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/next_post_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/page_url_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/page_url_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/pagination_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/pagination_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/plural_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/plural_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/post_class_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/post_class_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/prev_post_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/prev_post_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/tags_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/tags_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/test_tpl/navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/test_tpl/navigation.hbs -------------------------------------------------------------------------------- /core/test/unit/server_helpers/test_tpl/pagination.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/test_tpl/pagination.hbs -------------------------------------------------------------------------------- /core/test/unit/server_helpers/title_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/title_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/url_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/url_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers/utils.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers_index_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers_index_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_helpers_template_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_helpers_template_spec.js -------------------------------------------------------------------------------- /core/test/unit/server_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/server_spec.js -------------------------------------------------------------------------------- /core/test/unit/showdown_client_integrated_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/showdown_client_integrated_spec.js -------------------------------------------------------------------------------- /core/test/unit/sitemap_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/sitemap_spec.js -------------------------------------------------------------------------------- /core/test/unit/storage_local-file-store_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/storage_local-file-store_spec.js -------------------------------------------------------------------------------- /core/test/unit/xmlrpc_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/unit/xmlrpc_spec.js -------------------------------------------------------------------------------- /core/test/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/api.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/badinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/badinstall.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/badlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/badlib.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/badoutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/badoutside.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/badrequire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/badrequire.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/badtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/badtop.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/good.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/good.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/goodlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/goodlib.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/app/nested/goodnested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/app/nested/goodnested.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/data-generator.js -------------------------------------------------------------------------------- /core/test/utils/fixtures/example.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | answer: 42 4 | }; 5 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-000.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-001.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-002.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-api-wrapper-bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-api-wrapper-bad.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-api-wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-api-wrapper.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-badValidation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-badValidation.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-dbErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-dbErrors.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-duplicate-posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-duplicate-posts.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-duplicate-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-duplicate-tags.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-minimal.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-mu-noOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-mu-noOwner.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-mu-unknownAuthor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-mu-unknownAuthor.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-mu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-mu.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-nullPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-nullPosts.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-nullTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-nullTags.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003-wrongUUID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003-wrongUUID.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/export/export-003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/export/export-003.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/deleted-2014-12-19-test-1.md: -------------------------------------------------------------------------------- 1 | You're live! Nice. -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/draft-2014-12-19-test-1.md: -------------------------------------------------------------------------------- 1 | You're live! Nice. -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/draft-2014-12-19-test-2.md: -------------------------------------------------------------------------------- 1 | # Welcome to Ghost 2 | 3 | You're live! Nice. -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/draft-2014-12-19-test-3.md: -------------------------------------------------------------------------------- 1 |  2 | 3 | # Welcome to Ghost 4 | 5 | You're live! Nice. -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/import-data-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trheyi/Ghost/HEAD/core/test/utils/fixtures/import/import-data-1.json -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/published-2014-12-19-test-1.md: -------------------------------------------------------------------------------- 1 | #Welcome to Ghost 2 | 3 | You're live! Nice. -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/zips/zip-image-dir/images/image.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/zips/zip-old-roon-export/Roon-Export/published/test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/zips/zip-with-base-dir/basedir/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/zips/zip-with-double-base-dir/basedir/basedir/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/import/zips/zip-without-base-dir/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/test/utils/fixtures/test.hbs: -------------------------------------------------------------------------------- 1 |